  :root {
            --gke-blue: #084298;
            --gke-orange: #ff8c00;
            --white: #ffffff;
            --dark-navy: #020d1a;
             --text-gray: #b3b9c1;
                --unique-gradient: linear-gradient(160deg, var(--dark-navy) 0%, var(--gke-blue) 100%);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: #f4f7fa;
        }

        /* --- Navbar Main --- */
        .navbar {
            background-color: var(--white);
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            border-bottom: 4px solid var(--gke-blue);
        }

        /* Logo Styling */
        .logo { display: flex; align-items: center; text-decoration: none; gap: 10px; }
        .logo img { height: 55px; width: auto; }
        .logo-name .main-t { color: var(--gke-blue); font-weight: 800; font-size: 18px; line-height: 1.1; display: block; }
        .logo-name .sub-t { color: var(--gke-orange); font-size: 10px; font-weight: 700; text-transform: uppercase; }

        /* --- Navigation Links --- */
        .nav-menu { display: flex; list-style: none; gap: 10px; }
        .nav-item { position: relative; padding: 25px 0; }
        .nav-link {
            text-decoration: none; color: var(--dark-navy); font-weight: 600;
            font-size: 15px; padding: 10px 15px; transition: var(--transition);
            display: flex; align-items: center; gap: 6px; border-radius: 4px;
        }
        .nav-link:hover { color: var(--gke-orange); background: rgba(0,0,0,0.02); }

        /* Mega Menu Dropdown (Desktop) */
        .mega-menu {
            position: absolute; top: 80px; left: 50%; transform: translateX(-50%) translateY(15px);
            width: 240px; background: var(--white); box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border-top: 3px solid var(--gke-orange); border-radius: 0 0 10px 10px;
            padding: 10px 0; opacity: 0; visibility: hidden; transition: var(--transition);
        }
        .nav-item:hover .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
        
        .mega-menu a {
            display: block; padding: 12px 20px; text-decoration: none;
            color: var(--dark-navy); font-size: 14px; font-weight: 500;
            border-bottom: 1px solid #f9f9f9;
        }
        .mega-menu a:hover { background: #f8f9fa; color: var(--gke-orange); padding-left: 25px; }
        .mega-menu a:last-child { border: none; }

        /* --- Hamburger Icon --- */
        .hamburger { display: none; cursor: pointer; width: 28px; height: 20px; position: relative; }
        .hamburger span {
            display: block; width: 100%; height: 3px; background: var(--gke-blue);
            border-radius: 10px; position: absolute; transition: 0.3s;
        }
        .hamburger span:nth-child(1) { top: 0; }
        .hamburger span:nth-child(2) { top: 8px; }
        .hamburger span:nth-child(3) { top: 16px; }

        .hamburger.active span:nth-child(1) { transform: rotate(45deg); top: 8px; }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg); top: 8px; }

    /* --- Main Hero Section --- */
        .hero {
            width: 100%;
            height: 100vh;
            min-height: 600px;
            background-color: var(--gke-blue);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        /* Moving Background Shapes */
        .moving-blob {
            position: absolute;
            background: var(--gke-orange);
            filter: blur(80px);
            border-radius: 50%;
            opacity: 0.2;
            z-index: 1;
            animation: move 15s infinite alternate;
        }

        .blob-1 { width: 400px; height: 400px; top: -100px; right: -50px; }
        .blob-2 { width: 300px; height: 300px; bottom: -50px; left: -50px; animation-delay: -5s; }

        @keyframes move {
            0% { transform: translate(0, 0); }
            100% { transform: translate(100px, 50px); }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            padding: 0 5%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 40px;
            position: relative;
            z-index: 10;
        }

        /* --- Content Area --- */
        .hero-content {
            color: var(--white);
        }

        .hero-tag {
            display: inline-block;
            background: var(--gke-orange);
            color: var(--white);
            padding: 6px 15px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
            animation: slideInLeft 0.8s ease;
        }

        .hero-content h1 {
            font-size: clamp(28px, 6vw, 56px);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 20px;
            animation: slideInLeft 1s ease;
        }

        .hero-content h1 span {
            color: var(--gke-orange);
        }

        .hero-content p {
            font-size: clamp(14px, 2vw, 18px);
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 35px;
            line-height: 1.6;
            max-width: 500px;
            animation: slideInLeft 1.2s ease;
        }

        /* Moving CTA Buttons */
        .btn-group {
            display: flex;
            gap: 15px;
            animation: slideInLeft 1.4s ease;
        }

        .btn {
            padding: 14px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            transition: var(--transition);
            display: inline-block;
        }

        .btn-orange {
            background-color: var(--gke-orange);
            color: var(--white);
            border: 2px solid var(--gke-orange);
        }

        .btn-orange:hover {
            background-color: transparent;
            color: var(--white);
            transform: translateY(-5px);
        }

        .btn-white {
            border: 2px solid var(--white);
            color: var(--white);
        }

        .btn-white:hover {
            background-color: var(--white);
            color: var(--gke-blue);
            transform: translateY(-5px);
        }

        /* --- Visual Area (Floating Image) --- */
        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            animation: zoomIn 1.5s ease;
        }

        .image-card {
            width: 100%;
            max-width: 480px;
            height: 480px;
            background: url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?auto=format&fit=crop&w=1000&q=80');
            background-size: cover;
            background-position: center;
            border-radius: 30px;
            border: 10px solid rgba(255, 255, 255, 0.1);
            position: relative;
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
            animation: float 4s infinite ease-in-out;
        }

        /* Tech Circle Overlay */
        .tech-circle {
            position: absolute;
            width: 120px;
            height: 120px;
            background: var(--white);
            border-radius: 50%;
            bottom: -30px;
            right: -30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--gke-blue);
            font-weight: 800;
            font-size: 12px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            text-align: center;
            padding: 10px;
            border: 4px solid var(--gke-orange);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes zoomIn {
            from { opacity: 0; transform: scale(0.8); }
            to { opacity: 1; transform: scale(1); }
        }
         /* Section Container */
        .product-section {
            padding: 80px 0; /* Vertical padding */
            background-color: var(--bg-gray);
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .container-h {
            max-width: 1200px;
            width: 100%;
            padding: 0 20px;
            display: flex;
            flex-direction: column; /* Content Top, Cards Bottom */
            align-items: center; /* Center everything horizontally */
        }

        /* --- Header is now perfectly centered at the top --- */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            width: 100%;
        }

        .section-header h2 {
            font-size: clamp(26px, 5vw, 40px);
            color: var(--dark-navy);
            font-weight: 800;
            margin-bottom: 10px;
        }

        .section-header h2 span {
            color: var(--gke-blue);
        }

        .section-header .line {
            width: 80px;
            height: 4px;
            background: var(--gke-orange);
            margin: 0 auto;
            border-radius: 10px;
        }

        /* --- Grid Layout Fixed & Centered --- */
        .product-grid {
            display: grid;
            /* Responsively creates columns, min-width 280px for 320px safety */
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
            gap: 30px;
            width: 100%;
            justify-content: center; /* Centers cards if they don't fill the row */
            justify-items: center;
        }

        /* --- Card Design --- */
        .product-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(8, 66, 152, 0.05);
            height: 100%;
            width: 100%; /* Important for grid */
            max-width: 360px; /* Limits card size on desktop */
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(8, 66, 152, 0.12);
            border-color: var(--gke-blue);
        }

        .card-img-box {
            width: 100%;
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .card-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .product-card:hover .card-img-box img {
            transform: scale(1.1);
        }

        .category-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--gke-orange);
            color: var(--white);
            padding: 5px 15px;
            font-size: 11px;
            font-weight: 700;
            border-radius: 50px;
            z-index: 2;
            text-transform: uppercase;
        }

        .card-content {
            padding: 25px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            text-align: left; /* Text inside card is left-aligned for readability */
        }

        .card-content h3 {
            font-size: 20px;
            color: var(--gke-blue);
            margin-bottom: 12px;
            font-weight: 700;
        }

        .card-content p {
            font-size: 14px;
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .feat-list {
            list-style: none;
            margin-bottom: 25px;
        }

        .feat-list li {
            font-size: 13px;
            color: #666;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .feat-list li::before {
            content: "\f058";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--gke-orange);
        }

        .card-btn {
            text-decoration: none;
            color: var(--white);
            background: var(--gke-blue);
            padding: 12px 25px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 14px;
            text-align: center;
            transition: 0.3s;
            margin-top: auto;
            display: block;
        }

        .card-btn:hover {
            background: var(--gke-orange);
            box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
        }
 .st-services-wrap {
            padding: 80px 0;
            background-color: var(--st-light-gray);
            overflow: hidden;
        }

        .st-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- Unique Header Style --- */
        .st-section-head {
            text-align: center;
            margin-bottom: 60px;
        }

        .st-section-head h2 {
            font-size: clamp(26px, 5vw, 42px);
            color: var(--dark-navy);
            font-weight: 800;
            text-transform: uppercase;
        }

        .st-section-head h2 span {
            color: var(--gke-blue);
        }

        .st-section-head .st-line {
            width: 80px;
            height: 4px;
            background: var(--gke-orange);
            margin: 15px auto;
            border-radius: 10px;
        }

        /* --- Unique Service Grid --- */
        .st-service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            justify-content: center;
        }

        /* --- Unique Service Card --- */
        .st-service-item {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            display: flex;
            flex-direction: column;
            border-bottom: 4px solid transparent;
        }

        .st-service-item:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(8, 66, 152, 0.12);
            border-bottom: 4px solid var(--gke-orange);
        }

        /* Image Box with Scale Animation */
        .st-img-holder {
            width: 100%;
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .st-img-holder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .st-service-item:hover .st-img-holder img {
            transform: scale(1.1);
        }

        /* Badge on Image */
        .st-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--gke-blue);
            color: var(--white);
            padding: 5px 15px;
            font-size: 11px;
            font-weight: 700;
            border-radius: 50px;
            z-index: 2;
        }

        /* Content Body */
        .st-content-body {
            padding: 30px;
            text-align: center;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .st-content-body h3 {
            font-size: 22px;
            color: var(--gke-blue);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .st-content-body p {
            font-size: 14px;
            color: #555;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        /* --- Unique Anchor Tag Button --- */
        .st-btn-link {
            text-decoration: none;
            color: var(--white);
            background: var(--gke-blue);
            padding: 12px 25px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            transition: 0.3s;
            margin-top: auto;
            display: inline-block;
            border: 2px solid var(--gke-blue);
        }

        .st-btn-link:hover {
            background: transparent;
            color: var(--gke-blue);
        }
            /* --- Unique Section Wrapper --- */
        .sai-wcu-section {
            padding: 100px 0;
            background-color: var(--white);
            overflow: hidden;
            position: relative;
        }

        .sai-wcu-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            gap: 60px;
        }

        /* --- Unique Visual Side (Left) --- */
        .sai-wcu-visual {
            flex: 1;
            position: relative;
            display: flex;
            justify-content: center;
        }

        /* Unique Image Style with Cut Corner */
        .sai-wcu-image-frame {
            width: 100%;
            height: 500px;
            position: relative;
            border-radius: 40px 5px 40px 5px;
            overflow: hidden;
            border: 10px solid var(--sai-light);
            box-shadow: 0 25px 50px rgba(8, 66, 152, 0.15);
        }

        .sai-wcu-image-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        /* Floating Trust Box */
        .sai-wcu-experience-box {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--gke-blue);
            color: var(--white);
            padding: 25px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
            animation: sai-float 4s infinite ease-in-out;
            z-index: 5;
        }

        @keyframes sai-float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .sai-wcu-experience-box b { font-size: 32px; display: block; color: var(--gke-orange); }
        .sai-wcu-experience-box span { font-size: 12px; font-weight: 600; text-transform: uppercase; }

        /* --- Unique Content Side (Right) --- */
        .sai-wcu-info {
            flex: 1.2;
        }

        .sai-wcu-subtitle {
            color: var(--gke-orange);
            font-weight: 800;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .sai-wcu-subtitle::before {
            content: '';
            width: 30px;
            height: 2px;
            background: var(--gke-orange);
        }

        .sai-wcu-info h2 {
            font-size: clamp(28px, 5vw, 44px);
            color: var(--dark-navy);
            line-height: 1.1;
            margin-bottom: 25px;
            font-weight: 900;
        }

        .sai-wcu-info h2 span { color: var(--gke-blue); }

        .sai-wcu-info p {
            color: #555;
            line-height: 1.8;
            font-size: 16px;
            margin-bottom: 35px;
        }

        /* Features Grid */
        .sai-wcu-points {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .sai-wcu-card {
            background: var(--sai-light);
            padding: 25px 20px;
            border-radius: 15px;
            transition: 0.4s;
            border-bottom: 3px solid transparent;
        }

        .sai-wcu-card:hover {
            background: var(--white);
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(8, 66, 152, 0.1);
            border-bottom: 3px solid var(--gke-orange);
        }

        .sai-wcu-card i {
            font-size: 30px;
            color: var(--gke-blue);
            margin-bottom: 15px;
            display: block;
        }

        .sai-wcu-card h5 {
            font-size: 16px;
            color: var(--dark-navy);
            font-weight: 700;
        }

        /* review section css start */
        /* Section Styling */
        .review-section {
            background-color: var(--white);
            padding: 50px 0;
            overflow: hidden; 
        }

        .section-header {
            text-align: center;
            color: var(--dark-navy);
            margin-bottom: 40px;
            padding: 0 15px;
        }

        .section-header h2 {
            font-size: 28px;
            margin-bottom: 10px;
        }

        .section-header h2 span {
            color: var(--gke-orange);
        }

        .section-header p {
            color: #555;
        }

        /* Slider Container */
        .slider-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 15px 0; 
        }

        /* Track that moves */
        .slider-track {
            display: flex;
            gap: 20px;
            width: max-content;
            /* Animation for moving continuously */
            animation: scroll 25s linear infinite;
        }

        /* Pause animation on hover */
        .slider-track:hover {
            animation-play-state: paused;
        }

        /* Individual Review Card */
        .review-card {
            background-color: var(--white);
            width: 280px; /* Perfect for 320px screens */
            border-radius: 12px;
            padding: 25px 20px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid #f0f0f0; 
            border-bottom: 5px solid var(--gke-orange);
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .service-tag {
            background-color: var(--gke-blue);
            color: var(--white);
            font-size: 12px;
            font-weight: 600;
            padding: 5px 10px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 15px;
            width: max-content;
        }

        .stars {
            color: var(--gke-orange);
            font-size: 14px;
            margin-bottom: 15px;
        }

        .review-text {
            color: #444;
            font-size: 14px;
            line-height: 1.6;
            font-style: italic;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .client-info {
            display: flex;
            align-items: center;
            gap: 12px;
            border-top: 1px solid #eee;
            padding-top: 15px;
        }

        /* Updated Client Image Styling */
        .client-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            overflow: hidden; /* Keeps image inside the circle */
            border: 2px solid var(--gke-blue); /* Professional ring around image */
            flex-shrink: 0;
        }

        .client-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Prevents image from stretching */
            display: block;
        }

        .client-details h4 {
            color: var(--dark-navy);
            font-size: 15px;
            margin-bottom: 2px;
        }

        .client-details p {
            color: #666;
            font-size: 12px;
        }

        /* Keyframes for infinite scrolling */
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-50% - 10px));
            }
        }
        /* review section css end */

        /* footer css start  */
        /* Footer Base Styling */
.site-footer {
    background-color: var(--dark-navy);
    color: var(--text-gray);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 4px solid var(--gke-orange);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    display: grid;
    /* Grid layout for Desktop: 4 columns */
    grid-template-columns: 2.5fr 1fr 1.5fr 1.5fr; /* Pehla column thoda bada kiya image ke liye */
    gap: 40px;
}

/* =========================================
   NEW: Logo & Brand Styling
   ========================================= */
.footer-brand-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    margin-bottom: 20px;
}

/* Image settings */
.footer-logo-img {
    width: 60px; /* Perfect size for footer */
    height: 60px;
    object-fit: contain;
    background-color: var(--white); /* White background agar logo transparent hai */
    padding: 5px;
    border-radius: 8px;
    border: 2px solid var(--gke-orange);
}

.footer-logo-name {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.sub-logo-name {
    display: block;
    color: var(--gke-orange);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

/* ========================================= */

.company-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Contact Info Styling */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.contact-info i {
    color: var(--gke-orange);
    font-size: 16px;
    margin-top: 3px;
}

.contact-info a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--white);
}

/* Word break for long email to fit 320px screens */
.email-text {
    word-break: break-all;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background-color: var(--gke-orange);
    border-color: var(--gke-orange);
    transform: translateY(-3px);
}

/* Columns 2, 3, 4: Links Styling */
.links-col h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.links-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gke-orange);
}

.links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-col ul li {
    margin-bottom: 12px;
}

.links-col ul li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.links-col ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
    color: var(--gke-orange);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.links-col ul li a:hover {
    color: var(--gke-orange);
    transform: translateX(5px);
}

/* Footer Bottom (Copyright) */
.footer-bottom {
    background-color: #010811;
    padding: 20px;
    text-align: center;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
        /* footer css end */
        /* contact form css start */
        .contact-section {
    background-color: var(--bg-light);
    padding: 60px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Styling */
.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    color: var(--dark-navy);
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-header h2 span {
    color: var(--gke-orange);
}

.contact-header p {
    color: #666;
    font-size: 15px;
}

/* Wrapper Layout */
.contact-wrapper {
    background-color: var(--white);
    max-width: 1000px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    overflow: hidden; /* Keeps child radius intact */
}

/* Left Box: Info Styling */
.contact-info-box {
    background-color: var(--dark-navy);
    color: var(--white);
    padding: 40px;
    width: 40%;
    position: relative;
    overflow: hidden;
}

.contact-info-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--white);
}

.contact-info-box > p {
    color: #b3b9c1;
    font-size: 14px;
    margin-bottom: 40px;
    line-height: 1.5;
}

.info-details {
    list-style: none;
    position: relative;
    z-index: 2;
}

.info-details li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.info-details i {
    font-size: 20px;
    color: var(--gke-orange);
    margin-top: 5px;
}

.info-details h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--white);
}

.info-details a, .info-details p {
    color: #b3b9c1;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.info-details a:hover {
    color: var(--gke-orange);
}

/* Fix for long email on 320px */
.email-wrap {
    word-break: break-all; 
}

/* Decorative circle inside info box */
.circle-decor {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 140, 0, 0.1); /* Orange transparent */
    border-radius: 50%;
    z-index: 1;
}

/* Right Box: Form Styling */
.contact-form-box {
    padding: 40px;
    width: 60%;
    background-color: var(--white);
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-row {
    display: flex;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.full-width {
    width: 100%;
}

.input-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 6px;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    background-color: #fafafa;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    outline: none;
}

/* Input Focus Effect */
.input-group input:focus, 
.input-group textarea:focus {
    border-color: var(--gke-orange);
    background-color: var(--white);
    box-shadow: 0 0 5px rgba(255, 140, 0, 0.2);
}

/* Submit Button */
.submit-btn {
    background-color: var(--gke-orange);
    color: var(--white);
    border: none;
    padding: 14px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: max-content;
}

.submit-btn:hover {
    background-color: var(--gke-blue);
    transform: translateY(-2px);
}


        /* contact form css end */
        /* about us css start */
        /* --- Scoped Reset for Unique Design --- */
.sai-about-wrapper, 
.sai-about-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- Header Wrapper (Light & Clean Theme) --- */
.sai-about-wrapper {
    position: relative;
    width: 100%;
    height: 400px; /* Desktop Height */
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(179, 185, 193, 0.3); /* Soft gray border */
}

/* --- Background Grid & Sun/Sky Shapes --- */
.sai-about-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Clean Professional Grid */
.sai-about-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(8, 66, 152, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(8, 66, 152, 0.05) 1px, transparent 1px);
    background-size: 35px 35px;
}

/* Solar Energy Glows (Sun & Tech) */
.sai-about-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(55px);
    opacity: 0.15;
}

.sai-circle-blue {
    width: 350px;
    height: 350px;
    background: var(--gke-blue); /* Tech / Sky */
    top: -100px;
    left: -100px;
}

.sai-circle-orange {
    width: 280px;
    height: 280px;
    background: var(--gke-orange); /* Solar / Sun */
    bottom: -80px;
    right: -50px;
}

/* --- Content Styling --- */
.sai-about-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 20px;
    animation: saiSlideUp 0.8s var(--transition) forwards;
}

/* --- Company Badge --- */
.sai-about-badge {
    display: inline-block;
    padding: 6px 18px;
    background-color: rgba(255, 140, 0, 0.1); /* Soft Orange */
    color: var(--gke-orange);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 140, 0, 0.25);
    text-transform: uppercase;
}

/* --- Solar Typography --- */
.sai-about-title {
    font-size: 3.5rem; /* 56px */
    color: var(--dark-navy); /* Dark text for clean read */
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 15px;
}

.sai-about-title span {
    color: var(--gke-blue);
}

.sai-about-title .sai-about-dot {
    color: var(--gke-orange);
}

.sai-about-subtitle {
    font-size: 1.15rem; /* ~18.5px */
    color: var(--dark-navy);
    opacity: 0.75; 
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto 25px auto;
}

/* --- Breadcrumbs --- */
.sai-about-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
}

.sai-about-breadcrumbs a {
    color: var(--gke-blue);
    text-decoration: none;
    transition: var(--transition);
}

.sai-about-breadcrumbs a:hover {
    color: var(--gke-orange);
}

.sai-about-breadcrumbs svg {
    width: 14px;
    height: 14px;
    color: var(--text-gray);
}

.sai-about-breadcrumbs .sai-about-current {
    color: var(--text-gray);
    font-weight: 500;
}

/* --- Smooth Animation --- */
@keyframes saiSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

  .stm-solar-section {
            padding: 100px 5%;
            background: var(--bg-light);
            overflow: hidden;
            position: relative;
        }

        /* Unique Geometric Background Element */
        .stm-solar-section::before {
            content: '';
            position: absolute;
            top: 0; right: 0;
            width: 300px; height: 300px;
            background: var(--gke-blue);
            opacity: 0.05;
            clip-path: circle(50% at 100% 0);
        }

        .stm-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: center;
        }

        /* Unique Image Frame */
        .stm-image-wrapper {
            position: relative;
            z-index: 1;
        }

        .stm-main-img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: var(--unique-radius);
            box-shadow: 25px 25px 0px var(--gke-orange);
            transition: transform 0.5s ease;
        }

        .stm-image-wrapper:hover .stm-main-img {
            transform: translate(-10px, -10px);
        }

        /* Content Styling */
        .stm-sub-heading {
            color: var(--gke-orange);
            font-weight: 800;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-size: 14px;
            display: block;
            margin-bottom: 10px;
        }

        .stm-title {
            font-size: clamp(24px, 5vw, 42px);
            color: var(--gke-blue);
            line-height: 1.1;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .stm-address-card {
            background: var(--white);
            padding: 15px 20px;
            border-left: 5px solid var(--gke-orange);
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .stm-address-card i {
            font-size: 24px;
            color: var(--gke-blue);
        }

        .stm-address-card p {
            margin: 0;
            font-size: 14px;
            color: #444;
        }

        /* Features Grid - Unique Look */
        .stm-features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .stm-feature-item {
            padding: 20px;
            background: var(--white);
            border-radius: 15px;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
        }

        .stm-feature-item:hover {
            border-bottom: 3px solid var(--gke-orange);
            background: var(--dark-navy);
        }

        .stm-feature-item:hover h4, 
        .stm-feature-item:hover p {
            color: var(--white);
        }

        .stm-feature-item h4 {
            color: var(--gke-blue);
            margin-bottom: 8px;
            font-size: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .stm-feature-item p {
            font-size: 13px;
            color: #666;
            margin: 0;
        }
        
        /* about us css end */
        /* ongrid css start  */
         /* Main Header Section */
        .ongrid-hero {
            width: 100%;
            min-height: 400px; /* Fixed height for desktop as requested */
            background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 20px 8%;
        }

        /* Abstract Background Decor */
        .ongrid-hero::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 300px;
            height: 300px;
            background: var(--gke-blue);
            opacity: 0.05;
            border-radius: 50%;
        }

        .header-container {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 40px;
            align-items: center;
            max-width: 1200px;
            width: 100%;
            z-index: 2;
        }

        /* Text Side */
        .header-content .badge {
            display: inline-block;
            background: var(--gke-blue);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .header-content h1 {
            font-size: clamp(28px, 4vw, 42px);
            color: var(--dark-navy);
            line-height: 1.2;
            margin-bottom: 15px;
        }

        .header-content h1 span {
            color: var(--gke-orange);
        }

        .header-content p {
            color: #444;
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 25px;
            max-width: 500px;
        }

        /* CTA Button */
        .cta-group {
            display: flex;
            gap: 15px;
        }

        .btn-main {
            background: var(--gke-orange);
            color: var(--white);
            padding: 12px 25px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
            transition: all 0.3s ease;
        }

        .btn-main:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 25px rgba(255, 140, 0, 0.4);
            background: var(--gke-blue);
        }

        /* Image Side */
        .header-image {
            position: relative;
            text-align: center;
        }

        .img-wrapper {
            position: relative;
            z-index: 1;
        }

        .img-wrapper img {
            width: 100%;
            max-width: 450px;
            border-radius: 20px;
            box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
        }

        /* Grid Flow Animation Decor */
        .grid-pulse {
            position: absolute;
            bottom: -10px;
            right: -10px;
            background: var(--white);
            padding: 15px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 10px;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .grid-pulse i { color: #4caf50; font-size: 20px; }
        .grid-pulse span { font-size: 12px; font-weight: 700; color: var(--dark-navy); }

         .unique-services {
            padding: 100px 5%;
            background: #f0f3f7;
            position: relative;
            overflow: hidden;
        }

        /* Unique Background Decoration */
        .unique-services::after {
            content: 'SOLAR';
            position: absolute;
            bottom: -50px;
            right: -20px;
            font-size: 15rem;
            font-weight: 900;
            color: var(--gke-blue);
            opacity: 0.03;
            z-index: 0;
        }

        .service-title-box {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
            z-index: 1;
        }

        .service-title-box h2 {
            font-size: 2.5rem;
            color: var(--dark-navy);
            text-transform: uppercase;
        }

        .service-title-box h2 span {
            color: var(--gke-orange);
            position: relative;
        }

        /* Unique Grid Layout */
        .solar-grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* Unique Blade-Style Card */
        .blade-card {
            background: var(--card-bg);
            padding: 40px 30px;
            position: relative;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 0 40px 0 40px; /* Non-standard radius */
            border: 1px solid rgba(8, 66, 152, 0.1);
            box-shadow: 15px 15px 0px rgba(8, 66, 152, 0.03);
        }

        /* Orange accent that appears on hover */
        .blade-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 0%; height: 5px;
            background: var(--gke-orange);
            transition: width 0.4s ease;
        }

        .blade-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 30px 60px rgba(2, 13, 26, 0.1);
            border-color: var(--gke-orange);
        }

        .blade-card:hover::before {
            width: 100%;
        }

        /* Unique Icon Holder - Hexagon Shape */
        .hexagon-icon {
            width: 70px;
            height: 70px;
            background: var(--gke-blue);
            clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: all 0.5s ease;
        }

        .blade-card:hover .hexagon-icon {
            background: var(--gke-orange);
            transform: rotate(360deg);
        }

        .hexagon-icon i {
            color: var(--white);
            font-size: 30px;
        }

        .blade-card h3 {
            color: var(--gke-blue);
            font-size: 20px;
            margin-bottom: 15px;
            font-weight: 800;
        }

        .blade-card p {
            color: #555;
            font-size: 14px;
            line-height: 1.7;
        }

        /* Counter decoration */
        .card-number {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 40px;
            font-weight: 900;
            color: rgba(8, 66, 152, 0.05);
            transition: color 0.3s ease;
        }

        .blade-card:hover .card-number {
            color: rgba(255, 140, 0, 0.1);
        }


           .pricing-section {
            padding: 100px 5%;
            background: var(--bg-gradient);
            position: relative;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .pricing-header h2 {
            font-size: clamp(26px, 5vw, 40px);
            color: var(--gke-blue);
            font-weight: 800;
            text-transform: uppercase;
        }

        .pricing-header p {
            color: var(--dark-navy);
            opacity: 0.7;
            font-size: 15px;
        }

        /* Unique Pricing Grid */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Unique Card Design */
        .price-card {
            background: var(--white);
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            transition: all 0.4s ease;
            position: relative;
            border: 1px solid rgba(8, 66, 152, 0.05);
        }

        .price-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(8, 66, 152, 0.15);
        }

        /* Image Section with Curve */
        .card-img-box {
            height: 200px;
            position: relative;
            overflow: hidden;
            clip-path: ellipse(100% 100% at 50% 0%); /* Unique Curve */
        }

        .card-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .price-card:hover .card-img-box img {
            transform: scale(1.1);
        }

        /* Floating Price Tag */
        .price-tag {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 10px 25px;
            border-radius: 50px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border: 1px solid var(--gke-orange);
            z-index: 10;
        }

        .price-tag span {
            font-size: 22px;
            font-weight: 800;
            color: var(--gke-blue);
        }

        .price-tag small {
            font-size: 12px;
            color: var(--gke-orange);
            font-weight: 600;
        }

        /* Content Section */
        .card-body {
            padding: 40px 30px 30px;
            text-align: center;
        }

        .card-body h3 {
            color: var(--dark-navy);
            margin-bottom: 20px;
            font-size: 22px;
            font-weight: 700;
        }

        .feature-list {
            list-style: none;
            margin-bottom: 25px;
        }

        .feature-list li {
            font-size: 14px;
            color: #555;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .feature-list li i {
            color: #4caf50;
            font-size: 16px;
        }

        .popular-badge {
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--gke-orange);
            color: var(--white);
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 12px;
            font-weight: 700;
            z-index: 11;
        }
          .maintenance-section {
            padding: 100px 8%;
            background: #ffffff;
            overflow: hidden;
            position: relative;
        }

        /* Floating Background Element */
        .maintenance-section::before {
            content: 'SERVICE';
            position: absolute;
            top: 20px;
            left: -10px;
            font-size: 8rem;
            font-weight: 900;
            color: rgba(8, 66, 152, 0.03);
            z-index: 0;
        }

        .maint-container {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        /* Unique Image Frame with Slant */
        .maint-image-wrapper {
            position: relative;
        }

        .maint-img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 30px;
            clip-path: polygon(0 0, 100% 0%, 100% 90%, 10% 100%, 0% 100%);
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
        }

        /* Floating Stats on Image */
        .maint-experience {
            position: absolute;
            bottom: 40px;
            right: -20px;
            background: var(--gke-orange);
            color: var(--white);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 15px 30px rgba(255, 140, 0, 0.3);
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Content Styling */
        .maint-content h2 {
            font-size: clamp(24px, 4vw, 36px);
            color: var(--gke-blue);
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .maint-content p.sub-text {
            color: #555;
            margin-bottom: 40px;
            font-size: 15px;
        }

        /* Unique Step-List Design */
        .maint-steps {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .step-item {
            display: flex;
            gap: 20px;
            padding: 20px;
            background: #f8fbff;
            border-radius: 20px;
            transition: var(--transition);
            border-left: 5px solid transparent;
        }

        .step-item:hover {
            background: var(--white);
            box-shadow: 0 15px 35px rgba(8, 66, 152, 0.08);
            border-left: 5px solid var(--gke-orange);
            transform: translateX(10px);
        }

        .step-icon {
            width: 60px;
            height: 60px;
            background: var(--white);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            color: var(--gke-blue);
            font-size: 24px;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .step-item:hover .step-icon {
            background: var(--gke-blue);
            color: var(--white);
        }

        .step-text h4 {
            color: var(--dark-navy);
            margin-bottom: 5px;
            font-size: 18px;
        }

        .step-text p {
            font-size: 13px;
            color: #666;
            line-height: 1.5;
        }
        

        /* ongrid css end */
        /* product css start  */
        /* Main Product Header */
        .prod-header {
            width: 100%;
            height: 400px; /* Fixed height for desktop */
            background-color: var(--bg-light);
            background-image: radial-gradient(var(--gke-blue) 0.5px, transparent 0.5px); /* Subtle Grid Pattern */
            background-size: 30px 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
            padding: 0 8%;
        }

        .prod-container {
            max-width: 1200px;
            width: 100%;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            align-items: center;
            gap: 40px;
            z-index: 2;
        }

        /* Content Styling */
        .prod-content .prod-badge {
            display: inline-block;
            background: rgba(8, 66, 152, 0.1);
            color: var(--gke-blue);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 15px;
            border-left: 4px solid var(--gke-orange);
        }

        .prod-content h1 {
            font-size: clamp(28px, 4vw, 42px);
            color: var(--dark-navy);
            line-height: 1.1;
            margin-bottom: 15px;
            font-weight: 800;
        }

        .prod-content h1 span {
            color: var(--gke-orange);
        }

        .prod-content p {
            color: #555;
            font-size: 15px;
            margin-bottom: 25px;
            max-width: 500px;
        }

        /* Visual Styling */
        .prod-visual {
            position: relative;
            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .prod-visual img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
            animation: upDown 4s ease-in-out infinite;
        }

        @keyframes upDown {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        /* Unique Floating Tag */
        .quality-tag {
            position: absolute;
            top: 20%;
            right: 0;
            background: var(--white);
            padding: 10px 15px;
            border-radius: 12px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 3px solid var(--gke-orange);
        }

        .quality-tag i { color: #4caf50; font-size: 20px; }
        .quality-tag span { font-size: 12px; font-weight: 700; color: var(--dark-navy); }
  .stm-product-section {
            padding: 100px 5%;
            background: #f0f4f8;
            overflow: hidden;
        }

        .stm-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* --- Unique Card Architecture --- */
        .shard-card {
            background: var(--white);
            position: relative;
            border-radius: 50px 5px 50px 5px; /* Unique asymmetrical corners */
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            padding-bottom: 30px;
            box-shadow: 10px 10px 30px rgba(8, 66, 152, 0.05);
            border: 1px solid rgba(8, 66, 152, 0.1);
        }

        /* Unique Shard Top Decoration */
        .shard-card::before {
            content: '';
            position: absolute;
            top: -10px; right: 20px;
            width: 60px; height: 15px;
            background: var(--gke-orange);
            clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
            z-index: 2;
        }

        .shard-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 40px 80px rgba(2, 13, 26, 0.15);
            border-color: var(--gke-orange);
        }

        /* Angular Image Container */
        .shard-img-wrap {
            height: 220px;
            background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%); /* Diagonal cut bottom */
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            border-radius: 50px 5px 0 0;
            position: relative;
            overflow: hidden;
        }

        .shard-img-wrap img {
            max-width: 180px;
            filter: drop-shadow(0 15px 15px rgba(0,0,0,0.1));
            transition: transform 0.5s ease;
            z-index: 2;
        }

        .shard-card:hover .shard-img-wrap img {
            transform: scale(1.1) rotate(2deg);
        }

        /* Floating Price Tag */
        .shard-price-capsule {
            position: absolute;
            top: 190px;
            right: 20px;
            background: var(--gke-blue);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 18px;
            box-shadow: 0 10px 20px rgba(8, 66, 152, 0.3);
            z-index: 10;
        }

        .shard-price-capsule span {
            font-size: 11px;
            display: block;
            text-decoration: line-through;
            opacity: 0.7;
            font-weight: 400;
            margin-bottom: -5px;
        }

        /* Content Styling */
        .shard-content {
            padding: 40px 25px 10px;
        }

        .shard-content h3 {
            color: var(--dark-navy);
            font-size: 22px;
            margin-bottom: 15px;
            font-weight: 800;
        }

        .spec-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 25px;
        }

        .spec-pill {
            background: #f8fafc;
            padding: 6px 10px;
            border-radius: 8px;
            font-size: 11px;
            color: #64748b;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
            border: 1px solid #e2e8f0;
        }

        .spec-pill i { color: var(--gke-orange); }

        /* Unique Enquiry Button */
        .shard-btn {
            width: 100%;
            background: none;
            border: 2px solid var(--gke-blue);
            color: var(--gke-blue);
            padding: 12px;
            border-radius: 12px 0 12px 0;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .shard-btn:hover {
            background: var(--gke-blue);
            color: var(--white);
            box-shadow: 0 10px 20px rgba(8, 66, 152, 0.2);
        }
         
           .system-section {
            padding: 80px 5%;
            background-color: #f4f7fa;
        }

        .system-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .system-header h2 {
            font-size: clamp(24px, 5vw, 40px);
            color: var(--gke-blue);
            font-weight: 900;
            text-transform: uppercase;
        }

        .system-header span { color: var(--gke-orange); }

        /* Unique Card Container */
        .system-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Unique Shard Design Card */
        .system-card {
            background: var(--white);
            border-radius: 30px;
            overflow: hidden;
            position: relative;
            box-shadow: var(--card-shadow);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(8, 66, 152, 0.05);
        }

        .system-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(8, 66, 152, 0.2);
        }

        /* Image Box */
        .system-img-box {
            height: 200px;
            overflow: hidden;
            position: relative;
            background: var(--dark-navy);
        }

        .system-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;
            transition: transform 0.6s ease;
        }

        .system-card:hover .system-img-box img {
            transform: scale(1.1);
            opacity: 1;
        }

        /* Unique Pricing Ribbon */
        .price-ribbon {
            position: absolute;
            top: 20px;
            right: -10px;
            background: var(--gke-orange);
            color: var(--white);
            padding: 8px 25px;
            font-weight: 900;
            font-size: 18px;
            box-shadow: -5px 5px 15px rgba(0,0,0,0.2);
            z-index: 5;
            border-radius: 5px 0 0 5px;
        }

        .price-ribbon::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 0;
            border-left: 10px solid #b35900;
            border-bottom: 10px solid transparent;
        }

        /* Content Area */
        .system-info {
            padding: 30px;
            text-align: center;
        }

        .system-info h3 {
            color: var(--gke-blue);
            font-size: 24px;
            margin-bottom: 15px;
            font-weight: 800;
        }

        .system-specs {
            list-style: none;
            margin-bottom: 25px;
        }

        .system-specs li {
            padding: 10px 0;
            border-bottom: 1px dashed #eee;
            color: #555;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .system-specs li i {
            color: var(--gke-orange);
        }

        /* Enquiry Button */
        .enquiry-btn {
            background: var(--gke-blue);
            color: var(--white);
            width: 100%;
            padding: 14px;
            border: none;
            border-radius: 15px;
            font-weight: 700;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .enquiry-btn:hover {
            background: var(--gke-orange);
            box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
        }

        /* product css end */
        /* contact header css  */
          /* Unique Section Wrapper */
        .stm-contact-hero {
            width: 100%;
            height: 400px; /* Exact height for desktop */
            background: var(--unique-gradient);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 10%;
            /* Unique Cut Path */
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
        }

        /* Unique Geometric Accents */
        .stm-contact-hero::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 150px;
            height: 150px;
            background: var(--gke-orange);
            opacity: 0.1;
            transform: rotate(45deg);
        }

        .stm-contact-hero::after {
            content: 'CONNECT';
            position: absolute;
            bottom: 20px;
            right: 20px;
            font-size: 8rem;
            font-weight: 900;
            color: var(--white);
            opacity: 0.03;
            letter-spacing: 10px;
            z-index: 0;
        }

        .stm-container {
            width: 100%;
            max-width: 1200px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 50px;
            z-index: 5;
        }

        /* Content Styling */
        .stm-hero-text h1 {
            font-size: clamp(32px, 5vw, 55px);
            color: var(--white);
            font-weight: 900;
            line-height: 1;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .stm-hero-text h1 span {
            color: var(--gke-orange);
            display: block;
            font-size: 0.6em;
            letter-spacing: 5px;
        }

        .stm-hero-text p {
            color: var(--text-gray);
            font-size: 15px;
            border-left: 3px solid var(--gke-orange);
            padding-left: 15px;
            max-width: 450px;
        }

        /* Visual Component */
        .stm-visual-wrap {
            position: relative;
            display: flex;
            justify-content: flex-end;
        }

        .stm-visual-wrap img {
            width: 100%;
            max-width: 400px;
            filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
            animation: stmFloat 5s ease-in-out infinite;
        }

        @keyframes stmFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(2deg); }
        }

        /* Unique Floating Info Box */
        .stm-info-box {
            position: absolute;
            bottom: -30px;
            left: 0;
            background: var(--white);
            padding: 10px 20px;
            border-radius: 5px 25px 5px 25px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
            color: var(--dark-navy);
            z-index: 10;
        }

        .stm-info-box i {
            width: 40px;
            height: 40px;
            background: var(--gke-orange);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .stm-info-box span { font-weight: 800; font-size: 13px; }

        /* contact header css end */
    /* --- Responsive Logic --- */
        @media (max-width: 1100px) {
            .logo-name .main-t { font-size: 17px; }
            .nav-link { padding: 10px 12px; font-size: 14px; }
        }

        @media (max-width: 992px) {
     /* 1. Hamburger ko display karein */
    .hamburger {
        display: block !important;
        cursor: pointer;
        z-index: 1100;
    }

    /* 2. Drawer (Sidebar) ko Vertical banayein */
    .nav-links-container {
        position: fixed;
        top: 0; 
        right: -100%; /* Default screen se bahar */
        width: 280px; /* Sidebar ki width */
        height: 100vh;
        background-color: var(--white);
        display: flex !important;
        flex-direction: column !important; /* VERTICAL ALIGNMENT */
        padding: 80px 20px 30px 20px !important;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        z-index: 1050;
        overflow-y: auto; /* Scrollable menu */
    }

    /* Jab Menu Open ho (Active Class) */
    .nav-links-container.active {
        right: 0 !important; /* Screen ke andar aa jayega */
    }

    /* 3. Menu List ko Vertical karein */
    .nav-menu {
        flex-direction: column !important; /* LINKS EK KE NICHE EK AAYENGE */
        width: 100% !important;
        gap: 0 !important;
        margin-bottom: 20px;
    }

    .nav-item {
        width: 100% !important;
        padding: 0 !important;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link {
        width: 100% !important;
        padding: 15px 10px !important;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        font-size: 16px;
        color: var(--dark-navy) !important;
    }

    /* 4. Mega Menu (Accordion Style) */
    .mega-menu {
        position: static !important; /* Desktop wali absolute position hatao */
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        background: #f9f9f9 !important;
        max-height: 0; /* Shuru mein band */
        overflow: hidden;
        padding: 0 !important;
        transition: max-height 0.3s ease-out;
        border: none !important;
    }

    /* Jab dropdown click ho */
    .has-dropdown.active-menu .mega-menu {
        max-height: 500px; /* Khul jayega */
        padding: 10px 0 !important;
    }

    .mega-menu a {
        padding: 12px 25px !important;
        border-bottom: 1px solid #eee;
        font-size: 14px;
    }

    /* Hamburger Animation to X */
    .hamburger.active span:nth-child(1) { transform: rotate(45deg); top: 8px; }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg); top: 8px; }


            .diagonal-bg { display: none; }
            .hero-section { background: linear-gradient(var(--dark-navy), var(--gke-blue)); height: auto; padding: 100px 0; }
            .container { grid-template-columns: 1fr; text-align: center; gap: 60px; }
            .hero-desc { margin-left: auto; margin-right: auto; border-left: none; border-bottom: 4px solid var(--gke-orange); padding: 0 0 15px; }
            .cta-group { justify-content: center; }
            .visual-box { width: 100%; max-width: 600px; margin: 0 auto; }
            .info-card { left: 50%; transform: translateX(-50%); top: -40px; }
              .product-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
            .st-service-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
            .sai-wcu-container {
                flex-direction: column;
                text-align: center;
                gap: 50px;
            }
            .sai-wcu-visual {
                order: 1; /* Image always Top on mobile */
                width: 100%;
            }
            .sai-wcu-info {
                order: 2;
                width: 100%;
            }
            .sai-wcu-subtitle { justify-content: center; }
            .sai-wcu-experience-box {
                right: 50%;
                transform: translateX(50%);
                width: 180px;
                padding: 15px;
            }
             .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
     .contact-wrapper {
        flex-direction: column; /* Stack top to bottom */
    }
    .contact-info-box, 
    .contact-form-box {
        width: 100%;
    }
    .contact-info-box {
        padding: 30px;
    }
     .stm-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
             .ongrid-hero { padding: 40px 5%; height: auto; }
            .header-container { grid-template-columns: 1fr; text-align: center; }
            .header-content p { margin: 0 auto 25px auto; }
            .cta-group { justify-content: center; }
              .maint-container { grid-template-columns: 1fr; gap: 40px; }
            .maintenance-section { padding: 60px 5%; }
              .prod-header { height: auto; padding: 50px 5%; }
            .prod-container { grid-template-columns: 1fr; text-align: center; }
            .prod-content p { margin: 0 auto 25px auto; }
            .prod-visual { height: 300px; }
             .stm-product-section { padding: 60px 5%; }
              .stm-contact-hero { height: auto; padding: 60px 5% 100px; clip-path: none; border-radius: 0 0 40px 40px; }
            .stm-container { grid-template-columns: 1fr; text-align: center; }
            .stm-hero-text p { margin: 0 auto; border-left: none; border-top: 3px solid var(--gke-orange); padding: 15px 0 0 0; }
            .stm-visual-wrap { justify-content: center; }
            .stm-info-box { position: relative; bottom: 0; margin-top: 30px; justify-content: center; }
        }
        @media (max-width: 768px) {
    .sai-about-title {
        font-size: 2.8rem;
    }
    .sai-about-subtitle {
        font-size: 1.05rem;
    }
      .unique-services { padding: 60px 20px; }
            .service-title-box h2 { font-size: 1.8rem; }
              .pricing-section { padding: 60px 5%; }
               .system-section { padding: 60px 5%; }
}

        @media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        padding: 40px 15px 30px; 
        gap: 35px;
    }
    
    .footer-brand-link {
        /* On very small screens, ensures text doesn't overflow */
        flex-wrap: nowrap; 
    }
    
    .footer-logo-img {
        width: 50px; /* Thoda chhota kiya 320px ke liye */
        height: 50px;
    }

    .footer-logo-name {
        font-size: 18px; /* Text thoda adjust kiya space ke liye */
    }
    
    .sub-logo-name {
        font-size: 12px;
    }

    .links-col h4 {
        margin-bottom: 15px;
    }

    .links-col ul li a {
        padding: 4px 0;
    }
      .contact-section {
        padding: 40px 10px; /* Reduced outer padding for 320px */
    }
    
    .contact-header h2 {
        font-size: 26px;
    }

    .contact-info-box {
        padding: 25px 20px; /* Adjusted padding */
    }

    .contact-form-box {
        padding: 25px 15px; /* Maximum space for inputs on 320px */
    }

    /* Stack input rows vertically on small screens */
    .input-row {
        flex-direction: column;
        gap: 20px;
    }

    .submit-btn {
        width: 100%; /* Full width button on mobile */
    }

    .info-details i {
        font-size: 18px;
    }

    .info-details h4 {
        font-size: 15px;
    }
}
          @media (max-width: 500px) {
            .sai-wcu-points {
                grid-template-columns: 1fr;
            }
            .sai-wcu-image-frame {
                height: 350px;
            }
        }
  @media (max-width: 480px) {
            .st-services-wrap { padding: 60px 0; }
            .st-content-body { padding: 25px 20px; }
            .st-img-holder { height: 200px; }
             .sai-about-wrapper {
        height: 350px;
    }
    .sai-about-badge {
        font-size: 11px;
        padding: 5px 14px;
        margin-bottom: 18px;
    }
    .sai-about-title {
        font-size: 2.2rem;
    }
    .sai-about-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    .stm-solar-section {
                padding: 40px 15px;
            }
            .stm-main-img {
                height: 250px;
                box-shadow: 15px 15px 0px var(--gke-orange);
            }
            .stm-features-grid {
                grid-template-columns: 1fr;
            }
            .stm-title {
                text-align: center;
            }
            .stm-sub-heading {
                text-align: center;
            }
            .header-container {
                display: flex;
                flex-direction: column; /* Stack vertically */
            }
            .header-image {
                order: 1; /* Image on Top */
                margin-bottom: 30px;
            }
            .header-content {
                order: 2; /* Content on Bottom */
            }
            .header-content h1 { font-size: 24px; }
            .btn-main { width: 100%; justify-content: center; }
            .grid-pulse { display: none; }
              .maint-container {
                display: flex;
                flex-direction: column;
            }
            .maint-image-wrapper {
                order: 1; /* Image hamesha upar */
                margin-bottom: 30px;
            }
            .maint-img {
                height: 250px;
                clip-path: none; /* Mobile par simple rounded corners for better visibility */
                border-radius: 20px;
            }
            .maint-experience {
                padding: 10px;
                right: 10px;
                bottom: 10px;
            }
            .maint-content {
                order: 2; /* Content hamesha niche */
                text-align: center;
            }
            .step-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 15px;
            }
            .maint-content h2 { font-size: 22px; }
            .prod-container {
                display: flex;
                flex-direction: column;
            }
            .prod-visual {
                order: 1; /* Image stays on Top */
                height: 220px;
                margin-bottom: 20px;
                width: 100%;
            }
            .prod-content {
                order: 2; /* Content stays on Bottom */
            }
            .prod-content h1 { font-size: 24px; }
            .prod-content p { font-size: 13px; }
            .quality-tag { display: none; } /* Hide extra decor for tiny screens */
         .stm-grid { grid-template-columns: 1fr; }
            .shard-card { border-radius: 30px 5px 30px 5px; }
            .shard-img-wrap { border-radius: 30px 5px 0 0; height: 180px; }
            .shard-price-capsule { top: 155px; font-size: 16px; padding: 6px 15px; }
            .shard-content h3 { font-size: 19px; }
            .spec-grid { grid-template-columns: 1fr; }
             .system-grid { grid-template-columns: 1fr; }
            .system-img-box { height: 180px; }
            .system-info h3 { font-size: 20px; }
            .price-ribbon { font-size: 16px; padding: 6px 20px; }
            .stm-container {
                display: flex;
                flex-direction: column;
            }
            .stm-visual-wrap {
                order: 1; /* Image stays on top */
                margin-bottom: 40px;
                width: 100%;
            }
            .stm-hero-text {
                order: 2; /* Content stays on bottom */
            }
            .stm-hero-text h1 { font-size: 28px; }
            .stm-info-box { width: 100%; border-radius: 15px; }
        }
        /* 320px Perfection Fixes */
        @media (max-width: 400px) {
            .navbar { padding: 0 15px; height: 80px; }
            .logo img { height: 50px; }
            .logo-name .main-t { font-size: 14px; }
            .logo-name .sub-t { font-size: 8px; }
             .cta-group { flex-direction: column; width: 100%; }
            .btn { width: 100%; }
            .main-image-wrap { height: 350px; }
             .product-section {
                padding: 50px 0;
            }
            .container {
                padding: 0 15px;
            }
            .product-grid {
                grid-template-columns: 1fr; /* Single column for mobile */
            }
            .card-img-box {
                height: 200px;
            }
            .product-card {
                max-width: 100%;
            }
        }

        @media (max-width: 320px) {
            .logo img { height: 40px; }
    .logo-name .main-t { font-size: 13px; }
    .nav-links-container { width: 250px; }
            .logo-name .sub-t { font-size: 7px; }
            .hamburger { width: 24px; }
            .nav-links-container { width: 90%; }
             .hero-section { padding: 60px 0; }
            .hero-title { font-size: 28px; }
            .hero-desc { font-size: 13px; }
            .main-image-wrap { height: 300px; border-radius: 15px; }
            .info-card { padding: 12px; width: 90%; }
            .info-card .text strong { font-size: 15px; }
            .bg-watermark { display: none; }
            .section-header h2 { font-size: 22px; }
            .card-content { padding: 20px 15px; }
            .card-content h3 { font-size: 18px; }
            .card-content p { font-size: 13px; }
            .card-img-box { height: 180px; }
              .st-container { padding: 0 10px; }
            .st-section-head h2 { font-size: 22px; }
            .st-service-item { border-radius: 15px; }
            .st-content-body h3 { font-size: 19px; }
            .st-content-body p { font-size: 13px; }
            .st-img-holder { height: 180px; }
            .st-btn-link { width: 100%; font-size: 12px; }
              .sai-wcu-section { padding: 60px 0; }
            .sai-wcu-container { padding: 0 10px; }
            .sai-wcu-info h2 { font-size: 22px; }
            .sai-wcu-info p { font-size: 13px; margin-bottom: 25px; }
            .sai-wcu-image-frame { height: 280px; border-radius: 20px 5px 20px 5px; }
            .sai-wcu-experience-box b { font-size: 24px; }
            .sai-wcu-card { padding: 20px 15px; }
            .review-card {
                width: 270px;
            }
             .sai-about-wrapper {
        height: 320px; /* Exactly 320px height as requested */
    }
    .sai-about-badge {
        font-size: 9px; /* Smaller badge text so it doesn't wrap awkwardly */
        padding: 4px 10px;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }
    .sai-about-title {
        font-size: 1.7rem; 
        line-height: 1.2;
        margin-bottom: 10px;
    }
    .sai-about-subtitle {
        font-size: 0.85rem; 
        line-height: 1.4;
        margin-bottom: 15px;
    }
    .sai-about-breadcrumbs {
        font-size: 12px;
        gap: 8px;
    }
    .sai-about-breadcrumbs svg {
        width: 12px;
        height: 12px;
    }
     .stm-container {
                display: flex;
                flex-direction: column; /* Image Top, Content Bottom */
            }
            .stm-image-wrapper {
                order: 1; /* Force image to top */
            }
            .stm-content-wrapper {
                order: 2; /* Content to bottom */
            }
            .stm-main-img {
                height: 200px;
            }
            .stm-feature-item {
                padding: 15px;
            }
             .ongrid-hero { padding: 30px 10px; }
            .header-content h1 { font-size: 22px; }
            .header-content p { font-size: 13px; }
            .unique-services { padding: 40px 10px; }
            .blade-card {
                padding: 30px 15px;
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .hexagon-icon {
                width: 60px; height: 60px;
                margin-bottom: 15px;
            }
            .blade-card h3 { font-size: 18px; }
            .blade-card p { font-size: 13px; }
            .card-number { display: none; }
            .pricing-section { padding: 40px 10px; }
            .pricing-grid { grid-template-columns: 1fr; }
            .price-card { border-radius: 20px; }
            .card-img-box { height: 160px; }
            .price-tag span { font-size: 18px; }
            .card-body { padding: 30px 15px; }
            .card-body h3 { font-size: 19px; }
            .feature-list li { font-size: 13px; }
             .maintenance-section { padding: 30px 10px; }
            .step-icon { width: 50px; height: 50px; font-size: 20px; }
            .step-text h4 { font-size: 16px; }
             .prod-header { padding: 30px 15px; }
            .prod-content h1 { font-size: 22px; }
            .prod-visual { height: 180px; }
             .stm-product-section { padding: 30px 10px; }
            .shard-content { padding: 30px 15px 10px; }
            .shard-btn { font-size: 12px; }
             .system-section { padding: 40px 10px; }
            .system-info { padding: 20px 15px; }
            .system-info h3 { font-size: 18px; }
            .system-specs li { font-size: 12px; }
            .enquiry-btn { font-size: 13px; padding: 12px; }
             .stm-contact-hero { padding: 40px 10px 60px; }
            .stm-hero-text h1 { font-size: 24px; }
            .stm-hero-text p { font-size: 12px; }
            .stm-info-box span { font-size: 11px; }
        }