/* Reset and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px; /* Adjust to your header height */
}

body {
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    width: 100%;
    background: rgb(255, 255, 255);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between; /* Put hamburger fully right */
    align-items: center;
    padding: 4px 0;
    gap: 8px;
}

.logo img {
    height: 78px;
    width: auto;
}

.nav-links ul {
    display: flex;
    list-style: none;
}

.nav-links ul li {
    margin: 0 15px;
}

.nav-links ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links ul li a:hover {
    color: #007bff;
}



/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    height: 100vh; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden; /* Ensure video doesn't overflow */
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay for better text readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color:white;
    max-width: 800px;
    padding: 100px 20px; /* Example: Adjust padding as needed */
    text-align: center; /* Example: Center your content */
    pointer-events: auto;
}


/* ... existing code ... */

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .cta-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .logo img{
        height: 90px; /* Increased logo size for mobile */
        width: auto; 
    }

}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.primary-btn {
    background: #007bff;
    color: white;
}

.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    margin-left: 15px;
}

.primary-btn:hover {
    background: #0056b3;
}

.secondary-btn:hover {
    background: white;
    color: #333;
}

/* Appointment Section */
.appointment-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-container h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
}

.form-group select {
    background: white;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0,123,255,0.3);
}

.form-container .btn {
    width: 100%;
    margin-top: 10px;
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.section-description {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sub-section-title {
    text-align: center;
    font-size: 28px;
    margin: 40px 0 30px;
    color: #333;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-vision-mission {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 24px !important;
}

.vision-box, .mission-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.vision-box:hover, .mission-box:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: #3399cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-wrapper i {
    color: white;
    font-size: 24px;
}

.about-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 8px !important;
    align-items: center;
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-container:hover .about-main-image {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #3399cc;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    text-align: center;
}

.experience-badge .years {
    font-size: 24px;
    font-weight: bold;
    display: block;
}

.experience-badge .text {
    font-size: 14px;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.achievement-item {
    text-align: center;
    padding: 20px;
    background: rgba(51, 153, 204, 0.1);
    border-radius: 10px;
}

.achievement-number {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: #3399cc;
    margin-bottom: 5px;
}

.achievement-label {
    font-size: 14px;
    color: #666;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 0 !important;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 36px;
    color: #3399cc;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-vision-mission,
    .about-main-content {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .achievement-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        bottom: 15px;
        right: 15px;
        padding: 10px 20px;
    }
}

/* Study Abroad Section */
.study-abroad-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.study-abroad-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.study-abroad-hero {
    margin-bottom: 60px;
}

.study-abroad-hero h1 {
    font-size: 2.8em;
    color: #0056b3;
    margin-bottom: 20px;
}

.study-abroad-hero p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.key-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.key-features div {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1 1 calc(25% - 30px);
    min-width: 200px;
    transition: transform 0.3s ease;
}

.key-features div:hover {
    transform: translateY(-5px);
}

.key-features i {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 15px;
}

.key-features p {
    font-size: 1em;
    color: #333;
    margin: 0;
}

/* Overview Section */
.overview-section {
    margin-bottom: 60px;
}

.overview-section h2 {
    font-size: 2.2em;
    color: #0056b3;
    margin-bottom: 30px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.overview-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.overview-item h3 {
    font-size: 1.3em;
    color: #007bff;
    margin-bottom: 10px;
}

.overview-item p {
    font-size: 1em;
    color: #555;
    line-height: 1.5;
}

/* Admission Procedure Section */
.admission-procedure-section {
    margin-bottom: 60px;
    text-align: left;
}

.admission-procedure-section h2 {
    font-size: 2.2em;
    color: #0056b3;
    margin-bottom: 30px;
    text-align: center;
}

.admission-procedure-section > p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
    text-align: center;
}

.procedure-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    font-size: 2.5em;
    font-weight: 700;
    color: #007bff;
    background-color: #e6f2ff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.step-content ul {
    list-style: none;
    padding: 0;
}

.step-content ul li {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.step-content ul li::before {
    content: '\2022'; /* Bullet point */
    color: #007bff;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}

/* Brochure Form Section */
.brochure-form-section {
    background-color: #0056b3;
    color: #fff;
    padding: 50px;
    border-radius: 10px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.brochure-form-section h2 {
    font-size: 2.2em;
    margin-bottom: 30px;
    color: #fff;
}

.brochure-form-section form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.brochure-form-section .form-group input {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
}

.brochure-form-section .btn {
    background-color: #28a745;
    color: #fff;
    padding: 15px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.brochure-form-section .btn:hover:not(:disabled) {
    background-color: #218838;
}

.brochure-form-section .btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* Top Universities Section */
.top-universities-section {
    margin-top: 60px;
}

.top-universities-section h2 {
    font-size: 2.2em;
    color: #0056b3;
    margin-bottom: 40px;
}

.universities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.top-universities-section .university-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
}

.top-universities-section .university-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.top-universities-section .university-card h3 {
    font-size: 1.5em;
    color: #007bff;
    margin: 15px 15px 10px;
}

.top-universities-section .university-card p {
    font-size: 0.95em;
    color: #555;
    padding: 0 15px 15px;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .study-abroad-hero h1 {
        font-size: 2em;
    }

    .study-abroad-hero p {
        font-size: 1em;
    }

    .key-features div {
        flex: 1 1 100%;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .admission-procedure-section h2,
    .brochure-form-section h2,
    .top-universities-section h2 {
        font-size: 1.8em;
    }

    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-content {
        padding-left: 0;
    }

    .step-content ul li {
        padding-left: 0;
        text-align: center;
    }

    .step-content ul li::before {
        display: none;
    }

    .brochure-form-section {
        padding: 30px;
    }

    .universities-list {
        grid-template-columns: 1fr;
    }
}

/* ... existing code ... */

/* Language Section Styles */
.language-section {
    background: white;
}

.course-levels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.level-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.level-card:hover {
    transform: translateY(-5px);
}

.level-icon {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 20px;
    text-align: center;
}

.level-card h3 {
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.level-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.course-features {
    list-style: none;
}

.course-features li {
    margin: 10px 0;
    color: #666;
    display: flex;
    align-items: flex-start;
}

.course-features li i {
    color: #28a745;
    margin-right: 10px;
    margin-top: 5px;
}

/* Agniveer Section Styles */
.agniveer-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.job-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.job-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-5px);
}

.job-icon {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 20px;
    text-align: center;
}

.job-card h3 {
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.job-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.job-features {
    list-style: none;
}

.job-features li {
    margin: 10px 0;
    color: #666;
    display: flex;
    align-items: flex-start;
}

.job-features li i {
    color: #007bff;
    margin-right: 10px;
    margin-top: 5px;
}

/* Section Contact Styles */
.section-contact {
    text-align: center;
    background: rgba(0, 123, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.section-contact h3 {
    margin-bottom: 20px;
    color: #333;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.contact-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-buttons .btn i {
    margin-right: 10px;
}

/* Payment Section Styles */
.payment-section {
    padding: 80px 0;
    background: white;
}

.payment-container {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.payment-options h3 {
    margin: 30px 0 15px;
    color: #333;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.payment-method {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.payment-method:hover {
    border-color: #007bff;
}

.payment-method input {
    margin-right: 10px;
}

.payment-method label {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.payment-method label i {
    margin-right: 10px;
    color: #007bff;
}

.payment-detail-section {
    display: none;
    margin-bottom: 30px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-group.half {
    width: 50%;
}

.payment-btn {
    margin-top: 20px;
    width: 100%;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.info-item {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-item i {
    font-size: 30px;
    color: #007bff;
    margin-bottom: 15px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

/* Footer Styles */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: #999;
}

.footer-links h3,
.footer-social h3 {
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: white;
}

.social-icons a {
    color: white;
    font-size: 20px;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
}

/* Mobile Menu Icons */
.fa-bars {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .universities-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -250px;
        top: 0;
        width: 250px;
        height: 100vh;
        background: #007bff;
        padding-top: 80px;
        transition: 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links ul {
        flex-direction: column;
        align-items: center;
    }

    .nav-links ul li {
        margin: 20px 0;
    }

    .nav-links ul li a {
        color: white;
        font-size: 18px;
    }

    .fa-bars {
        display: block;
        font-size: 24px;
        color: #333;
        cursor: pointer;
        z-index: 1000;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .about-features,
    .countries-grid,
    .course-levels,
    .job-categories {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 30px;
    }

    .social-icons {
        display: flex;
        justify-content: center;
    }

    /* Appointment Form Improvements */
    .form-container {
        padding: 20px;
        margin: 0 15px;
    }

    /* Hero Section Adjustments */
    .hero {
        padding: 120px 0 60px;
    }

    /* Section Padding Adjustments */
    .about-section,
    .study-abroad-section,
    .agniveer-section,
    .payment-section,
    .contact-section {
        padding: 40px 0;
    }

    /* Card Improvements */
    .feature,
    .country-card,
    .university-card,
    .level-card,
    .job-card,
    .info-item {
        padding: 20px;
    }

    /* Form Elements */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 14px;
    }

    /* Button Adjustments */
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Payment Methods */
    .payment-methods {
        grid-template-columns: 1fr;
    }

    /* Contact Buttons */
    .contact-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .secondary-btn {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    /* Header Adjustments */
    .logo img {
        height: 60px;
    }

    /* Text Size Adjustments */
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .section-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .sub-section-title {
        font-size: 22px;
    }

    /* Grid Adjustments */
    .about-features,
    .countries-grid,
    .universities-grid,
    .course-levels,
    .job-categories {
        gap: 20px;
    }

    /* Card Image Heights */
    .country-card img {
        height: 160px;
    }

    .university-image img {
        height: 180px;
    }

    /* Contact Section */
    .contact-info {
        gap: 15px;
    }

    /* Form Container */
    .form-container,
    .payment-container {
        padding: 15px;
    }

    /* Footer Adjustments */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 30px;
    }

    /* CTA Buttons */
    .cta-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .feature:hover,
    .country-card:hover,
    .university-card:hover,
    .level-card:hover,
    .job-card:hover {
        transform: none;
    }

    .btn:active {
        transform: scale(0.98);
    }
}

.course-header {
    background-color: white;
    padding: 40px 20px;
    color: white;
  }
  
  .logo-container {
    background: white;
    padding: 20px;
    display: inline-block;
    border-radius: 8px;
    margin-bottom: 20px;
  }
  
  .logo-container img {
    height: 60px;
    width: auto;
  }
  
  .header-content {
    padding: 20px 0;
  }

  .logo-with-years {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
  }
  
  .logo-with-years img {
    height: 50px;
    width: auto;
  }
  
  .years-text {
    font-size: 18px;
    font-weight: thin;
    color: #3f3c3f;
  }

  .course-header {
    padding: 2px 20px 40px; /* Reduced top padding */
    margin-top: 0; /* Remove any top margin */
  }
  
  .logo-with-years img {
    height: 110px; /* Increased logo size */
    width: 120px;
  }
  
  .logo-with-years {
    padding: 10px 15px; /* Adjusted padding */
  }

  .agniveer-section {
    padding: 60px 0;
    background-color: #f8f9fa;
  }
  
  .agniveer-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
  }
  
  .agniveer-description {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
  }
  
  .agniveer-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
  }
  
  .form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
  .submit-btn {
    background-color: #0066cc;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
  }
  
  .submit-btn:hover {
    background-color: #0052a3;
  }

  /* --- German Section (Learn German) --- */

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 69px; /* Match the logo height */
    margin-left: 0 !important; /* Remove any negative margin */
    font-family: Poppins;
}

.defence-text {
    color: black;
    font-weight: 2000;
    font-size: 1.1em; /* Adjust as needed */
    line-height: 1;
    font-family: Poppins;
}

.overseas-text {
    color: #006400; /* Dark green color */
    font-weight: 2000;
    font-size: 1.1em; /* Adjust as needed */
    line-height: 1;
    font-family: Poppins;
}

@media (max-width: 768px) {
    .logo-text {
        height: 70px; /* Match the mobile logo height */
    }
}

.description-text {
    margin-top: 5px;
    font-size: 0.6em; /* Adjust as needed for small text */
    color: #555; /* Or any other suitable color */
    line-height: 1;
}

/* --- Corrected code below --- */








/* --- Top Welcome Message Bar --- */
.top-message {
    width: 100%;
    background: linear-gradient(90deg, #007bff 60%, #0056b3 100%);
    color: #fff;
    text-align: center;
    font-size: 1.1em;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  }
  @media (max-width: 480px) {
    .top-message {
      font-size: 1em;
      padding: 8px 0;
    }
  }
  
  /* --- Header/Navigation Adjustments for Top Bar --- */
  .header {
    top: 40px; /* Height of .top-message */
  }
  @media (max-width: 480px) {
    .header {
      top: 34px;
    }
  }
  
  /* --- Hero Section Polish --- */
  .hero {
    min-height: 80vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 60px;
    padding-bottom: 30px;
    background: #222;
  }
  .hero-image-slider {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    overflow: hidden;
  }
  .hero-image-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
    opacity: 0;
    transition: opacity 1s;
  }
  .hero-image-slider img:first-child {
    opacity: 1;
  }
  .hero-content-overlay {
    position: relative;
    z-index: 2;
      width: 100%;
    display: flex;
      flex-direction: column;
      align-items: center;
    justify-content: center;
    min-height: 60vh;
  }
  .hero-content-overlay .container {
    background: transparent;
    border-radius: 22px;
    padding: 56px 24px 48px 24px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(26,35,126,0.13);
    text-align: center;
    /* Remove blur completely */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none;
  }
  .hero-content-overlay h1 {
    color: #fff;
    font-size: 2.1em;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
  }
  .hero-content-overlay p {
    color: #e0e0e0;
    font-size: 1.1em;
    margin-bottom: 22px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.12);
  }
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .cta-buttons .btn {
    width: 90vw;
    max-width: 320px;
    font-size: 1.1em;
    padding: 14px 0;
    border-radius: 8px;
    margin: 0 auto;
  }
  @media (min-width: 600px) {
    .cta-buttons {
      flex-direction: row;
      gap: 18px;
    }
    .cta-buttons .btn {
      width: auto;
      min-width: 160px;
      padding: 14px 32px;
    }
  }
  @media (max-width: 480px) {
    .hero-content-overlay .container {
      padding: 18px 6px 18px 6px;
    }
    .hero-content-overlay h1 {
      font-size: 1.3em;
    }
    .hero-content-overlay p {
      font-size: 1em;
    }
  }
  
  /* --- Testimonials Slider --- */
/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    overflow: hidden; /* Hide overflow for slider */
}

.testimonial-slider {
    position: relative;
    max-width: 900px; /* Adjust as needed */
    margin: 40px auto 0;
    overflow: hidden;
}

.testimonial-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%; /* Each card takes full width of the slider view */
    box-sizing: border-box;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 20px; /* Add some padding at the bottom */
}

.testimonial-image {
    width: 100%;
    height: 250px; /* Fixed height for images */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures the entire image is visible */
    object-position: center; /* Centers the image */
}

.testimonial-content {
    padding: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: bold;
    color: #007bff;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.5em;
    z-index: 100;
    border-radius: 5px;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.prev-btn:hover, .next-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .testimonial-slider {
        max-width: 100%;
    }
    .prev-btn, .next-btn {
        padding: 8px 12px;
        font-size: 1.2em;
    }
}

  /* --- German Section Polish --- */
  .language-section {
    background: #f7faff;
    padding: 40px 0 40px 0;
  }
  .german-header {
    background: linear-gradient(90deg, #0056b3 60%, #007bff 100%);
    color: #fff;
    padding: 24px 0 18px 0;
    border-radius: 0 0 18px 18px;
    margin-bottom: 18px;
  }
  .german-header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .header-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .logo-container img {
    height: 54px;
    width: auto;
    border-radius: 8px;
    background: #fff;
    padding: 4px;
  }
  .years-text {
    font-size: 0.95em;
    color: #e0e0e0;
    margin-top: 4px;
  }
  .header-buttons {
    display: flex;
    gap: 10px;
    margin-top: 8px;
  }
  .header-buttons .btn {
    background: #fff;
    color: #007bff;
    border: none;
    font-weight: 600;
    border-radius: 6px;
    padding: 10px 18px;
    font-size: 1em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  .header-buttons .btn:hover {
    background: #e6f2ff;
  }
  .course-title h1 {
    font-size: 1.3em;
    color: #fff;
    margin: 18px 0 10px 0;
    text-align: center;
  }
  .course-highlights {
    color: #e0e0e0;
    font-size: 1em;
    margin-bottom: 10px;
    padding-left: 0;
    list-style: none;
    text-align: center;
  }
  .goethe-toss-branding {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
    justify-content: center;
  }
  .goethe-logo {
    height: 32px;
    width: auto;
    background: #fff;
    border-radius: 4px;
    padding: 2px 4px;
  }
  .course-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-top: 8px;
  }
  .rating-stars {
    color: #ffd700;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 2px;
  }
  .learners-count {
    color: #fff;
    font-size: 0.95em;
  }
  .course-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .content-left, .content-right {
    width: 100%;
  }
  .demo-form-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    padding: 18px 12px;
    margin-bottom: 18px;
  }
  .demo-form-container h3 {
    color: #0056b3;
    font-size: 1.1em;
    margin-bottom: 10px;
    text-align: center;
  }
  .demo-form .form-group {
    margin-bottom: 12px;
  }
  .demo-form input, .demo-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
  }
  .demo-form .submit-btn {
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 0;
    font-size: 1em;
    font-weight: 600;
    width: 100%;
    margin-top: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  .demo-form .submit-btn:hover {
    background: #0056b3;
  }
  .certificate-container {
    background: #e6f2ff;
    border-radius: 10px;
    padding: 18px 10px;
    text-align: center;
    color: #0056b3;
    font-size: 1em;
    margin-top: 10px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media (min-width: 900px) {
    .course-content {
    flex-direction: row;
      gap: 40px;
    }
    .content-left, .content-right {
      width: 50%;
    }
  }
  @media (max-width: 600px) {
    .german-header {
      padding: 14px 0 10px 0;
      border-radius: 0 0 10px 10px;
    }
    .course-title h1 {
      font-size: 1em;
    }
    .demo-form-container {
      padding: 10px 4px;
    }
    .certificate-container {
      font-size: 0.95em;
      padding: 10px 4px;
    }
  }
  
  /* --- Sticky Bottom Bar & Floating Buttons --- */
  .sticky-bottom-bar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    width: 100vw;
    background: linear-gradient(90deg, #007bff 60%, #0056b3 100%);
    color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0 8px 0;
    z-index: 1200;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.13);
  }
  .sticky-bottom-bar .contact-option {
    color: #fff;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 6px;
    background-color: #4097ef;
    transition: background 0.2s;
  }
  .sticky-bottom-bar .contact-option:hover {
    background: rgba(255,255,255,0.12);
  }
  .floating-buttons {
    position: fixed;
    left: 0; right: 0;
    bottom: 60px; /* Height of sticky bar + margin */
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    pointer-events: none;
    z-index: 1300;
    padding: 0 20px;
  }
  .floating-buttons a {
    pointer-events: auto;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
  }
  .floating-buttons img {
    width: auto;
    height: 47px;
    object-fit: contain;
}
  @media (max-width: 480px) {
    .sticky-bottom-bar {
      padding: 7px 0 6px 0;
    }
    .sticky-bottom-bar .contact-option {
      font-size: 1em;
      padding: 7px 8px;
    }
    .floating-buttons {
      padding: 0 8px;
    }
    .floating-buttons a {
      width: 44px;
      height: 44px;
    }
    .floating-buttons img {
      width: auto;
      height: 47px;
    }
  }
  
  /* --- General Mobile Polish --- */
  @media (max-width: 480px) {
    body, html {
      font-size: 15px;
    }
    .container {
      padding: 0 6px;
    }
    .section-title {
      font-size: 1.1em;
    }
    .form-group input, .form-group select, .form-group textarea {
      font-size: 1em;
      padding: 8px;
    }
    .btn, .primary-btn, .secondary-btn {
      font-size: 1em;
      padding: 10px 0;
    }
  }
  






/* PG Medica Inspired Study Abroad Section */
.study-abroad-section {
  background: #f4f8fb;
  padding: 60px 0 40px 0;
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
}

.study-abroad-section .container {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  padding: 40px 20px 30px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.study-abroad-hero {
  text-align: center;
  margin-bottom: 32px;
}
.study-abroad-hero h1 {
  font-size: 2.1em;
  color: #1a237e;
  font-weight: 700;
  margin-bottom: 12px;
}
.study-abroad-hero p {
  color: #444;
  font-size: 1.1em;
  margin-bottom: 18px;
}
.study-abroad-hero ul.study-abroad-features {
    display: flex;
  flex-wrap: wrap;
    justify-content: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.study-abroad-hero ul.study-abroad-features li {
  background: #e3f2fd;
  color: #1976d2;
  border-radius: 20px;
  padding: 7px 18px;
  font-size: 1em;
  margin-bottom: 0;
  font-weight: 500;
}

/* University Cards */
.universities-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin: 32px 0 0 0;
}
.university-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(26,35,126,0.10);
  padding: 28px 18px 22px 18px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1.5px solid #e3e8ee;
}
.university-card h3 {
  color: #1976d2;
  font-size: 1.15em;
  font-weight: 600;
  margin-bottom: 16px;
}
.university-card .btn {
  background: #1976d2;
    color: #fff;
  border-radius: 22px;
  padding: 8px 28px;
  font-size: 1em;
  font-weight: 500;
  border: none;
  box-shadow: 0 2px 8px rgba(25,118,210,0.08);
  transition: background 0.2s;
}
.university-card .btn:hover {
  background: #0d47a1;
}
.university-card:hover {
  box-shadow: 0 8px 32px rgba(25,118,210,0.18);
  transform: translateY(-4px) scale(1.02);
  border-color: #bbdefb;
}

/* Responsive grid for universities */
@media (min-width: 600px) {
  .universities-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .universities-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Brochure Form */
.brochure-form-section {
  background: #e3f2fd;
  color: #1a237e;
  padding: 32px 18px 24px 18px;
  border-radius: 14px;
  margin: 40px 0 32px 0;
    text-align: center;
  box-shadow: 0 2px 12px rgba(25,118,210,0.08);
}
.brochure-form-section h2 {
  font-size: 1.3em;
  margin-bottom: 18px;
  color: #1976d2;
  font-weight: 600;
}
.brochure-form-section form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 400px;
  margin: 0 auto;
}
.brochure-form-section .form-group input {
  width: 100%;
  padding: 13px;
  border: 1.5px solid #bbdefb;
  border-radius: 7px;
  font-size: 1em;
  background: #fff;
  color: #222;
  transition: border 0.2s;
}
.brochure-form-section .form-group input:focus {
  border-color: #1976d2;
  outline: none;
}
.brochure-form-section .btn {
  background: #1976d2;
  color: #fff;
  border-radius: 22px;
  padding: 11px 0;
  font-size: 1em;
  font-weight: 600;
  border: none;
  margin-top: 4px;
  transition: background 0.2s;
}
.brochure-form-section .btn:disabled {
  background: #b0bec5;
  cursor: not-allowed;
}
.brochure-form-section .btn:hover:not(:disabled) {
  background: #0d47a1;
}

/* Study Abroad Info/Benefits */
.study-abroad-info {
  background: #f4f8fb;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(25,118,210,0.06);
  padding: 18px 12px;
  margin-bottom: 24px;
}
.study-abroad-info h2 {
  color: #1976d2;
  font-size: 1.1em;
  margin-bottom: 10px;
  font-weight: 600;
}
.study-abroad-info ul {
  list-style: none;
  padding: 0;
  color: #1976d2;
}
.study-abroad-info ul li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
  font-weight: 500;
}
.study-abroad-info ul li::before {
  content: "•";
  color: #43a047;
    position: absolute;
    left: 0;
  font-size: 1.2em;
}

/* Overview Grid */
.overview-section {
  margin-bottom: 24px;
}
.overview-section h2 {
  color: #1976d2;
  font-size: 1.1em;
  margin-bottom: 12px;
  text-align: center;
  font-weight: 600;
}
.overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.overview-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(25,118,210,0.05);
  padding: 14px 10px;
  text-align: left;
  border-left: 4px solid #1976d2;
}
.overview-item h3 {
  color: #1976d2;
  font-size: 1em;
  margin-bottom: 6px;
  font-weight: 600;
}
.overview-item p {
  color: #444;
  font-size: 0.98em;
}

/* Responsive for Overview */
@media (min-width: 700px) {
  .overview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Study Abroad Form (if you added a form) */
.study-abroad-section form:not(.brochure-form-section form) {
  background: #f4f8fb;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(25,118,210,0.07);
  padding: 22px 14px;
  margin: 28px auto 18px auto;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1.5px solid #e3e8ee;
}
.study-abroad-section form .form-group {
  margin-bottom: 0;
}
.study-abroad-section form input,
.study-abroad-section form select,
.study-abroad-section form textarea {
    width: 100%;
  padding: 12px;
  border: 1.5px solid #bbdefb;
  border-radius: 7px;
  font-size: 1em;
  color: #222;
  background: #fff;
  transition: border 0.2s;
}
.study-abroad-section form input:focus,
.study-abroad-section form select:focus,
.study-abroad-section form textarea:focus {
  border-color: #1976d2;
  outline: none;
}
.study-abroad-section form textarea {
  min-height: 80px;
  resize: vertical;
}
.study-abroad-section form button,
.study-abroad-section form .btn {
  background: #1976d2;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 12px 0;
  font-size: 1em;
  font-weight: 600;
  margin-top: 6px;
  transition: background 0.2s;
}
.study-abroad-section form button:hover,
.study-abroad-section form .btn:hover {
  background: #0d47a1;
}




/* --- Modern Card Section Styles for Study Abroad Info --- */
.study-abroad-section .info-card {
  background: #f8fbff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(25,118,210,0.08);
  padding: 32px 20px 32px 20px;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.study-abroad-section .info-card h2 {
  color: #1976d2;
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 10px;
}
.study-abroad-section .info-card h3 {
  color: #1565c0;
  font-size: 1.15em;
  margin: 18px 0 8px 0;
  font-weight: 600;
}
.study-abroad-section .info-card p,
.study-abroad-section .info-card ul,
.study-abroad-section .info-card li {
  color: #444;
  font-size: 1.08em;
  line-height: 1.7;
  margin-bottom: 8px;
}
.study-abroad-section .info-card ul {
  padding-left: 20px;
  margin-bottom: 0;
}
.study-abroad-section .info-card li {
  margin-bottom: 6px;
  position: relative;
}
.study-abroad-section .info-card li::before {
  content: "•";
  color: #1976d2;
  font-size: 1.2em;
    position: absolute;
  left: -18px;
    top: 0;
}
.study-abroad-section .info-card img.section-img {
    width: 100%;
  max-width: 340px;
  border-radius: 12px;
  margin: 18px auto 0 auto;
  box-shadow: 0 2px 12px rgba(25,118,210,0.10);
  display: block;
    object-fit: cover;
}

/* Responsive: side-by-side image for large screens */
@media (min-width: 900px) {
  .study-abroad-section .info-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
  }
  .study-abroad-section .info-card .info-content {
    flex: 2;
  }
  .study-abroad-section .info-card .info-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .study-abroad-section .info-card img.section-img {
    margin: 0;
    max-width: 320px;
  }
}

/* --- Universities List with View More --- */
.universities-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin: 32px 0 0 0;
  transition: all 0.3s;
}
@media (min-width: 600px) {
  .universities-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .universities-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.university-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(26,35,126,0.10);
  padding: 28px 18px 22px 18px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1.5px solid #e3e8ee;
}
.university-card h3 {
  color: #1976d2;
  font-size: 1.15em;
  font-weight: 600;
  margin-bottom: 16px;
}
.university-card .btn {
  background: #1976d2;
  color: #fff;
  border-radius: 22px;
  padding: 8px 28px;
  font-size: 1em;
  font-weight: 500;
    border: none;
  box-shadow: 0 2px 8px rgba(25,118,210,0.08);
  transition: background 0.2s;
}
.university-card .btn:hover {
  background: #0d47a1;
}
.university-card:hover {
  box-shadow: 0 8px 32px rgba(25,118,210,0.18);
  transform: translateY(-4px) scale(1.02);
  border-color: #bbdefb;
}

/* View More Button */
#view-more-universities {
  display: block;
  margin: 32px auto 0 auto;
  background: #1976d2;
    color: #fff;
  border: none;
  border-radius: 22px;
  padding: 12px 38px;
  font-size: 1.1em;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(25,118,210,0.08);
  cursor: pointer;
  transition: background 0.2s;
}
#view-more-universities:hover {
  background: #0d47a1;
}















/* --- German Section (Henry Harvin Inspired, Mobile-First) --- */
/* --- Henry Harvin Inspired German Section --- */
/* --- Henry Harvin Inspired German Section: Polished, Beautiful, Mobile-First --- */
.hh-german-section {
  background: #f7faff;
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  padding: 0 0 60px 0;
}
.hh-german-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}
.hh-german-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('https://images.pexels.com/photos/109629/pexels-photo-109629.jpeg') center center/cover no-repeat;
  z-index: 1;
  animation: bgZoom 18s ease-in-out infinite alternate;
}
@keyframes bgZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.hh-german-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 2;
}
.hh-german-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 48px 18px 48px 18px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 1.2s cubic-bezier(.23,1.01,.32,1) 0.2s both;
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: none; }
}
.hh-german-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.hh-german-logo {
  height: 70px;
  width: auto;
  border-radius: 12px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.hh-german-badge {
  background: #fff;
  color: #1976d2;
  font-size: 1.1em;
  border-radius: 16px;
  padding: 6px 20px;
  font-weight: 600;
  border: 1.5px solid #e3e8ee;
  box-shadow: 0 2px 8px rgba(25,118,210,0.08);
  transition: box-shadow 0.2s, background 0.2s;
}
.hh-german-badge.gold {
  color: #bfa100;
  border-color: #ffe082;
}
.hh-german-badge.trust {
  color: #388e3c;
  border-color: #c8e6c9;
}
.hh-german-badge:hover {
  background: #e3f2fd;
  box-shadow: 0 4px 18px rgba(25,118,210,0.13);
}
.hh-german-title {
  font-size: 2.6em;
  font-weight: 800;
  margin: 18px 0 8px 0;
  line-height: 1.1;
  letter-spacing: -1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.13);
}
.hh-german-subtitle {
  font-size: 1.5em;
  font-weight: 500;
  color: #ffe082;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.10);
}
.hh-german-rating-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 18px 0 18px 0;
  font-size: 1.3em;
}
.hh-german-rating-stars {
  color: #ffd700;
  font-size: 1.4em;
  letter-spacing: 1px;
  filter: drop-shadow(0 1px 2px #fffde7);
}
.hh-german-rating-score {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0,0,0,0.10);
}
.hh-german-learners {
  color: #ffe082;
  font-size: 1.1em;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.10);
}
.hh-german-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
}
.hh-german-highlights li {
  background: #e3f2fd;
  color: #1976d2;
  border-radius: 24px;
  padding: 12px 28px;
  font-size: 1.15em;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(25,118,210,0.08);
  transition: background 0.2s, box-shadow 0.2s;
}
.hh-german-highlights li:hover {
  background: #bbdefb;
  box-shadow: 0 4px 18px rgba(25,118,210,0.13);
}
.hh-german-cta-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
}
.hh-german-cta-row .btn {
  width: 90vw;
  max-width: 340px;
        font-size: 1.2em;
  padding: 18px 0;
  border-radius: 12px;
  margin: 0 auto;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(25,118,210,0.08);
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.hh-primary-btn {
  background: linear-gradient(90deg, #ff9800 60%, #ffb300 100%);
  color: #fff;
  border: none;
}
.hh-primary-btn:hover {
  background: #e65100;
  color: #fff;
  box-shadow: 0 4px 18px rgba(255,193,7,0.13);
}
.hh-secondary-btn {
  background: #fff;
  color: #1976d2;
  border: 2px solid #1976d2;
}
.hh-secondary-btn:hover {
  background: #e3f2fd;
  color: #1976d2;
  box-shadow: 0 4px 18px rgba(25,118,210,0.13);
}
@media (min-width: 600px) {
  .hh-german-cta-row {
    flex-direction: row;
    gap: 24px;
  }
  .hh-german-cta-row .btn {
    width: auto;
    min-width: 180px;
    padding: 18px 38px;
  }
}
@media (max-width: 600px) {
  .hh-german-title {
    font-size: 1.5em;
  }
  .hh-german-subtitle {
    font-size: 1.1em;
  }
  .hh-german-badges {
    gap: 8px;
  }
  .hh-german-highlights li {
        font-size: 1em;
    padding: 8px 14px;
    }
  .hh-german-cta-row .btn {
        font-size: 1em;
    padding: 12px 0;
  }
}

.hh-german-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1200px;
  margin: 48px auto 0 auto;
  padding: 0 10px;
}
.hh-german-feature-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(26,35,126,0.10);
  padding: 38px 18px 28px 18px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1.5px solid #e3e8ee;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 1.2s cubic-bezier(.23,1.01,.32,1) 0.4s both;
}
.hh-german-feature-card:hover {
  box-shadow: 0 8px 32px rgba(25,118,210,0.18);
  transform: translateY(-4px) scale(1.03);
}
.hh-german-feature-card img {
  height: 60px;
  width: auto;
  margin-bottom: 18px;
}
.hh-german-feature-card h3 {
  color: #1976d2;
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 14px;
}
.hh-german-feature-card p {
  color: #444;
  font-size: 1.1em;
  margin-bottom: 0;
}
@media (min-width: 700px) {
  .hh-german-features {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hh-german-main-content {
  display: flex;
        flex-direction: column;
  gap: 36px;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 10px;
  margin-top: 48px;
}
.hh-german-left, .hh-german-right {
  width: 100%;
}
@media (min-width: 900px) {
  .hh-german-main-content {
    flex-direction: row;
    gap: 60px;
  }
  .hh-german-left, .hh-german-right {
    width: 50%;
  }
}
.hh-german-levels-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  padding: 32px 24px;
  margin: 18px 0;
  text-align: left;
  font-size: 1.15em;
  animation: fadeInUp 1.2s cubic-bezier(.23,1.01,.32,1) 0.6s both;
}
.hh-german-levels-card h2 {
  color: #1976d2;
  font-size: 1.3em;
  margin-bottom: 18px;
  font-weight: 700;
}
.hh-german-levels-card ul {
  list-style: none;
  padding: 0;
  color: #1976d2;
  margin-bottom: 18px;
  font-size: 1.1em;
}
.hh-german-levels-card ul li {
  margin-bottom: 10px;
  font-weight: 600;
}
.hh-german-cert-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.hh-german-cert-badge img {
  height: 38px;
  width: auto;
  background: #fff;
  border-radius: 4px;
  padding: 2px 4px;
}
.hh-german-cert-badge span {
  color: #1976d2;
  font-size: 1.1em;
  font-weight: 700;
}
.hh-german-demo-form-card,
.hh-german-brochure-form-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  padding: 32px 24px;
  margin-bottom: 24px;
  text-align: left;
  font-size: 1.1em;
  animation: fadeInUp 1.2s cubic-bezier(.23,1.01,.32,1) 0.8s both;
}
.hh-german-demo-form-card h3,
.hh-german-brochure-form-card h3 {
  color: #0056b3;
  font-size: 1.3em;
  margin-bottom: 18px;
  text-align: center;
  font-weight: 700;
}
.demo-form .form-group,
.brochure-form .form-group {
  margin-bottom: 18px;
}
.demo-form input, .demo-form select,
.brochure-form input {
  width: 100%;
  padding: 16px;
  border: 1.5px solid #bbdefb;
  border-radius: 8px;
  font-size: 1.1em;
  background: #fff;
  color: #222;
  transition: border 0.2s;
}
.demo-form input:focus, .demo-form select:focus,
.brochure-form input:focus {
  border-color: #1976d2;
  outline: none;
}
.demo-form .submit-btn,
.brochure-form .btn {
  background: linear-gradient(90deg, #ff9800 60%, #ffb300 100%);
    color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px 0;
  font-size: 1.1em;
  font-weight: 700;
  width: 100%;
  margin-top: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  letter-spacing: 0.5px;
  transition: background 0.2s, box-shadow 0.2s;
}
.demo-form .submit-btn:hover,
.brochure-form .btn:hover {
  background: #e65100;
  box-shadow: 0 4px 18px rgba(255,193,7,0.13);
}
.hh-german-certificate {
  background: #e6f2ff;
  border-radius: 12px;
  padding: 24px 10px;
    text-align: center;
  color: #0056b3;
  font-size: 1.1em;
  margin-top: 18px;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(25,118,210,0.08);
  animation: fadeInUp 1.2s cubic-bezier(.23,1.01,.32,1) 1s both;
}
.hh-german-certificate img {
  height: 295px;
  width: auto;
  margin-bottom: 10px;
}
.hh-german-certificate span {
  font-size: 1.1em;
  color: #0056b3;
  font-weight: 700;
}

.hh-german-placed-learners {
  background: #fffde7;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(255,193,7,0.08);
  margin: 60px auto 0 auto;
  max-width: 1200px;
  padding: 48px 10px 32px 10px;
  text-align: center;
  animation: fadeInUp 1.2s cubic-bezier(.23,1.01,.32,1) 1.2s both;
}
.hh-german-placed-learners h2 {
  color: #ff9800;
  font-size: 2em;
  font-weight: 800;
  margin-bottom: 28px;
  text-shadow: 0 2px 8px rgba(255,193,7,0.13);
}
.hh-german-placed-carousel {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding-bottom: 8px;
  justify-content: center;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.hh-german-learner-card {
  min-width: 200px;
  max-width: 260px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(255,193,7,0.10);
  padding: 24px 10px;
  margin: 0 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  scroll-snap-align: start;
}
.hh-german-learner-card:hover {
  box-shadow: 0 8px 32px rgba(255,193,7,0.18);
  transform: translateY(-4px) scale(1.03);
}
.hh-german-learner-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
  border: 2px solid #ff9800;
}
.hh-german-learner-name {
  color: #1976d2;
  font-weight: 700;
  font-size: 1.1em;
  display: block;
}
.hh-german-learner-company {
  color: #757575;
  font-size: 1em;
  display: block;
}
@media (max-width: 900px) {
  .hh-german-main-content {
    flex-direction: column;
    gap: 36px;
  }
  .hh-german-left, .hh-german-right {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .hh-german-title {
    font-size: 1.3em;
  }
  .hh-german-subtitle {
    font-size: 1em;
  }
  .hh-german-badges {
    gap: 8px;
  }
  .hh-german-highlights li {
    font-size: 0.98em;
    padding: 8px 10px;
  }
  .hh-german-cta-row .btn {
    font-size: 1em;
    padding: 12px 0;
  }
  .hh-german-feature-card {
    padding: 18px 8px 14px 8px;
  }
  .hh-german-placed-carousel {
    gap: 10px;
  }
  .hh-german-placed-learners h2 {
    font-size: 1.2em;
  }
}





/* Toss International Navbar for Learn German Section */
.toss-navbar {
  width: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 18px 10px 14px 10px;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  margin-bottom: 0;
  flex-wrap: wrap;
}
.toss-callback-btn {
  background: linear-gradient(90deg, #ff9800 60%, #ffb300 100%);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 12px 22px;
  font-size: 1.2em;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(255,193,7,0.10);
  cursor: pointer;
  margin-right: 18px;
  transition: background 0.2s, box-shadow 0.2s;
  text-decoration: none !important;
  color: #fff !important;
}
.toss-callback-btn:hover {
  background: #e65100;
  box-shadow: 0 4px 18px rgba(255,193,7,0.13);
}
.toss-callback-btn:visited,
.toss-callback-btn:active,
.toss-callback-btn:focus,
.toss-callback-btn:hover {
  text-decoration: none !important;
  color: #fff !important;
}
.toss-navbar-logo-heading {
  display: flex;
  align-items: center;
  gap: 16px;
}
.toss-navbar-logo {
  height: 64px;
  width: auto;
  border-radius: 12px;
  background: #fff;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.toss-navbar-text {
    display: flex;
    flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}
.toss-navbar-toss {
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 1.5em;
  font-weight: 550;
  color: #111;
  letter-spacing: -1px;
}
.toss-navbar-international {
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 1.5em;
  font-weight: 500;
  color: #ffb300;
  letter-spacing: -0.5px;
  margin-top: 1px;
}
.toss-navbar-desc {
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: 1.1em;
  color: #888;
  margin-top: 1px;
  font-weight: 400;
}
@media (max-width: 600px) {
  .toss-navbar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px 4px 10px 4px;
    border-radius: 0 0 10px 10px;
  }
  .toss-navbar-logo-heading {
    flex-direction: row;
    gap: 10px;
    align-items: center;
  }
  .toss-navbar-logo {
    height: 48px;
    padding: 2px;
  }
  .toss-navbar-text {
    align-items: flex-start;
  }
  .toss-navbar-toss {
    font-size: 1.3em;
  }
  .toss-navbar-international {
    font-size: 1.1em;
  }
  .toss-navbar-desc {
    font-size: 0.98em;
  }
  .toss-callback-btn {
    width: 100%;
    margin-right: 0;
    padding: 10px 0;
    font-size: 1em;
  }
}

/* Make headings bigger and beautiful */
.hh-german-title {
  font-size: 3.2em;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 10px;
  text-shadow: 0 4px 18px rgba(0,0,0,0.18);
}
.hh-german-subtitle {
  font-size: 2em;
  font-weight: 700;
  color: #f4f3f6;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.13);
}

/* Beautiful points list */
.hh-german-highlights {
  display: flex;
  flex-wrap: wrap;
    justify-content: center;
  gap: 18px;
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
}
.hh-german-highlights li {
  background: #fff;
  color: #1976d2;
  border-radius: 24px;
  padding: 16px 32px;
  font-size: 1.25em;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(25,118,210,0.10);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.2s, box-shadow 0.2s;
}
.hh-german-highlights li i {
  color: #ffb300;
  font-size: 1.2em;
}
.hh-german-highlights li:hover {
  background: #e3f2fd;
  box-shadow: 0 4px 18px rgba(25,118,210,0.13);
}

@media (max-width: 600px) {
  .hh-german-title {
    font-size: 2em;
  }
  .hh-german-subtitle {
    font-size: 1.2em;
  }
  .hh-german-highlights {
    gap: 8px;
  }
  .hh-german-highlights li {
    font-size: 1em;
    padding: 10px 10px;
  }
}

/* extra styling */


.testimonial-slider {
    padding: 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.next-btn, .prev-btn {
  background: #4a6bff;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.next-btn:hover, .prev-btn:hover {
  background: #3a56d4;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .testimonial-slider {
      padding: 1rem;
  }
  

}




.about-vision-mission {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: 24px 0;
}

.vision-box, .mission-box {
  flex: 1;
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.vision-box:hover, .mission-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.vision-box h3, .mission-box h3 {
  color: #1a237e;
  font-size: 1.8em;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}

.vision-box h3:after, .mission-box h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #3f51b5;
  border-radius: 2px;
}

.vision-box p, .mission-box p {
  color: #424242;
  font-size: 1.1em;
  line-height: 1.6;
  margin-top: 15px;
}

.about-text-content {
  padding: 40px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin: 40px 0;
}

.about-text-content h3 {
  color: #1a237e;
  font-size: 2em;
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}

.about-text-content h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: #3f51b5;
  border-radius: 2px;
}

.about-text-content p {
  color: #424242;
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

@media (max-width: 768px) {
  .about-vision-mission {
      flex-direction: column;
      gap: 20px;
  }
  
  .vision-box, .mission-box {
      padding: 25px;
  }
  
  .vision-box h3, .mission-box h3 {
      font-size: 1.6em;
  }
  
  .about-text-content {
      padding: 25px;
  }
  
  .about-text-content h3 {
      font-size: 1.8em;
  }
}

@media (max-width: 480px) {
  .vision-box h3, .mission-box h3 {
      font-size: 1.4em;
  }
  
  .vision-box p, .mission-box p,
  .about-text-content p {
      font-size: 1em;
  }
  
  .about-text-content h3 {
      font-size: 1.6em;
  }
}

/* Hamburger styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1201;
  margin-left: 18px;
  transition: filter 0.2s;
  position: relative;
}

.hamburger:focus {
  outline: 2px solid #3399cc;
}

.bar {
  width: 28px;
  height: 4px;
  background: #007bff;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(.68,-0.55,.27,1.55);
}

.hamburger.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: #ff5252;
}

.hamburger.open .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: #ff5252;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1351;
    margin-left: 18px;
    background: none;
    border: none;
    position: relative;
  }
  .bar {
    width: 28px;
    height: 4px;
    background: #007bff;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(.68,-0.55,.27,1.55);
  }
  .hamburger.open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: #ffe082;
  }
  .hamburger.open .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: #ffe082;
  }
  .nav-links {
    position: fixed;
    right: -250px;
    top: 0;
    width: 250px;
    height: 100vh;
    background: #007bff;
    padding-top: 80px;
    transition: right 0.3s ease;
    z-index: 1350;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.active {
    right: 0;
  }
  .nav-links ul {
    flex-direction: column;
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .nav-links ul li {
    margin: 20px 0;
    width: 100%;
  }
  .nav-links ul li a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    display: block;
    padding: 12px 20px;
    border-radius: 0;
    background: none;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
  }
  .nav-links ul li a:hover {
    background: rgba(255,255,255,0.18);
    color: #ffe082;
  }
}
@media (min-width: 769px) {
  .hamburger {
    display: none !important;
  }
}




.logo-text {
  text-decoration: none !important;
  color: inherit !important;
}
.logo-text:visited,
.logo-text:active,
.logo-text:focus,
.logo-text:hover {
  text-decoration: none !important;
  color: inherit !important;
}

/* Add a wrapper for logo and text in HTML: <div class="logo-group"><a class="logo" ...></a><a class="logo-text" ...></a></div> */

/* Add this CSS for the new wrapper */


/* --- Professional German Features Grid --- */
.german-features-pro {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin: 48px 0 32px 0;
  padding: 0 10px;
}
.german-feature-pro {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(26,35,126,0.10);
  padding: 36px 18px 28px 18px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1.5px solid #e3e8ee;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.german-feature-pro i {
  font-size: 2.5em;
  color: #1976d2;
  margin-bottom: 18px;
}
.german-feature-pro h3 {
  color: #1976d2;
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 10px;
}
.german-feature-pro p {
  color: #444;
  font-size: 1.05em;
  margin-bottom: 0;
}
.german-feature-pro:hover {
  box-shadow: 0 8px 32px rgba(25,118,210,0.18);
  transform: translateY(-4px) scale(1.03);
}

/* --- Main Content Layout --- */
.german-main-content-pro {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 0 auto 48px auto;
  max-width: 1200px;
  padding: 0 10px;
}
.german-levels-pro {
  flex: 1 1 340px;
  background: linear-gradient(120deg, #e3f2fd 60%, #fff 100%);
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(26,35,126,0.10);
  padding: 36px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 320px;
  max-width: 400px;
}
.levels-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.levels-header i {
  font-size: 2em;
  color: #1976d2;
}
.levels-header h2 {
  color: #1976d2;
  font-size: 1.3em;
  font-weight: 800;
  margin: 0;
}
.levels-steps {
  width: 100%;
  margin-bottom: 18px;
}
.level-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(25,118,210,0.07);
  padding: 14px 12px;
  transition: box-shadow 0.2s;
}
.level-step:hover {
  box-shadow: 0 4px 18px rgba(25,118,210,0.13);
}
.level-badge {
  background: #1976d2;
  color: #fff;
  font-weight: 700;
  font-size: 1em;
  border-radius: 8px;
  padding: 8px 16px;
  min-width: 60px;
  text-align: center;
  margin-top: 2px;
  box-shadow: 0 2px 8px rgba(25,118,210,0.10);
}
.level-step h4 {
  margin: 0 0 4px 0;
  color: #1976d2;
  font-size: 1.08em;
  font-weight: 700;
}
.level-step p {
  margin: 0;
  color: #444;
  font-size: 0.98em;
}
.levels-cert {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  background: #fff;
  border-radius: 8px;
  padding: 8px 14px;
  box-shadow: 0 2px 8px rgba(25,118,210,0.08);
}
.levels-cert img {
  height: 32px;
  width: auto;
  border-radius: 4px;
  background: #fff;
  padding: 2px 4px;
}
.levels-cert span {
  color: #1976d2;
  font-size: 1em;
  font-weight: 700;
}

/* --- Forms and Certificate --- */
.german-forms-pro {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.german-form-card-pro {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  padding: 32px 24px;
  text-align: left;
  font-size: 1.1em;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.german-form-card-pro h3 {
  color: #0056b3;
  font-size: 1.2em;
  margin-bottom: 18px;
  text-align: center;
  font-weight: 700;
}
.german-form-pro {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.german-form-pro .form-row {
  width: 100%;
  margin-bottom: 0;
}
.german-form-pro input {
  width: 100%;
  padding: 14px 12px;
  border: 1.5px solid #bbdefb;
  border-radius: 7px;
  font-size: 1em;
  background: #f7faff;
  color: #222;
  transition: border 0.2s;
  margin-bottom: 0;
}
.german-form-pro input:focus {
  border-color: #1976d2;
  outline: none;
  background: #fff;
}
.btn-pro {
  background: linear-gradient(90deg, #ff9800 60%, #ffb300 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 0;
  font-size: 1.1em;
  font-weight: 700;
  width: 100%;
  margin-top: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  letter-spacing: 0.5px;
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.btn-pro:hover {
  background: #e65100;
  box-shadow: 0 4px 18px rgba(255,193,7,0.13);
}

/* --- Certificate Card --- */
.german-certificate-pro {
  background: linear-gradient(120deg, #e3f2fd 60%, #fff 100%);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(25,118,210,0.08);
  padding: 24px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 0;
  margin-bottom: 0;
}
.german-certificate-pro img {
  height: 90px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(25,118,210,0.10);
  background: #fff;
}
.german-certificate-pro h4 {
  color: #1976d2;
  font-size: 1.1em;
  font-weight: 700;
  margin: 0 0 4px 0;
}
.german-certificate-pro p {
  color: #444;
  font-size: 0.98em;
  margin: 0;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .german-main-content-pro {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }
  .german-levels-pro, .german-forms-pro {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 600px) {
  .german-features-pro {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .german-main-content-pro {
    padding: 0 2px;
  }
  .german-levels-pro, .german-form-card-pro, .german-certificate-pro {
    padding: 16px 6px;
  }
  .german-certificate-pro img {
    height: 60px;
  }
}





/* Certificate Modal Styles */
.certificate-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 2000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.55);
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
}
.certificate-modal.active {
  display: flex;
}
.certificate-modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(25,118,210,0.18);
  padding: 32px 24px 24px 24px;
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  animation: modalPopIn 0.25s cubic-bezier(.23,1.01,.32,1);
}
@keyframes modalPopIn {
  0% { transform: scale(0.85); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.certificate-modal-content img {
  max-width: 80vw;
  max-height: 60vh;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(25,118,210,0.10);
  margin-bottom: 18px;
}
.certificate-modal-caption {
  text-align: center;
}
.certificate-modal-caption h4 {
  color: #1976d2;
  font-size: 1.2em;
  font-weight: 700;
  margin: 0 0 4px 0;
}
.certificate-modal-caption p {
  color: #444;
  font-size: 1em;
  margin: 0;
}
.certificate-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 2em;
  color: #888;
  cursor: pointer;
  font-weight: 700;
  transition: color 0.2s;
  z-index: 10;
}
.certificate-modal-close:hover {
  color: #ff5252;
}
@media (max-width: 600px) {
  .certificate-modal-content {
    padding: 10px 2px 10px 2px;
  }
  .certificate-modal-content img {
    max-width: 98vw;
    max-height: 40vh;
  }
}




/* --- Agniveer Section Professional Redesign --- */
.agniveer-section-pro {
  background: linear-gradient(120deg, #e3f2fd 60%, #f8f9fa 100%);
  padding: 70px 0 60px 0;
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
}
.agniveer-header-pro {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin-bottom: 18px;
}
.agniveer-header-pro i {
  font-size: 2.5em;
  color: #1976d2;
}
.agniveer-header-pro h2 {
  color: #1a237e;
  font-size: 2em;
  font-weight: 800;
  margin: 0;
  text-align: center;
}
.agniveer-description-pro {
  max-width: 700px;
  margin: 0 auto 32px auto;
  text-align: center;
  font-size: 1.15em;
  color: #444;
  line-height: 1.7;
}
.agniveer-content-pro {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.agniveer-benefits-pro {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(26,35,126,0.10);
  padding: 36px 28px 28px 28px;
  min-width: 320px;
  max-width: 400px;
  flex: 1 1 320px;
  margin-bottom: 18px;
}
.agniveer-benefits-pro h3 {
  color: #1976d2;
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.agniveer-benefits-pro ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.agniveer-benefits-pro li {
  color: #444;
  font-size: 1.05em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.agniveer-benefits-pro li i {
  color: #43a047;
  font-size: 1.1em;
}
.agniveer-form-card-pro {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(26,35,126,0.10);
  padding: 36px 28px 28px 28px;
  min-width: 320px;
  max-width: 420px;
  flex: 1 1 340px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.agniveer-form-card-pro h3 {
  color: #0056b3;
  font-size: 1.2em;
  margin-bottom: 18px;
  text-align: center;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.agniveer-form-pro {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.agniveer-form-pro .form-row {
  width: 100%;
  margin-bottom: 0;
}
.agniveer-form-pro input {
  width: 100%;
  padding: 14px 12px;
  border: 1.5px solid #bbdefb;
  border-radius: 7px;
  font-size: 1em;
  background: #f7faff;
  color: #222;
  transition: border 0.2s;
  margin-bottom: 0;
}
.agniveer-form-pro input:focus {
  border-color: #1976d2;
  outline: none;
  background: #fff;
}
.agniveer-btn-pro {
  background: linear-gradient(90deg, #1976d2 60%, #43a047 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 0;
  font-size: 1.1em;
  font-weight: 700;
  width: 100%;
  margin-top: 8px;
  box-shadow: 0 2px 8px rgba(25,118,210,0.08);
  letter-spacing: 0.5px;
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-align: center;
  display: inline-block;
}
.agniveer-btn-pro:hover {
  background: #1565c0;
  box-shadow: 0 4px 18px rgba(25,118,210,0.13);
  color: #fff;
}
.agniveer-btn-wa {
  background: linear-gradient(90deg, #43a047 60%, #1976d2 100%);
}
.agniveer-btn-wa:hover {
  background: #388e3c;
  color: #fff;
}
.agniveer-contact-pro {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(25,118,210,0.08);
  padding: 24px 18px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.agniveer-contact-pro h3 {
  color: #1976d2;
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.agniveer-contact-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .agniveer-content-pro {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .agniveer-benefits-pro, .agniveer-form-card-pro {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 600px) {
  .agniveer-section-pro {
    padding: 30px 0 20px 0;
  }
  .agniveer-header-pro h2 {
    font-size: 1.1em;
  }
  .agniveer-header-pro i {
    font-size: 1.5em;
  }
  .agniveer-benefits-pro, .agniveer-form-card-pro, .agniveer-contact-pro {
    padding: 12px 4px;
  }
}





@media (max-width: 600px) {
  .agniveer-header-pro h2,
  .section-title,
  .hh-german-title,
  .about-section h2,
  .study-abroad-hero h1,
  .top-universities-section h2 {
    font-size: 1.4em !important; /* or 2em for even bigger */
  }
}

/* General section padding and background */
section {
  padding: 2px 0 2px 0 !important;
  background: #fff;
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  section {
    padding: 1px 0 1px 0 !important;
  }
}

/* Add a subtle background to every other section for contrast */
section:nth-of-type(even) {
  background: #f7fafd;
}

/* Section container for content centering and max width */
section .container {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(26,35,126,0.06);
  padding: 32px 18px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Section heading spacing */
.section-title,
.agniveer-header-pro h2,
.hh-german-title,
.about-section h2,
.study-abroad-hero h1,
.top-universities-section h2 {
  margin-bottom: 24px;
  margin-top: 0;
  font-weight: 800;
  letter-spacing: -1px;
}

/* Add a divider between sections */
.section-divider {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  margin: 0 auto 2px auto !important;
  position: relative;
  z-index: 2;
  height: 38px; /* Slimmer white background */
}
.section-divider > span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(25,118,210,0.07);
  padding: 0;
  height: 22px;
  min-width: 70vw;
  max-width: 700px;
  width: 100%;
  position: relative;
}
.section-divider > span::before {
  content: '';
  display: block;
  height: 6px;
  width: 92%;
  background: linear-gradient(90deg, #1976d2 0%, #43a047 25%, #ffb300 50%, #ff5252 75%, #1976d2 100%);
  border-radius: 8px;
  filter: blur(0.2px);
  margin: 0 auto;
}
.section-divider > span::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  background: radial-gradient(circle, #fffbe7 0%, #ffe082 60%, #1976d2 100%);
  border-radius: 50%;
  box-shadow: 0 0 16px 6px #ffe08255, 0 2px 8px #1976d233;
  border: 3px solid #fff;
  z-index: 3;
}
@media (max-width: 600px) {
  .section-divider {
    height: 18px;
    margin-bottom: 2px !important;
  }
  .section-divider > span {
    height: 12px;
    min-width: 90vw;
    max-width: 180px;
    border-radius: 8px;
  }
  .section-divider > span::before {
    height: 3px;
    width: 90%;
  }
  .section-divider > span::after {
    width: 12px;
    height: 12px;
    border-width: 1.5px;
  }
}


.section-divider > span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(25,118,210,0.07);
  height: 22px;
  min-width: 70vw;
  max-width: 700px;
  width: 100%;
  overflow: visible;
}
.section-divider > span::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  transform: translateY(-50%);
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #1976d2 0%, #43a047 25%, #ffb300 50%, #ff5252 75%, #1976d2 100%);
  border-radius: 8px;
  filter: blur(0.2px);
  z-index: 1;
}
.section-divider > span::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  background: radial-gradient(circle, #fffbe7 0%, #ffe082 60%, #1976d2 100%);
  border-radius: 50%;
  box-shadow: 0 0 16px 6px #ffe08255, 0 2px 8px #1976d233;
  border: 3px solid #fff;
  z-index: 2;
}


@media (max-width: 600px) {
  .section-divider > span {
    height: 12px;
    min-width: 90vw;
    max-width: 180px;
    border-radius: 8px;
  }
  .section-divider > span::before {
    height: 3px;
  }
  .section-divider > span::after {
    width: 12px;
    height: 12px;
    border-width: 1.5px;
  }
}

.toss-callback-btn {
  text-decoration: none !important;
  color: #fff !important;
}

.toss-callback-btn:visited,
.toss-callback-btn:active,
.toss-callback-btn:focus,
.toss-callback-btn:hover {
  text-decoration: none !important;
  color: #fff !important;
}

.section-divider {
  margin: 0 auto 2px auto !important;
}
@media (max-width: 600px) {
  .section-divider {
    margin-bottom: 2px !important;
  }
}

section .container {
  padding: 6px 12px !important;
}
@media (max-width: 600px) {
  section .container {
    padding: 6px 10px !important;
  }
}





.section-title, .agniveer-header-pro h2, .hh-german-title, .about-section h2, .study-abroad-hero h1, .top-universities-section h2 {
  font-size: 2.5em;
  font-weight: 800;
  color: #1a237e; /* Deep navy blue, very professional */
  letter-spacing: -0.5px;
  margin-bottom: 0.2em;
  text-align: center;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(26,35,126,0.06);
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  position: relative;
}

@media (max-width: 900px) {
  .section-title, .agniveer-header-pro h2, .hh-german-title, .about-section h2, .study-abroad-hero h1, .top-universities-section h2 {
    font-size: 1.7em;
  }
}
@media (max-width: 600px) {
  .section-title, .agniveer-header-pro h2, .hh-german-title, .about-section h2, .study-abroad-hero h1, .top-universities-section h2 {
    font-size: 1.2em;
  }
}

/* Elegant accent bar */
.section-heading-accent {
  display: block;
  width: 48px;
  height: 4px;
  margin: 0.5em auto 1.2em auto;
  background: #1976d2; /* Brand blue */
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(25,118,210,0.10);
}
@media (max-width: 600px) {
  .section-heading-accent {
    width: 28px;
    height: 2px;
    margin-bottom: 0.7em;
  }
}


/* --- Elegant, Fast Hero Section --- */
/* --- Modern, Classy Hero Section --- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #1a237e 0%, #43a047 100%);
  overflow: hidden;
  margin-top: 0;
}

.hero-pattern-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
  mix-blend-mode: lighten;
}

.hero-content-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.hero-content-overlay .container {
  background: rgba(255,255,255,0.18);
  border-radius: 22px;
  padding: 56px 24px 48px 24px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(26,35,126,0.13);
  text-align: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,0.18);
}

.hero-content-overlay h1 {
  color: #fff;
  font-size: 2.8em;
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: -1.2px;
  text-shadow: 0 4px 18px rgba(26,35,126,0.33), 0 2px 8px rgba(0,0,0,0.45);
  font-family: 'Inter', Arial, sans-serif;
}

.hero-content-overlay p {
  color: #f5f5f5;
  font-size: 1.25em;
  margin-bottom: 32px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45), 0 1px 4px rgba(25,118,210,0.10);
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.cta-buttons .btn {
  width: 90vw;
  max-width: 320px;
  font-size: 1.15em;
  padding: 16px 0;
  border-radius: 10px;
  margin: 0 auto;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(25,118,210,0.08);
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  border: none;
}

.primary-btn {
  background: linear-gradient(90deg, #1976d2 60%, #43a047 100%);
  color: #fff;
  border: none;
}

.primary-btn:hover {
  background: #1a237e;
  color: #fff;
  box-shadow: 0 4px 18px rgba(25,118,210,0.13);
  transform: translateY(-2px) scale(1.03);
}

.secondary-btn {
  background: #fff;
  color: #1976d2;
  border: 2px solid #1976d2;
}

.secondary-btn:hover {
  background: #e3f2fd;
  color: #1976d2;
  box-shadow: 0 4px 18px rgba(25,118,210,0.13);
  transform: translateY(-2px) scale(1.03);
}

@media (min-width: 600px) {
  .cta-buttons {
    flex-direction: row;
    gap: 22px;
  }
  .cta-buttons .btn {
    width: auto;
    min-width: 160px;
    padding: 16px 38px;
  }
  .hero-content-overlay .container {
    padding: 64px 48px 56px 48px;
    max-width: 700px;
  }
  .hero-content-overlay h1 {
    font-size: 3.2em;
  }
}

@media (max-width: 600px) {
  .hero-content-overlay .container {
    padding: 18px 6px 18px 6px;
  }
  .hero-content-overlay h1 {
    font-size: 1.5em;
  }
  .hero-content-overlay p {
    font-size: 1em;
  }
}










.video-section {
  background: linear-gradient(120deg, #f7fafd 60%, #e3f2fd 100%);
  padding: 60px 0 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-section .container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(26,35,126,0.10);
  padding: 40px 20px 30px 20px;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(25,118,210,0.13);
  margin-bottom: 24px;
}
.main-video {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border-radius: 16px;
  background: #000;
  display: block;
}
.video-controls {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 18px;
  z-index: 2;
}
.video-btn {
  background: rgba(26,35,126,0.85);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(25,118,210,0.10);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.video-btn:hover {
  background: #1976d2;
  transform: scale(1.08);
}
.video-caption h2 {
  font-size: 2em;
  color: #1a237e;
  font-weight: 800;
  margin-bottom: 10px;
}
.video-caption p {
  color: #444;
  font-size: 1.1em;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .video-section {
    padding: 30px 0 18px 0;
  }
  .video-section .container {
    padding: 16px 4px 10px 4px;
  }
  .video-btn {
    width: 38px;
    height: 38px;
    font-size: 1.1em;
  }
  .video-caption h2 {
    font-size: 1.2em;
  }
}

#videoThumbnail.main-video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  border-radius: 16px;
  background: #000;
  display: block;
}












/* MBA Abroad Section */
.mba-abroad-section {
  background: linear-gradient(120deg, #f7fafd 60%, #e3f2fd 100%);
  padding: 0 0 60px 0;
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  margin-top: 0;
}
.mba-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a237e;
  overflow: hidden;
}
.mba-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80') center center/cover no-repeat;
  opacity: 0.25;
  z-index: 1;
}
.mba-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 64px 18px 48px 18px;
  text-align: center;
  color: #fff;
}
.mba-hero-content h1 {
  font-size: 2.6em;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.13);
}
.mba-hero-content p {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 18px;
}
.mba-highlight {
  color: #ffe082;
  font-weight: 700;
}
.mba-primary-btn {
  background: linear-gradient(90deg, #1976d2 60%, #43a047 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 16px 38px;
  font-size: 1.15em;
  font-weight: 700;
  margin-top: 18px;
  box-shadow: 0 2px 8px rgba(25,118,210,0.08);
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.mba-primary-btn:hover {
  background: #1a237e;
  color: #fff;
  box-shadow: 0 4px 18px rgba(25,118,210,0.13);
  transform: translateY(-2px) scale(1.03);
}

/* Metrics */
.mba-metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  margin: 40px 0 32px 0;
}
.mba-metric {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(25,118,210,0.08);
  padding: 28px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 200px;
  max-width: 260px;
  flex: 1 1 200px;
}
.mba-metric img {
  height: 48px;
  width: 48px;
  border-radius: 8px;
  background: #e3f2fd;
  padding: 6px;
}
.mba-metric-number {
  font-size: 1.5em;
  font-weight: 800;
  color: #1976d2;
  display: block;
}
.mba-metric-label {
  color: #444;
  font-size: 1em;
  font-weight: 500;
}

/* Why Choose Us */
.mba-why-choose {
  margin: 48px 0 32px 0;
  text-align: center;
}
.mba-why-choose h2 {
  color: #1a237e;
  font-size: 2em;
  font-weight: 800;
  margin-bottom: 32px;
}
.mba-why-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.mba-why-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(25,118,210,0.08);
  padding: 32px 18px;
  text-align: center;
  min-width: 220px;
  max-width: 300px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mba-why-card img {
  height: 48px;
  width: 48px;
  margin-bottom: 14px;
}
.mba-why-card h3 {
  color: #1976d2;
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 10px;
}
.mba-why-card p {
  color: #444;
  font-size: 1em;
}

/* Process Steps */
.mba-process {
  margin: 48px 0 32px 0;
  text-align: center;
}
.mba-process h2 {
  color: #1a237e;
  font-size: 2em;
  font-weight: 800;
  margin-bottom: 32px;
}
.mba-process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.mba-step {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(25,118,210,0.08);
  padding: 32px 18px;
  text-align: center;
  min-width: 220px;
  max-width: 260px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mba-step img {
  height: 48px;
  width: 48px;
  margin-bottom: 14px;
}
.mba-step h4 {
  color: #1976d2;
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 10px;
}
.mba-step p {
  color: #444;
  font-size: 1em;
}

/* Success Stories */
.mba-success-stories {
  margin: 48px 0 32px 0;
  text-align: center;
}
.mba-success-stories h2 {
  color: #1a237e;
  font-size: 2em;
  font-weight: 800;
  margin-bottom: 32px;
}
.mba-testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.mba-testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(25,118,210,0.08);
  padding: 32px 18px;
  text-align: center;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mba-testimonial-card img {
  height: 64px;
  width: 64px;
  border-radius: 50%;
  margin-bottom: 14px;
  object-fit: cover;
  border: 2px solid #1976d2;
}
.mba-testimonial-card blockquote {
  font-style: italic;
  color: #444;
  margin-bottom: 12px;
  font-size: 1em;
}
.mba-testimonial-author {
  color: #1976d2;
  font-weight: 700;
  font-size: 1em;
}

/* Universities Logos */
.mba-universities {
  margin: 48px 0 32px 0;
  text-align: center;
}
.mba-universities h2 {
  color: #1a237e;
  font-size: 2em;
  font-weight: 800;
  margin-bottom: 32px;
}
.mba-university-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
.mba-university-logos img {
  height: 48px;
  width: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(25,118,210,0.10);
  padding: 6px;
  margin-bottom: 8px;
}

/* CTA Form */
.mba-cta-form {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(26,35,126,0.10);
  padding: 40px 20px 30px 20px;
  max-width: 700px;
  margin: 48px auto 0 auto;
  text-align: center;
}
.mba-cta-form h2 {
  color: #1976d2;
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 24px;
}
.mba-cta-form form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mba-form-row {
  display: flex;
  gap: 14px;
}
.mba-form-row input,
.mba-form-row select {
  flex: 1 1 0;
  padding: 13px;
  border: 1.5px solid #bbdefb;
  border-radius: 7px;
  font-size: 1em;
  background: #f7faff;
  color: #222;
  transition: border 0.2s;
}
.mba-form-row input:focus,
.mba-form-row select:focus {
  border-color: #1976d2;
  outline: none;
  background: #fff;
}
.mba-cta-form textarea {
  width: 100%;
  padding: 13px;
  border: 1.5px solid #bbdefb;
  border-radius: 7px;
  font-size: 1em;
  background: #f7faff;
  color: #222;
  transition: border 0.2s;
  min-height: 80px;
  resize: vertical;
}
.mba-cta-form textarea:focus {
  border-color: #1976d2;
  outline: none;
  background: #fff;
}
.mba-cta-form .btn {
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .mba-metrics, .mba-why-grid, .mba-process-steps, .mba-testimonials, .mba-university-logos {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .mba-form-row {
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 600px) {
  .mba-hero-content h1,
  .mba-why-choose h2,
  .mba-process h2,
  .mba-success-stories h2,
  .mba-universities h2,
  .mba-cta-form h2 {
    font-size: 1.2em;
  }
  .mba-hero-content {
    padding: 32px 6px 18px 6px;
  }
  .mba-metric,
  .mba-why-card,
  .mba-step,
  .mba-testimonial-card {
    padding: 16px 6px;
    min-width: 0;
    max-width: 100%;
  }
  .mba-university-logos img {
    height: 32px;
    padding: 2px;
  }
  .mba-cta-form {
    padding: 16px 4px 10px 4px;
  }
}


/* MBA Hero Slider */
.mba-hero-slider {
  position: relative;
  min-height: 85vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: #1a237e;
}
.mba-hero-images img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s;
  z-index: 1;
}
.mba-hero-images img.active {
  opacity: 1;
  z-index: 2;
}
.mba-hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(20,30,60,0.55);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mba-hero-content {
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  z-index: 4;
  padding: 60px 18px 48px 18px;
}
.mba-hero-content h1 {
  font-size: 3.2em;
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: -1.2px;
  text-shadow: 0 4px 18px rgba(26,35,126,0.33), 0 2px 8px rgba(0,0,0,0.45);
}
.mba-hero-content p {
  font-size: 1.3em;
  color: #f5f5f5;
  margin-bottom: 32px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45), 0 1px 4px rgba(25,118,210,0.10);
  font-weight: 500;
}
.mba-primary-btn {
  background: linear-gradient(90deg, #1976d2 60%, #43a047 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 18px 44px;
  font-size: 1.2em;
  font-weight: 700;
  margin-top: 18px;
  box-shadow: 0 2px 8px rgba(25,118,210,0.08);
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.mba-primary-btn:hover {
  background: #1a237e;
  color: #fff;
  box-shadow: 0 4px 18px rgba(25,118,210,0.13);
  transform: translateY(-2px) scale(1.03);
}

/* Eligibility Section */
.mba-eligibility {
  margin: 60px 0 40px 0;
  text-align: center;
}
.mba-eligibility h2 {
  color: #1a237e;
  font-size: 2em;
  font-weight: 800;
  margin-bottom: 32px;
}
.mba-eligibility-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.mba-eligibility-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(25,118,210,0.08);
  padding: 32px 18px;
  text-align: center;
  min-width: 180px;
  max-width: 240px;
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mba-eligibility-card img {
  height: 48px;
  width: 48px;
  margin-bottom: 14px;
}
.mba-eligibility-card h4 {
  color: #1976d2;
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 10px;
}
.mba-eligibility-card p {
  color: #444;
  font-size: 1em;
}

/* Testimonial Slider */
.mba-testimonials-slider {
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
  min-height: 260px;
  margin-bottom: 18px;
}
.mba-testimonial-card {
  display: none;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(25,118,210,0.08);
  padding: 32px 18px;
  min-width: 220px;
  max-width: 320px;
  margin: 0 12px;
  text-align: center;
}
.mba-testimonial-card.active {
  display: flex;
}
.mba-testimonial-card img {
  height: 64px;
  width: 64px;
  border-radius: 50%;
  margin-bottom: 14px;
  object-fit: cover;
  border: 2px solid #1976d2;
}
.mba-testimonial-card blockquote {
  font-style: italic;
  color: #444;
  margin-bottom: 12px;
  font-size: 1em;
}
.mba-testimonial-author {
  color: #1976d2;
  font-weight: 700;
  font-size: 1em;
}
.mba-testimonials-controls {
  display: flex;
  justify-content: center;
  gap: 18px;
}
.mba-testimonials-controls button {
  background: #1976d2;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.2em;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.mba-testimonials-controls button:hover {
  background: #43a047;
  transform: scale(1.08);
}

/* University Logos Grid */
.mba-university-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}
.mba-university-logos img {
  height: 48px;
  width: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(25,118,210,0.10);
  padding: 6px;
  margin-bottom: 8px;
  max-width: 120px;
}

/* Responsive */
@media (max-width: 900px) {
  .mba-hero-content h1 { font-size: 2em; }
  .mba-eligibility-grid, .mba-why-grid, .mba-process-steps, .mba-university-logos {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
}
@media (max-width: 600px) {
  .mba-hero-content { padding: 32px 6px 18px 6px; }
  .mba-hero-content h1 { font-size: 1.2em; }
  .mba-eligibility-card, .mba-why-card, .mba-step, .mba-metric, .mba-testimonial-card {
    padding: 16px 6px;
    min-width: 0;
    max-width: 100%;
  }
  .mba-university-logos img { height: 32px; padding: 2px; }
}




/* MBA Abroad Section - Professional Glassmorphism */
.mba-abroad-section-pro {
  background: linear-gradient(120deg, #f7fafd 60%, #e3e9f7 100%);
  padding: 0 0 60px 0;
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  margin-top: 0;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 32px rgba(26,35,126,0.07);
}

/* HERO SLIDER */
.mba-hero-slider-pro {
  position: relative;
  min-height: 85vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: #1a237e;
  border-radius: 0 0 32px 32px;
}
.mba-hero-images-pro img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s;
  z-index: 1;
}
.mba-hero-images-pro img.active {
  opacity: 1;
  z-index: 2;
}
.mba-hero-overlay-pro {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(20,30,60,0.55);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mba-hero-content-pro {
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  z-index: 4;
  padding: 60px 18px 48px 18px;
}
.mba-hero-content-pro h1 {
  font-size: 3.2em;
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: -1.2px;
  text-shadow: 0 4px 18px rgba(26,35,126,0.33), 0 2px 8px rgba(0,0,0,0.45);
}
.mba-hero-content-pro p {
  font-size: 1.3em;
  color: #f5f5f5;
  margin-bottom: 32px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45), 0 1px 4px rgba(25,118,210,0.10);
  font-weight: 500;
}
.mba-highlight-pro {
  color: #ffe082;
  font-weight: 700;
}
.mba-primary-btn-pro {
  background: linear-gradient(90deg, #1976d2 60%, #43a047 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 18px 44px;
  font-size: 1.2em;
  font-weight: 700;
  margin-top: 18px;
  box-shadow: 0 2px 8px rgba(25,118,210,0.08);
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.mba-primary-btn-pro:hover {
  background: #1a237e;
  color: #fff;
  box-shadow: 0 4px 18px rgba(25,118,210,0.13);
  transform: translateY(-2px) scale(1.03);
}

/* METRICS */
.mba-metrics-pro {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  margin: 48px 0 32px 0;
}
.mba-metric-card-pro {
  background: rgba(255,255,255,0.85);
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(25,118,210,0.10), 0 1.5px 8px 0 rgba(25,118,210,0.07);
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 200px;
  max-width: 260px;
  padding: 28px 18px;
  border-left: 6px solid #1976d2;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.mba-metric-card-pro:hover {
  box-shadow: 0 12px 40px 0 rgba(25,118,210,0.18), 0 2px 12px 0 rgba(25,118,210,0.13);
  transform: translateY(-6px) scale(1.03);
  border-left: 6px solid #43a047;
}
.mba-metric-icon-pro {
  font-size: 2.2em;
  color: #1976d2;
  background: linear-gradient(135deg, #e3f2fd 60%, #fff 100%);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 2px 8px rgba(25,118,210,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mba-metric-number-pro {
  font-size: 1.5em;
  font-weight: 800;
  color: #1976d2;
  display: block;
}
.mba-metric-label-pro {
  color: #444;
  font-size: 1em;
  font-weight: 500;
}

/* Subsection (Why Choose Us, Eligibility, Process) */
.mba-subsection-pro {
  background: linear-gradient(120deg, #f7fafd 60%, #e3e9f7 100%);
  padding: 60px 0 40px 0;
  text-align: center;
  border-radius: 24px;
  margin: 60px 0 40px 0;
  box-shadow: 0 8px 32px rgba(26,35,126,0.07);
}
.mba-subsection-pro h2 {
  color: #1a237e;
  font-size: 2.2em;
  font-weight: 900;
  margin-bottom: 38px;
  letter-spacing: -1px;
  text-shadow: 0 2px 8px rgba(26,35,126,0.06);
}
.mba-cards-row-pro {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: center;
  align-items: stretch;
}
.mba-card-pro {
  background: rgba(255,255,255,0.85);
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(25,118,210,0.10), 0 1.5px 8px 0 rgba(25,118,210,0.07);
  display: flex;
  align-items: flex-start;
  gap: 22px;
  min-width: 260px;
  max-width: 340px;
  padding: 32px 28px 28px 24px;
  margin-bottom: 0;
  border-left: 6px solid #1976d2;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.mba-card-pro:hover {
  box-shadow: 0 12px 40px 0 rgba(25,118,210,0.18), 0 2px 12px 0 rgba(25,118,210,0.13);
  transform: translateY(-6px) scale(1.03);
  border-left: 6px solid #43a047;
}
.mba-card-icon-pro {
  font-size: 2.5em;
  color: #1976d2;
  background: linear-gradient(135deg, #e3f2fd 60%, #fff 100%);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 2px 8px rgba(25,118,210,0.10);
  margin-right: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mba-card-pro h4 {
  color: #1a237e;
  font-size: 1.18em;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 0;
  letter-spacing: -0.5px;
}
.mba-card-pro p {
  color: #444;
  font-size: 1.05em;
  margin-bottom: 0;
  margin-top: 0;
  text-align: left;
  font-weight: 500;
}

/* Success Stories Slider */
.mba-success-stories-pro {
  margin: 60px 0 40px 0;
  text-align: center;
}
.mba-success-stories-pro h2 {
  color: #1a237e;
  font-size: 2.2em;
  font-weight: 900;
  margin-bottom: 38px;
  letter-spacing: -1px;
  text-shadow: 0 2px 8px rgba(26,35,126,0.06);
}
.mba-testimonials-slider-pro {
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
  min-height: 320px;
  margin-bottom: 18px;
}
.mba-testimonial-card-pro {
  display: none;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.95);
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(25,118,210,0.10), 0 1.5px 8px 0 rgba(25,118,210,0.07);
  padding: 38px 28px 28px 28px;
  min-width: 280px;
  max-width: 420px;
  margin: 0 12px;
  text-align: center;
  position: relative;
  border-left: 6px solid #1976d2;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.mba-testimonial-card-pro.active {
  display: flex;
}
.mba-testimonial-accent-pro {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, #1976d2 60%, #43a047 100%);
  border-radius: 18px 0 0 18px;
}
.mba-testimonial-card-pro img {
  height: 72px;
  width: 72px;
  border-radius: 50%;
  margin-bottom: 18px;
  object-fit: cover;
  border: 2.5px solid #1976d2;
  box-shadow: 0 2px 8px rgba(25,118,210,0.10);
}
.mba-testimonial-card-pro blockquote {
  font-style: italic;
  color: #444;
  margin-bottom: 16px;
  font-size: 1.08em;
  font-weight: 500;
}
.mba-testimonial-author-pro {
  color: #1976d2;
  font-weight: 700;
  font-size: 1.08em;
}
.mba-testimonials-controls-pro {
  display: flex;
  justify-content: center;
  gap: 18px;
}
.mba-testimonials-controls-pro button {
  background: #1976d2;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.2em;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.mba-testimonials-controls-pro button:hover {
  background: #43a047;
  transform: scale(1.08);
}

/* University Logos Grid */
.mba-universities-pro {
  margin: 60px 0 40px 0;
  text-align: center;
}
.mba-universities-pro h2 {
  color: #1a237e;
  font-size: 2.2em;
  font-weight: 900;
  margin-bottom: 38px;
  letter-spacing: -1px;
  text-shadow: 0 2px 8px rgba(26,35,126,0.06);
}
.mba-university-logos-pro {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}
.mba-university-logos-pro img {
  height: 54px;
  width: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(25,118,210,0.10);
  padding: 8px;
  margin-bottom: 8px;
  max-width: 140px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.mba-university-logos-pro img:hover {
  box-shadow: 0 8px 32px rgba(25,118,210,0.18);
  transform: translateY(-4px) scale(1.08);
}

/* Responsive */
@media (max-width: 1100px) {
  .mba-cards-row-pro, .mba-metrics-pro, .mba-university-logos-pro {
    flex-wrap: wrap;
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .mba-hero-content-pro h1 { font-size: 2em; }
  .mba-cards-row-pro, .mba-metrics-pro, .mba-university-logos-pro {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .mba-metric-card-pro, .mba-card-pro, .mba-testimonial-card-pro {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .mba-hero-content-pro { padding: 32px 6px 18px 6px; }
  .mba-hero-content-pro h1 { font-size: 1.2em; }
  .mba-metric-card-pro, .mba-card-pro, .mba-testimonial-card-pro {
    padding: 16px 6px;
    min-width: 0;
    max-width: 100%;
  }
  .mba-university-logos-pro img { height: 32px; padding: 2px; }
}

/* --- MBA Glassy Section --- */
.mba-glass-section {
  position: relative;
  background: linear-gradient(135deg, #23243a 0%, #3a3d5c 100%);
  padding: 0;
  overflow: hidden;
}
.mba-glass-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 0 48px 0;
  z-index: 1;
}
.mba-glass-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(255,255,255,0.12) 0%, rgba(58,61,92,0.7) 100%);
  z-index: 0;
  pointer-events: none;
}
.mba-glass-hero-content {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.13);
  border-radius: 32px;
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 48px 40px 40px 40px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  border: 1.5px solid rgba(255,255,255,0.18);
}
.mba-glass-title {
  font-size: 3.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #fff 30%, #b6c0ff 70%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(58,61,92,0.18);
}
.mba-glass-subtitle {
  font-size: 1.35rem;
  color: #e0e6ff;
  margin-bottom: 18px;
  font-weight: 400;
}
.mba-glass-highlight {
  color: #ffd700;
  font-weight: 700;
  font-size: 1.1em;
  letter-spacing: 0.5px;
}
.mba-glass-cta {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 38px;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 24px;
  background: linear-gradient(90deg, #5e72e4 0%, #b6c0ff 100%);
  color: #fff;
  box-shadow: 0 2px 12px 0 rgba(94,114,228,0.18);
  border: none;
  transition: background 0.2s, box-shadow 0.2s;
}
.mba-glass-cta:hover {
  background: linear-gradient(90deg, #b6c0ff 0%, #5e72e4 100%);
  box-shadow: 0 4px 24px 0 rgba(94,114,228,0.28);
  color: #fff;
}
.mba-glass-floating-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: url('https://www.transparenttextures.com/patterns/cubes.png'), linear-gradient(120deg, rgba(255,255,255,0.04) 0%, rgba(94,114,228,0.08) 100%);
  opacity: 0.25;
  mix-blend-mode: lighten;
}

/* Timeline */
.mba-glass-timeline-section {
  margin: 0 auto;
  padding: 48px 0 24px 0;
  max-width: 1100px;
}
.mba-glass-section-heading {
  font-size: 2.4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 32px;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0 2px 16px rgba(58,61,92,0.18);
}
.mba-glass-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  padding: 0 18px;
  overflow-x: auto;
}
.mba-timeline-step {
  background: rgba(255,255,255,0.13);
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(31,38,135,0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.13);
  min-width: 210px;
  max-width: 220px;
  flex: 1 1 210px;
  padding: 24px 16px 18px 16px;
  text-align: center;
  position: relative;
  transition: box-shadow 0.2s, border 0.2s;
}
.mba-timeline-step.active, .mba-timeline-step:hover {
  box-shadow: 0 4px 24px 0 rgba(94,114,228,0.18);
  border: 1.5px solid #b6c0ff;
}
.timeline-dot {
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #ffd700 0%, #5e72e4 100%);
  border-radius: 50%;
  margin: 0 auto 12px auto;
  box-shadow: 0 2px 8px 0 rgba(94,114,228,0.18);
  border: 2.5px solid #fff;
}
.timeline-content h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.timeline-content p {
  font-size: 1rem;
  color: #e0e6ff;
  font-weight: 400;
}

/* Process Bar */
.mba-glass-process-section {
  margin: 0 auto;
  padding: 36px 0 18px 0;
  max-width: 1100px;
}
.mba-glass-process-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  position: relative;
  margin: 0 12px;
}
.process-step {
  background: rgba(255,255,255,0.13);
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(31,38,135,0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.13);
  min-width: 120px;
  flex: 1 1 120px;
  padding: 18px 8px 12px 8px;
  text-align: center;
  position: relative;
  transition: box-shadow 0.2s, border 0.2s;
}
.process-step.active, .process-step:hover {
  box-shadow: 0 4px 24px 0 rgba(94,114,228,0.18);
  border: 1.5px solid #ffd700;
}
.step-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 4px;
}
.step-label {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 600;
}

/* Eligibility Checklist */
.mba-glass-eligibility-section {
  margin: 0 auto;
  padding: 36px 0 18px 0;
  max-width: 700px;
}
.mba-glass-eligibility-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mba-glass-eligibility-list li {
  background: rgba(255,255,255,0.13);
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(31,38,135,0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.13);
  padding: 16px 18px;
  font-size: 1.08rem;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: box-shadow 0.2s, border 0.2s;
}
.mba-glass-eligibility-list li i {
  color: #ffd700;
  font-size: 1.3em;
  min-width: 28px;
}
.mba-glass-eligibility-list li:hover {
  box-shadow: 0 4px 24px 0 rgba(94,114,228,0.18);
  border: 1.5px solid #b6c0ff;
}

/* Testimonial Slider */
.mba-glass-testimonials-section {
  margin: 0 auto;
  padding: 48px 0 36px 0;
  max-width: 900px;
}
.mba-glass-testimonial-slider {
  display: flex;
  overflow: hidden;
  position: relative;
  min-height: 260px;
}
.mba-glass-testimonial-slide {
  min-width: 100%;
  opacity: 0;
  transform: scale(0.98) translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 1;
}
.mba-glass-testimonial-slide.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  z-index: 2;
  position: relative;
}
.testimonial-glass-card {
  background: rgba(255,255,255,0.18);
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(31,38,135,0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.13);
  padding: 32px 28px 24px 28px;
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
}
.testimonial-glass-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 2.5px solid #ffd700;
}
.testimonial-glass-card blockquote {
  font-size: 1.08rem;
  color: #fff;
  font-style: italic;
  margin-bottom: 12px;
}
.testimonial-author {
  color: #ffd700;
  font-weight: 700;
  font-size: 1.05rem;
}
.mba-glass-testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}
.mba-glass-testimonial-controls button {
  background: rgba(255,255,255,0.18);
  border: 1.5px solid #b6c0ff;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
}
.mba-glass-testimonial-controls button:hover {
  background: #ffd700;
  color: #23243a;
  border: 1.5px solid #ffd700;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .mba-glass-title {
    font-size: 2.2rem;
  }
  .mba-glass-section-heading {
    font-size: 1.5rem;
  }
  .mba-glass-hero-content {
    padding: 32px 10px 24px 10px;
  }
  .mba-glass-timeline {
    gap: 10px;
  }
  .mba-timeline-step {
    min-width: 170px;
    max-width: 180px;
    padding: 18px 8px 12px 8px;
  }
}
@media (max-width: 600px) {
  .mba-glass-title {
    font-size: 1.45rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
  }
  .mba-glass-section-heading {
    font-size: 1.15rem;
    margin-bottom: 18px;
  }
  .mba-glass-hero-content {
    padding: 18px 2px 12px 2px;
    border-radius: 18px;
  }
  .mba-glass-timeline-section, .mba-glass-process-section, .mba-glass-eligibility-section, .mba-glass-testimonials-section {
    padding-left: 0;
    padding-right: 0;
  }
  .mba-glass-timeline {
    gap: 6px;
    padding: 0 2px;
  }
  .mba-timeline-step {
    min-width: 120px;
    max-width: 130px;
    padding: 10px 4px 8px 4px;
  }
  .timeline-content h3 {
    font-size: 0.98rem;
  }
  .timeline-content p {
    font-size: 0.85rem;
  }
  .mba-glass-process-bar {
    gap: 4px;
    margin: 0 2px;
  }
  .process-step {
    min-width: 70px;
    padding: 8px 2px 6px 2px;
  }
  .step-number {
    font-size: 1.1rem;
  }
  .step-label {
    font-size: 0.85rem;
  }
  .mba-glass-eligibility-list li {
    font-size: 0.95rem;
    padding: 8px 6px;
    border-radius: 8px;
  }
  .mba-glass-testimonial-slider {
    min-height: 180px;
  }
  .testimonial-glass-card {
    padding: 14px 4px 10px 4px;
    border-radius: 10px;
  }
  .testimonial-glass-card img {
    width: 48px;
    height: 48px;
  }
}

























/* MBA DARK THEME SECTION */
.mba-dark-section {
  background: linear-gradient(135deg, #181c2b 0%, #23294a 100%);
  color: #f5f7fa;
  padding: 0;
  font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
}

.mba-dark-hero {
  background: linear-gradient(120deg, #23294a 60%, #181c2b 100%);
  padding: 64px 0 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mba-dark-hero-content {
  max-width: 700px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

.mba-dark-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.mba-dark-subtitle {
  font-size: 1.2rem;
  color: #b2b8d6;
  margin-bottom: 18px;
  line-height: 1.6;
}

.mba-dark-highlight {
  color: #ffd700;
  font-weight: 600;
  font-size: 1.1em;
  letter-spacing: 0.01em;
}

.mba-dark-cta {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 32px;
  background: linear-gradient(90deg, #ffd700 0%, #bfa14a 100%);
  color: #23294a;
  font-weight: 700;
  border-radius: 32px;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 2px 16px rgba(255,215,0,0.08);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.mba-dark-cta:hover {
  background: linear-gradient(90deg, #bfa14a 0%, #ffd700 100%);
  color: #181c2b;
  transform: scale(1.04);
}

/* Timeline */
.mba-dark-timeline-section {
  padding: 36px 0 16px 0;
  text-align: center;
}
.mba-dark-section-heading {
  font-size: 2rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
.mba-dark-timeline {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.mba-dark-timeline-step {
  background: rgba(35,41,74,0.7);
  border-radius: 18px;
  padding: 18px 18px 12px 18px;
  min-width: 180px;
  max-width: 220px;
  box-shadow: 0 2px 12px rgba(24,28,43,0.12);
  border: 1.5px solid rgba(255,255,255,0.08);
  position: relative;
  margin-bottom: 12px;
  transition: box-shadow 0.2s, border 0.2s;
}
.mba-dark-timeline-step.active,
.mba-dark-timeline-step:hover {
  border: 1.5px solid #ffd700;
  box-shadow: 0 4px 24px rgba(255,215,0,0.10);
}
.timeline-dot {
  width: 16px;
  height: 16px;
  background: #ffd700;
  border-radius: 50%;
  margin: 0 auto 8px auto;
  box-shadow: 0 2px 8px rgba(255,215,0,0.18);
}
.timeline-content h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.timeline-content p {
  color: #b2b8d6;
  font-size: 0.98rem;
  margin: 0;
}

/* Process Bar */
.mba-dark-process-section {
  padding: 32px 0 12px 0;
  text-align: center;
}
.mba-dark-process-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.process-step {
  background: rgba(35,41,74,0.7);
  border-radius: 16px;
  padding: 12px 18px;
  min-width: 120px;
  text-align: center;
  border: 1.5px solid rgba(255,255,255,0.08);
  transition: border 0.2s, box-shadow 0.2s;
}
.process-step.active,
.process-step:hover {
  border: 1.5px solid #ffd700;
  box-shadow: 0 2px 12px rgba(255,215,0,0.10);
}
.step-number {
  display: inline-block;
  background: #ffd700;
  color: #23294a;
  font-weight: 700;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  line-height: 28px;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.step-label {
  display: block;
  color: #fff;
  font-size: 0.98rem;
  margin-top: 2px;
}

/* Eligibility */
.mba-dark-eligibility-section {
  padding: 32px 0 12px 0;
  text-align: center;
}
.mba-dark-eligibility-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 480px;
}
.mba-dark-eligibility-list li {
  background: rgba(35,41,74,0.7);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid rgba(255,255,255,0.08);
  transition: border 0.2s;
}
.mba-dark-eligibility-list li i {
  color: #ffd700;
  font-size: 1.2em;
}
.mba-dark-eligibility-list li:hover {
  border: 1.5px solid #ffd700;
}

/* Testimonial Slider */
.mba-dark-testimonials-section {
  padding: 48px 0 32px 0;
  background: linear-gradient(120deg, #23294a 0%, #181c2b 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mba-dark-testimonial-slider {
  width: 100%;
  max-width: 520px;
  min-height: 260px;
  position: relative;
  margin: 0 auto 24px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mba-dark-testimonial-slide {
  display: none;
  width: 100%;
  transition: opacity 0.5s;
}
.mba-dark-testimonial-slide.active {
  display: block;
  animation: fadeInGlass 0.7s;
}
@keyframes fadeInGlass {
  from { opacity: 0; transform: translateY(30px) scale(0.98);}
  to   { opacity: 1; transform: translateY(0) scale(1);}
}
.testimonial-dark-card {
  background: rgba(35,41,74,0.85);
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.18);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border: 1.5px solid rgba(255,255,255,0.12);
  padding: 32px 28px 24px 28px;
  text-align: center;
  color: #fff;
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-dark-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #ffd700;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin-bottom: 18px;
  background: #23294a;
}
.testimonial-dark-card blockquote {
  font-size: 1.08rem;
  font-style: italic;
  color: #ffd700;
  margin: 0 0 18px 0;
  line-height: 1.6;
  position: relative;
}
.testimonial-dark-card blockquote:before {
  content: "“";
  font-size: 2.5rem;
  color: #ffd700;
  position: absolute;
  left: -18px;
  top: -18px;
  opacity: 0.7;
}
.testimonial-dark-card .testimonial-author {
  font-weight: 600;
  color: #fff;
  font-size: 1rem;
  margin-top: 8px;
  letter-spacing: 0.01em;
}
.mba-dark-testimonial-controls {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
}
.mba-dark-testimonial-controls button {
  background: rgba(35,41,74,0.7);
  border: 2px solid #ffd700;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.5rem;
  color: #ffd700;
  box-shadow: 0 2px 8px rgba(31,38,135,0.10);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  outline: none;
}
.mba-dark-testimonial-controls button:hover {
  background: #ffd700;
  color: #23294a;
  transform: scale(1.08);
}

@media (max-width: 900px) {
  .mba-dark-title, .mba-dark-section-heading { font-size: 1.5rem; }
  .mba-dark-hero-content { padding: 0 8px; }
  .mba-dark-timeline, .mba-dark-process-bar { flex-direction: column; gap: 10px; }
  .mba-dark-testimonial-slider { min-height: 180px; }
  .testimonial-dark-card { padding: 18px 8px 16px 8px; border-radius: 16px; min-height: 160px; }
  .testimonial-dark-card img { width: 48px; height: 48px; }
}
















.mba-dark-hero {
  background: linear-gradient(120deg, #23294a 60%, #181c2b 100%);
  padding: 110px 0 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.mba-dark-hero-bg-anim {
  position: absolute;
  top: -80px; left: 0; width: 100%; height: 150%;
  background: radial-gradient(circle at 60% 40%, #ffd70033 0%, #23294a 60%, transparent 100%);
  z-index: 1;
  animation: heroBgMove 8s linear infinite alternate;
  pointer-events: none;
}
@keyframes heroBgMove {
  0% { background-position: 60% 40%; }
  100% { background-position: 40% 60%; }
}
.mba-dark-hero-content {
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
  padding: 0 16px;
}
.mba-dark-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.22);
  animation: fadeInDown 1.1s;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px);}
  to { opacity: 1; transform: translateY(0);}
}
.mba-dark-subtitle {
  font-size: 1.35rem;
  color: #b2b8d6;
  margin-bottom: 22px;
  line-height: 1.7;
  animation: fadeInUp 1.2s;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}
.mba-dark-highlight {
  color: #ffd700;
  font-weight: 700;
  font-size: 1.15em;
  letter-spacing: 0.01em;
}
.mba-dark-cta {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 38px;
  background: linear-gradient(90deg, #ffd700 0%, #bfa14a 100%);
  color: #23294a;
  font-weight: 700;
  border-radius: 32px;
  font-size: 1.18rem;
  text-decoration: none;
  box-shadow: 0 2px 16px rgba(255,215,0,0.10);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  animation: fadeInUp 1.3s;
}
.mba-dark-cta:hover {
  background: linear-gradient(90deg, #bfa14a 0%, #ffd700 100%);
  color: #181c2b;
  transform: scale(1.06);
}
.mba-dark-hero-divider {
  width: 100%;
  height: 36px;
  background: linear-gradient(90deg, transparent 0%, #ffd70044 50%, transparent 100%);
  margin: 0 auto;
  margin-top: 40px;
  border-radius: 0 0 32px 32px;
  opacity: 0.7;
  z-index: 2;
  position: relative;
}

/* Section Divider */
.mba-dark-section-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #ffd700 50%, transparent 100%);
  margin: 36px 0 36px 0;
  opacity: 0.25;
  border-radius: 2px;
}

/* Timeline Animation */
.mba-dark-timeline {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  position: relative;
}
.mba-dark-timeline-step {
  background: rgba(35,41,74,0.7);
  border-radius: 18px;
  padding: 22px 18px 16px 18px;
  min-width: 180px;
  max-width: 220px;
  box-shadow: 0 2px 12px rgba(24,28,43,0.12);
  border: 1.5px solid rgba(255,255,255,0.08);
  position: relative;
  margin-bottom: 12px;
  transition: box-shadow 0.2s, border 0.2s, transform 0.3s;
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  animation: timelineFadeIn 1s forwards;
}
.mba-dark-timeline-step:nth-child(1) { animation-delay: 0.1s; }
.mba-dark-timeline-step:nth-child(2) { animation-delay: 0.3s; }
.mba-dark-timeline-step:nth-child(3) { animation-delay: 0.5s; }
.mba-dark-timeline-step:nth-child(4) { animation-delay: 0.7s; }
.mba-dark-timeline-step:nth-child(5) { animation-delay: 0.9s; }
@keyframes timelineFadeIn {
  to { opacity: 1; transform: translateY(0) scale(1);}
}
.mba-dark-timeline-step:hover {
  border: 1.5px solid #ffd700;
  box-shadow: 0 4px 24px rgba(255,215,0,0.10);
  transform: scale(1.04) translateY(-6px);
}
.timeline-dot {
  width: 16px;
  height: 16px;
  background: #ffd700;
  border-radius: 50%;
  margin: 0 auto 8px auto;
  box-shadow: 0 2px 8px rgba(255,215,0,0.18);
}
.timeline-content h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.timeline-content p {
  color: #b2b8d6;
  font-size: 0.98rem;
  margin: 0;
}

/* Process Bar Animation */
.mba-dark-process-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 12px;
  position: relative;
}
.process-step {
  background: rgba(35,41,74,0.7);
  border-radius: 16px;
  padding: 16px 22px;
  min-width: 120px;
  text-align: center;
  border: 1.5px solid rgba(255,255,255,0.08);
  transition: border 0.2s, box-shadow 0.2s, transform 0.3s;
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  animation: processFadeIn 1s forwards;
}
.process-step:nth-child(1) { animation-delay: 0.2s; }
.process-step:nth-child(2) { animation-delay: 0.4s; }
.process-step:nth-child(3) { animation-delay: 0.6s; }
.process-step:nth-child(4) { animation-delay: 0.8s; }
.process-step:nth-child(5) { animation-delay: 1.0s; }
@keyframes processFadeIn {
  to { opacity: 1; transform: translateY(0) scale(1);}
}
.process-step:hover {
  border: 1.5px solid #ffd700;
  box-shadow: 0 2px 12px rgba(255,215,0,0.10);
  transform: scale(1.05) translateY(-4px);
}
.step-number {
  display: inline-block;
  background: #ffd700;
  color: #23294a;
  font-weight: 700;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  line-height: 28px;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.step-label {
  display: block;
  color: #fff;
  font-size: 0.98rem;
  margin-top: 2px;
}

/* Eligibility */
.mba-dark-eligibility-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 480px;
}
.mba-dark-eligibility-list li {
  background: rgba(35,41,74,0.7);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid rgba(255,255,255,0.08);
  transition: border 0.2s, transform 0.2s;
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  animation: eligibilityFadeIn 1s forwards;
}
.mba-dark-eligibility-list li:nth-child(1) { animation-delay: 0.2s; }
.mba-dark-eligibility-list li:nth-child(2) { animation-delay: 0.4s; }
.mba-dark-eligibility-list li:nth-child(3) { animation-delay: 0.6s; }
.mba-dark-eligibility-list li:nth-child(4) { animation-delay: 0.8s; }
.mba-dark-eligibility-list li:nth-child(5) { animation-delay: 1.0s; }
@keyframes eligibilityFadeIn {
  to { opacity: 1; transform: translateY(0) scale(1);}
}
.mba-dark-eligibility-list li i {
  color: #ffd700;
  font-size: 1.2em;
}
.mba-dark-eligibility-list li:hover {
  border: 1.5px solid #ffd700;
  transform: scale(1.03);
}

/* Testimonial Slider */
.mba-dark-testimonials-section {
  padding: 48px 0 32px 0;
  background: linear-gradient(120deg, #23294a 0%, #181c2b 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mba-dark-testimonial-slider {
  width: 100%;
  max-width: 520px;
  min-height: 260px;
  position: relative;
  margin: 0 auto 24px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mba-dark-testimonial-slide {
  display: none;
  width: 100%;
  transition: opacity 0.5s;
}
.mba-dark-testimonial-slide.active {
  display: block;
  animation: fadeInGlass 0.7s;
}
@keyframes fadeInGlass {
  from { opacity: 0; transform: translateY(30px) scale(0.98);}
  to   { opacity: 1; transform: translateY(0) scale(1);}
}
.testimonial-dark-card {
  background: rgba(35,41,74,0.85);
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.18);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border: 1.5px solid rgba(255,255,255,0.12);
  padding: 32px 28px 24px 28px;
  text-align: center;
  color: #fff;
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-dark-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #ffd700;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin-bottom: 18px;
  background: #23294a;
}
.testimonial-dark-card blockquote {
  font-size: 1.08rem;
  font-style: italic;
  color: #ffd700;
  margin: 0 0 18px 0;
  line-height: 1.6;
  position: relative;
}
.testimonial-dark-card blockquote:before {
  content: "“";
  font-size: 2.5rem;
  color: #ffd700;
  position: absolute;
  left: -18px;
  top: -18px;
  opacity: 0.7;
}
.testimonial-dark-card .testimonial-author {
  font-weight: 600;
  color: #fff;
  font-size: 1rem;
  margin-top: 8px;
  letter-spacing: 0.01em;
}
.mba-dark-testimonial-controls {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
}
.mba-dark-testimonial-controls button {
  background: rgba(35,41,74,0.7);
  border: 2px solid #ffd700;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.5rem;
  color: #ffd700;
  box-shadow: 0 2px 8px rgba(31,38,135,0.10);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  outline: none;
}
.mba-dark-testimonial-controls button:hover {
  background: #ffd700;
  color: #23294a;
  transform: scale(1.08);
}

@media (max-width: 900px) {
  .mba-dark-title, .mba-dark-section-heading { font-size: 1.5rem; }
  .mba-dark-hero-content { padding: 0 8px; }
  .mba-dark-timeline, .mba-dark-process-bar { flex-direction: column; gap: 10px; }
  .mba-dark-testimonial-slider { min-height: 180px; }
  .testimonial-dark-card { padding: 18px 8px 16px 8px; border-radius: 16px; min-height: 160px; }
  .testimonial-dark-card img { width: 48px; height: 48px; }
  .mba-dark-hero { padding: 60px 0 30px 0; min-height: 260px; }
}
@media (max-width: 600px) {
  .mba-dark-title { font-size: 1.45rem; }
  .mba-dark-section-heading { font-size: 1.15rem; margin-bottom: 18px; }
  .mba-dark-hero-content { padding: 18px 2px 12px 2px; border-radius: 18px; }
  .mba-dark-timeline-section, .mba-dark-process-section, .mba-dark-eligibility-section, .mba-dark-testimonials-section { padding-left: 0; padding-right: 0; }
  .mba-dark-timeline { gap: 6px; padding: 0 2px; }
  .mba-dark-timeline-step { min-width: 120px; max-width: 130px; padding: 10px 4px 8px 4px; }
  .timeline-content h3 { font-size: 0.98rem; }
  .timeline-content p { font-size: 0.85rem; }
  .mba-dark-process-bar { gap: 4px; margin: 0 2px; }
  .process-step { min-width: 70px; padding: 8px 2px 6px 2px; }
  .step-number { font-size: 1.1rem; }
  .step-label { font-size: 0.85rem; }
  .mba-dark-eligibility-list li { font-size: 0.95rem; padding: 8px 6px; border-radius: 8px; }
  .mba-dark-testimonial-slider { min-height: 180px; }
  .testimonial-dark-card { padding: 14px 4px 10px 4px; border-radius: 10px; }
  .testimonial-dark-card img { width: 48px; height: 48px; }
}










.mba-info-section {
  background: linear-gradient(90deg, #23294a 60%, #181c2b 100%);
  padding: 48px 0 24px 0;
}
.mba-info-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.mba-info-img img {
  width: 340px;
  max-width: 90vw;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(31,38,135,0.18);
  border: 2px solid #ffd70033;
}
.mba-info-content {
  flex: 1;
  min-width: 260px;
}
.mba-info-content h2 {
  color: #ffd700;
  font-size: 2rem;
  margin-bottom: 18px;
}
.mba-info-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mba-info-content li {
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.mba-info-content li i {
  color: #ffd700;
  font-size: 1.2em;
  margin-top: 2px;
}

/* Process Timeline */
.mba-process-section {
  background: #181c2b;
  padding: 48px 0 24px 0;
  text-align: center;
}
.mba-process-heading h2 {
  color: #ffd700;
  font-size: 2rem;
  margin-bottom: 32px;
}
.mba-process-timeline {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 36px;
  flex-wrap: wrap;
  position: relative;
}
.mba-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(35,41,74,0.85);
  border-radius: 18px;
  padding: 24px 18px 18px 18px;
  min-width: 140px;
  box-shadow: 0 2px 12px rgba(24,28,43,0.12);
  border: 1.5px solid #ffd70033;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  z-index: 1;
}
.mba-process-step img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 8px #ffd70044);
}
.mba-process-step span {
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
}
.mba-process-step:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 8px 32px 0 #ffd70033;
  border: 1.5px solid #ffd700;
}
.mba-process-timeline:before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 4px;
  background: linear-gradient(90deg, #ffd700 0%, #23294a 100%);
  z-index: 0;
  border-radius: 2px;
  opacity: 0.18;
  width: 100%;
  transform: translateY(-50%);
}

/* Eligibility Section */
.mba-eligibility-section {
  background: linear-gradient(90deg, #23294a 60%, #181c2b 100%);
  padding: 48px 0 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.mba-eligibility-img img {
  width: 340px;
  max-width: 90vw;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(31,38,135,0.18);
  border: 2px solid #ffd70033;
}
.mba-eligibility-content {
  flex: 1;
  min-width: 260px;
}
.mba-eligibility-content h2 {
  color: #ffd700;
  font-size: 2rem;
  margin-bottom: 18px;
}
.mba-eligibility-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mba-eligibility-content li {
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.mba-eligibility-content li i {
  color: #ffd700;
  font-size: 1.2em;
  margin-top: 2px;
}

/* Responsive */
@media (max-width: 900px) {
  .mba-info-row, .mba-eligibility-section {
    flex-direction: column;
    gap: 24px;
    padding: 0 8px;
  }
  .mba-process-timeline {
    flex-direction: column;
    gap: 18px;
  }
  .mba-process-timeline:before {
    display: none;
  }
}
@media (max-width: 600px) {
  .mba-info-img img, .mba-eligibility-img img {
    width: 98vw;
    max-width: 98vw;
    border-radius: 10px;
  }
  .mba-info-content h2, .mba-eligibility-content h2, .mba-process-heading h2 {
    font-size: 1.2rem;
  }
  .mba-info-content li, .mba-eligibility-content li, .mba-process-step span {
    font-size: 0.98rem;
  }
  .mba-process-step {
    min-width: 90vw;
    padding: 16px 6px 12px 6px;
    border-radius: 10px;
  }
}

@media (max-width: 600px) {
  .mba-process-step {
    width: 90vw;
    max-width: 400px;
    min-width: unset;
    margin: 0 auto 18px auto;
    padding: 16px 6px 12px 6px;
    border-radius: 10px;
  }
}







.btech-smoke-section {
  position: relative;
  background: #181c2b;
  overflow: hidden;
  padding: 0;
}
.btech-smoke-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 20%, #23294a 60%, transparent 100%),
              linear-gradient(120deg, #23294a 60%, #181c2b 100%);
  opacity: 0.95;
  z-index: 0;
  pointer-events: none;
}
.btech-smoke-container {
  position: relative;
  z-index: 1;
  padding: 56px 0 32px 0;
}
.btech-smoke-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.btech-smoke-hero-content {
  flex: 1 1 320px;
  color: #fff;
  z-index: 2;
}
.btech-smoke-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 12px;
  text-shadow: 0 2px 16px #000a;
}
.btech-smoke-highlight {
  display: block;
  font-size: 1.2rem;
  color: #fff;
  background: rgba(24,28,43,0.7);
  border-left: 4px solid #ffd700;
  padding: 8px 18px;
  margin-bottom: 16px;
  border-radius: 0 18px 18px 0;
  font-weight: 500;
}
.btech-smoke-subtitle {
  font-size: 1.08rem;
  color: #e0e0e0;
  margin-bottom: 22px;
}
.btech-smoke-cta-row {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.btech-smoke-btn, .btech-smoke-btn-secondary {
  padding: 12px 28px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 1.08rem;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 16px #0004;
  text-decoration: none;
  display: inline-block;
}
.btech-smoke-btn {
  background: linear-gradient(90deg, #ffd700 60%, #bfa100 100%);
  color: #181c2b;
}
.btech-smoke-btn:hover {
  background: #fffbe6;
  color: #23294a;
}
.btech-smoke-btn-secondary {
  background: rgba(35,41,74,0.7);
  color: #ffd700;
  border: 1.5px solid #ffd700;
}
.btech-smoke-btn-secondary:hover {
  background: #ffd700;
  color: #181c2b;
}
.btech-smoke-hero-img {
  flex: 1 1 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btech-smoke-hero-img img {
  width: 340px;
  max-width: 90vw;
  border-radius: 24px;
  box-shadow: 0 8px 48px #000a, 0 0 0 4px #ffd70033;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* Features Grid */
.btech-smoke-features {
  display: flex;
  gap: 24px;
  margin: 32px 0 24px 0;
  justify-content: center;
  flex-wrap: wrap;
}
.btech-smoke-feature-card {
  background: rgba(35,41,74,0.85);
  border-radius: 18px;
  padding: 28px 22px 20px 22px;
  min-width: 180px;
  max-width: 240px;
  flex: 1 1 180px;
  color: #fff;
  text-align: center;
  box-shadow: 0 2px 16px #0004;
  border: 1.5px solid #ffd70033;
  transition: transform 0.18s, box-shadow 0.18s, border 0.18s;
}
.btech-smoke-feature-card i {
  font-size: 2.2em;
  color: #ffd700;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 8px #ffd70044);
}
.btech-smoke-feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 600;
}
.btech-smoke-feature-card p {
  font-size: 0.98rem;
  color: #e0e0e0;
}
.btech-smoke-feature-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px 0 #ffd70033;
  border: 1.5px solid #ffd700;
}

/* Destinations */
.btech-smoke-destinations {
  margin: 32px 0 24px 0;
  text-align: center;
}
.btech-smoke-destinations h2 {
  color: #ffd700;
  font-size: 1.5rem;
  margin-bottom: 18px;
  font-weight: 700;
}
.btech-smoke-dest-grid {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.btech-smoke-dest-card {
  background: rgba(35,41,74,0.7);
  border-radius: 16px;
  padding: 10px 10px 4px 10px;
  box-shadow: 0 2px 12px #0003;
  border: 1.5px solid #ffd70033;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
  transition: transform 0.18s, box-shadow 0.18s, border 0.18s;
}
.btech-smoke-dest-card img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 6px;
  box-shadow: 0 2px 8px #0002;
}
.btech-smoke-dest-card span {
  color: #ffd700;
  font-weight: 600;
  font-size: 1.05rem;
}
.btech-smoke-dest-card:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 6px 24px 0 #ffd70033;
  border: 1.5px solid #ffd700;
}

/* Success Stories */
.btech-smoke-success {
  margin: 36px 0 0 0;
  text-align: center;
}
.btech-smoke-success h2 {
  color: #ffd700;
  font-size: 1.4rem;
  margin-bottom: 18px;
  font-weight: 700;
}
.btech-smoke-success-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.btech-smoke-success-card {
  background: rgba(35,41,74,0.85);
  border-radius: 18px;
  padding: 22px 18px 16px 18px;
  min-width: 200px;
  max-width: 320px;
  color: #fff;
  text-align: left;
  box-shadow: 0 2px 16px #0004;
  border: 1.5px solid #ffd70033;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.btech-smoke-success-card img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 2px solid #ffd70055;
}
.btech-smoke-success-card blockquote {
  font-size: 1.01rem;
  color: #fff;
  margin: 0 0 8px 0;
  font-style: italic;
  line-height: 1.4;
}
.btech-smoke-success-author {
  color: #ffd700;
  font-size: 0.98rem;
  font-weight: 600;
  margin-top: 2px;
}

/* Responsive */
@media (max-width: 900px) {
  .btech-smoke-hero {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }
  .btech-smoke-hero-img {
    margin-top: 18px;
  }
  .btech-smoke-hero-content {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .btech-smoke-container {
    padding: 32px 0 18px 0;
  }
  .btech-smoke-title {
    font-size: 1.3rem;
  }
  .btech-smoke-highlight {
    font-size: 1rem;
    padding: 6px 10px;
    border-radius: 0 10px 10px 0;
  }
  .btech-smoke-hero-img img {
    width: 98vw;
    max-width: 98vw;
    border-radius: 12px;
  }
  .btech-smoke-features {
    gap: 10px;
    margin: 18px 0 10px 0;
  }
  .btech-smoke-feature-card {
    min-width: 120px;
    max-width: 98vw;
    padding: 18px 8px 12px 8px;
    border-radius: 10px;
  }
  .btech-smoke-dest-grid {
    gap: 8px;
  }
  .btech-smoke-dest-card {
    width: 80px;
    padding: 6px 4px 2px 4px;
    border-radius: 8px;
  }
  .btech-smoke-dest-card img {
    width: 60px;
    height: 40px;
    border-radius: 6px;
  }
  .btech-smoke-dest-card span {
    font-size: 0.92rem;
  }
  .btech-smoke-success-cards {
    gap: 10px;
  }
  .btech-smoke-success-card {
    min-width: 120px;
    max-width: 98vw;
    padding: 12px 6px 8px 6px;
    border-radius: 10px;
  }
  .btech-smoke-success-card img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
  }
  .btech-smoke-success-card blockquote {
    font-size: 0.95rem;
  }
}









/* BTech Abroad Professional Section */
.btech-pro-section {
  background: linear-gradient(120deg, #eaf6ff 0%, #f7faff 100%);
  padding: 0 0 60px 0;
  font-family: 'Roboto', sans-serif;
}

.btech-pro-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 64px 0 48px 0;
  background: linear-gradient(100deg, #0a3d62 0%, #3c6382 100%);
  border-radius: 0 0 36px 36px;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.08);
  color: #fff;
  flex-wrap: wrap;
}

.btech-pro-hero-content {
  flex: 1 1 400px;
  padding-left: 5vw;
  z-index: 2;
}

.btech-pro-hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.btech-pro-accent {
  color: #48dbfb;
  background: linear-gradient(90deg, #48dbfb 30%, #1e90ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btech-pro-subtitle {
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 32px;
  color: #eaf6ff;
  max-width: 520px;
}

.btech-pro-cta-row {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}

.btech-pro-btn, .btech-pro-btn-secondary {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 32px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btech-pro-btn {
  background: linear-gradient(90deg, #48dbfb 0%, #1e90ff 100%);
  color: #0a3d62;
  box-shadow: 0 2px 12px rgba(72, 219, 251, 0.15);
}

.btech-pro-btn:hover {
  background: linear-gradient(90deg, #1e90ff 0%, #48dbfb 100%);
  color: #fff;
}

.btech-pro-btn-secondary {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border: 2px solid #48dbfb;
}

.btech-pro-btn-secondary:hover {
  background: #48dbfb;
  color: #0a3d62;
}

.btech-pro-hero-img {
  flex: 1 1 320px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 1;
  padding-right: 5vw;
}

.btech-pro-hero-img img {
  width: 340px;
  max-width: 90vw;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.18);
  object-fit: cover;
}

.btech-pro-section-divider {
  height: 32px;
  background: transparent;
}

.btech-pro-eligibility {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 48px 0 32px 0;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.btech-pro-eligibility-content {
  flex: 1 1 350px;
}

.btech-pro-eligibility-content h2 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #0a3d62;
}

.btech-pro-eligibility-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.btech-pro-eligibility-content li {
  font-size: 1.15rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  color: #222f3e;
  font-weight: 500;
}

.btech-pro-eligibility-content li i {
  color: #1e90ff;
  margin-right: 12px;
  font-size: 1.3em;
}

.btech-pro-eligibility-img {
  flex: 1 1 260px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btech-pro-eligibility-img img {
  width: 260px;
  max-width: 80vw;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(44, 62, 80, 0.10);
  object-fit: cover;
}

.btech-pro-features {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  margin: 0 auto 32px auto;
  max-width: 1100px;
  flex-wrap: wrap;
}

.btech-pro-feature-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(44, 62, 80, 0.07);
  padding: 32px 24px 28px 24px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}

.btech-pro-feature-card:hover {
  box-shadow: 0 8px 32px rgba(72, 219, 251, 0.18);
  transform: translateY(-4px) scale(1.03);
}

.btech-pro-feature-card i {
  font-size: 2.2rem;
  color: #1e90ff;
  margin-bottom: 16px;
}

.btech-pro-feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0a3d62;
}

.btech-pro-feature-card p {
  font-size: 1.05rem;
  color: #222f3e;
  margin: 0;
}

.btech-pro-destinations {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 0 0 0;
  text-align: center;
}

.btech-pro-destinations h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0a3d62;
  margin-bottom: 24px;
}

.btech-pro-dest-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.btech-pro-dest-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
  padding: 18px 18px 10px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 110px;
  max-width: 140px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.btech-pro-dest-card:hover {
  box-shadow: 0 8px 32px rgba(72, 219, 251, 0.18);
  transform: translateY(-3px) scale(1.04);
}

.btech-pro-dest-card img {
  width: 60px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 10px;
}

.btech-pro-dest-card span {
  font-size: 1.08rem;
  font-weight: 600;
  color: #1e90ff;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .btech-pro-hero {
    flex-direction: column;
    padding: 40px 0 32px 0;
    text-align: center;
  }
  .btech-pro-hero-content, .btech-pro-hero-img {
    padding: 0;
    justify-content: center;
    align-items: center;
  }
  .btech-pro-hero-img img {
    margin-top: 24px;
    width: 260px;
  }
  .btech-pro-eligibility {
    flex-direction: column;
    gap: 24px;
    padding: 32px 0 18px 0;
    text-align: center;
  }
  .btech-pro-eligibility-img img {
    width: 180px;
  }
  .btech-pro-features {
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .btech-pro-hero-content h1 {
    font-size: 2.1rem;
  }
  .btech-pro-subtitle {
    font-size: 1.05rem;
  }
  .btech-pro-hero-img img {
    width: 98vw;
    max-width: 98vw;
  }
  .btech-pro-eligibility-content h2,
  .btech-pro-destinations h2 {
    font-size: 1.25rem;
  }
  .btech-pro-feature-card {
    padding: 18px 10px 14px 10px;
    min-width: 90vw;
    max-width: 98vw;
  }
  .btech-pro-dest-card {
    min-width: 90px;
    max-width: 110px;
    padding: 10px 6px 6px 6px;
  }
  .btech-pro-dest-card img {
    width: 40px;
    height: 28px;
  }
}


/* Make the hero section much bigger */
.btech-pro-hero {
  min-height: 480px;
  padding: 96px 0 72px 0;
}
.btech-pro-hero-content h1 {
  font-size: 4rem;
  margin-bottom: 24px;
}
.btech-pro-hero-content {
  padding-left: 7vw;
}
.btech-pro-hero-img img {
  width: 420px;
  min-width: 220px;
  max-width: 98vw;
}

/* Why BTech Abroad Row (just below hero) */
.btech-pro-why-row {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin: -36px auto 36px auto;
  max-width: 1100px;
  z-index: 3;
  position: relative;
}
.btech-pro-why-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.10);
  padding: 22px 18px 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
  max-width: 180px;
  font-weight: 600;
  color: #0a3d62;
  font-size: 1.08rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.btech-pro-why-card i {
  font-size: 2rem;
  color: #1e90ff;
  margin-bottom: 10px;
}
.btech-pro-why-card:hover {
  box-shadow: 0 8px 32px rgba(72, 219, 251, 0.18);
  transform: translateY(-3px) scale(1.04);
}

/* Application Process Timeline */
.btech-pro-process {
  max-width: 1100px;
  margin: 0 auto 32px auto;
  text-align: center;
}
.btech-pro-process h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0a3d62;
  margin-bottom: 24px;
}
.btech-pro-process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.btech-pro-process-step {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
  padding: 18px 16px 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 110px;
  max-width: 140px;
  font-weight: 600;
  color: #0a3d62;
  font-size: 1.05rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.btech-pro-process-step:hover {
  box-shadow: 0 8px 32px rgba(72, 219, 251, 0.18);
  transform: translateY(-3px) scale(1.04);
}
.btech-pro-process-icon {
  font-size: 2rem;
  color: #1e90ff;
  margin-bottom: 8px;
}
.btech-pro-process-arrow {
  font-size: 1.5rem;
  color: #1e90ff;
  margin: 0 6px;
}

/* Responsive Tweaks */
@media (max-width: 900px) {
  .btech-pro-hero {
    min-height: 320px;
    padding: 60px 0 32px 0;
  }
  .btech-pro-hero-content h1 {
    font-size: 2.5rem;
  }
  .btech-pro-why-row {
    gap: 16px;
    margin: -18px auto 18px auto;
  }
  .btech-pro-why-card {
    min-width: 90px;
    max-width: 120px;
    font-size: 0.98rem;
    padding: 12px 8px 8px 8px;
  }
  .btech-pro-process h2 {
    font-size: 1.2rem;
  }
  .btech-pro-process-step {
    min-width: 80px;
    max-width: 110px;
    font-size: 0.95rem;
    padding: 10px 6px 6px 6px;
  }
  .btech-pro-process-icon {
    font-size: 1.3rem;
  }
}
@media (max-width: 600px) {
  .btech-pro-hero {
    min-height: 180px;
    padding: 32px 0 12px 0;
  }
  .btech-pro-hero-content h1 {
    font-size: 1.3rem;
  }
  .btech-pro-why-row {
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 10px 0;
  }
  .btech-pro-why-card {
    min-width: 80px;
    max-width: 98vw;
    font-size: 0.92rem;
    padding: 8px 4px 6px 4px;
  }
  .btech-pro-process-steps {
    gap: 6px;
  }
  .btech-pro-process-step {
    min-width: 60px;
    max-width: 90px;
    font-size: 0.85rem;
    padding: 6px 2px 4px 2px;
  }
  .btech-pro-process-icon {
    font-size: 1.1rem;
  }
}






@media (max-width: 600px) {
  .btech-pro-hero {
    flex-direction: column;
    min-height: 72vh;
    height: 72vh;
    padding: 0;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
  }
  .btech-pro-hero-content {
    padding: 0 6vw;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 60vh;
  }
  .btech-pro-hero-content h1 {
    font-size: 2.1rem;
    line-height: 1.15;
    margin-bottom: 16px;
    font-weight: 900;
  }
  .btech-pro-subtitle {
    font-size: 1.08rem;
    margin-bottom: 24px;
    color: #eaf6ff;
  }
  .btech-pro-cta-row {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
  }
  .btech-pro-btn, .btech-pro-btn-secondary {
    width: 90vw;
    max-width: 320px;
    font-size: 1.08rem;
    padding: 14px 0;
  }
  .btech-pro-hero-img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 0;
    padding: 0;
    z-index: 1;
  }
  .btech-pro-hero-img img {
    width: 80vw;
    max-width: 320px;
    min-width: 160px;
    margin: 0 auto 12px auto;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(44, 62, 80, 0.10);
  }

  /* Why BTech Abroad Row */
  .btech-pro-why-row {
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px 0;
    justify-content: center;
  }
  .btech-pro-why-card {
    min-width: 44vw;
    max-width: 48vw;
    font-size: 0.98rem;
    padding: 12px 4px 10px 4px;
    margin: 0;
  }

  /* Application Process Timeline */
  .btech-pro-process-steps {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .btech-pro-process-step {
    min-width: 0;
    max-width: 98vw;
    font-size: 1.05rem;
    padding: 14px 0 8px 0;
    margin: 0 auto;
    border-radius: 12px;
  }
  .btech-pro-process-arrow {
    display: none;
  }

  /* Eligibility Section */
  .btech-pro-eligibility {
    flex-direction: column;
    gap: 10px;
    padding: 18px 0 10px 0;
    text-align: center;
  }
  .btech-pro-eligibility-content h2 {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }
  .btech-pro-eligibility-content li {
    font-size: 1.01rem;
    margin-bottom: 10px;
    justify-content: center;
  }
  .btech-pro-eligibility-img img {
    width: 60vw;
    min-width: 120px;
    max-width: 220px;
    margin: 0 auto;
  }

  /* Features Section */
  .btech-pro-features {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin: 0 auto 18px auto;
  }
  .btech-pro-feature-card {
    min-width: 90vw;
    max-width: 98vw;
    padding: 18px 10px 14px 10px;
    border-radius: 12px;
    align-items: center;
    text-align: center;
  }
  .btech-pro-feature-card h3 {
    font-size: 1.08rem;
    margin-bottom: 6px;
  }
  .btech-pro-feature-card p {
    font-size: 0.98rem;
  }

  /* Destinations */
  .btech-pro-destinations h2 {
    font-size: 1.15rem;
    margin-bottom: 10px;
  }
  .btech-pro-dest-grid {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  .btech-pro-dest-card {
    min-width: 38vw;
    max-width: 44vw;
    padding: 10px 4px 6px 4px;
    border-radius: 10px;
    align-items: center;
    margin: 0 auto;
  }
  .btech-pro-dest-card img {
    width: 40px;
    height: 28px;
    margin-bottom: 6px;
  }
  .btech-pro-dest-card span {
    font-size: 0.98rem;
  }

  /* Section Divider */
  .btech-pro-section-divider {
    height: 18px;
  }
}



/* Royal/Grand BTech Section Upgrades */

/* Hero background pattern and badge */
.btech-pro-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  background: radial-gradient(circle at 60% 40%, #48dbfb33 0%, #0a3d6200 80%), url('https://www.transparenttextures.com/patterns/diamond-upholstery.png');
  opacity: 0.18;
  pointer-events: none;
}
.btech-pro-badge {
  display: inline-block;
  background: linear-gradient(90deg, #ffd700 0%, #fffbe6 100%);
  color: #0a3d62;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 6px 18px;
  border-radius: 18px;
  margin-bottom: 18px;
  letter-spacing: 1.5px;
  box-shadow: 0 2px 12px #ffd70022;
}

/* Why BTech Abroad */
.btech-pro-why-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 0 auto 36px auto;
  max-width: 1100px;
  flex-wrap: wrap;
}
.btech-pro-why-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px #48dbfb22;
  padding: 24px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
  max-width: 180px;
  font-weight: 600;
  color: #0a3d62;
  font-size: 1.12rem;
  border-left: 5px solid #48dbfb;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.btech-pro-why-icon {
  background: linear-gradient(135deg, #48dbfb 60%, #1e90ff 100%);
  color: #fff;
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px #48dbfb33;
}
.btech-pro-why-card:hover {
  box-shadow: 0 8px 32px #48dbfb33;
  transform: translateY(-3px) scale(1.04);
}

/* Application Process Stepper */
.btech-pro-process {
  max-width: 1100px;
  margin: 0 auto 32px auto;
  text-align: center;
}
.btech-pro-process h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: #0a3d62;
  margin-bottom: 32px;
  letter-spacing: -1px;
}
.btech-pro-process-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}
.btech-pro-process-step {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px #48dbfb22;
  padding: 22px 18px 16px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 220px;
  max-width: 340px;
  margin: 0 auto;
  position: relative;
  border-left: 5px solid #48dbfb;
}
.btech-pro-step-circle {
  background: linear-gradient(135deg, #48dbfb 60%, #1e90ff 100%);
  color: #fff;
  border-radius: 50%;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin-right: 8px;
  box-shadow: 0 2px 8px #48dbfb33;
}
.btech-pro-step-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: #0a3d62;
}
.btech-pro-step-desc {
  font-size: 1.01rem;
  color: #222f3e;
}
.btech-pro-step-line {
  width: 4px;
  height: 32px;
  background: linear-gradient(180deg, #48dbfb 0%, #1e90ff 100%);
  margin: 0 auto;
  border-radius: 2px;
}

/* Eligibility Section */
.btech-pro-eligibility {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding: 48px 0 32px 0;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.btech-pro-eligibility-content {
  flex: 1 1 350px;
}
.btech-pro-eligibility-content h2 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: #0a3d62;
}
.btech-pro-eligibility-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.btech-pro-eligibility-content li {
  font-size: 1.18rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  color: #222f3e;
  font-weight: 600;
}
.btech-pro-eligibility-content li i {
  color: #1e90ff;
  margin-right: 14px;
  font-size: 1.4em;
}
.btech-pro-eligibility-img {
  flex: 1 1 260px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.btech-pro-eligibility-img img {
  width: 320px;
  max-width: 90vw;
  border-radius: 18px;
  box-shadow: 0 4px 18px #48dbfb22;
  object-fit: cover;
  margin-top: 0;
}

/* Features Section */
.btech-pro-features {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  margin: 0 auto 32px auto;
  max-width: 1100px;
  flex-wrap: wrap;
}
.btech-pro-feature-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px #48dbfb22;
  padding: 32px 24px 28px 24px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  text-align: center;
}
.btech-pro-feature-icon {
  background: linear-gradient(135deg, #48dbfb 60%, #1e90ff 100%);
  color: #fff;
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px #48dbfb33;
}
.btech-pro-feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0a3d62;
}
.btech-pro-feature-card p {
  font-size: 1.05rem;
  color: #222f3e;
  margin: 0;
}
.btech-pro-feature-card:hover {
  box-shadow: 0 8px 32px #48dbfb33;
  transform: translateY(-4px) scale(1.03);
}

/* Destinations */
.btech-pro-destinations {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 0 0 0;
  text-align: center;
}
.btech-pro-destinations h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0a3d62;
  margin-bottom: 24px;
}
.btech-pro-dest-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.btech-pro-dest-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px #48dbfb22;
  padding: 18px 18px 10px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 110px;
  max-width: 140px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.btech-pro-dest-card img {
  width: 60px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px #48dbfb33;
}
.btech-pro-dest-card span {
  font-size: 1.08rem;
  font-weight: 700;
  color: #1e90ff;
  letter-spacing: 0.5px;
}
.btech-pro-dest-card:hover {
  box-shadow: 0 8px 32px #48dbfb33;
  transform: translateY(-3px) scale(1.04);
}

/* Section Divider */
.btech-pro-section-divider {
  height: 32px;
  background: transparent;
}

/* Mobile Styles */
@media (max-width: 900px) {
  .btech-pro-hero-content h1 { font-size: 2.2rem; }
  .btech-pro-hero-img img { width: 220px; }
  .btech-pro-why-row { gap: 12px; }
  .btech-pro-why-card { min-width: 120px; max-width: 48vw; font-size: 1rem; }
  .btech-pro-process h2 { font-size: 1.2rem; }
  .btech-pro-process-step { min-width: 120px; max-width: 98vw; font-size: 1rem; }
  .btech-pro-eligibility { flex-direction: column; gap: 18px; padding: 24px 0 10px 0; text-align: center; }
  .btech-pro-eligibility-img img { width: 80vw; }
  .btech-pro-features { gap: 12px; }
  .btech-pro-feature-card { min-width: 90vw; max-width: 98vw; }
  .btech-pro-dest-card { min-width: 90px; max-width: 110px; }
}
@media (max-width: 600px) {
  .btech-pro-hero {
    flex-direction: column;
    min-height: 80vh;
    height: 80vh;
    padding: 0;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
  }
  .btech-pro-hero-content {
    padding: 0 6vw;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 60vh;
  }
  .btech-pro-badge {
    font-size: 0.98rem;
    padding: 4px 12px;
    margin-bottom: 10px;
  }
  .btech-pro-hero-content h1 {
    font-size: 1.5rem;
    line-height: 1.15;
    margin-bottom: 12px;
    font-weight: 900;
  }
  .btech-pro-subtitle {
    font-size: 1.01rem;
    margin-bottom: 18px;
    color: #eaf6ff;
  }
  .btech-pro-cta-row {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: center;
  }
  .btech-pro-btn, .btech-pro-btn-secondary {
    width: 90vw;
    max-width: 320px;
    font-size: 1.01rem;
    padding: 12px 0;
  }
  .btech-pro-hero-img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 0;
    padding: 0;
    z-index: 1;
  }
  .btech-pro-hero-img img {
    width: 80vw;
    max-width: 320px;
    min-width: 120px;
    margin: 0 auto 8px auto;
    border-radius: 14px;
    box-shadow: 0 4px 18px #48dbfb22;
  }
  .btech-pro-why-row {
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 10px 0;
    justify-content: center;
  }
  .btech-pro-why-card {
    min-width: 44vw;
    max-width: 48vw;
    font-size: 0.92rem;
    padding: 10px 2px 8px 2px;
    margin: 0;
  }
  .btech-pro-why-icon {
    width: 36px; height: 36px; font-size: 1.2rem; margin-bottom: 6px;
  }
  .btech-pro-process h2 { font-size: 1.1rem; margin-bottom: 18px; }
  .btech-pro-process-step {
    min-width: 0;
    max-width: 98vw;
    font-size: 0.98rem;
    padding: 12px 0 6px 0;
    margin: 0 auto;
    border-radius: 12px;
    flex-direction: row;
    gap: 10px;
  }
  .btech-pro-step-circle {
    width: 28px; height: 28px; font-size: 1rem; margin-right: 6px;
  }
  .btech-pro-step-title { font-size: 1.01rem; }
  .btech-pro-step-desc { font-size: 0.92rem; }
  .btech-pro-step-line { height: 18px; }
  .btech-pro-eligibility-content h2 { font-size: 1.1rem; margin-bottom: 8px; }
  .btech-pro-eligibility-content li { font-size: 0.98rem; margin-bottom: 10px; }
  .btech-pro-eligibility-img img { width: 90vw; min-width: 80px; max-width: 98vw; margin: 0 auto; }
  .btech-pro-features { flex-direction: column; gap: 10px; align-items: center; margin: 0 auto 10px auto; }
  .btech-pro-feature-card { min-width: 90vw; max-width: 98vw; padding: 14px 6px 10px 6px; border-radius: 10px; }
  .btech-pro-feature-icon { width: 36px; height: 36px; font-size: 1.2rem; margin-bottom: 8px; }
  .btech-pro-feature-card h3 { font-size: 1.01rem; margin-bottom: 4px; }
  .btech-pro-feature-card p { font-size: 0.92rem; }
  .btech-pro-destinations h2 { font-size: 1.01rem; margin-bottom: 8px; }
  .btech-pro-dest-grid { flex-wrap: wrap; gap: 8px; justify-content: center; }
  .btech-pro-dest-card { min-width: 38vw; max-width: 44vw; padding: 8px 2px 4px 2px; border-radius: 10px; align-items: center; margin: 0 auto; }
  .btech-pro-dest-card img { width: 32px; height: 22px; margin-bottom: 4px; }
  .btech-pro-dest-card span { font-size: 0.92rem; }
  .btech-pro-section-divider { height: 10px; }
}



/* Eligibility Section Upgrades */
.btech-pro-eligibility-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.btech-pro-eligibility-intro {
  font-size: 1.08rem;
  color: #0a3d62;
  margin-bottom: 12px;
  font-weight: 500;
}
.btech-pro-eligibility-note {
  background: #f7faff;
  color: #1e90ff;
  font-size: 1.01rem;
  border-left: 4px solid #48dbfb;
  padding: 8px 12px;
  margin: 12px 0 0 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btech-pro-eligibility-cta {
  margin-top: 16px;
}

/* Remove gap between eligibility and image on mobile */
@media (max-width: 900px) {
  .btech-pro-eligibility {
    gap: 8px;
    padding-bottom: 0;
  }
  .btech-pro-eligibility-img img {
    margin-top: 0;
  }
}

/* Why BTech Abroad: Stack on mobile, more space */
@media (max-width: 600px) {
  .btech-pro-why-row {
    flex-direction: column;
    gap: 18px;
    margin: 0 0 18px 0;
    align-items: center;
  }
  .btech-pro-why-card {
    min-width: 80vw;
    max-width: 98vw;
    font-size: 1.08rem;
    padding: 18px 10px 14px 10px;
    margin: 0;
  }
}

/* Top Destinations Carousel */
.btech-pro-dest-slider {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 12px;
  margin-bottom: 8px;
}
.btech-pro-dest-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px #48dbfb22;
  padding: 18px 18px 10px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 320px;
  max-width: 340px;
  margin-right: 18px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.btech-pro-dest-card img {
  width: 220px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px #48dbfb33;
}
.btech-pro-dest-card span {
  font-size: 1.08rem;
  font-weight: 700;
  color: #1e90ff;
  letter-spacing: 0.5px;
  text-align: center;
}
.btech-pro-dest-card:hover {
  box-shadow: 0 8px 32px #48dbfb33;
  transform: translateY(-3px) scale(1.04);
}
.btech-pro-dest-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 0;
}
.btech-pro-dest-controls button {
  background: #48dbfb;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 2px 8px #48dbfb33;
  transition: background 0.2s;
}
.btech-pro-dest-controls button:hover {
  background: #1e90ff;
}

/* Carousel on mobile: bigger cards, horizontal scroll */
@media (max-width: 600px) {
  .btech-pro-dest-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    gap: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .btech-pro-dest-card {
    display: none; /* Only the active one will be set to flex by JS */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    border-radius: 16px;
    background: #fff;
    padding: 18px 12px 14px 12px;
    transition: box-shadow 0.2s;
  }
  .btech-pro-dest-card img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
  }
  .btech-pro-dest-card span {
    font-size: 1.08em;
    font-weight: 500;
    text-align: center;
  }
  .btech-pro-dest-card {
    max-width: 98vw;
    padding: 10px 2px 8px 2px;
  }
  .btech-pro-dest-card img {
    width: 70px;
    height: 44px;
  }
  .btech-pro-dest-card span {
    font-size: 0.98em;
  }
}



.btech-pro-dest-slider {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 12px;
  margin-bottom: 8px;
  /* Hide scrollbar for a cleaner look */
  scrollbar-width: none;
}
.btech-pro-dest-slider::-webkit-scrollbar {
  display: none;
}






.btech-pro-dest-slider-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  gap: 8px;
}
.btech-pro-dest-prev, .btech-pro-dest-next {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.5em;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
}
.btech-pro-dest-prev:hover, .btech-pro-dest-next:hover {
  background: #f5f5f5;
}
.btech-pro-dest-slider {
  overflow: hidden;
  width: 100%;
  display: flex;
}