/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 123, 255), rgba(32, 201, 151)); /* Primary blue to teal gradient */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    display: flex;
    gap: 5px;
}

.loader-bar {
    width: 4px;
    height: 40px;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    border-radius: 2px;
    animation: loading 1.2s infinite ease-in-out;
}

.loader-bar:nth-child(2) {
    animation-delay: -1.1s;
}

.loader-bar:nth-child(3) {
    animation-delay: -1.0s;
}

@keyframes loading {
    0%, 80%, 100% {
        transform: scaleY(0.3);
    }
    40% {
        transform: scaleY(1);
    }
}



/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    /* background: rgba(255, 255, 255, 0.05); */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
     /* background: linear-gradient(135deg, rgba(32, 201, 151, 0.5),rgba(0, 123, 255, 0.7)); */
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo-text {
    display: flex;
    align-items: center;
}

.logo-text img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    /* filter: brightness(0) invert(1); */
}

.header.scrolled .logo-text img {
    filter: brightness(1) invert(0);
}

.header.scrolled .logo-main {
    color: #1a202c;
}

.header.scrolled .logo-sub {
    color: #64748b;
}

/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
}

.header.scrolled .nav-menu a {
    color: #1a202c;
}

.nav-menu a:hover {
    color: #3B82F6;
}

.nav-menu i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Dropdown Menu */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    color: #1a202c !important;
    padding: 12px 20px;
    display: block;
    font-size: 14px;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: #f8fafc;
    color: #3B82F6 !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.header.scrolled .hamburger-line {
    background: #1a202c;
}



@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 10px;
        opacity: 0;
        transform: translateY(-20px);
        pointer-events: none;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-menu a {
        color: #1a202c;
        width: 100%;
    }

    .dropdown .dropdown-menu {
        display: none;
        flex-direction: column;
        background: #f9fafb;
        border-radius: 8px;
        margin-top: 10px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
        padding: 8px 0;
    }

    .dropdown.dropdown-open .dropdown-menu {
        display: flex;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        z-index: 1001;
    }

    .hamburger-line {
        width: 25px;
        height: 3px;
        background: black;
        transition: all 0.3s ease;
    }

    .header.scrolled .hamburger-line {
        background: #1a202c;
    }

    .hamburger.open .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.open .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}


/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    /* Remove padding-top here as header is now inside */
}

.slider-container {
    position: relative; /* Essential for absolute positioning of children */
    width: 100vw;
    height: 100vh; /* Takes full viewport height */
    overflow: hidden;
}


/* Background Images */
.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.background-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.05);
    transition: all 1.2s ease-in-out;
}

.background-slide.active {
    opacity: 1;
    transform: scale(1);
}

.background-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}


/* Content Overlay */
.content-container {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    padding: 0 2rem;
    padding-top: 150px; /* Adjust this to push content below the overlay header */
}

.content-slide {
    position: absolute;
    max-width: 700px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-in-out;
}

.content-slide.active {
    opacity: 1;
    transform: translateY(0);
}

.service-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.description {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.feature {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    flex-shrink: 0;
}

.cta-button {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Navigation Controls */
.navigation-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 25;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.play-pause-btn .pause-icon.hidden,
.play-pause-btn .play-icon.hidden {
    display: none;
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 0.75rem;
    z-index: 25;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

.indicator:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.3);
}

/* Progress Bar */
.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 25;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    transition: width 0.3s ease;
    width: 14.28%;
}



/* Animation Classes */
.content-slide.animating {
    opacity: 0;
    transform: translateY(40px);
}

.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 300px 1rem 2rem 1rem;
        justify-content: flex-start;
    }

    .content-slide {
        max-width: 100%;
    }

    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.25rem;
    }

    .description {
        font-size: 1rem;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    .navigation-controls {
        bottom: 1.5rem;
        gap: 0.5rem;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }

    .slide-indicators {
        bottom: 1.5rem;
        right: 1rem;
        gap: 0.5rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .progress-bar {
        height: 2px;
    }

    /* Mobile specific adjustments for header overlay */
    .header-overlay {
        padding: 0.5rem 1rem;
    }

    .nav-menu {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        height: 0; /* Hidden by default */
        overflow: hidden;
        transition: height 0.3s ease-in-out;
    }

    .nav-menu.active {
        height: auto; /* Show when active */
    }

    .nav-menu li {
        text-align: center;
        padding: 0.5rem 0;
    }

    .hamburger {
        display: flex; /* Show hamburger on mobile */
    }

    .nav-container-overlay {
        padding: 0.5rem 1rem; /* Adjust padding for mobile header */
    }

    .logo img {
        width: 150px; /* Adjust logo size for mobile */
        height: 100px;
    }

    .dropdown-menu {
        position: static; /* Make dropdown flow normally in mobile menu */
        background: none;
        box-shadow: none;
        width: auto;
        padding: 0;
        margin-top: 0.5rem;
    }

    .dropdown-menu li a {
        padding-left: 2rem; /* Indent dropdown items */
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 10002;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 9998;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu a {
        color: #000 !important;
        padding: 1rem 2rem;
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu a:hover {
        background: rgba(0, 0, 0, 0.05);
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
        width: 100%;
    }
    
    .dropdown {
        position: relative;
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 0.5rem;
        border-radius: 0;
        display: none;
        width: 100%;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        padding: 0.8rem 3rem !important;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .dropdown-toggle {
        position: relative;
    }
    
    .dropdown-toggle::after {
        content: '';
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #000;
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .dropdown-toggle::after {
        transform: translateY(-50%) rotate(180deg);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .services-grid,
    .industries-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card,
    .industry-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scrolling for all browsers */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}


/* Sections */
.section {
    padding: 100px 100px;
    position: relative;
    background: azure;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.service-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
    font-size: 24px;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
}

.service-description {
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-link {
    color: #3B82F6;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

.hidden-service {
    display: none;
}

.hidden-service.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Base button styles */
.btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}

/* Blue outline style */
.btn-outline {
    color: #3b82f6;
    border: 2px solid #3b82f6;
    background-color: transparent;
}

.btn-outline:hover {
    background-color: #3b82f6;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Optional: Responsive tweak */
@media (max-width: 480px) {
    #view-more-services-btn {
        width: 100%;
        padding: 12px;
        font-size: 15px;
    }
}


/* Stats Section */
.section-about {
    background: #f8fafc;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F97316, #FB923C);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.stat-label {
    color: #64748b;
    font-weight: 500;
}


/* Industries Section */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.industry-card {
    text-align: center;
    padding: 32px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.industry-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
    font-size: 20px;
}

.industry-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
}

/* Testimonials */
.section-testimonials {
    background:rgb(244, 244, 240);
    padding: 30px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-stars {
    color: #F59E0B;
    margin-bottom: 16px;
    font-size: 14px;
}

.testimonial-text {
    color: #64748b;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author h4 {
    color: #1a202c;
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: #64748b;
    font-size: 14px;
}
/* Tablets (≤ 1024px) */
@media (max-width: 1024px) {
    .section {
        padding: 80px 40px;
    }

    .service-card,
    .stat-card,
    .industry-card,
    .testimonial-card {
        padding: 32px 24px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.05rem;
    }
}

/* Mobile Landscape (≤ 768px) */
@media (max-width: 768px) {
    .section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .services-grid,
    .testimonials-grid,
    .industries-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .stat-card,
    .industry-card,
    .testimonial-card {
        padding: 28px 20px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Mobile Portrait (≤ 480px) */
@media (max-width: 480px) {
    .section {
        padding: 40px 16px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .service-icon,
    .stat-icon,
    .industry-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    .testimonial-stars {
        font-size: 12px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .industry-card h3 {
        font-size: 0.9rem;
    }
}

/* Brands Section */
.brands-section {
   background-color: rgb(217, 247, 247);
    padding: 50px 20px;
}

.brands-section h3 {
    text-align: center;
    color: #001e6c;
    font-size: 2rem;
    margin-bottom: 30px;
}

.brands-section h3::after {
    content: '';
    display: block;
    height: 4px;
    width: 80px;
    background: linear-gradient(to right, #004d99, #339dff);
    border-radius: 2px;
    margin: 10px auto 0;
}

/* Slider Styling */
.brand-slider {
    overflow: hidden;
    position: relative;
    /* Adding padding to prevent names from being cut off at edges if they are too close */
    padding: 20px 0;
}

.slide-track {
    display: flex;
    /* Adjusting width based on the new slide width (image + name) */
    width: calc(200px * 20); /* Each slide will be around 200px wide, including padding/margins */
    animation: scroll 60s linear infinite; /* Slower animation: 60s instead of 40s */
}

.slide {
    width: 200px; /* Adjusted width to better fit image and text */
    /* Removed fixed height to allow content to dictate height */
    display: flex;
    flex-direction: column; /* Stack image and name vertically */
    align-items: center; /* Center content horizontally */
    justify-content: center;
    padding: 10px;
    box-sizing: border-box; /* Include padding in the width calculation */
    text-align: center; /* Center the text */
}

.slide img {
    max-width: 100%; /* Ensure image doesn't overflow */
    height: 180px; /* Set a fixed height for images to keep them consistent */
    object-fit: contain;
    /* filter: grayscale(100%); Keep grayscale */
    transition: filter 0.3s;
    margin-bottom: 10px; /* Space between image and name */
}

.slide img:hover {
    filter: grayscale(0%);
}

/* Brand Name below Image */
.brand-name {
    color: #001e6c; /* Dark blue for brand names */
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap; /* Prevent brand names from wrapping if they are long */
    overflow: hidden; /* Hide overflow if text is too long (though white-space nowrap handles most of this) */
    text-overflow: ellipsis; /* Add ellipsis if text is cut off */
}

/* Animation - Adjusted for new slide width and slower speed */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 10)); /* Adjust based on new slide width */
    }
}

/* Responsive */
@media (max-width: 768px) {
    .slide {
        width: 150px; /* Adjusted for smaller screens */
    }

    .slide img {
        height: 80px; /* Smaller image height */
    }

    .brand-name {
        font-size: 0.9rem;
    }

    .slide-track {
        width: calc(150px * 20);
        animation: scroll 45s linear infinite; /* Adjust animation speed */
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-150px * 10));
        }
    }
}

@media (max-width: 480px) {
    .slide {
        width: 120px; /* Further adjusted for very small screens */
    }

    .slide img {
        height: 60px; /* Even smaller image height */
    }

    .brand-name {
        font-size: 0.5rem;
    }

    .slide-track {
        width: calc(120px * 20);
        animation: scroll 35s linear infinite; /* Adjust animation speed */
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-120px * 10));
        }
    }

    .brands-section h3 {
        font-size: 1.5rem;
    }
}


/* Footer */
.footer {
  /* background-image: linear-gradient(to right, rgb(129, 197, 243), #96f6ce); */
  background: linear-gradient(135deg, rgba(32, 201, 151),rgba(0, 123, 255)); /* Primary blue to teal gradient */
    color: rgb(3, 3, 143);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color:black;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgb(65, 65, 231);
    transform: translateY(-2px);
}

.WhatsApp:hover{
     background: #52ec7d;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: black;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Popup Modal */
.popup-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
}

.popup-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
    animation: popupFade 0.3s ease-in-out;
}

.popup-content h2 {
    margin-bottom: 10px;
    color: #F97316;
}

.popup-content p {
    margin-bottom: 15px;
    font-size: 15px;
    color: #333;
}

.popup-form input[type="email"] {
    padding: 10px;
    width: 80%;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.popup-form button {
    padding: 10px 20px;
    border: none;
    background-color: #F97316;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #666;
}

@keyframes popupFade {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.footer-section span{
    padding-left: 10px;
}