body {
                            font-family: "Poppins", sans-serif;
                            line-height: 1.7;
                            color: #333;
                        }
                        h6 {
                            margin-top: .5rem;
                        }

                        /* ================= TOP BAR ================= */
                        .topbar {
                            position: relative;
                            overflow: hidden;
                            color: #fff;
                            font-size: 16px;
                            padding: 8px 0px 8px 0px;
                        }

                        /* Green base background */
                        .topbar {
                            background: #c96c32;
                        }

                        /* Red skew overlay */
                        .topbar::before {
                            content: "";
                            position: absolute;
                            top: 0;
                            left: -40px;
                            width: 45%;
                            height: 100%;
                            background: #39234a;
                            transform: skew(30deg);
                            z-index: 1;
                        }

                        /* Keep content above skew */
                        .topbar .container {
                            position: relative;
                            z-index: 2;
                        }

                        /* Spacing & icons */
                        .top-info span {
                            margin-right: 20px;
                        }

                        .top-info i,
                        .top-social i {
                            margin-right: 6px;
                            color: #fff;
                        }

                        .top-social a {
                            color: #fff;
                            margin-left: 12px;
                            transition: 0.3s;
                        }

                        .top-social a:hover {
                            opacity: 0.8;
                        }

                        /* ================= NAVBAR ================= */
                        .main-nav {
                            background: #fff;
                            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
                        }
            			.main-nav .nav-link {
                color: #333;
                font-weight: 500;
                position: relative;
                transition: all 0.3s ease;
            }

            /* Active link */
            .main-nav .nav-link.active {
                color: #caa34d; /* Suraka gold */
                font-weight: 600;
            }

            /* Underline animation */
            .main-nav .nav-link.active::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: -6px;
                width: 100%;
                height: 2px;
                background: #caa34d;
            }

                        .navbar-brand img {
                            max-height: 60px;
                        }
                        .nav-link {
                            font-weight: 500;
                            color: #39234a !important;
                            margin: 0 5px;
                            position: relative;
                        }
                        .nav-link:after {
                            content: "";
                            position: absolute;
                            width: 0;
                            height: 2px;
                            background: #c96c32;
                            left: 0;
                            bottom: 0;
                            transition: 0.3s;
                        }
                        .nav-link:hover:after,
                        .nav-link.active:after {
                            width: 100%;
                        }
                        
                        

                       /*-----------hero------------*/
                       .hero-banner {
                          position: relative;
                          background: url("images/1.jpg") center/cover no-repeat;
                          padding:30px 0px 30px 10px;
                          color: #fff;
                        }
                        
                        @media (max-width: 768px) {
                            .hero-banner {
                                background: none center/cover no-repeat;
                                padding: 0px 15px;
                                text-align: center;
                            }
                        }

                        
                        .hero-overlay {
                          position: absolute;
                          inset: 0;
                          /*background: rgba(0, 0, 0, 0.55);*/
                        }
                        
                        .hero-container {
                          position: relative;
                          max-width: 1100px;
                          margin: auto;
                          display: flex;
                          align-items: center;
                          gap: 50px;
                          z-index: 2;
                        }
                        
                        /* Left Content */
                        .hero-content {
                          flex: 1;
                          animation: fadeLeft 1s ease;
                        }
                        
                        .hero-badge {
                            background: #c96c32;
                            color: #ffffff;
                            padding: 1px 10px;
                            border-radius: 8px;
                            font-size: 30px;
                            display: inline-block;
                            margin-bottom: 15px;
                        }
                        
                        .hero-content h1 {
                          font-size: 44px;
                          line-height: 1.2;
                          margin-bottom: 15px;
                        }
                        
                        .hero-content h1 span {
                          color: #ffcc00;
                        }
                        
                        .hero-content p {
                          font-size: 18px;
                          opacity: 0.95;
                          margin-bottom: 25px;
                        }
                        
                        .hero-btn {
                          background: #39234a;
                          color: #fff;
                          border: none;
                          padding: 14px 30px;
                          border-radius: 30px;
                          font-size: 16px;
                          cursor: pointer;
                          transition: 0.3s;
                        }
                        
                        .hero-btn:hover {
                          background: #39234a;
                          color:#fff;
                        }
                        
                        /* Right Form */
                        .hero-form {
                          flex: 0.4;
                          background: #ffffff;
                          color: #333;
                          padding: 15px;
                          border-radius: 18px;
                          box-shadow: 0 25px 60px rgba(0,0,0,0.4);
                          animation: fadeRight 1s ease;
                        }
                        
                        .hero-form h3 {
                          text-align: center;
                          margin-bottom: 5px;
                        }
                        
                        .hero-form input,
                        .hero-form select {
                          width: 100%;
                          padding: 6px;
                          margin-bottom: 5px;
                          border-radius: 8px;
                          border: 1px solid #ccc;
                          color: #5e5e5e;
                        }
                        
                        .hero-form button {
                          width: 100%;
                          background: #39234a;
                          color: #fff;
                          border: none;
                          padding: 8px;
                          border-radius: 30px;
                          font-size: 16px;
                          cursor: pointer;
                        }
                        
                        .hero-form button:hover {
                          background: #c96c32;
                        }
                        
                        .form-msg {
                          text-align: center;
                          margin-top: 10px;
                          color: green;
                        }
                        
                        /* Animations */
                        @keyframes fadeLeft {
                          from { opacity: 0; transform: translateX(-40px); }
                          to { opacity: 1; transform: translateX(0); }
                        }
                        
                        @keyframes fadeRight {
                          from { opacity: 0; transform: translateX(40px); }
                          to { opacity: 1; transform: translateX(0); }
                        }
                        
                        /* Mobile Responsive */
                        @media (max-width: 768px) {
                          .hero-container {
                            flex-direction: column;
                          }
                        
                          .hero-content h1 {
                            font-size: 32px;
                          }
                        }

                        
                        .robot-check {
                            display: flex;
                            align-items: center;
                            gap: 1px;
                            font-size: 14px;
                            margin: 5px 0;
                        }
                        .robot-check input[type="checkbox"] {
                            width: auto;
                            padding: 12px;
                            margin-bottom: 4px;
                        }
                        
                        /* ================= SECTION ================= */
                        section {
                            padding: 40px 0;
                        }
                        .section-title {
                            text-align: center;
                            margin-bottom: 50px;
                        }
                        .section-title h2 {
                            font-weight: 700;
                            color: #39234a;
                        }

                        /* ================= ABOUT ================= */
                        /* About Video Image */
                        .about-img {
                            position: relative;
                        }

                        /* Play Button */
                        .play-btn {
                            position: absolute;
                            top: 50%;
                            left: 50%;
                            transform: translate(-50%, -50%);
                            width: 80px;
                            height: 80px;
                            background: rgba(0, 0, 0, 0.6);
                            border-radius: 50%;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            color: #fff;
                            font-size: 30px;
                            transition: all 0.3s ease;
                        }

                        .video-link:hover .play-btn {
                            background: #e53935;
                            transform: translate(-50%, -50%) scale(1.1);
                        }

                        /* Playstore Button */
                        .playstore-btn {
                            position: absolute;
                            bottom: 20px;
                            left: 20px;
                            background: #000;
                            color: #fff;
                            padding: 10px 16px;
                            border-radius: 30px;
                            font-size: 16px;
                            display: inline-flex;
                            align-items: center;
                            gap: 8px;
                            text-decoration: none;
                            transition: all 0.3s ease;
                        }

                        .playstore-btn i {
                            font-size: 16px;
                        }

                        .playstore-btn:hover {
                            background: #e53935;
                            color: #fff;
                        }

                        .about-section {
                            background: #fff;
                            padding-top: 50px;
                        }
                        .sub-title {
                            display: inline-block;
                            color: #c96c32;
                            font-weight: 600;
                            letter-spacing: 1px;
                            margin-bottom: 10px;
                        }
                        .about-content h2 {
                            color: #39234a;
                            font-weight: 700;
                        }
                        .about-box {
                            display: flex;
                            align-items: center;
                            gap: 8px;
                            padding: 10px 10px;
                            border-radius: 15px;
                            background: #f8f9fa;
                            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
                            transition: 0.4s;
                        }
                        .about-box img {
                            width: 27px;
                            height: 27px;
                            object-fit: contain;
                        }
                        .about-box:hover {
                            color: #c96c32;
                            transform: translateY(-6px);
                        }
                        .about-box:hover i {
                            color: #fff;
                        }
                        .about-img img {
                            transition: 0.5s;
                        }
                        .about-img:hover img {
                            transform: scale(1.05);
                        }

                        /* ================= CURRICULUM ================= */
                        .curriculum-section {
                            background: linear-gradient(135deg, #f8f9fa, #ffffff);
                        }
                        .curriculum-content h2 {
                            color: #39234a;
                            font-weight: 700;
                        }
                        .curriculum-points {
                            list-style: none;
                            padding: 0;
                            margin: 20px 0;
                        }
                        .curriculum-points li {
                            margin-bottom: 5px;
                            font-weight: 500;
                        }
                        .curriculum-points i {
                            color: #c96c32;
                            margin-right: 5px;
                        }
                        .curriculum-visual {
                            display: grid;
                            grid-template-columns: 1fr 1fr;
                            gap: 20px;
                        }
            			@media (max-width: 767px) {

                .curriculum-visual {
                    display: flex;
                    flex-direction: column;
                    gap: 15px;
                }

                .curriculum-card {
                    width: 100%;
                    margin: 0;
                }
            }

            			@media (max-width: 767px) {

                /* Section spacing */
                .curriculum-section {
                    padding: 50px 0;
                    text-align: center;
                }

                /* Content column */
                .curriculum-content {
                    text-align: center;
                }

                .curriculum-content .sub-title {
                    font-size: 12px;
                    letter-spacing: 1px;
                    <!-- display: inline-block; -->
                    margin-bottom: 10px;
                }

                .curriculum-content h2 {
                    font-size: 26px;
                    line-height: 1.3;
                }

                .curriculum-content h5 {
                    font-size: 15px;
                    margin-bottom: 15px;
                }

                .curriculum-content p {
                    font-size: 14px;
                    line-height: 1.7;
                    margin-bottom: 20px;
                }

                /* Points list */
                .curriculum-points {
                    padding: 0;
                    margin: 0;
                    text-align: left;
                    /*display: inline-block;*/
                }

                .curriculum-points li {
                    font-size: 14px;
                    margin-bottom: 10px;
                }

                /* Visual column */
                .curriculum-visual {
                    margin-top: 30px;
                }

                /* Cards */
                .curriculum-card {
                    padding: 18px;
                    margin-bottom: 15px;
                    text-align: center;
                    border-radius: 12px;
                }

                .curriculum-card i {
                    font-size: 28px;
                    margin-bottom: 10px;
                }

                .curriculum-card h4 {
                    font-size: 18px;
                    margin-bottom: 8px;
                }

                .curriculum-card p {
                    font-size: 14px;
                    line-height: 1.6;
                }
            }


                        .curriculum-card {
                            background: #fff;
                            padding: 20px;
                            border-radius: 20px;
                            text-align: center;
                            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
                            transition: 0.4s;
                        }
                        .curriculum-card i {
                            font-size: 40px;
                            color: #c96c32;
                            margin-bottom: 15px;
                        }
                        .curriculum-card:hover {
                            transform: translateY(-10px);
                            background: #39234a;
                            color: #fff;
                        }
                        .curriculum-card:hover i {
                            color: #c96c32;
                        }

                        /* ================= SPORTS ================= */
                        .sports-section {
                            background: #f8f9fa;
                        }
                        .sport-card {
                            background: #fff;
                            padding: 20px 15px;
                            border-radius: 16px;
                            text-align: center;
                            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                            transition: 0.4s;
                            height: 100%;
                        }
                        .sport-card i {
                            font-size: 30px;
                            color: #c96c32;
                            margin-bottom: 8px;
                        }
                        .sport-card:hover {
                            background: #39234a;
                            color: #fff;
                            transform: translateY(-8px);
                        }
                        .sport-card:hover i {
                            color: #c96c32;
                        }
                        .sport-card.highlight {
                            background: #c96c32;
                            color: #000;
                        }

                        /* ================= ECO CAMPUS ================= */
                        .eco-section {
                            background: linear-gradient(135deg, #ffffff, #eef7f1);
                        }
                        .eco-content h2 {
                            color: #39234a;
                            font-weight: 700;
                        }
                        .eco-list {
                            list-style: none;
                            padding: 0;
                            margin-top: 20px;
                        }
                        .eco-list li {
                            margin-bottom: 12px;
                            font-weight: 500;
                        }
                        .eco-list i {
                            color: #4caf50;
                            margin-right: 10px;
                        }

                        /* ================= FEATURES ================= */
                        .feature-box {
                            background: #fff;
                            padding: 10px;
                            border-radius: 15px;
                            text-align: center;
                            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                            transition: 0.4s;
                            height: 160px;
                        }
                        .feature-box:hover {
                            transform: translateY(-10px);
                        }
                        .feature-box i {
                            font-size: 40px;
                            color: #c96c32;
                            margin-bottom: 15px;
                        }

                        /* ================= PROGRAMS ================= */
                        .program-card {
                            border-radius: 20px;
                            overflow: hidden;
                            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                            transition: 0.3s;
                        }
                        .program-card:hover {
                            transform: scale(1.03);
                        }

                        /* ================= STATS ================= */
                        .stats {
                            background: #39234a;
                            color: #fff;
                        }
                        .stat-box h3 {
                            font-size: 2.5rem;
                            font-weight: 700;
                        }

                        /* ================= TESTIMONIAL ================= */
                        .testimonial {
                            background: #f8f9fa;
                        }
                        .testimonial-card {
                            background: #fff;
                            padding: 30px;
                            border-radius: 15px;
                            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                        }

                        /* ================= FORM ================= */
                        .enquiry {
                            background: linear-gradient(135deg, #3a1452, #c96c32);
                            color: #fff;
                        }
                        .form-control {
                            border-radius: 30px;
                            padding: 12px 20px;
                        }

                        .site-footer {
                            background: #39234a;
                            color: #ffffff;
                            padding: 70px 0 0;
                        }

                        .footer-brand img {
                            max-width: 160px;
                            margin-bottom: 15px;
                        }

                        .footer-title {
                            font-size: 20px;
                            margin-bottom: 18px;
                            font-weight: 600;
                            position: relative;
                        }

                        .footer-title::after {
                            content: "";
                            width: 40px;
                            height: 3px;
                            background: #c96c32;
                            display: block;
                            margin-top: 6px;
                        }

                        .footer-links,
                        .footer-contact {
                            list-style: none;
                            padding: 0;
                            margin: 0;
                        }

                        .footer-links li {
                            margin-bottom: 10px;
                        }

                        .footer-links a {
                            color: #dfe6e9;
                            font-size: 14px;
                            text-decoration: none;
                            transition: 0.3s;
                        }

                        .footer-links a:hover {
                            color: #c96c32;
                            padding-left: 5px;
                        }

                        .footer-contact li {
                            margin-bottom: 5px;
                        }

                        .footer-contact i {
                            color: #c96c32;
                            margin-right: 8px;
                        }

                        .footer-social {
                            margin-top: 15px;
                        }

                        .footer-social a {
                            display: inline-flex;
                            align-items: center;
                            justify-content: center;
                            width: 36px;
                            height: 36px;
                            border-radius: 50%;
                            background: rgba(255, 255, 255, 0.1);
                            color: #fff;
                            margin-right: 8px;
                            transition: 0.4s;
                            text-decoration: none;
                        }

                        .footer-social a:hover {
                            background: #c96c32;
                            color: #000;
                            transform: translateY(-5px);
                        }

                        .footer-bottom {
                            background: rgba(0, 0, 0, 0.25);
                            margin-top: 50px;
                            padding: 15px 0;
                            text-align: center;
                        }

                        .footer-bottom p {
                            margin: 0;
                        }

                
                        /* ================= CREATIVITY UNLEASHED ================= */
                        .creativity-section {
                            padding: 90px 0;
                            background: linear-gradient(135deg, #f9fbff, #eef4ff);
                            position: relative;
                            overflow: hidden;
                        }

                        .creativity-section::before {
                            content: "";
                            position: absolute;
                            width: 300px;
                            height: 300px;
                            background: #c96c32;
                            opacity: 0.08;
                            border-radius: 50%;
                            top: -100px;
                            left: -100px;
                        }

                        .creativity-content .sub-title {
                            font-size: 14px;
                            font-weight: 600;
                            letter-spacing: 2px;
                            color: #c96c32;
                            <!-- display: inline-block; -->
                            margin-bottom: 10px;
                        }

                        .creativity-content h2 {
                            font-weight: 700;
                            color: #39234a;
                        }

                        .creativity-content p {
                            color: #555;
                            margin-bottom: 20px;
                        }

                        .creativity-list {
                            list-style: none;
                            padding: 0;
                            margin: 0;
                        }

                        .creativity-list li {
                            display: flex;
                            align-items: center;
                            gap: 12px;
                            margin-bottom: 12px;
                            font-weight: 500;
                            color: #333;
                        }

                        .creativity-list i {
                            color: #c96c32;
                            font-size: 18px;
                        }

                        /* ================= CREATIVE GRID ================= */
                        .creativity-grid {
                            display: grid;
                            grid-template-columns: repeat(2, 1fr);
                            gap: 20px;
                        }

                        .creative-card {
                            background: #fff;
                            border-radius: 18px;
                            padding: 30px 30px;
                            text-align: center;
                            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
                            transition: all 0.4s ease;
                            position: relative;
                            overflow: hidden;
                        }

                        .creative-card::before {
                            content: "";
                            position: absolute;
                            inset: 0;
                            background: linear-gradient(135deg, #c96c32, #ffda77);
                            opacity: 0;
                            transition: 0.4s;
                            z-index: 0;
                        }

                        .creative-card i,
                        .creative-card h6 {
                            position: relative;
                            z-index: 1;
                        }

                        .creative-card i {
                            font-size: 36px;
                            color: #c96c32;
                            margin-bottom: 10px;
                            transition: 0.4s;
                        }

                        .creative-card h6 {
                            font-weight: 600;
                            margin: 0;
                            transition: 0.4s;
                        }

                        .creative-card:hover {
                            transform: translateY(-12px) scale(1.03);
                        }

                        .creative-card:hover::before {
                            opacity: 1;
                        }

                        .creative-card:hover i,
                        .creative-card:hover h6 {
                            color: #000;
                        }

                        /* ================= BUTTON ================= */
                        .creativity-section .btn-main {
                            padding: 12px 34px;
                            border-radius: 30px;
                        }

                        /* ================= SCROLL ANIMATION ================= */
                        .creativity-content,
                        .creativity-grid {
                            opacity: 0;
                            transform: translateY(40px);
                            transition: all 0.8s ease;
                        }

                        .creativity-section.show .creativity-content,
                        .creativity-section.show .creativity-grid {
                            opacity: 1;
                            transform: translateY(0);
                        }

                        /* ================= MOBILE ================= */
                        @media (max-width: 767px) {
                            .creativity-grid {
                                grid-template-columns: 1fr;
                            }
                        }
                        .sports-section {
                            background: #f8f9fa;
                        }

                        .sport-card-img {
                            position: relative;
                            overflow: hidden;
                            border-radius: 18px;
                            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
                        }

                        .sport-card-img img {
                            width: 100%;
                            height: 220px;
                            object-fit: cover;
                            transition: transform 0.6s ease;
                        }

                        .sport-card-img .overlay {
                            position: absolute;
                            inset: 0;
                            background: linear-gradient(180deg, transparent, rgba(10, 61, 98, 0.9));
                            display: flex;
                            align-items: flex-end;
                            justify-content: center;
                            padding-bottom: 20px;
                            opacity: 0;
                            transition: 0.5s;
                        }

                        .sport-card-img h6 {
                            color: #fff;
                            font-size: 16px;
                            font-weight: 600;
                        }

                        .sport-card-img:hover img {
                            transform: scale(1.12);
                        }

                        .sport-card-img:hover .overlay {
                            opacity: 1;
                        }

                        .sports-slider img {
                            width: 100%;
                            height: 280px;
                            object-fit: cover;
                            border-radius: 18px;
                        }
                        .whatsapp-float {
                            position: fixed;
                            bottom: 65px;
                            left: 25px;
                            width: 45px;
                            height: 45px;
                            background: #25d366;
                            color: #fff;
                            border-radius: 50%;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            font-size: 30px;
                            z-index: 999;
                            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
                            animation: pulse 2s infinite;
                        }

                        @keyframes pulse {
                            0% {
                                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
                            }
                            70% {
                                box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
                            }
                            100% {
                                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
                            }
                        }

                        .footer-map iframe {
                            width: 100%;
                            height: 220px;
                            border: 0;
                            border-radius: 16px;
                            margin-top: 0px;
                        }

                        /* ================= CAMPUS + ADMISSIONS ================= */
                        .campus-admission-section {
                            padding: 50px 0;
                            background: linear-gradient(135deg, #f8fbff, #eef3ff);
                        }

                        /* -------- Campus Box -------- */
                        .campus-box {
                            background: #fff;
                            padding: 40px;
                            border-radius: 20px;
                            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
                            height: 100%;
                            transition: 0.4s;
                        }

                        .campus-box:hover {
                            transform: translateY(-8px);
                        }

                        .section-heading {
                            font-weight: 700;
                            color: #39234a;
                            margin-bottom: 25px;
                        }

                        .campus-list {
                            list-style: none;
                            padding: 0;
                        }

                        .campus-list li {
                            display: flex;
                            align-items: center;
                            gap: 14px;
                            font-weight: 500;
                            margin-bottom: 14px;
                        }

                        .campus-list i {
                            font-size: 18px;
                            color: #c96c32;
                        }

                        /* -------- Affiliations -------- */
                        .affiliation-box {
                            background: #f8f9fa;
                            padding: 25px;
                            border-radius: 15px;
                            margin-top: 25px;
                        }

                        .affiliation-box h5 {
                            font-weight: 600;
                            margin-bottom: 15px;
                        }

                        .affiliation-box ul {
                            padding-left: 20px;
                        }

                        .affiliation-box span {
                            color: #888;
                            font-size: 14px;
                        }

                        /* -------- Admission Box -------- */
                        .admission-box {
                            background: #3a1452;
                            color: #fff;
                            padding: 45px;
                            border-radius: 22px;
                            height: 100%;
                            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
                            position: relative;
                            overflow: hidden;
                        }

                        .admission-box::before {
                            content: "";
                            position: absolute;
                            width: 250px;
                            height: 250px;
                            background: rgba(255, 255, 255, 0.15);
                            border-radius: 50%;
                            top: -80px;
                            right: -80px;
                        }

                        .admission-badge {
                            background: #c96c32;
                            color: #fff;
                            padding: 6px 18px;
                            font-size: 14px;
                            border-radius: 30px;
                            display: inline-block;
                            margin-bottom: 15px;
                            font-weight: 600;
                        }

                        .admission-box h3 {
                            font-weight: 700;
                            margin-bottom: 15px;
                        }

                        .contact-info p {
                            margin-bottom: 8px;
                            font-weight: 500;
                        }

                        .contact-info i {
                            margin-right: 10px;
                            color: #c96c32;
                        }

                        /* -------- Buttons -------- */
                        .admission-btns {
                            display: flex;
                            gap: 15px;
                            margin-top: 25px;
                        }

                        .admission-btns .btn {
                            padding: 12px 28px;
                            border-radius: 30px;
                            font-weight: 600;
                        }

                        /* -------- Animation -------- */
                        .campus-box,
                        .admission-box {
                            transform: translateY(40px);
                            transition: all 0.8s ease;
                        }

                        .campus-admission-section.show .campus-box,
                        .campus-admission-section.show .admission-box {
                            opacity: 1;
                            transform: translateY(0);
                        }

                        /* -------- Mobile -------- */
                        @media (max-width: 767px) {
                            .admission-btns {
                                flex-direction: column;
                            }
                        }
                        html {
                scroll-behavior: smooth;
            }


                        /* Offset for sticky navbar */
                        section {
                            scroll-margin-top: 90px;
                        }

                        /* Hands-on Section */
                        .hands-on-section {
                            padding: 50px 0;
                            background: linear-gradient(180deg, #f9fbff, #ffffff);
                        }

                        /* Image Design */
                        .hands-on-image {
                            position: relative;
                            border-radius: 20px;
                            overflow: hidden;
                        }

                        .hands-on-image img {
                            width: 100%;
                            border-radius: 20px;
                            transition: transform 0.5s ease;
                        }

                        .hands-on-image:hover img {
                            transform: scale(1.08);
                        }

                        .image-overlay {
                            position: absolute;
                            inset: 0;
                            background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.75));
                            color: #fff;
                            display: flex;
                            flex-direction: column;
                            justify-content: flex-end;
                            padding: 25px;
                        }

                        .image-overlay h5 {
                            margin: 0;
                            font-weight: 600;
                        }

                        /* Lab Cards */
                        .lab-card {
                            background: #fff;
                            padding: 35px 20px;
                            border-radius: 18px;
                            text-align: center;
                            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
                            transition: all 0.4s ease;
                            position: relative;
                            overflow: hidden;
                        }

                        .lab-card::before {
                            content: "";
                            position: absolute;
                            inset: 0;
                            background: linear-gradient(135deg, #c96c32, #39234a);
                            opacity: 0;
                            transition: 0.4s;
                        }

                        .lab-card:hover::before {
                            opacity: 1;
                        }

                        .lab-card * {
                            position: relative;
                            z-index: 2;
                        }

                        .lab-card i {
                            font-size: 32px;
                            color: #c96c32;
                            margin-bottom: 12px;
                            transition: 0.4s;
                        }

                        .lab-card h6 {
                            font-weight: 600;
                            margin: 0;
                            transition: 0.4s;
                        }

                        .lab-card:hover i,
                        .lab-card:hover h6 {
                            color: #fff;
                        }

                        .lab-card:hover {
                            transform: translateY(-10px);
                        }

                        /* More Card */
                        .lab-card.more i {
                            font-size: 28px;
                        }

                        /* Mobile */
                        @media (max-width: 767px) {
                            .hands-on-section {
                                padding: 60px 0;
                            }
                        }

                        .section-title .sub-title {
                            display: block;
                            font-weight: 600;
                            color: #c96c32;
                            margin-bottom: 8px;
                            text-transform: uppercase;
                        }

                        .section-title h2 {
                            font-weight: 700;
                        }

                        .list-style-check li {
                            position: relative;
                            padding-left: 22px;
                            margin-bottom: 8px;
                            list-style: none;
                        }

                        li {
                            list-style: none;
                        }

                        .list-style-check li::before {
                            content: "✔";
                            position: absolute;
                            left: 0;
                            color: #c96c32;
                        }

                        .parent-partnership-section {
                            background: #f9fafb;
                        }

                        .parent-partnership-section .sub-title {
                            color: #c96c32;
                            font-weight: 600;
                            letter-spacing: 1px;
                        }

                        .parent-card {
                            background: #fff;
                            border-radius: 16px;
                            padding: 30px 20px;
                            text-align: center;
                            height: 100%;
                            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
                            transition: all 0.3s ease;
                        }

                        .parent-card i {
                            font-size: 40px;
                            color: #c96c32;
                            margin-bottom: 0px;
                        }

                        .parent-card h6 {
                            font-weight: 600;
                            margin-bottom: 10px;
                        }

                        .parent-card:hover {
                            transform: translateY(-8px);
                            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
                        }
                        .video-wrapper {
                position: relative;
                width: 100%;
                padding-top: 56.25%; /* 16:9 Aspect Ratio */
                border-radius: 20px;
                overflow: hidden;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
            }

            .video-wrapper iframe {
                position: absolute;
                inset: 0;
                width: 100%;
                height: 100%;
                border-radius: 20px;
            }
            
            
            
            
            
            .video-testimonial-section {
  padding: 50px 0;
  background: #f8f9fa;
}

.video-box {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
}

.video-box img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(0,0,0,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.play-icon i {
  color: #fff;
  font-size: 26px;
  margin-left: 4px;
}

.video-box:hover .play-icon {
  background: #e63946;
  transform: translate(-50%, -50%) scale(1.1);
}

/*toptobotttom*/

#scrollTopBtn {
    position: fixed;
    bottom: 50px; /* above WhatsApp icon */
    right: 25px;
    z-index: 999;
    width: 48px;
    height: 48px;
    border: none;
    outline: none;
    background: #39234a;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    display: none;
    font-size: 18px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

#scrollTopBtn:hover {
    background: #c96c32;
    transform: translateY(0px);
}


/* Scroll To Top – Mobile Only */
#scrollTopBtn {
    display: none;
}

/* Show only on mobile screens */
@media (max-width: 767px) {
    #scrollTopBtn {
        position: fixed;
        bottom: 60px!important; /* above WhatsApp */
        right: 15px;
        z-index: 999;
        width: 46px;
        height: 46px;
        border: none;
        outline: none;
        background: #39234a;
        color: #fff;
        cursor: pointer;
        border-radius: 50%;
        font-size: 18px;
        box-shadow: 0 6px 15px rgba(0,0,0,0.25);
        transition: all 0.3s ease;
        display: none; /* JS controls visibility */
    }

    #scrollTopBtn:hover {
        transform: translateY(-4px);
        background: #c96c32;
    }
}
.fa-css{
line-height: 2.5;
    text-rendering: auto;
    margin-left: 10px;
}

/* Main Primary Button */
.btn-main {
    background: linear-gradient(135deg, #c96c32, #39234a);
    color: #fff!important;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(13, 110, 253, 0.3);
    text-decoration: none;
}

/* Hover effect */
.btn-main:hover,
.btn-main:focus {
    background: linear-gradient(135deg, #39234a, #c96c32);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(13, 110, 253, 0.4);
}

/* Active state */
.btn-main:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
}

/* Mobile spacing fix */
@media (max-width: 991px) {
    .btn-main.ms-3 {
        margin-left: 0 !important;
        margin-top: 10px;
        display: inline-block;
    }
}

/* SECTION */
.crickingdom-section {
    padding: 50px 0;
    background: #f9fafc;
}

/* TAG */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e67e22;
    font-weight: 600;
    margin-bottom: 15px;
}

/* TITLE */


/* DESCRIPTION */
.section-desc {
    color: #6b6b6b;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* BUTTON GROUP */
.btn-group-custom {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* OUTLINE BUTTON */
.btn-outline-main {
    border: 2px solid #d8732a;
    color: #d8732a;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline-main:hover {
    background: #d8732a;
    color: #fff;
}

/* IMAGE WRAPPER */
.image-circle-wrapper {
    position: relative;
    display: inline-block;
}

/* CIRCLES */
.circle-bg {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.circle-bg.orange {
    width: 380px;
    height: 380px;
    background: #f39c12;
    top: -20px;
    right: -20px;
}

.circle-bg.purple {
    width: 340px;
    height: 340px;
    background: #3c1b5a;
    top: 0;
    right: 0;
}

/* IMAGE */
.main-image {
    position: relative;
    z-index: 2;
    max-width: 320px;
}

/* MOBILE */
@media (max-width: 991px) {

    .circle-bg.orange,
    .circle-bg.purple {
        width: 260px;
        height: 260px;
    }

    .main-image {
        max-width: 240px;
        margin-top: 30px;
    }
}
a,
a:hover,
a:focus,
a:active {
  text-decoration: none !important;
}

/* Mobile Form Floating Icon */
.mobile-form-icon {
  position: fixed;
  left: 0px;
  bottom: 0px; /* above WhatsApp */
  width:400px;
  height: 60px;
  background: #c86c32;
  color: #fff;
  font-size: 22px;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  z-index: 9999;
}

/* Hide on Desktop */
@media (min-width: 769px) {
  .mobile-form-icon {
    display: none;
  }
}

.phone-field {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
	margin-bottom: 5px;
}

.country-code {
    padding: 5px 5px;
    background: #f5f5f5;
    border-right: 1px solid #ddd;
    white-space: nowrap;
}

.phone-field input {
    border: none;
    padding: 5px;
    width: 100%;
    outline: none;
}
.rc-anchor-logo-img-portrait {
    background-size: 20px!important;
    height: 20px!important;
    margin: 0 5px 0 5px!important;
    width: 20px!important;
}


.recaptcha-checkbox-border {
    height: 15px!important;
    width: 15px!important;

}


.rc-anchor-checkbox {
    margin: 12px!important;
}


.recaptcha-checkbox {
    height: 15px!important;
    margin: 4px!important;
    width: 15px!important;
}
