    /* HOME PAGE STYLESHEET */
    * {
              margin: 0;
              padding: 0;
              box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 25%, #dbeafe 50%, #e0f2fe 75%, #f0f9ff 100%);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        :root {
            --primary-blue: #1e40af;
            --primary-blue-dark: #1e3a8a;
            --secondary-blue: #3b82f6;
            --accent-purple: #8b5cf6;
            --accent-teal: #06b6d4;
            --text-gray: #475569;
            --bg-light: #f8fafc;
            --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
            --bg-light: #f8fafc;
            --bg-light-blue: #e6f0fa;
            --bg-light-gray: #f1f1f1;
            --gradient-hero: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            --gradient-dark: linear-gradient(135deg, #1f2937 0%, #4b5563 100%);
            --gradient-cta: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-light: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
            --text-dark: #1f2937;
            --text-light: #ffffff;
            --accent: #3b82f6;
        }
        

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -30px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
        }

       /* Hero Section */
        .hero-section {
        position: relative;
        background: radial-gradient(circle at 20% 30%, #007bff22, transparent 60%),
              radial-gradient(circle at 80% 40%, #00c4ff22, transparent 60%),
              radial-gradient(circle at 50% 80%, #0056d222, transparent 60%),
              linear-gradient(120deg, #f9fafc 0%, #e7f0fd 100%);
        padding: 120px 20px;
        height: 100vh;
        overflow: hidden;
        height: 100vh; /* full screen height */
        display: flex;
        justify-content: center; /* horizontal */
        align-items: center;     /* vertical */
        text-align: center;
        }

        .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        max-width: 900px;
        margin: auto;
        position: relative;
        z-index: 1;
        }

        .hero-text {
        max-width: 700px;
        }

        .hero-text h1 {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 800;
        color: #111;
        line-height: 1.3;
        }

        .hero-text h1 span {
        background: linear-gradient(90deg, #007bff, #00c4ff);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        }

        .hero-text p {
        font-size: 1.125rem;
        margin-top: 20px;
        color: #333;
        line-height: 1.6;
        }

        .hero-cta {
        margin-top: 30px;
        }


        /* CTA Buttons */
        .btn-primary,
        .btn-secondary {
        display: inline-block;
        padding: 14px 24px;
        border-radius: 30px;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
        margin-right: 15px;
        }

        .btn-primary {
        background: linear-gradient(45deg, #007bff, #0056d2);
        color: #fff;
        }

        .btn-secondary {
        border: 2px solid #007bff;
        color: #007bff;
        background: rgba(255,255,255,0.6);
        backdrop-filter: blur(6px);
        }

        .btn-primary:hover,
        .btn-secondary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 18px rgba(0, 123, 255, 0.25);
        }

        /* Services Section */
        .service-container {
            background: linear-gradient(135deg, #f0f7ff 0%, #eaf3ff 50%, #ffffff 100%);
            position: relative;
            height: 480px;
            overflow: visible;
            padding-bottom: 120px;
        }

        .service-intro {
            position: absolute;
            top: 80px;
            left: 50px;
            width: 450px;
            z-index: 3;
            padding-right: 30px;
        }

        .service-heading {
        margin-bottom: 20px;
        text-align: left;
        padding-left: 10px;
        }

        .service-heading h2 {
        font-size: 2.5rem;
        color: #000000;
        margin: 0;
        padding-left: 10px;
        opacity: 0;
        transform: translateX(-50px);
        transition: opacity 0.5s ease, transform 0.5s ease;
        }


        .service-tagline {
            padding-left: 20px;
            font-size: 16px;
            color: #333;
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .explore-btn {
        display: inline-block;
        padding: 12px 24px;
        margin-top: 15px;
        right: 100px;
        background-color: #007bff;
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        border-radius: 50px;
        transition: background-color 0.3s ease, transform 0.3s ease;
        /* box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3); */
        }

        .explore-btn:hover {
        background-color: #0056b3;
        transform: translateY(-1px);
        }


        .service-background {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: background-image 0.5s ease;
        }
        .service-content {
            position: absolute;
            bottom: -80px;
            left: 300px;
            width: 600px;
            height: auto;
            background: rgba(255, 255, 255, 1);
            padding: 20px;
            border-radius: 0px;
            z-index: 3;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .service-content h2 {
            margin-top: 0;
            font-size: 24px;
            margin-bottom: 10px;
        }

        .service-content p {
            margin: 0 0 15px 0;
            font-size: 14px;
            color: #555;
        }
        .read-more {
            position: relative;
            right: -400px;
            display: inline-block;
            padding: 8px 16px;
            background-color: #fff;
            color: #007bff;
            text-decoration: none;
            border-radius: 80px;
            border: 1px solid #007bff;
            font-size: 14px;
        }
        .slider-controls {
            position: absolute;
            bottom: 20px;          /* Always stays near bottom */
            left: 80%;             /* Center horizontally */
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            padding: 12px 30px;
            border-radius: 80px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            z-index: 5;            /* ensures it's above content */
        }
        .slider-controls button {
            background: none;
            border: none;
            font-size: 35px;
            cursor: pointer;
            color: #666;
            padding: 5px 8px;
        }
        .slider-controls button:hover {
            color: #007bff;
        }
        .slider-controls span {
            font-size: 35px;
            color: #666;
        }
        .slider-controls .service-dot {
            width: 13px;
            height: 13px;
            background: #ccc;
            border-radius: 50%;
            display: inline-block;
            margin: 0 2px;
        }
        .slider-controls .service-dot.active {
            background: #000;
        }

            /* Why Choose Us Section */
        .why-choose-us {
        background: linear-gradient(135deg, #f0f7ff 0%, #eaf3ff 50%, #ffffff 100%);
        padding: 100px 5%;
        }

        .why-choose-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: start;
        gap: 40px;
        max-width: 1200px;
        margin: 20px auto;
        }

        .why-choose-left h2 {
        font-size: 32px;
        color: #1a2b4c;
        margin-bottom: 15px;
        }

        .why-choose-left p {
        font-size: 16px;
        color: #555;
        margin-bottom: 25px;
        line-height: 1.6;
        }

        .why-choose-image {
        background: #e0e6ec;
        padding: 20px;
        border-radius: 8px;
        text-align: center;
        }

        .why-choose-image img {
        max-width: 100%;
        border-radius: 8px;
        }

        .why-choose-right {
        display: flex;
        flex-direction: column;
        gap: 20px;
        }

        .choose-card {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        background: #fff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease;
        }

        .choose-card.show {
        opacity: 1;
        transform: translateY(0);
        }

        .choose-card:hover {
        transform: translateY(-4px);
        transition: transform 0.3s ease;
        }

        .choose-card i {
        font-size: 22px;
        color: #1a2b4c;
        margin-top: 4px;
        }


        .choose-card h3 {
        font-size: 18px;
        color: #1a2b4c;
        margin-bottom: 6px;
        }

        .choose-card p {
        font-size: 14px;
        color: #555;
        line-height: 1.5;
        }

        /* Responsive */
        @media (max-width: 992px) {
        .why-choose-container {
            grid-template-columns: 1fr;
        }

        .why-choose-left {
            text-align: center;
        }

        .why-choose-image {
            max-width: 400px;
            margin: 20px auto 0;
        }
        }

        /* Stats Section */
.stats-section {
    background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
    padding: 80px 20px;
}

/* Header Styling */
.stats-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-family: 'Inter', sans-serif;
    color: #1f1f1f;
}

.section-title .normal {
    color: #444;
    font-weight: 600;
}

.section-title .highlight {
    color: var(--accent, #2b77ff); /* fallback accent blue */
    font-weight: 800;
}

.stats-header p {
    font-size: 17px;
    color: #555;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; /* Large left column */
    grid-auto-rows: 220px;
    gap: 25px;
}

/* Large Shield Image */
.stat-card.large {
    grid-row: span 2;
}

/* Base Card Styling */
.stat-card {
    background: #fff;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Image Cards */
.image-card {
    background-size: cover;
    background-position: center;
    padding: 0;
}

/* Staggered Image Card */
.image-card.stagger {
    margin-top: 40px;      /* Push down */
    height: 180px;         /* Shorter than others */
    border-radius: 16px;   /* Softer rounding */
}

/* Span adjustments */
.stat-card.large-text {
    grid-column: span 2; /* spans 2 columns */
    min-height: 180px;
}


.stat-card.large {
    grid-row: span 2;
}

/* Text */
.stat-label {
    font-size: 16px;
    font-weight: 500;
    color: #555;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 34px;
    font-weight: 800;
    color: #1c1e21;
}

/* =================
   Desktop Default
   ================= */
.stats-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; /* Large left column */
    grid-auto-rows: 220px;
    gap: 25px;
}

.stat-card.large {
    grid-row: span 2;
}

.stat-card.large-text {
    grid-column: span 2;
    min-height: 180px;
}

/* =================
   Mobile (≤600px)
   ================= */
@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .stat-card,
    .image-card {
        min-height: 180px;
    }

    .stat-card.large,
    .stat-card.large-text {
        grid-column: auto;
        grid-row: auto;
        min-height: auto;
    }
}



        /* Industries Section Background and Heading */
        .industries-section {
            background: linear-gradient(135deg, #e0f2fe 0%, #bfdbfe 100%);
            padding: 4rem 2rem 2rem;
            color: #1f2937;
        }

        .industry-heading {
            max-width: 1000px;
            margin: 0 auto 3rem;
            text-align: center;
            padding: 0 1rem;
        }

        .industry-heading h1 {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, var(--secondary-blue), var(--accent-purple));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            
        }

        .industry-heading h1 .highlight {
            background: var(--gradient-dark);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        }

        .industry-buttons {
            display: flex;
            justify-content: center; 
            gap: 1rem;
        }

        .btn {
            padding: 0.6rem 1.4rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: 0.3s ease;
            display: inline-block;
            font-size: 1rem;
        }

        .btn.outline {
            border: 2px solid #050505;
            color: #050505;
            background-color: transparent;
        }

        .btn.outline:hover {
            background-color: #000000;
            color: #ffffff;
        }

        /* Card container */
        .industries-cards {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        /* Card styles */
        .industry-card {
            width: 160px;
            height: 220px;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
            font-weight: bold;
            color: #fff;
            text-align: center;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            text-decoration: none;
            background-color: #333;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .industry-card:hover {
            transform: scale(1.05);
            filter: brightness(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .industry-card img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .industry-card span {
            position: relative;
            z-index: 1;
            padding: 0.5rem 1rem;
            background: rgba(0, 0, 0, 0.55);
            border-radius: 0 0 10px 10px;
            width: 100%;
        }

        /* Zigzag Layout on Large Screens */
        .industry-card:nth-child(odd) {
            margin-top: 0;
            margin-bottom: 40px;
        }

        .industry-card:nth-child(even) {
            margin-top: 40px;
            margin-bottom: 0;
        }

        /* Testimonials Section */
        .testimonials {
            background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
            background-size: 600% 600%;
            animation: gradientShift 15s ease infinite;
            padding: 60px 20px;
            text-align: center;
            font-family: 'Helvetica Neue', sans-serif;
            color: #333;
            position: relative;
            overflow: hidden;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            color: #1a2b4c;
            letter-spacing: 2px;
            margin-bottom: 4px;
            text-transform: uppercase;
        }

        .section-subtitle {
            font-size: 1rem;
            color: #555;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .testimonial-carousel {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonial-box {
            background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
            backdrop-filter: blur(12px) saturate(180%);
            -webkit-backdrop-filter: blur(12px) saturate(180%);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            padding: 40px 60px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            position: relative;
            width: 100%;
            min-height: 280px;
            max-width: 700px;
            margin: 0 auto;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .testimonial-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        }


        /* Hide arrows by default */
        /* General Arrow Style (desktop only) */
        .arrow {
            background: transparent;
            border: none;
            color: black;        /* Always black */
            font-size: 34px;
            width: 50px;
            height: 50px;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0;          /* Hidden until hover */
            pointer-events: none;
        }

        .testimonial-carousel:hover .arrow {
            opacity: 1;
            pointer-events: auto;
        }

        .left-arrow { left: -25px; }
        .right-arrow { right: -25px; }

        .arrow:hover {
            text-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
            transform: scale(1.1) translateY(-50%);
        }

        /* Hide arrows on touch devices (mobile & tablets) */
        @media (hover: none) and (pointer: coarse) {
            .arrow {
                display: none !important;
            }
        }

        .testimonial-text {
            font-size: 1.05rem;
            line-height: 1.6;
            color: #333;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: 700;   /* Bold */
            font-size: 1.1rem;
            color: #1a2b4c;     /* Darker blue to match theme */
            margin-top: 15px;
        }

        .testimonial-company {
            font-weight: 600;   /* Semi-bold */
            font-size: 1rem;
            color: #444;        /* Slightly lighter than author */
            font-style: italic; /* Optional - adds differentiation */
            margin-top: 5px;
        }



        .testimonial-dots {
            margin-top: 20px;
        }

        .testimonial-dot {
            height: 10px;
            width: 10px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .testimonial-dot.active {
            background-color: #1a2b4c;
        }

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

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

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Scroll animations */
        .scroll-reveal {
          opacity: 0;
          transition: all 0.8s ease-out;
        }

        .scroll-reveal[data-reveal="up"] {
          transform: translateY(50px);
        }
        .scroll-reveal[data-reveal="down"] {
          transform: translateY(-50px);
        }
        .scroll-reveal[data-reveal="left"] {
          transform: translateX(-60px);
        }
        .scroll-reveal[data-reveal="right"] {
          transform: translateX(50px);
        }

        /* Revealed state */
        .scroll-reveal.revealed {
          opacity: 1;
          transform: translateX(0) translateY(0);
        }

        @media (prefers-reduced-motion: reduce) {
            .animate-fadeInUp,
            .scroll-reveal,
            .help-card:hover .card-inner {
                animation: none;
                transform: none;
                transition: none;
            }
        }

        /* Loading and Message States */
        .loading {
            display: none;
            text-align: center;
            padding: 1rem;
            color: #3b82f6;
        }

        .sent-message,
        .error-message {
            display: none;
            padding: 1rem;
            margin-top: 1rem;
            border-radius: 8px;
            text-align: center;
        }

        .sent-message {
            background: #d1fae5;
            color: #065f46;
        }

        .error-message {
            background: #fee2e2;
            color: #991b1b;
        }

        /* Responsive Design */
        
        @media (max-width: 768px) {

            .hero {
                height: 70vh;
                padding: 40px 20px;
                text-align: center;
            }

            .hero-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .hero-text, .hero-visual {
                flex: 1 1 100%;
                max-width: 100%;
            }

            .hero-cta {
                display: flex;
                flex-direction: column;
                gap: 15px;
                align-items: center;
                margin-top: 25px;
            }

            .btn-primary,
            .btn-secondary {
                width: 90%;
                max-width: 300px;
                margin-right: 0;
                text-align: center;
            }

            .service-container {
                flex-direction: column;
                align-items: center;
                padding: 20px;
                height: auto;
            }

            /* Service intro properly fits mobile view */
            .service-intro {
                position: relative;
                top: 0;
                left: 0;
                width: 100%;
                padding: 20px 15px;
                text-align: center;
            }

            .service-heading h2 {
                font-size: 2rem;
                border-left: none;
                padding-left: 0;
                text-align: center;
                transform: none;
                opacity: 1;
            }

            .service-tagline {
                font-size: 14px;
                margin: 10px 0;
                padding-left: 0;
            }

           .explore-btn {
                margin-top: 2rem;
                text-align: center;
                flex-direction: row;
                justify-content: center;
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
                gap: 0.4rem;
                width: auto;
                white-space: nowrap;
            }

            .explore-btn::after {
                font-size: 1.2rem;
            }

            .read-more {
                position: relative;
                right: 0;
                margin-top: 10px;
                display: inline-block;
                font-size: 14px;
                padding: 8px 16px;
            }

            .service-background {
                position: relative;
                width: 100%;
                height: 180px;
                background-size: cover;
                margin-bottom: 20px;
            }

            .service-content {
                position: relative;
                bottom: 0;
                left: 0;
                width: 100%;
                padding: 15px;
            }

            .slider-controls {
                position: relative;   /* in mobile, stack it under content */
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                justify-content: center;
                margin-top: 20px;
                box-shadow: none;
                padding: 10px 20px;
            }

            .why-choose-container {
                margin: 0 auto;
                flex-direction: column;
                min-height: auto;
            }

            .why-choose-image,
            .why-choose-content {
                max-width: 100%;
                flex: 1 1 100%;
            }

            .why-choose-image {
                height: 250px;
            }

            .why-choose-image img {
                object-fit: cover;
                height: 100%;
            }

            .why-choose-content {
                padding: 40px 20px;
                gap: 20px;
            }

            .ribbon {
                width: 100%;
                margin-left: 0 !important;
                align-self: center;
            }

            .ribbon.left,
            .ribbon.right {
                margin-left: 0 !important;
            }

            .why-choose-heading h2 {
                font-size: 2rem;
                opacity: 1;
                transform: translateX(0);
            }

            .ribbon h3 {
                font-size: 1.1rem;
            }

            .ribbon p {
                font-size: 0.9rem;
            }          

            .industries-section {
                padding: 2rem 1rem;
            }

            .industry-heading h1 {
                font-size: 2rem;
            }

            .industry-buttons {
                flex-direction: column;
                align-items: center;
            }

            .industry-card {
                width: 100%;
                height: 200px;
                margin: 0;
            }

            .industries-cards {
                display: flex;
                justify-content: center;
                gap: 1rem;
                flex-wrap: wrap;
                max-width: 450px; /* Limit overall width */
                margin: 0 auto;
            }

            .industry-card:nth-child(odd),
            .industry-card:nth-child(even) {
                margin-top: 0;
                margin-bottom: 0;
            }
            .testimonial-box {
                padding: 30px 20px;
                min-height: 300px;     /* Keeps height uniform on mobile too */
                max-width: 90%;
            }

            .testimonial-carousel {
                flex-direction: column;
                align-items: center;
            }

            .testimonial-arrows-mobile {
                display: flex;
                justify-content: center;
                gap: 15px;
                margin-top: 15px;
            }

            .testimonial-slider {
            flex-direction: row;
            flex-wrap: nowrap;
            }

            .testimonial-card {
            min-width: 100% !important; /* One card per screen */
            box-sizing: border-box;
            padding: 1rem;
            text-align: center;
            }

            .testimonial-text {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1rem;
            }

            .testimonial-author {
            font-size: 1rem;
            }

            .testimonial-dots {
            gap: 0.5rem;
            margin-top: 1.5rem;
            }

            .section-title {
                font-size: 24px;
            }

            .section-subtitle {
                font-size: 0.9rem;
            }

        }

        @media (max-width: 1024px)and (min-width: 769px) {

            .service-content {
                left: 40%;
                transform: translateX(-50%);
                width: 50%;
                padding: 20px;
                bottom: -60px;
            }

            .read-more {
                position: relative;
                right: 0;
                margin-top: 10px;
                display: inline-block;
            }

           .slider-controls {
                bottom: 20px;    /* stays bottom */
                left: 80%;
                transform: translateX(-50%);
                padding: 10px 24px;
                gap: 6px;
            }

            .slider-controls button {
                font-size: 28px;
                padding: 4px 6px;
            }

            .slider-controls span {
                font-size: 28px;
            }

            .slider-controls .service-dot {
                width: 12px;
                height: 12px;
            }


            .industry-heading h1 {
                font-size: 2.5rem;
            }

            .industry-card {
                width: 30%;  /* 3 cards per row with spacing */
                height: 200px;
            }

            .industries-cards {
                justify-content: space-between;
                padding: 0 1rem;
            }

            .industry-card:nth-child(odd),
            .industry-card:nth-child(even) {
                margin-top: 0;
                margin-bottom: 0;
            }

        
        }

        @media (min-width: 768px) {

            .ribbon {
                width: 80%;
                margin-left: 0 !important;
                align-self: center;
            }
            .testimonial-box {
                position: relative;
            }
        }

