.row{
        margin: 0% !important;
        padding: 0% !important;
    }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            overflow-x: hidden;
        }

        .hero-section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 75px 20px;
            background: linear-gradient(135deg, #97adbd 0%, #3563ab4d 50%, #4baeff 100%);
            position: relative;
            overflow: hidden;
        }

        /* Network Lines Canvas */
        .network-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        /* Animated Dots */
        .network-dots {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }

        .dot {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(25, 65, 113, 0.6);
            border-radius: 50%;
            animation: dotPulse 3s ease-in-out infinite;
        }

        @keyframes dotPulse {
            0%, 100% { 
                opacity: 0.4;
                transform: scale(1);
            }
            50% { 
                opacity: 1;
                transform: scale(1.5);
            }
        }

        /* Position dots across the screen */
        .dot:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
        .dot:nth-child(2) { top: 20%; left: 80%; animation-delay: 0.5s; }
        .dot:nth-child(3) { top: 30%; left: 25%; animation-delay: 1s; }
        .dot:nth-child(4) { top: 40%; left: 70%; animation-delay: 1.5s; }
        .dot:nth-child(5) { top: 50%; left: 10%; animation-delay: 2s; }
        .dot:nth-child(6) { top: 60%; left: 85%; animation-delay: 2.5s; }
        .dot:nth-child(7) { top: 70%; left: 30%; animation-delay: 0.8s; }
        .dot:nth-child(8) { top: 80%; left: 65%; animation-delay: 1.3s; }
        .dot:nth-child(9) { top: 25%; left: 50%; animation-delay: 1.8s; }
        .dot:nth-child(10) { top: 55%; left: 45%; animation-delay: 0.3s; }
        .dot:nth-child(11) { top: 15%; left: 90%; animation-delay: 2.3s; }
        .dot:nth-child(12) { top: 85%; left: 20%; animation-delay: 1.1s; }
        .dot:nth-child(13) { top: 35%; left: 5%; animation-delay: 2.8s; }
        .dot:nth-child(14) { top: 65%; left: 95%; animation-delay: 0.6s; }
        .dot:nth-child(15) { top: 45%; left: 35%; animation-delay: 1.6s; }

        .hero-content {
            max-width: 1200px;
            width: 100%;
            text-align: center;
            z-index: 2;
        }

        .hero-badge {
            display: inline-block;
            padding: 5px 24px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            color: #002147;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            animation: fadeInDown 0.8s ease;
            margin-bottom: 0px !important   ;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-title {
            font-size: clamp(2rem, 6vw, 3.6rem);
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 30px;
            color: #1a1a1a;
            letter-spacing: -1px;
        }

        .hero-title .static-text {
            display: block;
            margin-bottom: 10px;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards 0.3s;
        }

        .hero-title .dynamic-wrapper {
            display: block;
            color: #194171;
            min-height: 1.2em;
        }

        .hero-title .dynamic-text {
            display: inline-block;
            position: relative;
        }

        .hero-title .dynamic-text::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: #fdc800;
            animation: slideIn 0.5s ease;
        }

        @keyframes slideIn {
            from {
                width: 0;
            }
            to {
                width: 100%;
            }
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            line-height: 1.6;
            color: #333;
            margin-bottom: 15px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            animation: fadeIn 1s ease forwards 1s;
        }




        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 30px;
            opacity: 0;
            animation: fadeIn 1s ease forwards 1.3s;
            align-items: center;
        }

        .btn {
            padding: 16px 32px;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary {
            background: #fdc800;
            color: #002147;
        }

        .btn-primary:hover {
            background: #002147;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
        }

        .btn-secondary {
            background: white;
            color: #1a1a1a;
            border: 2px solid #1a1a1a;
        }

        .btn-secondary:hover {
            background: #1a1a1a;
            color: white;
            transform: translateY(-2px);
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeIn 1s ease forwards 1.6s;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            color: #194171;
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #666;
            margin-top: 5px;
        }

        .hero-video-container {
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            position: relative;
            opacity: 0;
            transform: scale(0.95);
            animation: zoomIn 1s ease forwards 1.8s;
        }

        @keyframes zoomIn {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 46.6%;
            height: 0;
            background: #000;
        }

        .video-wrapper img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .hero-video-container:hover .video-wrapper img {
            transform: scale(1.05);
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 2;
        }

        .play-button:hover {
            transform: translate(-50%, -50%) scale(1.1);
            background: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .play-button::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 20px solid #ff6b35;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            margin-left: 5px;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 15px;
            }

            .hero-stats {
            gap: 0px;
        }

            .hero-title {
                letter-spacing: -0.5px;
            }

                    .header-logo img {
padding: 6px 0px;
        height: 70px;
}


            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .hero-stats {
                gap: 30px;
            }

            .play-button {
                width: 60px;
                height: 60px;
            }

            .play-button::after {
                border-left: 15px solid #ff6b35;
                border-top: 9px solid transparent;
                border-bottom: 9px solid transparent;
            }
        }

        @media (max-width: 480px) {
            .hero-video-container {
                border-radius: 12px;
            }

            .hero-badge {
                font-size: 0.8rem;
                padding: 8px 20px;
            }

            .stat-item {
                flex: 1 1 40%;
            }
        }

        /* Floating animation for decorative elements */
        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .floating-element {
            animation: float 3s ease-in-out infinite;
        }


        /* aboutstart */
        #about .container {
            max-width: 1500px;
            margin: 0 auto;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        #about h1 {
            color: #194171;
            margin-bottom: 40px;
        }

        /* Layout: Image Left, Content Right */
        #about .about-layout {
            display: flex;
            gap: 10px;
            margin-top: 40px;
        }

        /* Image Box with Rotation Effect */
        #about .img-box1 {
            position: relative;
            flex: 0 0 45%;
            max-width: 650px;
        }

        #about .image-container {
            position: relative;
            width: 100%;
            height: -webkit-fill-available;
            overflow: hidden;
            border-radius: 12px;
        }

        #about .rotating-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        #about .rotating-image.active {
            opacity: 1;
            z-index: 2;
        }

        /* Secondary Image */
        #about .img2 {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 200px;
            height: 200px;
            border-radius: 12px;
            overflow: hidden;
            border: 5px solid white;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        #about .img2 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Info Section */
        #about .info-section {
            flex: 1;
            padding-left: 20px;
        }

        #about .info-section h2 {
            color: #194171;
            margin-bottom: 20px;
            font-size: 2.9rem;
            line-height: 1.2;
        }

        #about .info-section .sub-title {
            color: #fdc800;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            margin-bottom: 10px;
            display: block;
        }

        #about .info-section p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 25px;
            font-size: 1.05rem;
        }

        #about .features-list {
            list-style: none;
            padding: 0;
            margin: 25px 0;
        }

        #about .features-list li {
            padding: 12px 0;
            color: #333;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        #about .features-list li::before {
            content: "✓";
            color: white;
            background: #194171;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }

        #about .cta-button {
            padding: 14px 32px;
            background: #fdc800;
            color: #194171;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            margin-top: 20px;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
        }

        #about .cta-button:hover {
            background: #194171;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(25, 65, 113, 0.3);
        }

        /* Image Counter */
        #about .image-counter {
            display: flex;
            gap: 8px;
            margin-top: 30px;
        }

        #about .counter-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        #about .counter-dot.active {
            background: #194171;
            transform: scale(1.2);
        }

        #about .counter-dot:hover {
            background: #fdc800;
        }

        /* Control Buttons */
        #about .controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }

        #about button {
            padding: 10px 20px;
            background: #194171;
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        #about button:hover {
            background: #fdc800;
            color: #194171;
            transform: translateY(-2px);
        }

        #about button:active {
            transform: translateY(0);
        }

        /* Status Display */
        #about .about-layout {
            margin-top: 20px;
            padding: 65px;
            background: #fdc60023;
            border-radius: 8px;
            color: #194171;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            #about .container {
                padding: 20px;
            }

            #about .about-layout {
                flex-direction: column;
                gap: 40px;
            }

            #about .img-box1 {
                flex: 0 0 100%;
                max-width: 100%;
            }

            #about .image-container {
                height: 300px;
            }

            #about .img2 {
                width: 150px;
                height: 150px;
                bottom: -15px;
                right: -15px;
            }

            #about .info-section {
                padding-left: 0;
            }

            #about .info-section h2 {
                font-size: 1.8rem;
            }
        }

        /* Base hidden state */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* Slide directions */
.animate-left {
  transform: translateX(-60px);
}

.animate-right {
  transform: translateX(60px);
}

/* When visible */
.animate.show {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger animation for list */
.features-list li {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.features-list li.show {
  opacity: 1;
  transform: translateY(0);
}

/* Modal Overlay */
    .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow-y: auto;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            z-index: 9999;
            animation: fadeIn 0.3s ease;
        }

      .modal-overlay.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Modal Container */
         #enrollmentModal .modal-container {
            background: white;
            border-radius: 5px;
            max-width: 875px;
            width: 90%;
            max-height: 100vh;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.4s ease;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Close Button */
         #enrollmentModal .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            border: none;
            background: #f1f3f5;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

         #enrollmentModal .modal-close:hover {
            background: #ff4444;
            color: white;
            transform: rotate(90deg);
        }

         #enrollmentModal .modal-close::before,
         #enrollmentModal .modal-close::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 2px;
            background: currentColor;
        }

         #enrollmentModal .modal-close::before {
            transform: rotate(45deg);
        }

         #enrollmentModal .modal-close::after {
            transform: rotate(-45deg);
        }

         #enrollmentModal .modal-close:hover::before,
         #enrollmentModal .modal-close:hover::after {
            background: white;
        }

        /* Modal Header */
         #enrollmentModal .modal-header {
            background: linear-gradient(135deg, #194171 0%, #2563ab 100%);
            padding: 20px 30px 10px;
            color: white;
            text-align: center;
        }

         #enrollmentModal .modal-header h2 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 0px;
        }

         #enrollmentModal .modal-header p {
            font-size: 15px;
            opacity: 0.9;
            margin-bottom: 10px;
        }

         #enrollmentModal .modal-badge {
            display: inline-block;
            background: rgba(253, 200, 0, 0.2);
            color: #fdc800;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
        }

        /* Modal Body */
         #enrollmentModal .modal-body {
            padding: 20px;
        }

        /* Form Styles */
         #enrollmentModal .form-group {
            margin-bottom: 10px;
        }

         #enrollmentModal .form-group label {
            display: block;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
            font-size: 14px;
        }

         #enrollmentModal .form-group label span {
            color: #ff4444;
        }

         #enrollmentModal .form-control {
            width: 100%;
            padding: 7px 16px;
            border: 2px solid #e1e8ed;
            border-radius: 10px;
            font-size: 15px;
            transition: all 0.3s ease;
            font-family: inherit;
        }

         #enrollmentModal .form-control:focus {
            outline: none;
            border-color: #194171;
            box-shadow: 0 0 0 4px rgba(25, 65, 113, 0.1);
        }

         #enrollmentModal .form-control::placeholder {
            color: #adb5bd;
        }

         #enrollmentModal select.form-control {
            cursor: pointer;
            appearance: none;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E") no-repeat right 16px center;
            background-color: white;
            padding-right: 40px;
        }

         #enrollmentModal textarea.form-control {
            resize: vertical;
            min-height: 100px;
        }

        /* Form Row */
         #enrollmentModal .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        /* Checkbox Group */
         #enrollmentModal .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin: 0px 0;
        }

         #enrollmentModal .checkbox-group input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: #194171;
        }

         #enrollmentModal .checkbox-group label {
            margin: 0;
            font-weight: 400;
            font-size: 13px;
            color: #555;
            cursor: pointer;
        }

        /* Submit Button */
         #enrollmentModal .submit-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #fdc800 0%, #f0b800 100%);
            color: #194171;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

         #enrollmentModal .submit-btn:hover {
            background: linear-gradient(135deg, #194171 0%, #2563ab 100%);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(25, 65, 113, 0.3);
        }

         #enrollmentModal .submit-btn:active {
            transform: translateY(0);
        }

        /* Success Message */
         #enrollmentModal .success-message {
            display: none;
            text-align: center;
            padding: 40px 20px;
        }

         #enrollmentModal .success-message.active {
            display: block;
        }

         #enrollmentModal .success-icon {
            width: 80px;
            height: 80px;
            background: #4caf50;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            animation: scaleIn 0.5s ease;
        }

        @keyframes scaleIn {
            from {
                transform: scale(0);
            }
            to {
                transform: scale(1);
            }
        }

         #enrollmentModal .success-icon::after {
            content: '✓';
            color: white;
            font-size: 40px;
            font-weight: bold;
        }

         #enrollmentModal .success-message h3 {
            color: #2c3e50;
            font-size: 24px;
            margin-bottom: 10px;
        }

         #enrollmentModal .success-message p {
            color: #666;
            font-size: 15px;
            margin-bottom: 20px;
        }

        /* Demo Trigger Button */
         #enrollmentModal .demo-trigger {
            position: fixed;
            bottom: 30px;
            right: 30px;
            padding: 16px 32px;
            background: #fdc800;
            color: #194171;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            z-index: 1000;
        }

         #enrollmentModal .demo-trigger:hover {
            background: #194171;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
             #enrollmentModal .modal-container {
                width: 95%;
                max-height: 100vh;
            }

            .event-card-tag {
    display: none !important;}


            .footer-logo img{
                height: 120px !important;
            }

            #about .about-layout {
                    padding: 25px;}

             #enrollmentModal .modal-header {
                padding: 30px 20px 25px;
            }

             #enrollmentModal .modal-header h2 {
                font-size: 22px;
            }

             #enrollmentModal .modal-body {
                padding: 15px;
            }

             #enrollmentModal .form-row {
                grid-template-columns: 1fr;
            }

             #enrollmentModal .demo-trigger {
                bottom: 20px;
                right: 20px;
                padding: 14px 24px;
                font-size: 14px;
            }
        }

        /* Scrollbar Styling */
         #enrollmentModal .modal-container::-webkit-scrollbar {
            width: 8px;
        }

         #enrollmentModal .modal-container::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

         #enrollmentModal .modal-container::-webkit-scrollbar-thumb {
            background: #194171;
            border-radius: 10px;
        }

         #enrollmentModal .modal-container::-webkit-scrollbar-thumb:hover {
            background: #2563ab;
        }


        /* Admission Form Styles */
.admission-form-box {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.admission-form-box h3 {
    color: #194171;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.admission-form-box .form-subtitle {
    color: #666;
    margin-bottom: 0px;
    font-size: 0.95rem;
}

.admission-form-box .form-group {
    margin-bottom: 20px;
}

.admission-form-box .form-group label {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.admission-form-box .form-group label span {
    color: #e74c3c;
}

.admission-form-box .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.admission-form-box .form-control:focus {
    outline: none;
    border-color: #194171;
    box-shadow: 0 0 0 4px rgba(25, 65, 113, 0.1);
}

.admission-form-box select.form-control {
    cursor: pointer;
    appearance: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E") no-repeat right 16px center;
    background-color: white;
    padding-right: 40px;
}

.admission-form-box textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.admission-form-box .course-select-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.admission-form-box .course-option {
    position: relative;
}

.admission-form-box .course-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.admission-form-box .course-card-mini {
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.admission-form-box .course-option input[type="radio"]:checked + .course-card-mini {
    border-color: #194171;
    background: #194171;
    color: white;
}

.admission-form-box .course-card-mini:hover {
    border-color: #194171;
    transform: translateY(-2px);
}

.admission-form-box .course-card-mini .course-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.admission-form-box .submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #fdc800 0%, #f0b800 100%);
    color: #194171;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 10px;
}

.admission-form-box .submit-btn:hover {
    background: linear-gradient(135deg, #194171 0%, #2563ab 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(25, 65, 113, 0.3);
}

.admission-form-box .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 15px 0;
}

.admission-form-box .checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #194171;
    flex-shrink: 0;
    margin-top: 2px;
}

.admission-form-box .checkbox-group label {
    font-size: 13px;
    color: #555;
    cursor: pointer;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .admission-form-box {
        padding: 25px 20px;
    }
    
    .admission-form-box .course-select-grid {
        grid-template-columns: 1fr;
    }
}



   /* WhatsApp Float */
    .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        background: #25d366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
        cursor: pointer;
        transition: transform 0.3s;
        z-index: 1000;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
    }

    .whatsapp-float i {
        color: #fff;
        font-size: 32px;
    }


     @media (max-width: 480px) {

        .whatsapp-float {
            width: 55px;
            height: 55px;
            bottom: 20px;
            right: 20px;
        }

        .scroll-top {
            width: 45px;
            height: 45px;
            bottom: 85px;
            right: 20px;
        }
    }
