 /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        .site-logo {
         width: 200px; /* apne hisaab se size change karein */
         height: auto; /* aspect ratio maintain karein */
        }


        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, #172536 0%, #1e439a 50%, #111e2f 100%);
            color: white;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;            
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid #4CAF50;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            display: flex;
            align-items: center;
            color: white;
            text-decoration: none;
        }

        .logo img {
            height: 45px;
            margin-right: 12px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
        }

        .logo span {
            color: #4CAF50;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
        }

        .nav-links li {
            margin-left: 25px;
            position: relative;
        }

        .nav-links li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            padding: 8px 0;
            position: relative;
        }

        .nav-links li a i {
            margin-right: 8px;
            font-size: 18px;
        }

        .nav-links li a:hover {
            color: #e7e9e7;
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #f4f5f4;
            transition: width 0.3s ease;
        }

        .nav-links li a:hover::after {
            width: 100%;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: rgb(69, 43, 184);
            min-width: 220px;
            box-shadow: 0 8px 16px rgba(115, 29, 29, 0.15);
            z-index: 1;
            border-radius: 8px;
            top: 100%;
            left: 12px;
            padding: 10px 15px;
            animation: fadeIn 0.3s ease;
        }

        .dropdown-content a {
            color: #333;
            padding: 12px 20px;
            text-decoration: none;
            display: block;
            font-size: px;
            transition: all 0.2s;
        }

        .dropdown-content a:hover {
            background-color: #4b5cad;
            color: #765817;
            padding-left: 25px;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        .hamburger .line {
            width: 28px;
            height: 3px;
            background-color: white;
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        /* Modal Styling */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.5);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background-color: #fefefe;
            margin: 8% auto;
            padding: 40px;
            border: none;
            width: 450px;
            max-width: 90%;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            animation: modalSlideIn 0.4s ease;
            position: relative;
            text-align: center;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .close {
            color: #aaa;
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.2s;
        }

        .close:hover {
            color: #333;
            transform: rotate(90deg);
        }

        /* Registration Options */
        .registration-options {
            margin-top: 20px;
        }

        .options-title {
            font-size: 24px;
            color: #1a2a6c;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .options-subtitle {
            color: #666;
            margin-bottom: 25px;
            font-size: 16px;
        }

        .registration-buttons {
            display: flex;
            flex-direction: column;
            gap: 18px;
            margin-top: 25px;
        }

        .reg-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 17px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            z-index: 1;
        }

        .reg-btn i {
            margin-right: 12px;
            font-size: 20px;
        }

        .reg-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .reg-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.1));
            z-index: -1;
            transform: translateX(-100%);
            transition: transform 0.4s ease;
        }

        .reg-btn:hover::before {
            transform: translateX(0);
        }

        .student-btn {
            background: linear-gradient(135deg, #1a2a6c 0%, #4CAF50 100%);
        }

        .admin-btn {
            background: linear-gradient(135deg, #1a2a6c 0%, #f44336 100%);
        }

        .receipt-btn {
            background: linear-gradient(135deg, #1a2a6c 0%, #ff9800 100%);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('cyberbg.gif') no-repeat center center/cover;
            height: 85vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            position: relative;
            padding: 100px 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            animation: fadeInDown 1s ease;
        }

        .hero p {
            font-size: 18px;
            margin: 0 auto 30px;
            max-width: 700px;
            line-height: 1.7;
            animation: fadeInUp 1s ease 0.3s both;
        }

        .btn {
            display: inline-block;
            background: #4CAF50;
            color: white;
            padding: 14px 28px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            margin: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            animation: fadeIn 1s ease 0.6s both;
            border: 2px solid transparent;
        }

        .btn:hover {
            background: #3e8e41;
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }

        .google-form-btn {
            background: #4285F4;
        }

        .google-form-btn:hover {
            background: #3367d6;
        }

        /* Courses & Internships Section */
        .courses, .internships {
            padding: 80px 0;
            background-color: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 36px;
            color: #1a2a6c;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #4CAF50;
            border-radius: 2px;
        }

        .section-title p {
            font-size: 18px;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .course-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 2rem;
            border-bottom: 1px solid #ddd;
            flex-wrap: wrap;
            
        }

        .course-tab-btn {
            padding: 0.8rem 1.5rem;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            color: #666;
            position: relative;
        }

        .course-tab-btn.active {
            color: #1a2a6c;
            background: transparent; /* Make it transparent */
        }

        .course-tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #4CAF50;
        }

        .course-tab-content {
            display: none;
        }

        .course-tab-content.active {
            display: block;
            animation: fadeIn 0.5s;
        }

        .course-grid, .internship-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }

        .course-card, .internship-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }

        .course-card:hover, .internship-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .course-img, .internship-img {
            height: 200px;
            overflow: hidden;
        }

        .course-img img, .internship-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .course-card:hover .course-img img, .internship-card:hover .internship-img img {
            transform: scale(1.1);
        }

        .course-content, .internship-content {
            padding: 1.5rem;
        }

        .course-content h3, .internship-content h3 {
            margin-bottom: 0.5rem;
            color: #1a2a6c;
            font-size: 1.3rem;
        }

        .course-content p, .internship-content p {
            margin-bottom: 1rem;
            color: #666;
            font-size: 0.95rem;
            min-height: 60px;
        }

        .course-meta, .internship-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .course-price, .internship-duration {
            font-weight: 700;
            color: #1a2a6c;
            font-size: 1.2rem;
        }

        /* New styles for discounted price */
        .price-display {
            display: flex;
            flex-direction: column;
            align-items: flex-start; /* Align prices to the left */
        }

        .original-price {
            font-size: 0.9rem;
            color: #999;
            text-decoration: line-through;
            margin-bottom: 5px; /* Space between original and discounted */
        }

        .discounted-price {
            font-size: 1.2rem;
            font-weight: 700;
            color: #4CAF50; /* Green for discounted price */
        }

        .discount-offer-text {
            font-size: 0.85rem;
            color: #e67e22; /* Orange color for the offer text */
            font-weight: 600;
            margin-top: 5px; /* Space between price and offer text */
        }


        .course-level, .internship-type {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .level-beginner, .type-paid {
            background-color: #e6f7e6;
            color: #2e7d32;
        }

        .level-intermediate, .type-unpaid {
            background-color: #e3f2fd;
            color: #1565c0;
        }

        .level-advanced, .type-stipend {
            background-color: #fce4ec;
            color: #c2185b;
        }

        .buy-btn, .enroll-internship-btn { /* Changed .apply-btn to .enroll-internship-btn */
            display: block;
            width: 100%;
            padding: 10px;
            background: #1a2a6c;
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            text-decoration: none;
            margin-bottom: 10px; /* Added margin to separate from Pay Now button */
        }

        .buy-btn:hover, .enroll-internship-btn:hover { /* Changed .apply-btn to .enroll-internship-btn */
            background: #4CAF50;
        }

        /* New style for Pay Now button */
        .pay-now-btn {
            display: block;
            width: 100%;
            padding: 10px;
            background: #ff5722; /* Orange color for Pay Now */
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            text-decoration: none;
        }

        .pay-now-btn:hover {
            background: #e64a19; /* Darker orange on hover */
        }

        /* Payment Modal */
        .payment-modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.7);
        }

        .payment-content {
            background-color: #fefefe;
            margin: 5% auto;
            padding: 30px;
            border: none;
            width: 600px;
            max-width: 90%;
            border-radius: 10px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.3);
            position: relative;
        }

        .payment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        .payment-header h2 {
            color: #1a2a6c;
            font-size: 1.5rem;
        }

        .payment-body {
            margin-bottom: 20px;
        }

        .course-details {
            display: flex;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .course-details-img {
            width: 150px;
            height: 100px;
            border-radius: 5px;
            overflow: hidden;
            margin-right: 20px;
        }

        .course-details-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .course-details-content h3 {
            color: #1a2a6c;
            margin-bottom: 5px;
        }

        .course-details-content p {
            color: #666;
            margin-bottom: 5px;
        }

        .price-details {
            margin-bottom: 20px;
        }

        .price-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .total-price {
            font-weight: 700;
            font-size: 1.2rem;
            color: #1a2a6c;
            border-top: 1px solid #eee;
            padding-top: 10px;
            margin-top: 10px;
        }

        .payment-options {
            margin-top: 30px;
        }

        .payment-options h3 {
            color: #1a2a6c;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        /* Facilities Section */
        .facilities {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .facilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        @media (max-width: 768px) {
            .facilities-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }

        @media (max-width: 576px) {
            .facilities-grid {
                grid-template-columns: 1fr;
            }
        }

        .facility-item {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }

        .facility-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }

        .facility-item i {
            font-size: 45px;
            color: #1a2a6c;
            margin-bottom: 20px;
        }

        .facility-item h3 {
            font-size: 20px;
            color: #1a2a6c;
            margin-bottom: 10px;
        }

        .facility-item p {
            font-size: 15px;
            color: #666;
        }

        .proceed-btn {
            display: block;
            width: 100%;
            padding: 12px;
            background: #4CAF50;
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 20px;
            text-align: center;
        }

        .proceed-btn:hover {
            background: #3e8e41;
        }

        /* contact */
        .contact-section {
            width: 100%;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            margin: 40px;
        }

        .container-contact {
            display: flex;
            flex-wrap: wrap;
            padding: 0;
            width: 100%;
            max-width: 1200px;
        }

        .contact-container {
            flex: 1;
            min-width: 300px;
            padding: 40px;
            background: linear-gradient(135deg, #1a237e 0%, #172536 100%);
            color: white;
        }

        .contact-form-container {
            flex: 1.2;
            min-width: 350px;
            padding: 40px;
            background-color: white;
        }

        .contact-info h2 {
            font-size: 28px;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 10px;
        }

        .contact-info h2:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background-color: #4fc3f7;
        }

        .contact-info > p {
            line-height: 1.6;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.85);
        }

        .contact-detail {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .contact-icon {
            background-color: rgba(79, 195, 247, 0.15);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .contact-icon i {
            font-size: 18px;
            color: #4fc3f7;
        }

        .contact-text h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: #e3f2fd;
        }

        .contact-text p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
            line-height: 1.6;
        }

        .contact-social-section {
            margin-top: 40px;
        }

        .contact-social-section h4 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #e3f2fd;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background-color: #4fc3f7;
            transform: translateY(-3px);
        }

        .social-link i {
            font-size: 18px;
        }

        form {
            display: flex;
            flex-direction: column;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group.full-width {
            grid-column: span 2;
        }

        label {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            font-weight: 600;
            color: #1a237e;
            font-size: 15px;
        }

        label i {
            margin-right: 8px;
            color: #4fc3f7;
        }

        input, select, textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 15px;
            transition: all 0.3s;
            background-color: #f8f9fa;
            line-height: 1.6;
        }

        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: #4fc3f7;
            box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.2);
            background-color: white;
        }

        textarea {
            resize: vertical;
            min-height: 120px;
            font-family: inherit;
        }

        .btn-primary {
            background: linear-gradient(to right, #1a237e, #283593);
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 10px;
            line-height: 1.6;
        }

        .btn-primary:hover {
            background: linear-gradient(to right, #283593, #3949ab);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(26, 35, 126, 0.3);
        }

        .btn-primary i {
            font-size: 16px;
        }

        /* Styling for form sections */
        .form-section {
            margin-bottom: 25px;
        }
        
        .form-section-title {
            font-size: 18px;
            color: #1a237e;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #eaeaea;
            display: flex;
            align-items: center;
            line-height: 1.6;
        }
        
        .form-section-title i {
            margin-right: 10px;
            color: #4fc3f7;
        }

        /* Responsive adjustments */
        @media (max-width: 900px) {
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .form-group.full-width {
                grid-column: span 1;
            }
            
            .container-contact {
                flex-direction: column;
            }
            
            .contact-container, .contact-form-container {
                padding: 30px;
            }
        }

        @media (max-width: 480px) {
            .contact-container, .contact-form-container {
                padding: 25px 20px;
            }
            
            .contact-info h2 {
                font-size: 24px;
            }
            
            .container-contact {
                width: 95%;
                padding: 0 10px;
            }
        }

        /* Footer Styles */
        footer {
            background: linear-gradient(135deg, #1a2a6c 0%, #111e2f 100%);
            color: white;
            padding: 25px 0;
            text-align: center;
            position: relative;
            border-top: 3px solid #4CAF50;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        }

        footer .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .copyright {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
            line-height: 1.6;
            font-weight: 400;
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 42px;
            }
            
            .hero p {
                font-size: 17px;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            
            .nav-links {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: #1a2a6c;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                z-index: 1000;
                padding: 0;
                margin: 0;
                transition: all 0.5s ease;
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .nav-links li a {
                font-size: 20px;
                padding: 10px 20px;
            }
            
            .dropdown-content {
                position: static;
                box-shadow: none;
                width: 100%;
                background: rgba(0,0,0,0.1);
                margin-top: 10px;
                border-radius: 0;
            }
            
            .dropdown-content a {
                color: white;
                text-align: center;
            }
            
            .dropdown-content a:hover {
                background: rgba(255,255,255,0.1);
                color: white;
            }
            
            .hero {
                height: auto;
                padding: 120px 0 80px;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .btn {
                padding: 12px 24px;
                font-size: 15px;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
            
            .section-title p {
                font-size: 16px;
            }
            
            .modal-content {
                margin: 15% auto;
                padding: 25px;
            }

            .payment-content {
                padding: 20px;
            }

            .course-details {
                flex-direction: column;
            }

            .course-details-img {
                width: 100%;
                height: auto;
                margin-right: 0;
                margin-bottom: 15px;
            }

            .payment-methods {
                flex-direction: column;
            }

            .facilities-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }

            footer {
                padding: 20px 0;
            }
    
            .copyright {
                font-size: 13px;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 30px;
            }
            
            .hero p {
                font-size: 15px;
            }
            
            .btn {
                display: block;
                margin: 10px auto;
                width: 80%;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .modal-content {
                width: 95%;
                padding: 20px;
            }
            
            .reg-btn {
                font-size: 16px;
                padding: 14px;
            }

            .payment-content {
                margin: 10% auto;
            }

            .facilities-grid {
                grid-template-columns: 1fr;
            }

            footer {
                padding: 15px 0;
            }
    
            .copyright {
                font-size: 12px;
            }
        }


/* =============================
   Mobile Overflow Fix Pack
   - Phone me left/right slide band
   - Dropdown + forms safe
   ============================= */
html, body{
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img, video, iframe{
  max-width: 100%;
  height: auto;
}

/* Contact form / inputs overflow safe */
form, .contact, .contact-form{
  max-width: 100%;
}
input, select, textarea, button{
  max-width: 100%;
  box-sizing: border-box;
}

/* Dropdown mobile safe */
@media (max-width: 768px){
  .dropdown-content{
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    min-width: unset !important;
    box-sizing: border-box;
  }

  /* grids/cards overflow guard */
  .container, .card, .cards, .grid, .row{
    max-width: 100%;
  }
}

@media (max-width: 768px){
  .contact-container,
  .contact-form-container,
  .contact-info-container{
    min-width: 0 !important;
    width: 100% !important;
  }
  .payment-content, .modal-content{
    width: 95% !important;
  }
}



/* ===== FIX: Mobile nav + Contact form overflow ===== */
@media (max-width: 768px){
  /* ensure menu is right-aligned and visible */
  .nav-links{
    right: 0;
    left: 0;          /* full width panel */
    width: 100%;
    max-width: 100%;
  }

  /* Contact section should NOT have big outer margin on small screens */
  .contact-section{
    margin: 15px !important;   /* was 40px */
    width: auto !important;    /* avoid 100% + margin overflow */
  }
  .container-contact{
    max-width: 100% !important;
  }
  .contact-container,
  .contact-form-container{
    min-width: 0 !important;   /* stop pushing out */
    width: 100% !important;
    padding: 20px !important;  /* reduce from 40px */
    box-sizing: border-box;
  }
  .contact-form-container form,
  .contact-form-container input,
  .contact-form-container textarea,
  .contact-form-container select,
  .contact-form-container button{
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
}


@media (max-width: 768px){
  .nav-links{
    z-index: 2000;
  }
}


/* ===== Strong Mobile Overflow Fix (Contact + whole site) ===== */
@media (max-width: 768px){
  /* Prevent any section with large margins from causing overflow */
  .contact-section{
    margin-left: 12px !important;
    margin-right: 12px !important;
  }

  /* Flex children must be allowed to shrink */
  .container-contact,
  .contact-container,
  .contact-form-container{
    min-width: 0 !important;
    max-width: 100% !important;
  }

  /* If any input rows are using flex, allow wrapping */
  .contact-form-container .form-row,
  .contact-form-container .row{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  /* Make all form controls truly fit */
  .contact-form-container input,
  .contact-form-container textarea,
  .contact-form-container select,
  .contact-form-container button{
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}


/* ===== Contact section color matching (theme) ===== */
.contact-section{
  background: linear-gradient(135deg, #172536 0%, #1e439a 55%, #111e2f 100%);
  border-radius: 18px;
  overflow: hidden;
  margin: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.contact-container{
  background: transparent !important;
  color: #ca3030 !important;
}
.contact-form-container{
  background: rgba(255,255,255,.06) !important;
  backdrop-filter: blur(8px);
  border-left: 1px solid rgba(255,255,255,.12);
  color: #7e3d3d !important;
}

/* ===== Form Input Colors ===== */
.contact-form-container label{ color: rgba(245, 245, 247, 0.92) !important; }
.contact-form-container input,
.contact-form-container textarea,
.contact-form-container select{
  background: rgba(27, 21, 21, 0.1) !important;
  border: 1px solid rgba(17, 6, 6, 0.18) !important;
  color: #f7f7f3 !important;
}
.contact-form-container input::placeholder,
.contact-form-container textarea::placeholder{
  color: rgba(46, 84, 212, 0.7) !important;
}

/* ===== Dropdown Options Style ===== */
.contact-form-container select {
  color: #ffffff !important;          /* Default options text white */
  background: rgba(27, 21, 21, 0.15) !important;
}

/* For Modern Browsers (styling dropdown options) */
.contact-form-container select option {
  background: #1e439a;                /* Default option background blue */
  color: #ffffff;                     /* Option text white */
}

/* Option Hover Effect */
.contact-form-container select option:hover {
  background: #ffeb3b !important;     /* Hover background yellow */
  color: #000000 !important;          /* Hover text black */
}

/* For selected option style */
.contact-form-container select:focus, .contact-form-container select:active {
  border: 1px solid #f0f1f3  !important;  /* Blue border on focus */
}