﻿ :root {
            --primary-color: #002147;
            --secondary-color: #fdc800;
            --text-color: #4a4a4a;
            --footer-bg: #031b33;
            --text-grey: #a1a8b3;
            --border-color: rgba(255, 255, 255, 0.08);
            --font-heading: 'Poppins', sans-serif;
            --font-body: 'Inter', sans-serif;
            --paper-bg: #fffdf5;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-color);
            margin: 0;
            padding: 0;
            background-color: #fcfcfc;
        }

        h1, h2, h3, h4, h5, h6, .navbar-brand, .nav-link {
            font-family: var(--font-heading);
        }

        /* ----- Topbar ----- */
        .topbar {
            background-color: var(--primary-color);
            color: #d0d6dd;
            font-size: 13px;
            padding: 15px 0;
        }

            .topbar a {
                color: #d0d6dd;
                text-decoration: none;
                margin-right: 20px;
            }

                .topbar a:hover {
                    color: var(--secondary-color);
                }

            .topbar i {
                color: var(--secondary-color);
                margin-right: 8px;
            }

        .social-icons a {
            margin-right: 12px;
            margin-left: 0;
        }

        /* ----- Navbar & Search ----- */
        .header-main {
            padding: 20px 0;
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: relative;
        }

        .navbar-brand .logo-img {
            max-width: 400px; /* Desktop ke liye default width */
            height: auto;
            transition: 0.3s ease;
        }

        .nav-link {
            color: var(--primary-color) !important;
            font-weight: 500;
            font-size: 15px;
            padding: 13px 11px !important;
        }

            .nav-link:hover, .nav-link.active {
                color: var(--secondary-color) !important;
            }

        .dropdown-menu {
            border-radius: 0;
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-top: 3px solid var(--secondary-color);
        }

        .dropdown-item {
            font-family: var(--font-body);
            font-weight: 500;
        }

            .dropdown-item:hover {
                background-color: var(--primary-color);
                color: #fff;
            }

        /* --- DESKTOP HOVER DROPDOWN --- */
        @media (min-width: 992px) {
            .dropdown:hover .dropdown-menu {
                display: block;
                margin-top: 0;
            }
        }

        /* --- MOBILE & TABLET RESPONSIVE CSS --- */
        @media (max-width: 991px) {
            .header-main {
                padding: 10px 0;
            }

            .navbar-brand .logo-img {
                max-width: 160px;
            }

            /* FIX: Slider height managed for mobile view */
            .carousel-item.hero-slide {
                height: 350px !important; /* Mobile par फालतू space को खत्म करने के लिए */
            }

            .slider-caption-box {
                padding: 20px !important;
                max-width: 85% !important;
            }

                .slider-caption-box h2 {
                    font-size: 20px !important;
                }

                .slider-caption-box p {
                    font-size: 13px !important;
                    display: -webkit-box;
                    -webkit-line-clamp: 2;
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                }

            .navbar {
                position: static !important;
            }

            /* Mobile menu box elevation and full-width */
            .navbar-collapse {
                background-color: #ffffff !important;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                width: 100%;
                padding: 20px 25px !important;
                box-shadow: 0 15px 35px rgba(0, 33, 71, 0.15) !important;
                border-top: 3px solid var(--secondary-color);
                z-index: 9999 !important;
            }

            /* Left Align Menu Items */
            .navbar-nav {
                align-items: flex-start !important;
                text-align: left !important;
                width: 100% !important;
                margin-top: 10px !important;
            }

            .nav-item {
                width: 100% !important;
            }

            .nav-link {
                border-bottom: 1px solid #f1f5f9 !important;
                padding: 12px 10px !important;
                width: 100% !important;
                display: block !important;
            }

            .nav-item:last-child .nav-link {
                border-bottom: none !important;
            }

            .dropdown-menu {
                box-shadow: none !important;
                border-top: none !important;
                border-left: 3px solid var(--secondary-color) !important;
                background-color: #f8fafc !important;
                margin-left: 10px !important;
                padding-left: 15px !important;
                width: calc(100% - 10px) !important;
            }

            .navbar-toggler {
                border: 1px solid var(--primary-color) !important;
                padding: 6px 10px;
            }

            .navbar-toggler-icon {
                filter: invert(13%) sepia(50%) saturate(4156%) hue-rotate(199deg) brightness(97%) contrast(106%);
            }
        }

        /* ----- Hero Slider & Info Boxes ----- */
        .hero-wrapper {
            position: relative;
        }

        .carousel-item.hero-slide {
            height: 700px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
        }

        /* NEW: Slider Text Styling */
        .slider-caption-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0, 33, 71, 0.7), rgba(0, 33, 71, 0.2));
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .slider-caption-box {
            max-width: 650px;
            padding: 40px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-left: 5px solid var(--secondary-color);
            border-radius: 0 15px 15px 0;
            color: #ffffff;
            animation: fadeInUp 1s ease-in-out;
        }

            .slider-caption-box h2 {
                font-size: 42px;
                font-weight: 700;
                margin-bottom: 15px;
                color: #ffffff;
                text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            }

            .slider-caption-box p {
                font-size: 16px;
                line-height: 1.6;
                color: #f1f5f9;
                margin-bottom: 0;
            }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .info-boxes-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            z-index: 10;
        }

        .info-box-row {
            margin: 0;
        }

        .info-box {
            background: rgba(0, 33, 71, 0.9);
            padding: 35px 30px;
            color: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-right: 1px solid rgba(255,255,255,0.1);
            transition: 0.3s;
        }

            .info-box:hover {
                background: var(--primary-color);
            }

            .info-box:last-child {
                border-right: none;
            }

            .info-box h3 {
                font-size: 18px;
                font-weight: 600;
                margin-bottom: 5px;
            }

            .info-box p {
                font-size: 13px;
                color: #d0d6dd;
                margin: 0;
                font-family: var(--font-body);
            }

            .info-box .icon {
                font-size: 35px;
                color: var(--secondary-color);
            }

        /* ----- Section Titles ----- */
        .section-title {
            color: var(--primary-color);
            font-weight: 700;
            position: relative;
            padding-bottom: 12px;
            margin-bottom: 25px;
            font-size: 26px;
        }

            .section-title::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: 0;
                width: 60px;
                height: 3px;
                background-color: var(--secondary-color);
            }

            .section-title.text-center::after {
                left: 50%;
                transform: translateX(-50%);
            }

        /* ----- About Us ----- */
        .about-sec {
            padding: 90px 0;
            background-color: #ffffff;
        }

        .about-text-content {
            font-size: 16px;
            line-height: 1.8;
            color: #444;
        }

        .about-image-wrapper {
            position: relative;
        }

        .about-image {
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            width: 100%;
            object-fit: cover;
            height: 350px;
            border: 8px solid #fff;
        }

        .about-image-bg {
            position: absolute;
            top: -15px;
            right: -15px;
            bottom: 15px;
            left: 15px;
            background: var(--secondary-color);
            border-radius: 15px;
            z-index: -1;
        }

        /* ----- Principal & Vision ----- */
        .pv-sec {
            padding: 60px 0;
            background-color: #f4f7f6;
        }

        .letter-box {
            height: 100%;
            background: var(--paper-bg);
            padding: 40px;
            position: relative;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.03);
            padding-bottom: 60px;
        }

            .letter-box::before {
                content: "";
                position: absolute;
                bottom: 0;
                right: 0;
                width: 0;
                height: 0;
                border-style: solid;
                border-width: 0 0 50px 50px;
                border-color: transparent transparent #f4f7f6 #f4f7f6;
                z-index: 2;
            }

            .letter-box::after {
                content: "";
                position: absolute;
                bottom: 0;
                right: 0;
                width: 0;
                height: 0;
                border-style: solid;
                border-width: 50px 50px 0 0;
                border-color: #f0ead6 transparent transparent transparent;
                box-shadow: -3px -3px 5px rgba(0,0,0,0.1);
                z-index: 3;
            }

        .principal-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            padding-bottom: 15px;
        }

        .principal-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 3px solid var(--primary-color);
            padding: 3px;
        }

        .principal-name {
            color: var(--primary-color);
            font-weight: 700;
            margin: 0;
            font-size: 18px;
        }

        .principal-designation {
            color: var(--secondary-color);
            font-weight: 600;
            font-size: 14px;
        }

        .vision-item {
            display: flex;
            margin-bottom: 25px;
            align-items: flex-start;
        }

        .vision-icon {
            font-size: 28px;
            color: var(--secondary-color);
            margin-right: 18px;
            margin-top: 2px;
        }

        .letter-box p {
            line-height: 1.8;
            color: #555;
            font-size: 15px;
        }

        /* ----- OUR STRENGTH SECTION ----- */
        .strength-sec {
            padding: 100px 0 90px;
            background: linear-gradient(rgba(0, 33, 71, 0.93), rgba(0, 33, 71, 0.96)), url('https://images.unsplash.com/photo-1543269865-cbf427effbad?q=80&w=1920&auto=format&fit=crop') center center / cover no-repeat fixed;
            color: #fff;
        }

        .strength-title {
            font-size: 38px;
            font-weight: 800;
            margin-bottom: 10px;
            color: #ffffff;
            text-shadow: 0 4px 6px rgba(0,0,0,0.4);
        }

        .strength-subtitle {
            color: #d0d6dd;
            font-size: 16px;
            margin-bottom: 50px;
        }

        .strength-card {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 30px 15px;
            text-align: center;
            border: 2px solid var(--secondary-color);
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

            .strength-card:hover {
                transform: translateY(-8px);
                background-color: var(--secondary-color);
                border-color: #ffffff;
                box-shadow: 0 15px 40px rgba(0,0,0,0.25);
            }

            .strength-card h3 {
                color: var(--secondary-color);
                font-size: 34px;
                font-weight: 800;
                margin-bottom: 5px;
                font-family: var(--font-heading);
                transition: 0.3s;
            }

            .strength-card:hover h3 {
                color: var(--primary-color);
            }

            .strength-card p {
                color: #f1f1f1;
                margin: 0;
                font-size: 14px;
                font-weight: 500;
                letter-spacing: 0.5px;
                transition: 0.3s;
            }

            .strength-card:hover p {
                color: var(--primary-color);
            }

        /* ----- NOTICE BOARD & FEATURES GRID ----- */
        .notice-features-bg {
            background: linear-gradient(rgba(244, 247, 250, 0.90), rgba(244, 247, 250, 0.93)), url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?q=80&w=1920&auto=format&fit=crop') center center / cover no-repeat fixed;
            padding: 70px 0;
        }

        .notice-board-wrapper {
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 33, 71, 0.08);
            height: 100%;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(0,0,0,0.03);
        }

        .notice-header-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #ffffff;
            padding: 25px 30px;
            border-bottom: 3px solid #3c1e48;
        }

            .notice-header-row h3 {
                color: #002147;
                font-weight: 800;
                margin: 0;
                font-size: 22px;
            }

        .btn-purple {
            background-color: #3c1e48;
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 8px 18px;
            border-radius: 6px;
            text-decoration: none;
            transition: 0.3s;
        }

            .btn-purple:hover {
                background-color: var(--secondary-color);
                color: #000;
            }

        .notice-scroll-area {
            padding: 20px 30px;
            height: 380px;
            background: rgba(255,255,255,0.9);
        }

        .notice-list-item {
            border-left: 4px solid var(--secondary-color);
            padding: 15px 20px;
            margin-bottom: 20px;
            background: #fafafa;
            border-radius: 0 8px 8px 0;
            transition: all 0.3s ease;
        }

            .notice-list-item:hover {
                background: #f0f5fa;
                transform: translateX(5px);
            }

        .notice-date-text {
            color: #3c1e48;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 8px;
            display: block;
        }

        .notice-list-item p {
            font-size: 14px;
            color: #555;
            margin: 0;
            line-height: 1.7;
        }

        .feature-box {
            background: rgba(255,255,255,0.95);
            border-radius: 16px;
            padding: 35px 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 33, 71, 0.06);
            height: 100%;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.03);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 1;
        }

            .feature-box::before {
                content: "";
                position: absolute;
                width: 120px;
                height: 120px;
                background: rgba(253, 200, 0, 0.08);
                border-radius: 50%;
                top: -40px;
                right: -40px;
                transition: all 0.5s ease;
                z-index: -1;
            }

            .feature-box:hover::before {
                transform: scale(3.5);
                background: rgba(253, 200, 0, 0.15);
            }

            .feature-box:hover {
                transform: translateY(-8px);
                border-color: rgba(253, 200, 0, 0.5);
                background-color: #fff;
            }

        .feature-icon-wrapper {
            width: 75px;
            height: 75px;
            background: #f4f7fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: 0.4s ease;
        }

        .feature-box:hover .feature-icon-wrapper {
            background: var(--primary-color);
        }

        .feature-box i {
            font-size: 32px;
            color: var(--primary-color);
            transition: 0.4s ease;
        }

        .feature-box:hover i {
            color: var(--secondary-color);
            transform: rotateY(360deg);
        }

        .feature-box h5 {
            color: #3c1e48;
            font-weight: 700;
            font-size: 17px;
            margin: 0;
        }

        /* ----- TOPPERS SECTION ----- */
        .toppers-sec {
            background: linear-gradient(rgba(244, 247, 246, 0.88), rgba(244, 247, 246, 0.95)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?q=80&w=1920&auto=format&fit=crop');
            padding: 80px 0 60px;
        }

        .board-result-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 35px;
            padding: 40px 20px 30px;
            box-shadow: 0 12px 35px rgba(0, 33, 71, 0.08);
            border: 1px solid rgba(0,0,0,0.03);
            position: relative;
            z-index: 1;
            height: 100%;
        }

            .board-result-card::after {
                content: "";
                position: absolute;
                top: 10px;
                left: 50%;
                transform: translateX(-50%);
                width: 85%;
                height: 100%;
                background: transparent;
                box-shadow: 0 25px 60px rgba(0, 33, 71, 0.15);
                border-radius: 50%;
                z-index: -1;
            }

        .class-header-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .class-header {
            background: #fff;
            color: var(--primary-color);
            padding: 10px 25px;
            border-radius: 30px;
            font-size: 18px;
            font-weight: 700;
            border: 2px solid var(--primary-color);
            box-shadow: 0 5px 15px rgba(0, 33, 71, 0.1);
        }

        .topper-slider-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 10px 0 20px;
            -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
            mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
        }

        .topper-slider-track {
            display: flex;
            gap: 20px;
            width: max-content;
            animation: marqueeScroll 35s linear infinite;
        }

            .topper-slider-track:hover {
                animation-play-state: paused;
            }

        @keyframes marqueeScroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .topper-card {
            width: 220px;
            background: #fff;
            border-radius: 12px;
            padding: 25px 15px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0,0,0,0.05);
            position: relative;
            white-space: normal;
            transition: 0.3s;
            border: 2px solid rgba(0, 33, 71, 0.05);
        }

            .topper-card::before {
                content: "";
                position: absolute;
                top: 10px;
                left: 10px;
                right: 10px;
                bottom: 10px;
                border-radius: 8px;
                border: 1px dashed rgba(253, 200, 0, 0.5);
                z-index: 1;
                pointer-events: none;
                transition: 0.3s;
            }

            .topper-card:hover {
                transform: translateY(-8px);
                box-shadow: 0 15px 35px rgba(0,0,0,0.1);
                border-color: var(--secondary-color);
            }

                .topper-card:hover::before {
                    border: 1px solid var(--secondary-color);
                    background-color: rgba(253, 200, 0, 0.03);
                }

        .topper-card-content {
            position: relative;
            z-index: 2;
        }

        .topper-img {
            width: 85px;
            height: 85px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 15px;
            border: 3px solid #f4f4f4;
            padding: 3px;
        }

        .topper-name {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .topper-marks {
            display: inline-block;
            background: rgba(253, 200, 0, 0.2);
            color: var(--primary-color);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 14px;
            margin-top: 12px;
            border: 1px solid var(--secondary-color);
        }

        .medal-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
            z-index: 3;
        }

        .rank-1 {
            color: #FFD700;
        }

        .rank-2 {
            color: #C0C0C0;
        }

        .rank-3 {
            color: #CD7F32;
        }

        .rank-other {
            color: var(--primary-color);
            opacity: 0.5;
            font-size: 18px;
        }

        /* ----- TABS: GALLERY & VIDEO PORTFOLIO ----- */
        .portfolio-sec {
            padding: 80px 0 80px;
            background-color: #ffffff;
        }

        .portfolio-tabs .nav-pills {
            justify-content: center;
            margin-bottom: 30px;
            border-bottom: 2px solid #eaeaea;
        }

        .portfolio-tabs .nav-link {
            color: var(--primary-color) !important;
            font-size: 18px;
            font-weight: 600;
            border-radius: 0;
            padding: 10px 30px;
            background: transparent;
            margin: 0 10px;
            position: relative;
        }

            .portfolio-tabs .nav-link.active {
                background: transparent;
                color: var(--secondary-color) !important;
            }

                .portfolio-tabs .nav-link.active::after {
                    content: "";
                    position: absolute;
                    bottom: -2px;
                    left: 0;
                    width: 100%;
                    height: 3px;
                    background-color: var(--secondary-color);
                }

        .gallery-item {
            overflow: hidden;
            border-radius: 8px;
            margin-bottom: 20px;
            cursor: pointer;
        }

            .gallery-item img {
                width: 100%;
                height: 250px;
                object-fit: cover;
                transition: transform 0.5s ease;
            }

            .gallery-item:hover img {
                transform: scale(1.1);
            }

        .video-tour-wrapper {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            cursor: pointer;
        }

            .video-tour-wrapper img {
                width: 100%;
                height: 450px;
                object-fit: cover;
                display: block;
            }

        .play-btn-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 33, 71, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
        }

        .video-tour-wrapper:hover .play-btn-overlay {
            background: rgba(0, 33, 71, 0.6);
        }

        .play-icon {
            font-size: 80px;
            color: var(--secondary-color);
            filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
            transition: transform 0.3s;
        }

        .video-tour-wrapper:hover .play-icon {
            transform: scale(1.1);
        }

        /* ========================================================== */
        /* MAP & DOWNLOAD MOBILE APP SECTION                          */
        /* ========================================================== */
        .map-app-sec {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .map-wrapper {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            border: 5px solid #fff;
            height: 100%;
            min-height: 420px;
        }

        .app-download-wrapper {
            background: linear-gradient(135deg, #002147, #004d99);
            border-radius: 16px;
            padding: 45px 30px;
            text-align: center;
            box-shadow: 0 15px 40px rgba(0, 33, 71, 0.2);
            color: #fff;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

            .app-download-wrapper::before {
                content: '';
                position: absolute;
                top: -40px;
                right: -40px;
                width: 140px;
                height: 140px;
                background: rgba(253, 200, 0, 0.15);
                border-radius: 50%;
                z-index: -1;
            }

            .app-download-wrapper::after {
                content: '';
                position: absolute;
                bottom: -30px;
                left: -30px;
                width: 100px;
                height: 100px;
                background: rgba(255, 255, 255, 0.08);
                border-radius: 50%;
                z-index: -1;
            }

            .app-download-wrapper .icon-top {
                font-size: 55px;
                color: var(--secondary-color);
                margin-bottom: 15px;
                filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
                animation: float 3s ease-in-out infinite;
            }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .app-download-wrapper h3 {
            font-weight: 800;
            font-size: 26px;
            margin-bottom: 15px;
            font-family: var(--font-heading);
            letter-spacing: 0.5px;
        }

        .app-download-wrapper p {
            font-size: 14px;
            color: #dbe4f0;
            margin-bottom: 35px;
            line-height: 1.7;
        }

        .app-store-btn {
            display: flex;
            align-items: center;
            background-color: #111111;
            color: #fff !important;
            padding: 10px 25px;
            border-radius: 10px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.1);
            width: 100%;
            margin-bottom: 15px;
            text-align: left;
        }

            .app-store-btn:hover {
                background-color: #000000;
                transform: translateY(-4px);
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
                border-color: rgba(255,255,255,0.3);
            }

            .app-store-btn i {
                font-size: 30px;
                margin-right: 15px;
            }

        .btn-google i {
            color: #34A853;
        }

        .btn-apple i {
            color: #ffffff;
        }

        .app-store-btn .text-area {
            display: flex;
            flex-direction: column;
        }

        .app-store-btn .small-text {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #aaaaaa;
            margin-bottom: 2px;
        }

        .app-store-btn .large-text {
            font-size: 18px;
            font-weight: 700;
            font-family: var(--font-heading);
            letter-spacing: 0.5px;
        }

        /* ----- Footer Main Area ----- */
        .footer-area {
            background-color: #031529;
            color: #a1a8b3;
            padding: 70px 0 20px;
            font-family: var(--font-body);
            position: relative;
        }

        .footer-brand {
            font-size: 28px;
            font-weight: 700;
            color: #ffffff;
            text-decoration: none;
            font-family: var(--font-heading);
            display: inline-block;
        }

            .footer-brand i {
                margin-right: 8px;
                color: var(--secondary-color);
            }

        .footer-desc {
            line-height: 1.8;
            font-size: 15px;
            margin-top: 15px;
            margin-bottom: 25px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.05);
            color: #ffffff;
            border-radius: 5px;
            margin-right: 10px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

            .social-links a:hover {
                background-color: var(--secondary-color);
                color: #031529;
                transform: translateY(-3px);
                box-shadow: 0 5px 15px rgba(253, 200, 0, 0.3);
            }

        .footer-widget-title {
            color: #ffffff;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 25px;
            font-family: var(--font-heading);
            position: relative;
            padding-bottom: 12px;
        }

            .footer-widget-title::after {
                content: '';
                position: absolute;
                left: 0;
                bottom: 0;
                width: 40px;
                height: 3px;
                background-color: var(--secondary-color);
                border-radius: 2px;
            }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .footer-links li {
                margin-bottom: 12px;
            }

            .footer-links a {
                color: #a1a8b3;
                text-decoration: none;
                transition: 0.3s;
                display: inline-block;
                font-size: 15px;
            }

                .footer-links a i {
                    color: var(--secondary-color);
                    margin-right: 8px;
                    font-size: 12px;
                    transition: 0.3s;
                }

                .footer-links a:hover {
                    color: var(--secondary-color);
                    transform: translateX(5px);
                }

        .footer-contacts {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .footer-contacts li {
                display: flex;
                align-items: flex-start;
                margin-bottom: 20px;
                line-height: 1.6;
                font-size: 15px;
            }

                .footer-contacts li i {
                    color: var(--secondary-color);
                    font-size: 18px;
                    margin-top: 4px;
                    margin-right: 15px;
                }

        .newsletter-text {
            color: #a1a8b3;
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .newsletter-form .input-group {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-radius: 5px;
            overflow: hidden;
        }

        .newsletter-form .form-control {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            color: #fff;
            padding: 12px 15px;
            font-size: 14px;
        }

            .newsletter-form .form-control:focus {
                background: rgba(255,255,255,0.1);
                border-color: var(--secondary-color);
                box-shadow: none;
                color: #fff;
            }

            .newsletter-form .form-control::placeholder {
                color: rgba(255,255,255,0.5);
            }

        .newsletter-form .btn-warning {
            background: var(--secondary-color);
            border: none;
            color: #031529;
            padding: 0 20px;
            font-weight: 600;
            transition: 0.3s;
        }

            .newsletter-form .btn-warning:hover {
                background: #e6b500;
            }

        .footer-bottom {
            padding-top: 25px;
            font-size: 14px;
        }

        .footer-bottom-links {
            padding: 0;
        }

            .footer-bottom-links a {
                color: #a1a8b3;
                text-decoration: none;
                transition: 0.3s;
            }

                .footer-bottom-links a:hover {
                    color: var(--secondary-color);
                }

            .footer-bottom-links li:not(:last-child)::after {
                content: '|';
                margin: 0 12px;
                color: rgba(255,255,255,0.2);
            }

        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: var(--secondary-color);
            color: #000;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            text-decoration: none;
            font-size: 18px;
            transition: 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            z-index: 99;
        }

            .scroll-to-top:hover {
                background-color: #fff;
                color: var(--primary-color);
                transform: translateY(-3px);
            }

        /* NEW: Sticky WhatsApp Floating Button Styling */
        .whatsapp-float {
            position: fixed;
            bottom: 90px;
            right: 30px;
            background-color: #25d366;
            color: #fff !important;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            text-decoration: none;
            font-size: 22px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            z-index: 999;
            transition: 0.3s ease;
            animation: pulseWhatsApp 2s infinite;
        }

            .whatsapp-float:hover {
                background-color: #20ba5a;
                transform: scale(1.1);
                color: #fff;
            }

        @keyframes pulseWhatsApp {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }