        :root {
            --primary-green: #2e7d32;
            --dark-green: #1b5e20;
            --white: #ffffff;
            --text-color: #f0f0f0;
            --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            --primary-green: #2e7d32;
            --dark-grey: #333;
            --white: #ffffff;
            --transition: all 0.3s ease-in-out;
            --dark-blue-one: #1978c6;
            --light-blue-one: #1d90d1;
            --dark-blue-two: #112a36;
            --green-shade: #367d67;
            --off-blue: #5294c6;
            --deep-light-blue: #ddeefc;
            --middle-blue: #619ac4;
            --orange: #f6821c;
            --dark-coffe-color: #493f36;
            --light-coffe-color: #8d642d;
            --mate-yellow-color: #cd9f30;
            --dark-orange: #e06917;
            --mate-blue: #2d7394;
            --light-orange: #ea9439;
            --dark-orange-coffe-mixed: #b2612c;
            --dark-brown: #412911;
            --dark-font-color: #2f2c2c;
            --most-dark-brown: #2f2113;
            --heading-color: #29170a;
            --background-color: #FAF9F6;
        }

        body {
            margin: 0;
            font-family: 'Open Sans', sans-serif;
            color: var(--text-color);
            cursor: none;
        }

        /* Hero Section Styling */
        .hero-section {
            position: relative;
            width: 100%;
            height: 100vh;
            /* Full viewport height */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            overflow: hidden;
            color: var(--white);
            padding-top: 150px;
            /* Navbar ke niche lane ke liye */
            box-sizing: border-box;
            /* Padding height mein count ho */

        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /*            
            filter: brightness(0.7); Thoda dark background taaki text visible ho */
            z-index: -1;
            animation: panBackground 30s linear infinite alternate;
            /* Slow panning effect */
            /* background-color: rgba(128, 128, 128, 0); */

        }

        @keyframes panBackground {
            0% {
                background-position: 0% 0%;
            }

            100% {
                background-position: 100% 100%;
            }
        }

        .hero-content {
            z-index: 1;
            max-width: 900px;
            padding: 0 20px;

        }

        .hero-heading {
            font-family: 'Montserrat', sans-serif;
            font-size: 4.5em;
            /* Badi heading */
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.1;
            text-shadow: 2px 2px 8px #f6821c;
            ;
            /* Text shadow for better visibility */
            animation: fadeInUp 1s ease-out;

        }

        .hero-subheading {
            font-family: 'Open Sans', sans-serif;
            font-size: 1.6em;
            /* Sub-heading bhi thodi badi */
            font-weight: 400;
            margin-bottom: 40px;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
            animation: fadeInUp 1.2s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Attractive Learn More Button */
        .learn-more-btn {
            display: inline-block;
            background: linear-gradient(45deg, var(--dark-orange) 0%, var(--mate-yellow-color)100%);
            color: var(--white);
            padding: 20px 45px;
            /* Bada button */
            border-radius: 50px;
            /* Rounded shape */
            text-decoration: none;
            font-size: 1.5em;
            /* Font size */
            font-weight: 700;
            letter-spacing: 1px;
            box-shadow: 0 10px 30px #ea9439;
            /* Green glowing shadow */
            position: relative;
            overflow: hidden;
            transform: translateY(0);
            transition: var(--transition);
            animation: pulseButton 2s infinite ease-in-out;
            /* Slow pulse animation */

        }

        /* Button Hover Animation - Shine Effect */
        .learn-more-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.3);
            /* White shine */
            transform: skewX(-30deg);
            transition: var(--transition);
        }

        /* .btn-position{
            left:100%;
           
        } */

        .learn-more-btn:hover::before {
            right: 100%;
        }

        .learn-more-btn:hover {
            transform: translateY(-5px) scale(1.02);
            /* Slight lift and scale on hover */
            box-shadow: 0 15px 40px #ea9439;
            /* More intense shadow */
            background: linear-gradient(45deg, var(--mate-yellow-color) 0%, var(--orange) 100%);
            /* Gradient reverse */
            animation: none;
            /* Stop pulsing on hover */
        }

        @keyframes pulseButton {
            0% {
                transform: scale(1);
                box-shadow: 0 10px 30px var(--mate-color-yellow);
            }

            50% {
                transform: scale(1.03);
                box-shadow: 0 15px 40px var(--light-orange);
            }

            100% {
                transform: scale(1);
                box-shadow: 0 10px 30px var(--green-shade);
            }
        }

        /* HIDE DEFAULT CURSOR */
        body {
            cursor: none;
        }

        /* CUSTOM CURSOR */
        .cursor-glow {
            position: fixed;
            top: 0;
            left: 0;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            pointer-events: none;
            background: rgba(0, 255, 255, 0.6);
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.8),
                0 0 40px rgba(0, 255, 255, 0.5);
            transform: translate(-50%, -50%);
            transition: transform 0.08s ease;
            z-index: 9999;
        }

        .hero-heading .line {
            display: inline-block;
            opacity: 0;
            transform: translateY(30px);
            animation: lineReveal 0.8s ease forwards;
        }

        .hero-heading .line:nth-child(1) {
            animation-delay: 0.2s;
        }

        .hero-heading .line:nth-child(3) {
            animation-delay: 0.6s;
        }

        .hero-heading .line:nth-child(5) {
            animation-delay: 1s;
        }

        @keyframes lineReveal {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Hero Content and 3D Text Styling */
        .hero-content {
            z-index: 1;
            max-width: 900px;
            padding: 0 20px;
        }

        .hero-heading {
            font-family: 'Montserrat', sans-serif;
            font-size: 5.5em;
            /* Thoda bada kiya */
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1;
            perspective: 1000px;
            /* 3D depth ke liye */
        }
           .hero-headings {
               margin-top:140px;
            font-family: 'Montserrat', sans-serif;
            font-size: 4.5em;
            /* Thoda bada kiya */
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1;
            perspective: 1000px;
            /* 3D depth ke liye */
        }
        .hero-headings span {
            display: inline-block;
            color: var(--white);
            text-transform: uppercase;
            /* 3D Layered Shadow */
            text-shadow:
                0 1px 0 #ccc,
                0 2px 0 #c9c9c9,
                0 3px 0 #bbb,
                0 4px 0 #b9b9b9,
                0 5px 0 #aaa,
                0 6px 1px rgba(0, 0, 0, .1),
                0 0 5px rgba(0, 0, 0, .1),
                0 1px 3px rgba(0, 0, 0, .3),
                0 3px 5px rgba(0, 0, 0, .2),
                0 5px 10px rgba(0, 0, 0, .25),
                0 10px 10px rgba(0, 0, 0, .2),
                0 20px 20px rgba(0, 0, 0, .15);

            animation: floating3D 3s ease-in-out infinite;
        }

        /* Har word thoda alag time pe move hoga */
        .line1 {
            animation-delay: 0.1s;
        }

        .line2 {
            animation-delay: 0.3s;
            color: var(--orange) !important;
        }

        .line3 {
            animation-delay: 0.5s;
        }

        @keyframes floating3D {

            0%,
            100% {
                transform: translateY(0) rotateX(0);
            }

            50% {
                transform: translateY(-15px) rotateX(10deg);
            }
        }

        /* Description Styling */
        .description {
            font-size: 1.1em;
            font-weight: 400;
            max-width: 700px;
            margin: 20px auto 14px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            letter-spacing: 0.5px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        /* Divider Line above Button */
        .btn-divider {
            width: 60px;
            height: 3px;
            background: var(--orange);
            margin: 0 auto 5px;
            border-radius: 2px;
        }

        /* Stats Section Styling learn more btn baad ka section  */
        .stats-section {
            padding: 100px 10%;
            background: var(--background-color);
            /* Aapki theme ka dark color */
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
            overflow: hidden;
        }

        /* Left Side: Image with Shadow */
        .stats-image-container {
            flex: 1;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 20px 20px 60px #f6821c7f;
        }

        .stats-image-container img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Right side black shadow overlay on image */
        .stats-image-container::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: linear-gradient(to right, transparent, #ea953991);
        }

        /* Right Side: 3D Boxes Container */
        .stats-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 40px;
            perspective: 1000px;
            /* 3D effect ke liye zaroori hai */
        }

        .stat-box {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid var(--orange);
            width: 320px;
            transform-style: preserve-3d;
            box-shadow: 10px 10px 20px #cd9f30;
            animation: floatBox 4s ease-in-out infinite;
            transition: var(--transition);
        }

        /* Alag alag box ka animation delay taaki sab ek sath na ghumein */
        .stat-box:nth-child(2) {
            animation-delay: 1s;
            align-self: center;
        }

        .stat-box:nth-child(3) {
            animation-delay: 2s;
            align-self: flex-end;
        }

        @keyframes floatBox {

            0%,
            100% {
                transform: rotateY(0deg) rotateX(0deg) translateY(0);
            }

            50% {
                transform: rotateY(15deg) rotateX(5deg) translateY(-10px);
            }
        }

        .stat-box:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: scale(1.05) translateZ(20px);
        }

        .stat-box h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5em;
            color: var(--orange);
            margin: 0;
        }

        .stat-box p {
            font-size: 1.1em;
            color: var(--dark-blue-one);
            margin: 5px 0 0;
            font-weight: 600;
        }

        .principles-section {
            padding: 100px 8%;
            background-color: var(--dark-blue-two);
            /* Deep Dark Background */
            color: var(--white);
            overflow: hidden;
        }

        .principles-container {
            display: flex;
            align-items: center;
            gap: 80px;
            max-width: 1300px;
            margin: 0 auto;
        }

        .principles-content {
            flex: 1.2;
        }

        .sub-heading {
            color: var(--orange);
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 2px;
            display: block;
            margin-bottom: 10px;
        }

        .principles-main-title {
            /* font-size: 2.8em; */
            font-family: 'Montserrat', sans-serif;
            margin-bottom: 50px;
            line-height: 1.2;
        }

        .principles-item {
            display: flex;
            gap: 20px;
            margin-bottom: 35px;
        }

        .icon-box {
            font-size: 1.8em;
            color: var(--orange);
            margin-top: 5px;
        }

        .text-box h3 {
            font-size: 1.6em;
            margin-bottom: 10px;
            color: var(--white);
        }

        .text-box p {
            color: #b0bec5;
            line-height: 1.7;
            font-size: 1.05em;
        }

        /* --- Shapes Grid Styling --- */
        .principles-shapes-grid {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .shape-item {
            position: relative;
            width: 200px;
            height: 200px;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }

        .shape-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            transition: all 0.6s ease;
        }

        .hover-img {
            opacity: 0;
            transform: scale(1.2) rotate(5deg);
        }

        /* Hover Effect: Image Change */
        .shape-item:hover .base-img {
            opacity: 0;
            transform: scale(0.8);
        }

        .shape-item:hover .hover-img {
            opacity: 1;
            transform: scale(1) rotate(0deg);
        }

        .shape-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 45px rgba(0, 0, 0, 0.6);
        }

        /* Geometric Shapes - Yahan Shapes Define ho rhe hain */
        .rectangle {
            border-radius: 20px;
            width: 240px;
            height: 160px;
        }

        .circle {
            border-radius: 50%;
            width: 180px;
            height: 180px;
            align-self: end;
        }

        .square {
            border-radius: 40px;
            width: 180px;
            height: 180px;
        }

        .cylinder {
            border-radius: 100px;
            width: 160px;
            height: 240px;
            margin-top: -40px;
            /* Offset for artistic look */
        }

        .hero-section {
            position: relative;
            width: 100%;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            overflow: hidden;
            padding-top: 0;
            /* Padding zero kar di taaki navbar overlap kare */
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .hero-background video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* Video ko poore screen pe stretch karne ke liye */
            filter: brightness(0.7);
            /* Isse video thodi dark hogi aur text chamkega */
        }

        .hero-content {
            z-index: 1;
            margin-top: 128px;
            /* Margin top hata dena agar text upar bhag raha ho */
        }

        /* our service css  */
        .services-section {
            padding: 100px 8%;
            background: var(--white);
            /* White background for clean look */
            color: var(--dark-blue-two);
        }

        .services-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 60px;
            gap: 40px;
        }

        .header-left {
            flex: 1;
        }

        .header-right {
            flex: 1.2;
        }

        .header-left .main-title {
            font-size: 3.5em;
            font-family: 'Montserrat', sans-serif;
            color: var(--dark-blue-two);
            margin: 0;
        }

        .header-right p {
            font-size: 1.1em;
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .see-more-btn {
            display: inline-block;
            color: var(--orange);
            text-decoration: none;
            font-weight: 800;
            letter-spacing: 1px;
            border-bottom: 2px solid var(--orange);
            padding-bottom: 5px;
            transition: 0.3s;
        }

        .see-more-btn:hover {
            color: var(--dark-orange);
            border-color: var(--dark-orange);
            padding-right: 10px;
        }

        /* Cards Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            position: relative;
            height: 450px;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .service-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.6s ease;
        }

        .card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
            display: flex;
            align-items: flex-end;
            padding: 40px;
            transition: 0.4s ease;
        }

        .card-content {
            transform: translateY(40px);
            /* Text thoda niche rehta hai pehle */
            transition: 0.5s ease;
        }

        .card-content h3 {
            color: var(--white);
            font-size: 1.8em;
            margin-bottom: 15px;
        }

        .card-content p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1em;
            line-height: 1.5;
            margin-bottom: 20px;
            opacity: 0;
            /* Hover se pehle text chupa rahega */
            transition: 0.4s ease;
        }

        .know-more {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--orange);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9em;
            opacity: 0;
            transition: 0.4s ease;
        }

        /* Hover Effects */
        .service-card:hover img {
            transform: scale(1.1);
        }

        .service-card:hover .card-overlay {
            background: rgba(17, 42, 54, 0.85);
        }

        /* Tint shade on hover */
        .service-card:hover .card-content {
            transform: translateY(0);
        }

        .service-card:hover .card-content p,
        .service-card:hover .know-more {
            opacity: 1;
        }

        .world-img {
            /* background-image: url("images/world.png"); */
            width: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .world-connectivity {
            position: relative;
            width: 100%;
            height: 600px;
            /* Aap apne hisab se height set kar sakte ho */
            background-image: url('images/world.png');
            transform: scale(1.05);
            background-size: contain;
            /* Ya 'cover' agar aapko poora bharna hai */
            background-position: center;
            background-repeat: no-repeat;
            background-color: rgb(0, 54, 87);

            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .world-bg-container {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .world-content {
            text-align: center;
            z-index: 2;
            margin-bottom: 50px;
        }

        .world-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.5em;
            color: var(--light-orange);
            text-transform: uppercase;
            margin: 0;
            text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.8);
        }

        .world-content p {
            color: var(--deep-light-blue);
            font-weight: 600;
            font-size: 1.2em;
        }

        .truck-wrapper {
            position: absolute;
            bottom: 20px;
            width: 100%;
            display: flex;
            justify-content: center;
            z-index: 3;
        }

        .moving-truck {
            width: 500px;
            /* Truck ki size control karne ke liye */
            height: auto;
            filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.3));
            /* 3D effect ke liye shadow */
            animation: truckFloat 4s ease-in-out infinite;
        }

        /* Truck ko thoda hawa mein hilane ke liye animation */
        @keyframes truckFloat {

            0%,
            100% {
                transform: translateX(0) translateY(0);
            }

            50% {
                transform: translateX(20px) translateY(-5px);
            }
        }

        /* Responsive check */
        @media (max-width: 768px) {
            .world-content h2 {
                font-size: 2em;
            }
            .hero-headings {
                font-size:3em;
            }

            .moving-truck {
                width: 300px;
            }
        }

        /* --- YAHAN SE RESPONSIVE CSS SHURU HAI --- */

        @media (max-width: 1024px) {
            .hero-heading {
                font-size: 4em;
            }

            .principles-container,
            .stats-section,
            .services-header {
                flex-direction: column;
                padding: 60px 5%;
                text-align: center;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {

            /* Cursor mobile par hide kar diya (Kyuki touch device hai) */
            .cursor-glow {
                display: none;
            }

            body {
                cursor: auto;
            }

            /* Hero Section */
            .hero-heading {
                font-size: 3em;
            }

            .hero-subheading {
                font-size: 1.2em;
            }

            .description {
                font-size: 1em;
                padding: 0 10px;
            }

            .learn-more-btn {
                padding: 15px 30px;
                font-size: 1.1em;
            }

            /* Stats Section */
            .stats-section {
                gap: 30px;
            }

            .stats-content {
                align-items: center;
                width: 100%;
            }

            .stat-box {
                width: 100% !important;
                max-width: 320px;
                align-self: center !important;
            }

            /* Principles Section */
            .principles-main-title {
                font-size: 1.8em;
            }

            .principles-shapes-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
                justify-items: center;
            }

            .shape-item {
                width: 140px !important;
                height: 140px !important;
            }

            .rectangle,
            .cylinder {
                width: 140px !important;
                height: 140px !important;
                margin: 0;
            }

            /* Services Section */
            .services-grid {
                grid-template-columns: 1fr;
                /* Single column on mobile */
            }

            .services-header {
                align-items: center;
                text-align: center;
            }

            .header-left .main-title {
                font-size: 2.5em;
            }

            /* World Connectivity */
            .world-connectivity {
                height: 400px;
            }

            .world-content h2 {
                font-size: 2em;
            }

            .moving-truck {
                width: 250px;
            }
        }

        @media (max-width: 480px) {
            .hero-heading {
                font-size: 2.5em;
            }

            .principles-shapes-grid {
                grid-template-columns: 1fr;
                /* Sabse chhote phone par ek column */
            }

            .stat-box h3 {
                font-size: 2em;
            }
        }
        
        


        /* Hero Section Styling */
        .about-hero-section {
            height: 60vh;
            width: 100%;
            position: relative;
            background-image: url('images/aboutus-bg-img.png'); /* Apni image path check kar lena */
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        /* Gray Overlay */
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(51, 51, 51, 0.7); /* Professional dark gray */
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        /* Watermark Shade (Text ke peeche wala bada letter) */
        .hero-content::before {
            content: "ABOUT";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 10rem;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.05); /* Bahut halka white shade */
            z-index: -1;
            letter-spacing: 20px;
        }

        .hero-content h1 {
            font-size: 4.5rem;
            font-weight: 900;
            color: var(--white);
            letter-spacing: 5px;
            text-transform: uppercase;
            margin-bottom: 0;
            /* Professional Text Shadow using your dark blue */
            text-shadow: 3px 3px 0px var(--dark-blue-two);
            position: relative;
            display: inline-block;
        }

        /* Underline Style */
        .hero-content h1::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 60%; /* Choti underline style ke liye */
            height: 5px;
            background: linear-gradient(to right, var(--orange), var(--mate-blue));
            border-radius: 10px;
        }

        /* Section Styling */
.story-section {
    background-color: var(--background-color);
    padding: 80px 0;
}

/* 3D Side Shade Text (Watermark behind the heading) */
.side-shade-text {
    position: absolute;
    top: -60px;
    left: -10px;
    font-size: 9rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.04); /* Light Gray Shade */
    z-index: 0;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.square-img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border: 10px solid var(--light-orange);
}

.stats-container {
    transition: transform 0.3s ease;
}

.stats-container:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 2.8rem;
}

/* Vertical line separation */
.vr {
    width: 1px;
    background-color: var(--dark-blue-two);
    height: 60px;
    opacity: 0.2;
}

/* OUR VALUES KA SECTION KI CSS START  */
/* Counter Styling */
.hollow-text {
    font-size: 8rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px var(--mate-blue);
    line-height: 1;
}
.orange-divider { width: 60px; height: 4px; background: var(--orange); }
.total-text { font-weight: bold; color: var(--dark-blue-two); letter-spacing: 2px; }

/* Slider Layout */
.slider-wrapper { overflow: hidden; width: 100%; }
.values-track { 
    display: flex; 
    gap: 25px; 
    transition: transform 0.6s ease-in-out; 
}

/* Card Styling */
.value-card-new {
    min-width: 300px;
    height: 450px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.card-img-container { width: 100%; height: 100%; position: relative; }
.card-img-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }

/* The Shade (Overlay) */
.card-shade {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, var(--dark-blue-two), rgba(0,0,0,0.2));
    opacity: 0; /* Shuru mein hidden */
    transition: 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.shade-content { color: white; transform: translateY(30px); transition: 0.4s; }

/* Hover Effects */
.value-card-new:hover .card-shade { opacity: 1; }
.value-card-new:hover .shade-content { transform: translateY(0); }
.value-card-new:hover img { transform: scale(1.1); }

/* Static Bottom Title */
.card-title-bottom {
    position: absolute;
    bottom: 20px; left: 20px;
    color: white; z-index: 1;
    transition: 0.3s;
    background-color:#1d8fd18a;
}
.value-card-new:hover .card-title-bottom { opacity: 0; } /* Hover par title hat jayega description dikhega */

.nav-btn {
    border: 2px solid var(--mate-blue);
    background: white;
    color: var(--mate-blue);
    width: 45px; height: 45px;
    border-radius: 50%;
    transition: 0.3s;
}
.nav-btn:hover { background: var(--mate-blue); color: white; }

/* founder section css start  */
.founder-section {
    background-color: var(--background-color);
    padding: 100px 0;
}

/* Image Styling with Frame */
.founder-img-wrapper {
    position: relative;
    padding: 20px;
    z-index: 2;
}

.founder-img {
    border-radius: 10px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    filter: grayscale(20%); /* Thoda aesthetic look ke liye */
    transition: 0.5s ease;
}

.founder-img:hover {
    filter: grayscale(0%);
    transform: translateY(-10px);
}

.img-frame {
    position: absolute;
    top: 50px;
    left: -20px;
    width: 80%;
    height: 90%;
    background-color: var(--mate-blue); /* Aapka palette color */
    border-radius: 10px;
    z-index: 1;
    opacity: 0.2;
}

/* Description Box - The "Shade" you asked for */
.founder-content-box {
    background-color: var(--dark-blue-two); /* Deep blue-black shade */
    padding: 60px 80px;
    margin-left: -50px; /* Overlap effect on desktop */
    border-radius: 20px;
    color: var(--white);
    box-shadow: 30px 30px 80px rgba(0,0,0,0.2);
    position: relative;
    z-index: 3;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
    .founder-content-box {
        margin-left: 0;
        margin-top: -30px;
        padding: 40px;
    }
    .img-frame {
        width: 100%;
        left: 0;
    }
}

.founder-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.letter-spacing-2 {
    letter-spacing: 3px;
    font-size: 0.9rem;
}

 /* HIDE DEFAULT CURSOR */
        body {
            cursor: none;
        }

        /* CUSTOM CURSOR */
        .cursor-glow {
            position: fixed;
            top: 0;
            left: 0;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            pointer-events: none;
            background: rgba(0, 255, 255, 0.6);
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.8),
                0 0 40px rgba(0, 255, 255, 0.5);
            transform: translate(-50%, -50%);
            transition: transform 0.08s ease;
            z-index: 9999;
        }

        /* --- RESPONSIVE ADJUSTMENTS --- */

@media (max-width: 1200px) {
    .value-card-new { min-width: 280px; height: 400px; }
    .side-shade-text { font-size: 7rem; top: -40px; }
}

@media (max-width: 991px) {
    /* Hero Section */
    .hero-content h1 { font-size: 3rem; letter-spacing: 2px; }
    .hero-content::before { font-size: 6rem; letter-spacing: 10px; }
    
    /* Story Section */
    .square-img { width: 100%; height: auto; max-height: 400px; }
    .side-shade-text { font-size: 5rem; top: -30px; }
    
    /* Founder Section */
    .founder-content-box {
        margin-left: 0;
        margin-top: -50px; /* Overlap image from bottom */
        padding: 40px 30px;
        text-align: center;
    }
    .founder-img-wrapper { text-align: center; }
    .img-frame { left: 10%; width: 80%; }
    
    /* Stats */
    .stats-container { flex-wrap: wrap; gap: 20px; justify-content: center !important; }
    .vr { display: none; } /* Mobile pe vertical line hata di */
    .stat-item { flex: 0 0 45%; }
}

@media (max-width: 768px) {
    body { cursor: default; } /* Mobile pe custom cursor troublesome hota hai */
    .cursor-glow { display: none; }

    .hero-content h1 { font-size: 2.5rem; }
    .about-hero-section { height: 40vh; }
    
    .hollow-text { font-size: 5rem; }
    
    /* Values Slider Mobile Fix */
    .slider-wrapper { overflow-x: auto; padding-bottom: 20px; }
    .values-track { gap: 15px; }
    .value-card-new { min-width: 85vw; } /* Mobile pe card screen ki width ka 85% hoga */
    
    .founder-description p { font-size: 1rem; }
    .display-4 { font-size: 2rem; }
}

@media (max-width: 480px) {
    .stat-item { flex: 0 0 100%; } /* Stats line-by-line */
    .hero-content h1 { font-size: 2rem; }
    .hero-content::before { display: none; } /* Chote phones pe watermark hata diya */
}


/* our commintment section css start  */

  .commitment-section {
        background-color: var(--background-color); /* #FAF9F6 */
        padding: 100px 5%;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Segoe UI', sans-serif;
    }

    .push-container {
        display: flex;
        align-items: center;
        max-width: 1200px;
        gap: 50px;
        position: relative;
    }

    /* 1. Triangle Image Gallery (The Pusher) */
    .triangle-gallery {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        flex: 1;
        /* Initial position for push effect */
        transform: translateX(-50px);
        transition: var(--transition);
        z-index: 2;
    }

    .img-row {
        display: flex;
        gap: 15px;
    }

    .tri-img {
        width: 180px;
        height: 180px;
        background-color: var(--middle-blue);
        border-radius: 20px; /* Modern rounded look */
        overflow: hidden;
        border: 4px solid var(--white);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transition: transform 0.5s ease;
    }

    .tri-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* 2. Content Box (The One being Pushed) */
    .commitment-content {
        flex: 1.2;
        background: var(--dark-blue-two);
        padding: 60px;
        border-radius: 30px;
        color: var(--white);
        position: relative;
        /* Initial offset for push effect */
        transform: translateX(-100px); 
        transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
    }

    /* Push Animation on Scroll */
    .commitment-section.active .commitment-content {
        transform: translateX(0); /* Dhakka lagne ke baad apni jagah pe */
    }

    .commitment-section.active .triangle-gallery {
        transform: translateX(0);
    }

    .commitment-content h2 {
        font-size: 2.8rem;
        margin-bottom: 20px;
        color: var(--primary-green);
    }

    .commitment-content p {
        font-size: 1.2rem;
        line-height: 1.8;
        color: var(--text-color); /* #f0f0f0 */
    }

    /* Image hover animation */
    .tri-img:hover {
        transform: scale(1.05) rotate(2deg);
        border-color: var(--orange);
    }

    /* Responsive */
    @media (max-width: 968px) {
        .push-container { flex-direction: column; }
        .commitment-content { transform: translateX(0); padding: 30px; }
        .triangle-gallery { transform: translateX(0); }
    }

    /* our mission and all last section css  */
     .orbital-section {
        background-color: var(--background-color);
        padding: 80px 10%;
        font-family: 'Segoe UI', sans-serif;
    }

    .orbital-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 120px;
        gap: 60px;
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.9s ease-out;
        position: relative;
    }

    .orbital-row.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Ball Styling */
    .orbital-ball {
        width: 240px;
        height: 240px;
        border-radius: 50%;
        background: var(--primary-green);
        border: 6px solid var(--white);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        overflow: hidden;
        z-index: 5;
        transition: all 1.1s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .orbital-ball img { width: 100%; height: 100%; object-fit: cover; }

    /* Flag Styling */
    .orbital-flag {
        flex: 1;
        background: var(--dark-blue-two);
        padding: 45px;
        border-radius: 15px 50px 50px 15px;
        color: var(--white);
        z-index: 10;
        transition: all 1.1s cubic-bezier(0.4, 0, 0.2, 1);
        animation: flagWave 4s infinite ease-in-out;
    }

    /* --- SWAP LOGIC (Sirf Mission aur Values ke liye) --- */
    
    /* Pehli aur Teesri Row (Moving) */
    .orbital-row.active.moving-row .orbital-ball {
        transform: translateX(500px);
        opacity: 0.2;
        z-index: 1;
    }
    .orbital-row.active.moving-row .orbital-flag {
        transform: translateX(-300px);
    }

    /* Fixed Row (Expertise) - No Translation here */
    .fixed-row .orbital-flag {
        border-radius: 50px 15px 15px 50px; /* Reverse side radius */
    }

    @keyframes flagWave {
        0%, 100% { clip-path: polygon(0% 0%, 100% 1%, 100% 99%, 0% 100%); }
        50% { clip-path: polygon(0% 1%, 100% 0%, 100% 100%, 0% 99%); }
    }

    @media (max-width: 992px) {
        .orbital-row { flex-direction: column !important; gap: 20px; }
        .orbital-row.active.moving-row .orbital-ball, 
        .orbital-row.active.moving-row .orbital-flag {
            transform: none !important; opacity: 1;
        }
    }
    
    
    
        /* Intro section */
        section.intro-section {
            padding-top: 140px !important;
            padding-bottom: 50px;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('images/services background image.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: #ffffff;
            width: 100%;
        }

        /* STICKY LOGIC */
        .sticky-circles {
            position: sticky;
            top: 110px;
            /* Navbar height ke hisab se adjust karein */
            z-index: 1020;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .circle-nav-item {
            cursor: pointer;
            transition: 0.3s;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .circle-nav-item:hover {
            transform: translateY(-5px);
        }

        .circle-wrapper {
    width: 100px;   /* Pehle 75px tha */
    height: 100px;  /* Pehle 75px tha */
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    border: 2px solid #f6821c;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
        .circle-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .service-title {
    font-size: 0.9rem; /* Pehle 0.75rem tha */
    font-weight: 600;
    color: #333;
    display: block;
}

        /* Detail Rows */
        .detail-row {
            padding: 80px 0;
            align-items: center;
        }

        .detail-img {
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        /* Target offset fix */
        :target {
            scroll-margin-top: 250px;
        }

        .fw-bold {
            color:var(--dark-blue-two);
        }
      
        /* CUSTOM CURSOR */
        .cursor-glow {
            position: fixed;
            top: 0;
            left: 0;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            pointer-events: none;
            background: rgba(0, 255, 255, 0.6);
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
            transform: translate(-50%, -50%);
            z-index: 9999;
            display: none;
            /* Default hidden */
        }

        /* MOBILE RESPONSIVE CSS */
        @media (max-width: 768px) {

            body {
                cursor: auto !important;
            }

            .cursor-glow {
                display: none !important;
            }

            section.intro-section {
                padding-top: 100px !important;
            }

            .sticky-circles {
                padding: 10px 0;
            }

            .circle-wrapper {
                width: 55px;
                height: 55px;
            }

            .service-title {
                font-size: 0.65rem;
            }

            .detail-row {
                padding: 40px 0;
                text-align: center !important;
            }

            .detail-row .text-md-end {
                text-align: center !important;
            }

            .detail-row .px-md-5 {
                padding: 15px !important;
            }

            .detail-img {
                height: auto;
                max-height: 300px;
                margin-bottom: 20px;
            }

            /* Text alignment fix for mobile */
            .flex-md-row-reverse {
                flex-direction: column !important;
            }

            .row.detail-row {
                flex-direction: column !important;
            }

            .circle-section {
                margin-top: 54px;
            }
        }

        /* Show cursor only on Desktop */
        @media (min-width: 992px) {
            body {
                cursor: none;
            }

            .cursor-glow {
                display: block;
            }
        }
        @media (max-width: 768px) {
    .circle-wrapper {
        width: 70px;   /* Pehle 55px tha */
        height: 70px;  /* Pehle 55px tha */
    }
}
        
        
        

        /* TOP HEADER SECTION */
        .page-header {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/contact us .png');
            background-size: cover;
            background-position: center;
            padding: 120px 0 80px;
            color: white;
            text-align: center;
        }

        .page-header h1 {
            font-size: clamp(2rem, 8vw, 3.5rem);
            /* Responsive font size */
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .breadcrumb-item,
        .breadcrumb-item a {
            color: #f6821c !important;
            text-decoration: none;
            font-weight: 500;
        }

        /* PARALLAX SECTION */
        .parallax-section {
            background-image: url('images/contact\ us\ 2.png');
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            padding: 100px 0;
            position: relative;
        }

        .parallax-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.2);
        }

        /* Contact Card Logic */
        .contact-container {
            position: relative;
            z-index: 1;
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            margin: 0 10px;
            /* Mobile margin */
        }

        .contact-form-side {
            padding: 60px;
        }

        .info-side {
            background:var(--mate-blue);
            color: white;
            padding: 60px;
            height: 100%;
        }

        .form-control {
            border: none;
            border-bottom: 2px solid #eee;
            border-radius: 0;
            padding: 12px 5px;
            margin-bottom: 20px;
            font-size: 0.95rem;
            background: transparent;
        }

        .form-control:focus {
            box-shadow: none;
            border-color: #ea9439;
            background: transparent;
        }

        .btn-submit {
            background:var(--mate-blue);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            border: none;
            font-weight: 600;
            text-transform: uppercase;
            transition: 0.4s;
            margin-top: 10px;
            width: auto;
        }

        .btn-submit:hover {
            background:var(--dark-blue-two);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(234, 148, 57, 0.3);
        }

        #success-message {
            display: none;
            background: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 10px;
            margin-top: 20px;
            font-weight: 500;
            border-left: 5px solid #28a745;
        }

        .info-side i {
            color: #fff;
            background: rgba(255, 255, 255, 0.2);
            min-width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-right: 15px;
        }

        .social-links a {
            color: white;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 15px;
            transition: 0.3s;
            font-weight: 500;
        }

        .social-links a:hover {
            transform: translateX(5px);
            opacity: 0.8;
        }

        /* CUSTOM CURSOR - Only Desktop */
        @media (min-width: 992px) {
            body {
                cursor: none;
            }

            .cursor-glow {
                position: fixed;
                top: 0;
                left: 0;
                width: 30px;
                height: 30px;
                border-radius: 50%;
                pointer-events: none;
                background: rgba(0, 255, 255, 0.6);
                box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
                transform: translate(-50%, -50%);
                transition: transform 0.08s ease;
                z-index: 9999;
            }
        }

        /* MOBILE FIXES */
        @media (max-width: 991px) {

            .contact-form-side,
            .info-side {
                padding: 30px 20px;
            }

            .parallax-section {
                background-attachment: scroll;
                padding: 50px 0;
            }

            .page-header {
                padding: 100px 0 60px;
            }

            .btn-submit {
                width: 100%;
            }

            /* Button full width on mobile */
            .cursor-glow {
                display: none;
            }

          
        }