* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0f;
    color: #e5e7eb;
    line-height: 1.5;
    overflow-x: hidden;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.sphere-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(44,125,160,0.4), rgba(44,125,160,0));
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.sphere-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(97,165,194,0.3), rgba(97,165,194,0));
    bottom: -300px;
    right: -200px;
    animation-delay: 5s;
}

.sphere-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(10,38,71,0.5), rgba(10,38,71,0));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 30px) scale(1.1); }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(44, 125, 160, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2C7DA0, #61a5c2, #89c2d9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.logo-dot {
    background: linear-gradient(135deg, #2C7DA0, #61a5c2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #cbd5e1;
    transition: 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2C7DA0, #61a5c2);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover, .nav-links a.active {
    color: #2C7DA0;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

/* Language Switch Styling */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(44, 125, 160, 0.15);
    padding: 8px 16px;
    border-radius: 40px;
    border: 1px solid rgba(44, 125, 160, 0.3);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.lang-switch:hover {
    background: rgba(44, 125, 160, 0.25);
    border-color: rgba(44, 125, 160, 0.5);
}

.lang-btn {
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 4px 8px;
    border-radius: 30px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.lang-btn:hover {
    color: #2C7DA0;
    transform: scale(1.05);
}

.lang-btn.active {
    color: #2C7DA0;
    background: rgba(44, 125, 160, 0.2);
}

.lang-divider {
    color: #4a5568;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Book a call button styling */
.book-call {
    background: linear-gradient(135deg, #2C7DA0, #61a5c2);
    padding: 10px 24px;
    border-radius: 40px;
    color: white !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(44, 125, 160, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.book-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 125, 160, 0.4);
    background: linear-gradient(135deg, #61a5c2, #2C7DA0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lang-switch {
    padding: 6px 12px;
  }

  .lang-btn {
    font-size: 0.75rem;
    padding: 3px 6px;
  }
  
  .book-call {
    padding: 8px 18px;
    font-size: 0.9rem;
  }
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    position: relative;
}

.hero-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(44, 125, 160, 0.15);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(44, 125, 160, 0.3);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #2C7DA0;
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.badge-new {
    font-size: 0.8rem;
    font-weight: 600;
    color: #2C7DA0;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.line-1, .line-2 {
    display: block;
}

.highlight {
    background: linear-gradient(135deg, #2C7DA0, #61a5c2, #89c2d9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.highlight::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(44,125,160,0.3);
    z-index: -1;
    border-radius: 4px;
}

.hero-description {
    font-size: 1.2rem;
    color: #9ca3af;
    margin-bottom: 36px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-primary {
    background: linear-gradient(135deg, #2C7DA0, #61a5c2);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(44,125,160,0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(44,125,160,0.5);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid #2C7DA0;
    color: #2C7DA0;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: rgba(44,125,160,0.1);
    transform: translateX(5px);
}

.trust-badge {
    border-top: 1px solid rgba(44,125,160,0.2);
    padding-top: 30px;
}

.trust-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b7280;
    margin-bottom: 16px;
}

.logos {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-item {
    font-weight: 600;
    color: #8b9cb0;
    letter-spacing: -0.02em;
    transition: 0.3s;
    cursor: pointer;
}

.logo-item:hover {
    color: #2C7DA0;
    transform: translateY(-2px);
}

/* Hero Image with Floating Elements */
.hero-image {
    flex: 0.9;
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-img {
    max-width: 100%;
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    border: 1px solid rgba(44,125,160,0.3);
    transition: transform 0.5s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

.hero-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(44,125,160,0.2), transparent 70%);
    z-index: 1;
    animation: rotateRing 10s linear infinite;
}

@keyframes rotateRing {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.floating-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(44,125,160,0.3);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    color: #2C7DA0;
    font-size: 1.2rem;
}

.floating-card span {
    font-weight: 700;
    font-size: 1rem;
    color: white;
}

.card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: -30px;
    animation-delay: 1s;
}

.card-3 {
    top: 40%;
    right: -40px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.ai-pulse-text {
    position: absolute;
    bottom: -20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

.ai-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #2C7DA0;
    background: rgba(44,125,160,0.2);
    padding: 4px 12px;
    border-radius: 20px;
}

.pulse-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #2C7DA0, transparent);
    animation: pulseLine 1.5s ease-in-out infinite;
}

@keyframes pulseLine {
    0%, 100% { width: 40px; opacity: 1; }
    50% { width: 80px; opacity: 0.5; }
}

/* Services Section */
.services-preview {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(44,125,160,0.15);
    color: #2C7DA0;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(44,125,160,0.3);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.gradient-text {
    background: linear-gradient(135deg, #2C7DA0, #61a5c2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 40px 28px;
    transition: all 0.4s;
    border: 1px solid rgba(44,125,160,0.2);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(44,125,160,0.6);
    box-shadow: 0 20px 40px -12px rgba(44,125,160,0.2);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(44,125,160,0.2), rgba(97,165,194,0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(44,125,160,0.3);
    transition: 0.3s;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(44,125,160,0.3), rgba(97,165,194,0.2));
}

.service-icon-wrapper i {
    font-size: 1.8rem;
    color: #2C7DA0;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: white;
}

.service-card p {
    color: #9ca3af;
    line-height: 1.6;
}

.service-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #2C7DA0, #61a5c2);
    transition: width 0.4s;
}

.service-card:hover .service-hover-line {
    width: 100%;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.5), rgba(10,10,15,0.5));
    border-top: 1px solid rgba(44,125,160,0.1);
    border-bottom: 1px solid rgba(44,125,160,0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2C7DA0, #61a5c2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    color: #9ca3af;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    position: relative;
}

.cta-content {
    text-align: center;
    background: linear-gradient(135deg, rgba(44,125,160,0.1), rgba(15,23,42,0.8));
    border-radius: 48px;
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(44,125,160,0.2);
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(44,125,160,0.1), transparent);
    animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: white;
    position: relative;
    z-index: 1;
}

.cta-content p {
    margin-bottom: 32px;
    color: #9ca3af;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.btn-cta {
    position: relative;
    z-index: 1;
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-cta i:last-child {
    transition: transform 0.3s;
}

.btn-cta:hover i:last-child {
    transform: translateX(5px);
}

/* Footer */
footer {
    background: #0a0a0f;
    color: #9ca3af;
    padding: 48px 0 24px;
    border-top: 1px solid rgba(44,125,160,0.1);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 12px;
}

.footer-links h4, .footer-contact h4 {
    color: white;
    margin-bottom: 16px;
}

.footer-links a, .footer-contact a {
    color: #9ca3af;
    text-decoration: none;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #2C7DA0;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(44,125,160,0.1);
    padding-top: 24px;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-grid {
        flex-direction: column;
    }
    
    .floating-card {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .cta-content {
        padding: 40px 24px;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .footer-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
/* ============================================
   ADD THESE STYLES FOR OTHER PAGES
   ============================================ */

/* Page Header - for all inner pages */
.page-header {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 1px solid rgba(44,125,160,0.2);
    margin-bottom: 0;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff, #2C7DA0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-header p {
    color: #9ca3af;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Detailed Page */
.services-full {
    padding: 80px 0;
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-detailed-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 40px 28px;
    transition: all 0.4s;
    border: 1px solid rgba(44,125,160,0.2);
    position: relative;
    overflow: hidden;
}

.service-detailed-card:hover {
    transform: translateY(-8px);
    border-color: rgba(44,125,160,0.6);
    box-shadow: 0 20px 40px -12px rgba(44,125,160,0.2);
}

.service-detailed-card i {
    font-size: 2.5rem;
    color: #2C7DA0;
    margin-bottom: 20px;
    display: inline-block;
}

.service-detailed-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: white;
}

.service-detailed-card p {
    color: #9ca3af;
    line-height: 1.6;
}

/* Pricing CTA */
.pricing-cta {
    padding: 0 0 80px;
}

.pricing-box {
    text-align: center;
    background: linear-gradient(135deg, rgba(44,125,160,0.1), rgba(15,23,42,0.8));
    border-radius: 48px;
    padding: 60px 48px;
    border: 1px solid rgba(44,125,160,0.2);
}

.pricing-box h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: white;
}

.pricing-box p {
    color: #9ca3af;
    margin-bottom: 32px;
}

/* About Page Styles */
.about-story {
    padding: 80px 0;
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.about-text p {
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 28px;
    border: 1px solid rgba(44,125,160,0.3);
    box-shadow: 0 20px 40px -12px rgba(0,0,0,0.3);
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: rgba(10, 10, 15, 0.5);
    border-top: 1px solid rgba(44,125,160,0.1);
    border-bottom: 1px solid rgba(44,125,160,0.1);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(44,125,160,0.2);
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(44,125,160,0.5);
}

.value-card i {
    font-size: 2.5rem;
    color: #2C7DA0;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: white;
}

.value-card p {
    color: #9ca3af;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 48px;
    border: 1px solid rgba(44,125,160,0.2);
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.contact-info p {
    color: #9ca3af;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info hr {
    margin: 25px 0;
    border-color: rgba(44,125,160,0.2);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(44,125,160,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2C7DA0;
    transition: all 0.3s;
    border: 1px solid rgba(44,125,160,0.2);
}

.social-links a:hover {
    background: linear-gradient(135deg, #2C7DA0, #61a5c2);
    color: white;
    transform: translateY(-3px);
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

input, textarea, select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(44,125,160,0.3);
    border-radius: 28px;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(10, 10, 15, 0.8);
    color: white;
    transition: all 0.3s;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #2C7DA0;
    background: rgba(10, 10, 15, 1);
}

textarea {
    border-radius: 24px;
    resize: vertical;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.form-feedback {
    margin-top: 16px;
    text-align: center;
    color: #2C7DA0;
}

/* Map Section */
.map-section {
    padding: 0 0 80px;
}

.map-section iframe {
    border-radius: 28px;
    border: 1px solid rgba(44,125,160,0.2);
    filter: brightness(0.9) contrast(1.1);
}

/* Blog Page Styles */
.blog-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}



/* Responsive for all pages */
@media (max-width: 968px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .contact-wrapper {
        padding: 30px;
    }
    
    .about-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .services-detailed-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-box {
        padding: 40px 24px;
    }
    
    .newsletter-box h3 {
        font-size: 1.5rem;
    }
    
    .pricing-box {
        padding: 40px 24px;
    }
    
    .pricing-box h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-info p {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-box form {
        flex-direction: column;
    }
}


/* Why Choose Us Section - Dark Theme Matching Website */

.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #05070a 0%, #0a0f14 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(44, 125, 160, 0.08), transparent 70%);
    pointer-events: none;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(10, 38, 71, 0.08), transparent 70%);
    pointer-events: none;
}

.why-choose-us .section-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
}

.why-choose-us .section-badge {
    display: inline-block;
    background: rgba(44, 125, 160, 0.15);
    color: #2C7DA0;
    padding: 8px 20px;
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(44, 125, 160, 0.3);
    backdrop-filter: blur(4px);
}

.why-choose-us .section-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.why-choose-us .section-title .highlight {
    background: linear-gradient(135deg, #2C7DA0, #61a5c2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.why-choose-us .section-subtitle {
    font-size: 1.1rem;
    color: #9ca3af;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 20px;
}

.feature-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 48px 32px 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(44, 125, 160, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2C7DA0, #61a5c2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: rgba(44, 125, 160, 0.5);
    box-shadow: 0 25px 45px -12px rgba(44, 125, 160, 0.3);
    background: rgba(15, 23, 42, 0.8);
}

.feature-icon-wrapper {
    margin-bottom: 28px;
    position: relative;
}

.feature-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, rgba(44, 125, 160, 0.2), rgba(10, 38, 71, 0.1));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(44, 125, 160, 0.2);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(44, 125, 160, 0.3), rgba(10, 38, 71, 0.2));
    transform: scale(1.05);
    border-color: rgba(44, 125, 160, 0.4);
}

.feature-icon i {
    font-size: 2.8rem;
    color: #2C7DA0;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.05);
    color: #61a5c2;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: #2C7DA0;
}

.feature-card p {
    color: #9ca3af;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Floating animation for icons */
@keyframes featureFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.feature-card:hover .feature-icon {
    animation: featureFloat 2s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-choose-us {
        padding: 80px 0;
    }
    
    .features-grid {
        gap: 24px;
    }
    
    .feature-card {
        padding: 40px 24px 32px;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }
    
    .why-choose-us .section-title {
        font-size: 2rem;
    }
    
    .why-choose-us .section-subtitle {
        font-size: 1rem;
        padding: 0 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .feature-card {
        padding: 36px 24px 32px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 2.2rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .why-choose-us {
        padding: 50px 0;
    }
    
    .why-choose-us .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 32px 20px 28px;
    }
}


/* Blog Card Styles with Dropdown */
.blog-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.4s;
    border: 1px solid rgba(44,125,160,0.2);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(44,125,160,0.5);
    box-shadow: 0 20px 40px -12px rgba(44,125,160,0.2);
}

.blog-img {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2C7DA0;
}

.blog-img i {
    font-size: 3rem;
}

.blog-content {
    padding: 28px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: white;
    line-height: 1.4;
}

.blog-excerpt {
    color: #9ca3af;
    margin-bottom: 16px;
    line-height: 1.6;
}

/* Full content - initially hidden */
.blog-full-content {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(44,125,160,0.2);
    color: #9ca3af;
    line-height: 1.6;
}

.blog-full-content p {
    margin-bottom: 12px;
}

.blog-full-content ul {
    margin: 12px 0 12px 20px;
}

.blog-full-content li {
    margin-bottom: 8px;
    color: #cbd5e1;
}

.blog-full-content strong {
    color: #2C7DA0;
}

/* Read More Button */
.read-more-btn {
    background: transparent;
    border: 1px solid rgba(44,125,160,0.3);
    color: #2C7DA0;
    padding: 10px 20px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.read-more-btn:hover {
    background: rgba(44,125,160,0.1);
    border-color: #2C7DA0;
    gap: 12px;
}

.read-more-btn.active {
    background: rgba(44,125,160,0.2);
    border-color: #2C7DA0;
}

.read-more-btn i {
    transition: transform 0.3s;
}

.read-more-btn.active i {
    transform: rotate(180deg);
}

/* Active blog card - when expanded */
.blog-card.expanded {
    border-color: rgba(44,125,160,0.5);
    box-shadow: 0 20px 40px -12px rgba(44,125,160,0.3);
}

.blog-card.expanded .blog-full-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .blog-content {
        padding: 20px;
    }
    
    .blog-content h3 {
        font-size: 1.1rem;
    }
    
    .read-more-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

