
        @import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
        @import url("https://fonts.googleapis.com/css2?family=Cabin+Sketch:wght@400;700&display=swap");
        @import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

        /* Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            overflow-x: hidden;
            /* Prevents unwanted horizontal scroll */
        }

        /* Header */
        header {
            align-items: center;
            justify-content: space-between;
            padding: 2px 40px;
            background: #fff;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1000;
        }

        .logo {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
        }

        .logo img {
            height: 150px;
            margin-right: 10px;

            transition: height 0.3s ease;
        }

        /* Navbar */
        nav {
            width: 100%;
            background: #fff;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.047);
            padding: 8px 30px;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
            justify-content: center;
            align-items: center;
            flex-wrap: nowrap;
            white-space: nowrap;
        }

        nav ul li {
            position: relative;
        }

        nav ul li a {
            font-family: "Rubik", sans-serif;
            font-weight: 600;
            text-decoration: none;
            color: #000000;
            font-size: 14px;
            padding: 6px 8px;
            display: inline-block;
            transition: all 0.3s ease;
            position: relative;
        }

        /* Hover underline effect */
        nav ul li a::after {
            content: "";
            position: absolute;
            width: 0;
            height: 2px;
            left: 50%;
            bottom: 0;
            background: #ff8000e6;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        nav ul li a:hover::after,
        nav ul li a.active::after {
            width: 70%;
        }

        nav ul li a:hover,
        nav ul li a.active {
            color: #ff8000e6;
        }

        /* Dropdown */
        nav ul li .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            border-radius: 6px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
            min-width: 160px;
            overflow: hidden;
            z-index: 1000;
        }

        nav ul li .dropdown-content li {
            border-bottom: 1px solid #f2f2f2;
        }

        nav ul li .dropdown-content li a {
            padding: 10px 14px;
            display: block;
            color: #333;
            font-size: 13px;
        }

        nav ul li .dropdown-content li a:hover {
            background: #f9f9f9;
            color: #ff8000;
        }

        nav ul li:hover .dropdown-content {
            display: block;
        }

        /* Notice Section */
        .notice {
            background: #fdaf42;
            color: #000;
            padding: 10px;
            font-weight: bold;
            text-align: center;
            overflow: hidden;
            white-space: nowrap;
            border-radius: 6px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            margin: 10px;
        }

        .notice .new {
            color: red;
            margin-right: 8px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .notice a {
            font-family: Rubik, sans-serif;
            color: #004080;
            text-decoration: none;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        /* Slider */
        .slider {
            width: 100%;
            height: 450px;
            position: relative;
            overflow: hidden;
        }

        .slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }

        .slides img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            flex-shrink: 0;
        }

        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 40px;
            color: rgba(255, 255, 255, 0.7);
            background: rgba(0, 0, 0, 0.4);
            padding: 8px 15px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
        }

        .arrow.left {
            left: 15px;
        }

        .arrow.right {
            right: 15px;
        }

        /* Main Box (Achievements/Belief) */
        .main-box {
            width: 96%;
            margin: 10px auto;
            background-color: #fdaf42;
            padding: 20px;
            display: flex;
            gap: 30px;
            justify-content: center;
            border-radius: 3px;
            flex-wrap: wrap;
            /* Important for responsiveness */
        }

        .inner-box,
        .inner-box2 {
            flex: 1;
            min-width: 300px;
            /* Ensures they don't get too squished */
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
            text-align: center;
        }

        .inner-box {
            background: #7ebec5;
        }

        .inner-box2 {
            background: #fccc88;
        }

        .inner-box h2,
        .inner-box2 h2 {
            font-family: "Cabin Sketch", sans-serif;
            font-weight: 700;
            margin-bottom: 10px;
            text-align: left;
            font-size: 40px;
            line-height: 1.2;
        }

        .inner-box2 h2 {
            color: rgb(19, 168, 158);
        }

        .inner-box h2 {
            color: rgb(51, 51, 51);
        }

        .inner-box p,
        .inner-box2 p {
            text-align: left;
            color: black;
            font-size: 20px;
            line-height: 1.5;
            font-family: Rubik, sans-serif;
        }

        /* Video & News Container */
        .mainb {
            background-color: #c1d2ac;
            padding-bottom: 20px;
        }

        .container {
            display: flex;
            justify-content: space-between;
            padding: 20px;
            gap: 20px;
            flex-wrap: wrap;
        }

        .video-section {
            flex: 1 1 600px;
            /* Grows, shrinks, base width */
            background: #eee;
            border: 1px solid #ccc;
            text-align: center;
        }

        .video-section h2 {
            margin: 0;
            padding: 10px;
            background: #8bb697;
            font-size: 26px;
            font-weight: 700;
            font-family: "Open Sans", sans-serif;
        }

        .video-section iframe {
            width: 100%;
            height: 315px;
            border: none;
            display: block;
        }

        .news-section {
            flex: 1 1 300px;
            border: 1px solid #ccc;
            background: #ffffcc;
            border-radius: 10px;
            overflow: hidden;
        }

        .news-header {
            background: #0078ff;
            color: #fff;
            padding: 10px;
            font-weight: 600;
            font-size: 18px;
            text-align: center;
            font-family: Rubik, sans-serif;
        }

        .news-content {
            height: 315px;
            overflow: hidden;
            position: relative;
        }

        .news-slider {
            animation: scrollNews 10s linear infinite;
        }

        .news-slider p {
            padding: 8px 15px;
            border-bottom: 1px solid #eee;
            background: #f9f9f9;
            font-size: 15px;
            font-family: "Poppins", sans-serif;
        }

        .news-slider span {
            color: red;
            font-weight: 600;
            margin-right: 8px;
        }

        @keyframes scrollNews {
            0% {
                transform: translateY(0);
            }

            100% {
                transform: translateY(-50%);
            }
        }

        /* Facilities */
        .facilities {
            text-align: center;
            padding: 20px;
        }

        .facilities h2 {
            font-family: "Open Sans", sans-serif;
            background: #1ca0d8;
            color: #000;
            padding: 12px;
            margin-bottom: 20px;
            font-size: 36px;
            font-weight: 700;
            border-radius: 6px;
        }

        .facility-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 20px;
            padding: 10px;
        }

        .card {
            background: white;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        .card:hover {
            transform: translateY(-6px);
        }

        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .card-content {
            padding: 15px;
            color: white;
        }

        .card-content h3 {
            margin-bottom: 10px;
            font-size: 18px;
            font-family: "Adamina", serif;
        }

        .card-content p {
            font-size: 14px;
            line-height: 1.5;
            font-family: "Open Sans", sans-serif;
        }

        /* Card Colors */
        .smart {
            background: #a74a1d;
        }

        .library {
            background: #104e8b;
        }

        .playground {
            background: #d62828;
        }

        .open-theatre {
            background: #c80f43;
        }

        .multi-hall {
            background: #009688;
        }

        .computer {
            background: #2e8b57;
        }

        .science {
            background: #592059;
        }

        .transport {
            background: #800040;
        }

        /* Events */
        .d {
            background-color: #e9eff3;
            padding-bottom: 20px;
        }

        .d h2 {
            font-family: "Open Sans", sans-serif;
            text-align: center;
            font-size: 36px;
            font-weight: 700;
            padding: 40px 20px 20px;
            color: #000;
        }

        .events {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            padding: 0 20px;
        }

        .event-box {
            width: 100%;
            max-width: 300px;
            /* Changed from fixed width to max-width */
            border-radius: 15px;
            height: 300px;
            padding: 30px;
            color: #fff;
            text-align: left;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .event-box:hover {
            transform: translateY(-5px);
        }

        .date {
            font-family: "Cabin Sketch", sans-serif;
            font-size: 50px;
            /* Slightly reduced */
            font-weight: 500;
            background: rgba(255, 255, 255, 0.2);
            width: 90px;
            height: 90px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: #fff;
            padding: 10px;
        }

        .month {
            font-size: 16px;
            font-family: Rubik, sans-serif;
        }

        .event-title {
            font-family: "Open Sans", sans-serif;
            font-size: 22px;
            margin-top: 45px;
            font-weight: 500;
            text-align: center;
        }

        .green {
            background: #74bc19;
        }

        .orange {
            background: #ff9c02;
        }

        .red {
            background: #e0332a;
        }

        .blue {
            background: #2b76df;
        }

        /* Activity Section */
        .boxes {
            background-color: #c1d2ac;
            padding-bottom: 40px;
        }

        .heading h2 {
            text-align: center;
            color: #781515;
            padding-top: 30px;
            font-weight: bold;
            font-size: 36px;
        }

        /* ===============================
   OUR ACTIVITY – FINAL FIX
=============================== */

        .container1 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;

            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px 60px;

            justify-items: center;
            align-items: start;
        }

        /* WRAPPER (image + caption) */
        .container1>div {
            width: 100%;
            max-width: 480px;
            text-align: center;
        }

        /* IMAGE FRAME – SAME SIZE FOR ALL */
        .box {
            width: 100%;
            height: 260px;
            /* ✅ ONE fixed height */
            position: relative;
            overflow: hidden;
            border-radius: 6px;
            background: #fff;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        /* IMAGE */
        .box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* ✅ proper crop */
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .box img.active {
            opacity: 1;
        }

        /* CAPTION – SAME HEIGHT */
        .caption {
            margin-top: 10px;
            font-size: 20px;
            font-weight: 700;
            color: rgb(128, 0, 0);
            font-family: "Open Sans", sans-serif;

            min-height: 32px;
            /* ✅ equal alignment */
        }

        /* ===============================
   RESPONSIVE
=============================== */

        @media (max-width: 992px) {
            .container1 {
                grid-template-columns: 1fr;
                gap: 35px;
            }

            .box {
                height: 260px;
            }
        }

        @media (max-width: 600px) {
            .box {
                height: 200px;
            }

            .caption {
                font-size: 16px;
                min-height: 28px;
            }
        }


        /* App Section */
        .app {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            padding: 40px;
            background: #ffcc92;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            flex-wrap: wrap;
            margin: 20px;
        }

        .app img {
            width: 100%;
            max-width: 300px;
            /* Responsive image */
            height: auto;
            border-radius: 10px;
        }

        .app-content {
            max-width: 600px;
            text-align: center;
        }

        /* Center text on mobile */
        .app-content h1 {
            font-family: "Open Sans", sans-serif;
            font-size: 32px;
            color: #225689;
            margin-bottom: 15px;
        }

        .app-content p {
            font-family: "Open Sans", sans-serif;
            font-size: 18px;
            color: #000;
            line-height: 1.6;
        }

        .download-btn {
            display: inline-block;
            background: #007bff;
            color: white;
            font-weight: 600;
            text-decoration: none;
            padding: 12px 25px;
            border-radius: 30px;
            margin-top: 15px;
            transition: all 0.3s ease;
        }

        /* Info Section */
        .info-section {
            position: relative;
            /* background: url("images/lps\ logoss.png") no-repeat center center/cover;  */
            background: url("images/lps logoss.png") no-repeat center center;
            background-size: cover;
            /* 🔥 MOST IMPORTANT */

            color: #ffffff;
            min-height: 120vh;
            display: flex;
            align-items: center;
        }

        .overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.216);
        }

        .container2 {
            position: relative;
            display: flex;
            margin: 2%;
            padding: 2%;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            /* allows stacking on smaller screens */
            width: 100%;
            max-width: 1100px;
            top: 10%;
            z-index: 1;
        }

        /* Stats cards */
        .stats {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            flex: 1;
            justify-content: center;
        }

        .card1 {
            padding: 20px 30px;
            border-radius: 12px;
            text-align: left;
            min-width: 220px;
            color: #fff;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        .card1:hover {
            transform: translateY(-5px);
        }

        .card1 h2 {
            font-size: 46px;
            font-weight: 500;
            font-family: "Cabin Sketch", sans-serif;
            margin-bottom: 10px;
        }

        .card1 p {
            font-family: "Rubik", sans-serif;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* Card colors */
        .blue {
            background: #2b76df;
        }

        .orange {
            background: #ff6e50;
        }

        .dark {
            background: #0c0c16;
        }

        /* Contact Box */
        .contact-box {
            background: #fff;
            color: #000;
            padding: 30px;
            margin: 10px;
            text-align: left;
            border-radius: 15px;
            max-width: 500px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
            flex: 1;
            margin-left: 30px;
        }

        .contact-box h2 {
            font-size: 40px;
            font-family: "Rubik", sans-serif;
            font-weight: 700;
            color: rgb(51, 51, 51);
        }

        .contact-box p {
            font-size: 20px;
            line-height: 1.6;
            font-family: "Rubik", sans-serif;
            font-weight: 500;
            color: rgb(51, 51, 51);
        }

        .contact-box a {
            color: #0078ff;
            text-decoration: none;
        }

        .contact-box a:hover {
            text-decoration: underline;
        }

        /* Footer */
        .footer {
            background: #0c0c16;
            color: #fff;
            text-align: center;
            padding: 12px 10px;
            font-family: "Poppins", sans-serif;
            font-size: 15px;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
        }

        .footer span {
            color: #00aaff;
            font-weight: 600;
        }


         /* HAMBURGER STYLING */
        .hamburger {
            display: none;
            cursor: pointer;
            width: 25px;
            height: 20px;
            flex-direction: column;
            justify-content: space-between;
            z-index: 1001;
        }

        .hamburger .bar {
            display: block;
            width: 100%;
            height: 3px;
            background-color: #ff8000e6;
            border-radius: 3px;
            transition: all 0.3s ease-in-out;
        }

        .hamburger.active .bar:nth-child(1) {
            transform: translateY(11px) rotate(45deg);
        }

        .hamburger.active .bar:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active .bar:nth-child(3) {
            transform: translateY(-11px) rotate(-45deg);
        }



        /* =========================================
           RESPONSIVE MEDIA QUERIES
           ========================================= */

        /* Tablet & Mobile (Below 992px) */
        /* TABLET & MOBILE RESPONSIVENESS (Max-Width: 992px) */
        @media (max-width: 992px) {

            nav ul {
                gap: 0;
                /* ❌ extra space removed */
            }

            nav ul li a {
                padding: 12px 20px;
                /* compact but touch-friendly */
                font-size: 15px;
            }

            header {
                position: sticky;
                top: 0;
            }
        }

        @media (max-width: 992px) {

            /* DISABLE HOVER ON MOBILE */
            nav ul li:hover .dropdown-content {
                display: none;
            }

            /* JS CONTROLLED DROPDOWN */
            nav ul li.dropdown.active .dropdown-content {
                display: block;
            }
        }

        @media (max-width: 992px) {

            header {
                position: sticky;
                top: 0;
                min-height: 70px;
                /* 🔥 CUT FIX */
                padding: 10px 20px;
                /* 🔥 SAFE SPACE */
                display: flex;
                align-items: center;
                /* vertical center */
                justify-content: center;
                background: #fff;
                z-index: 2000;
            }

            /* LOGO CENTER */
            .logo {
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
            }

            /* LOGO SIZE */
            .logo img {
                height: 100;
                width: 100;
                margin: 0;
            }

            /* HAMBURGER RIGHT SIDE FIX */
            .hamburger {
                display: flex;
                position: absolute;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
                z-index: 2001;
            }

            /* 4. Navbar / Sidebar Styling */
            nav {
                padding: 0;
                position: static;
            }

            nav ul {
                position: fixed;
                top: 75px;
                /* Header ke just niche se start hoga */
                right: -100%;
                /* Default bahar (Right side) */
                width: 280px;
                height: calc(100vh - 85px);
                /* Bachi hui poori height */
                background: #ffffff;
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                padding-top: 2px;
                box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.1);
                transition: right 0.3s ease-in-out;
                overflow-y: auto;
                /* Agar menu lamba ho to scroll ho */
                z-index: 1000;
                border-top: 1px solid #eee;
                border-radius: 8px;
            }

            /* Menu Open State */
            nav ul.active {
                right: 0;
                /* Slide in from Right */
            }

            /* List Items */
            nav ul li {
                width: 100%;
                border-bottom: 1px solid #f1f1f1;
                position: relative;
            }

            nav ul li a {
                display: block;
                padding: 15px 20px;
                font-size: 16px;
                color: #333;
                width: 100%;
            }

            /* 5. DROPDOWN FIX (Accordion Style) */
            /* Mobile pr dropdown hawa me nahi, list ke beech me khulega */
            nav ul li .dropdown-content {
                display: none;
                position: static;
                /* Static krne se ye content ko niche push karega */
                width: 100%;
                box-shadow: none;
                border-radius: 0;
                background: #f8f9fa;
                /* Thoda grey bg taaki alag dikhe */
                padding-left: 0;
                border-top: 1px solid #eee;
            }

            /* Dropdown Links */
            nav ul li .dropdown-content li a {
                padding-left: 40px;
                /* Thoda andar indentation */
                font-size: 14px;
                color: #555;
            }

            /* Active hone pr dikhega (JS handle karega toggle) */
            nav ul li.dropdown.active .dropdown-content {
                display: block;
                animation: slideDown 0.3s ease;
            }

            /* Dropdown Animation */
            @keyframes slideDown {
                from {
                    opacity: 0;
                    transform: translateY(-10px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
        }

        /* Mobile (Below 600px) */
        @media (max-width: 600px) {
            header {
                padding: 10px 20px;
            }

            .logo img {
                height: 60px;
            }

            .notice {
                font-size: 12px;
            }

            .slider,
            .slides img {
                height: 200px;
            }

            .arrow {
                font-size: 24px;
                padding: 5px 10px;
            }

            .main-box {
                flex-direction: column;
                padding: 10px;
                gap: 15px;
            }

            .inner-box h2,
            .inner-box2 h2 {
                font-size: 28px;
            }

            .inner-box p,
            .inner-box2 p {
                font-size: 16px;
            }

            .video-section h2 {
                font-size: 20px;
            }

            .video-section iframe {
                height: 200px;
            }

            .news-content {
                height: 250px;
            }

            .facilities h2 {
                font-size: 24px;
                padding: 8px;
            }



            .app {
                padding: 20px;
                flex-direction: column;
            }

            .app-content h1 {
                font-size: 24px;
            }

            .app-content p {
                font-size: 15px;
            }

            .heading h2 {
                font-size: 28px;
            }

            .caption {
                font-size: 18px;
            }

            .card1 h2 {
                font-size: 30px;
            }

            .contact-box h2 {
                font-size: 24px;
            }

            .contact-box p {
                font-size: 14px;
            }
        }

        /* ===============================
   EVENTS SECTION – MOBILE FIX
   =============================== */
        @media (max-width: 600px) {

            /* Section heading */
            .d h2 {
                font-size: 24px;
                /* pehle 36px */
                padding: 20px 10px 15px;
                margin: 0;
            }

            /* Events container */
            .events {
                gap: 15px;
                /* pehle 25px */
                padding: 0 12px 25px;
            }

            /* Event card */
            .event-box {
                max-width: 100%;
                padding: 10px;
                /* pehle 30px */
                height: auto;
                /* fixed height hatao */
                border-radius: 10px;
            }

            /* Date box */
            .date {
                width: 65px;
                /* pehle ~90px */
                height: 65px;
                font-size: 30px;
                /* number size */
                padding: 6px;
                border-radius: 8px;
            }

            .month {
                font-size: 15px;
                line-height: 1;
            }

            /* Event title */
            .event-title {
                font-size: 18px;
                /* pehle 22px */
                margin-top: 20px;
                /* pehle 45px */
                line-height: 1.4;
            }
        }

        /* =====================================
   ACTIVITY SECTION – REAL RESPONSIVE FIX
===================================== */
        @media (max-width: 600px) {

            /* GRID FIX */

            .container1 {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 35px;
                justify-items: center;
                align-items: start;
            }



            /* 🔥 GRID ITEM WRAPPER FIX */
            .container1>div {
                width: 100%;
                max-width: 100%;
                overflow: hidden;
            }

            /* FRAME */
            .box {
                width: 100%;
                height: 200px;
                /* sab ke liye same */
                position: relative;
                overflow: hidden;
                border-radius: 6px;
                background: #fff;
            }




            /* IMAGE PERFECT FIT */

            .box img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                /* image crop hogi, distort nahi */
                position: absolute;
                top: 0;
                left: 0;
                opacity: 0;
                transition: opacity 1s ease-in-out;
            }



            /* CAPTION */
            .caption {
                font-size: 13px;
                margin-top: 6px;
                line-height: 1.3;
                text-align: center;
            }
        }

        /* ===============================
   APP SECTION – MOBILE SPACING FIX
   =============================== */
        @media (max-width: 600px) {

            .app {
                max-width: 100%;
                margin: 10px 12px;
                /* 🔥 pehle 20px ya zyada tha */
                padding: 16px 14px;
                /* 🔥 compact padding */
                gap: 14px;
                /* image + text ke beech */
                border-radius: 10px;
            }

            .app img {
                max-width: 220px;
                /* thoda compact */
                margin: 0 auto;
            }

            .app-content {
                margin-top: 0;
                /* 🔥 extra top gap remove */
            }

            .app-content h1 {
                font-size: 20px;
                margin-bottom: 8px;
            }

            .app-content p {
                font-size: 14px;
                line-height: 1.5;
                margin-bottom: 10px;
            }

            .download-btn {
                padding: 10px 20px;
                font-size: 14px;
            }
        }

        @media (max-width: 600px) {
            .stats {
                margin-top: 20px;
            }
        }

        @media (max-width: 600px) {
            .contact-box {
                border-radius: 18px;
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
            }
        }
   