:root {
    --primary: #2c3e50;
    --secondary: #3498db;
    --accent: #1abc9c;
    --light: #f8f9fa;
    --dark: #1a252f;
    --success: #27ae60;
    --transition: all 0.3s ease-in-out;
    --shadow: 0 5px 15px rgba(0,0,0,0.05);
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    --primary-blue: #1565c0;
    --accent-teal: #00838f;
    --phone-color: #4caf50;
    --light-bg: #f5f9ff;
    --primary-dark: #1a237e;
    --text-dark: #333;
    --text-light: #666;
    --btn-hover-darken: 15%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: var(--light);
    color: #333;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    font-weight: 400;
}

h1, h2, h3, h4, h5 {
    
    color: #1a252f;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

/* Navbar Container */
header {
    background: var(--light); /* Changed to white/light */
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Navbar Flex Layout */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: auto;
}


/* Logo */
.logo-img {
    height: 50px;
    max-width: 100%;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-dark); /* Dark text for white background */
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 10px;
    border-radius: 4px;
}
@media (max-width: 768px) {
  .nav-links li a {
    color: white;
  }

  .nav-links li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent);
  }

  .menu-toggle {
    color: var(--primary-dark); /* hamburger icon */
  }
}


.nav-links li a:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary-dark);
}

/* Hamburger Menu Icon */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary); /* dark background for mobile menu */
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px 0;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .menu-toggle {
        display: block;
    }
}

/* Hero Section - Desktop */
.hero-section {
    background: var(--light-bg);
    padding: 0px 5% 60px; /* Fixed: no top gap */
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}



.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(26, 188, 156, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(52, 152, 219, 0.08) 0%, transparent 30%);
    z-index: 0;
}

.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    max-width: 650px;
    position: relative;
    z-index: 2;
    margin-top: 0px;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.25;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 580px;
}

.cta-container {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 16px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    outline: none;
}

.primary-btn {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

.primary-btn:hover {
    background: color-mix(in srgb, var(--primary), black var(--btn-hover-darken));
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(44, 62, 80, 0.4);
}

.phone-btn {
    background: var(--phone-color);
    color: white;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.phone-btn:hover {
    background: color-mix(in srgb, var(--phone-color), black var(--btn-hover-darken));
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
}

.highlight {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(26, 188, 156, 0.2);
    z-index: -1;
    border-radius: 2px;
}

.trust-indicators {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.trust-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-image {
    flex: 1;
    max-width: 600px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
}

/* --------------------------- */
/* COMPLETELY NEW MOBILE DESIGN */
/* --------------------------- */
@media (max-width: 992px) {
    .hero-section {
        padding: 0;
        min-height: 90vh;
        display: flex;
        align-items: center;
        background: linear-gradient(to bottom, var(--light-bg) 0%, white 100%);
        overflow: hidden;
    }
    
    .hero-inner {
        flex-direction: column-reverse;
        gap: 0;
        height: 100%;
        padding: 20px 5% 60px;
    }
    
    .hero-text {
        text-align: center;
        max-width: 100%;
        padding: 30px 20px;
        background: white;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
        position: relative;
        z-index: 2;
        margin-top: -30px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .cta-container {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .trust-indicators {
        justify-content: space-around;
        gap: 15px;
    }
    
    .hero-image {
        max-width: 100%;
        height: 50vh;
        min-height: 300px;
        position: relative;
        z-index: 1;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }
    
    .hero-image img {
        max-width: 90%;
        height: auto;
        max-height: 80%;
        object-fit: contain;
        object-position: center bottom;
        filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links li {
        margin: 15px 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-image {
        height: 45vh;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 85vh;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text {
        padding: 25px 15px;
        margin-top: -20px;
        border-radius: 15px 15px 0 0;
    }
    
    .trust-item {
        width: 45%;
    }
    
    .trust-number {
        font-size: 1.8rem;
    }
    
    .hero-image {
        height: 40vh;
        min-height: 250px;
    }
    
    .hero-image img {
        max-width: 95%;
    }
}

/* Hero CTA Button */
.hero-cta {
    display: inline-block;
    padding: 18px 42px;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    background-color: var(--primary);
    border: 2px solid var(--primary);
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.15);
}

.hero-cta:hover {
    background-color: #34495e;
    border-color: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(44, 62, 80, 0.2);
}

.hero-cta:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.2);
}

.hero-cta:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.3);
}

@media (max-width: 768px) {
    .hero-cta {
        padding: 16px 36px;
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        padding: 14px 32px;
        font-size: 1rem;
        width: 100%;
        display: block;
    }
}
/* About Section - Creative Redesign */
#about {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

#about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(26, 188, 156, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(52, 152, 219, 0.05) 0%, transparent 30%);
    z-index: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title h2 {
    font-size: 3rem;
    color: #1a252f;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
    padding: 0 5%;
}

.about-content {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
    position: relative;
    padding-left: 30px;
}

.about-content p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    height: 60%;
    width: 3px;
    background: var(--accent);
    border-radius: 3px;
}

.about-highlight {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.about-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--accent);
}

.about-highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
    position: relative;
    padding-left: 15px;
}

.about-highlight h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 15px;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

.about-highlight p {
    padding-left: 15px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    height: 500px;
}

.image-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(45deg, var(--primary) 0%, var(--dark) 100%);
    transform: rotate(-3deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-frame::before {
    content: '';
    position: absolute;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    top: 15px;
    left: 15px;
    background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover;
    border-radius: 15px;
    z-index: 2;
}

.image-frame::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, rgba(44, 62, 80, 0.7) 0%, rgba(26, 37, 47, 0.7) 100%);
    border-radius: 20px;
    z-index: 3;
    mix-blend-mode: multiply;
}

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

.floating-element {
    position: absolute;
    background: rgba(26, 188, 156, 0.1);
    border-radius: 50%;
}

.floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
}

.floating-element:nth-child(2) {
    width: 150px;
    height: 150px;
    bottom: 10%;
    right: 5%;
    animation: float 10s ease-in-out infinite reverse;
}

.floating-element:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 50%;
    left: 10%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }
    
    .about-image {
        height: 400px;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    #about {
        padding: 80px 0;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .about-content p {
        padding-left: 20px;
    }
    
    .about-highlight {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .section-title p {
        font-size: 1.1rem;
    }
    
    .about-image {
        height: 300px;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .about-highlight h3 {
        font-size: 1.3rem;
    }
}
.section {
    padding: 80px 5%;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent);
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 20px auto 0;
}

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

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.service-icon {
    height: 180px;
    background: var(--light);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 3.5rem;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1rem;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    color: var(--accent);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.learn-more i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.learn-more:hover {
    color: var(--primary);
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Why Us Section */
.why-us {
    background: var(--light);
}

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

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.feature-icon {
    min-width: 60px;
    height: 60px;
    background: rgba(26, 188, 156, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    color: var(--accent);
    font-size: 1.8rem;
}

.feature-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.feature-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Process Section */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.process-step {
    width: 200px;
    text-align: center;
}

.step-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: white;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--accent);
    box-shadow: var(--shadow);
    border: 2px solid var(--accent);
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.process-step p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/*Contact*/

.contact {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    z-index: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title h2 {
    font-size: 2.8rem;
    color: #1a252f;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.25rem;
    color: #1abc9c;
    max-width: 700px;
    margin: 0 auto;
}

.contact-info {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}

.contact-item {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent);
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--accent);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--accent);
    color: white;
}

.contact-details h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
}

.contact-details h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.contact-details p, .contact-details a {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: var(--accent);
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact {
        padding: 80px 0;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .contact-item {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .contact {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .section-title p {
        font-size: 1.1rem;
    }
    
    .contact-details h3 {
        font-size: 1.3rem;
    }
    
    .contact-details p, .contact-details a {
        font-size: 1rem;
    }
}

/* Footer */
footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 50px 5% 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--accent);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 30px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent);
}

.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* Floating Call Button */
.floating-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    text-decoration: none; /* ✅ Remove blue underline */
}

.floating-call:hover {
    transform: scale(1.1);
    background: #219653;
}

.floating-call i {
    font-size: 24px;
    color: white;
}


.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--accent);
    transform: translateY(-5px);
    color: white;
}

.footer-links {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 30px 0;
    flex-wrap: wrap;
}

.footer-links li {
    margin: 0 20px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.15rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent);
}

.copyright {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 850px;
    border-radius: 18px;
    overflow: hidden;
    transform: scale(0.8);
    animation: modalOpen 0.5s forwards;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    border-top: 6px solid var(--accent);
}

@keyframes modalOpen {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-header {
    background: var(--primary);
    color: white;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
}

.modal-header h3 {
    font-size: 2.1rem;
    font-weight: 700;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 2.8rem;
    cursor: pointer;
    transition: transform 0.3s;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    transform: rotate(90deg);
    background: rgba(255,255,255,0.15);
}

.modal-body {
    padding: 35px;
    color: #444;
    line-height: 1.8;
}

.modal-body p {
    margin-bottom: 25px;
    font-size: 1.18rem;
}

.modal-body ul {
    padding-left: 30px;
    margin-bottom: 30px;
    list-style: none;
}

.modal-body li {
    margin-bottom: 15px;
    font-size: 1.15rem;
    position: relative;
    padding-left: 35px;
}

.modal-body li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.4rem;
}

/* About Section */
#about {
    background: linear-gradient(135deg, #f5f9ff 0%, #e6f0ff 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 5%;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-header {
    position: relative;
    margin-bottom: 40px;
}

.about-header h2 {
    font-size: 3.2rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.about-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.about-header .tagline {
    font-size: 1.5rem;
    color: #555;
    font-weight: 600;
    font-style: italic;
    margin-top: 25px;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #444;
    position: relative;
    padding-left: 30px;
    border-left: 3px solid rgba(25, 118, 210, 0.2);
}

.about-text p {
    margin-bottom: 25px;
}

.about-highlight {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    position: relative;
    margin-top: 40px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(25, 118, 210, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: perspective(1000px) rotateY(0deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-highlight:hover {
    transform: perspective(1000px) rotateY(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-highlight h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.about-highlight h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
}

.about-highlight p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.about-graphic {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    position: relative;
}

.graphic-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
}

.graphic-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    border-radius: 20px;
    transform: rotate(-3deg);
    box-shadow: 0 20px 40px rgba(25, 118, 210, 0.2);
}

.graphic-foreground {
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.graphic-foreground:hover {
    transform: rotate(0deg);
}

.graphic-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
    margin: 30px 0;
}

.icon-item {
    background: rgba(25, 118, 210, 0.05);
    border-radius: 15px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2.2rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(25, 118, 210, 0.1);
}

.icon-item:hover {
    transform: translateY(-8px);
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 20px rgba(25, 118, 210, 0.2);
}

.graphic-foreground h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.graphic-foreground p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .section-title h2 {
        font-size: 2.8rem;
    }
    
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .about-header h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.35rem;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .service-card {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .feature-content h3 {
        font-size: 1.5rem;
    }
    
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .about-header h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-text {
        padding-left: 0;
        border-left: none;
        padding-top: 20px;
        border-top: 3px solid rgba(25, 118, 210, 0.1);
    }
    
    .about-highlight {
        text-align: left;
    }
    
    .about-highlight h3::after {
        left: 0;
    }
    
    .graphic-container {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: var(--primary);
        flex-direction: column;
        align-items: center;
        padding: 50px 20px;
        transition: left 0.4s;
        box-shadow: 5px 0 15px rgba(0,0,0,0.2);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 25px 0;
    }
    
    .hero {
        padding: 120px 5%;
    }
    
    .hero h1 {
        font-size: 2.7rem;
    }
    
    .hero p {
        font-size: 1.25rem;
    }
    
    .section {
        padding: 80px 5%;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        width: 100%;
        max-width: 320px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .features-container {
        gap: 25px;
    }
    
    .feature-item {
        padding: 25px;
    }
    
    .feature-icon {
        min-width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-right: 20px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h3 {
        font-size: 1.8rem;
    }
    
    .close-modal {
        font-size: 2.2rem;
    }
    
    .about-header h2 {
        font-size: 2.4rem;
    }
    
    .about-header .tagline {
        font-size: 1.3rem;
    }
    
    .about-text {
        font-size: 1.1rem;
    }
    
    .graphic-container {
        height: 300px;
    }
    
    .icon-item {
        height: 70px;
        font-size: 1.8rem;
    }
    
    .graphic-foreground {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .logo h1 {
        font-size: 1.7rem;
    }
    
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .cta-button {
        padding: 16px 40px;
        font-size: 1.15rem;
    }
    
    .floating-call {
        width: 60px;
        height: 60px;
    }
    
    .floating-call i {
        font-size: 26px;
    }
    
    .service-icon {
        height: 200px;
        font-size: 4rem;
    }
    
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    

    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h3 {
        font-size: 1.8rem;
    }
    
    .close-modal {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .logo h1 {
        font-size: 1.7rem;
    }
    
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .cta-button {
        padding: 16px 40px;
        font-size: 1.15rem;
    }
    
    .floating-call {
        width: 60px;
        height: 60px;
    }
    
    .floating-call i {
        font-size: 26px;
    }
    
    .service-icon {
        height: 200px;
        font-size: 4rem;
    }
    
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .services-grid {
        gap: 25px;
    }
    
    .service-content {
        padding: 25px;
    }
    
    .modal-body {
        padding: 25px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-links li {
        margin: 0;
    }
    
    .copyright {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.1rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 1.9rem;
    }
    
    .section-title p {
        font-size: 1.1rem;
    }
    
    .service-content h3 {
        font-size: 1.6rem;
    }
    
    .process-step h3 {
        font-size: 1.4rem;
    }
    
    .contact-details h3 {
        font-size: 1.5rem;
    }
    
    .contact-details p, .contact-details a {
        font-size: 1.1rem;
    }
}
/* Modern About Section */
#about {
    background: linear-gradient(135deg, #f8f9fa 0%, #eef2f6 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 5%;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-header {
    position: relative;
    margin-bottom: 40px;
}

.about-header h2 {
    font-size: 3.2rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.about-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.about-header .tagline {
    font-size: 1.5rem;
    color: #555;
    font-weight: 600;
    font-style: italic;
    margin-top: 25px;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #444;
    position: relative;
    padding-left: 30px;
    border-left: 3px solid rgba(26, 35, 126, 0.2);
}

.about-text p {
    margin-bottom: 25px;
}

.about-highlight {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 15px;
    position: relative;
    margin-top: 40px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(26, 35, 126, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: perspective(1000px) rotateY(0deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-highlight:hover {
    transform: perspective(1000px) rotateY(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-highlight h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.about-highlight h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
}

.about-highlight p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.about-graphic {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    position: relative;
}

.graphic-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
}

.graphic-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 20px;
    transform: rotate(-3deg);
    box-shadow: 0 20px 40px rgba(26, 35, 126, 0.2);
}

.graphic-foreground {
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.graphic-foreground:hover {
    transform: rotate(0deg);
}

.graphic-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
    margin: 30px 0;
}

.icon-item {
    background: rgba(26, 35, 126, 0.05);
    border-radius: 15px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2.2rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(26, 35, 126, 0.1);
}

.icon-item:hover {
    transform: translateY(-8px);
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 20px rgba(26, 35, 126, 0.2);
}

.graphic-foreground h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.graphic-foreground p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .about-header h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .about-header h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-text {
        padding-left: 0;
        border-left: none;
        padding-top: 20px;
        border-top: 3px solid rgba(26, 35, 126, 0.1);
    }
    
    .about-highlight {
        text-align: left;
    }
    
    .about-highlight h3::after {
        left: 0;
    }
    
    .graphic-container {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .about-header h2 {
        font-size: 2.4rem;
    }
    
    .about-header .tagline {
        font-size: 1.3rem;
    }
    
    .about-text {
        font-size: 1.1rem;
    }
    
    .graphic-container {
        height: 300px;
    }
    
    .icon-item {
        height: 70px;
        font-size: 1.8rem;
    }
    
    .graphic-foreground {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .about-header h2 {
        font-size: 2rem;
    }
    
    .about-highlight {
        padding: 20px;
    }
    
    .graphic-container {
        height: 250px;
    }
    
    .icon-item {
        height: 60px;
        font-size: 1.6rem;
    }
    
    .graphic-icons {
        gap: 15px;
    }
    
    .graphic-foreground h3 {
        font-size: 1.5rem;
    }
    
    .graphic-foreground p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .graphic-icons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-highlight h3 {
        font-size: 1.6rem;
    }
}