@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* =====================================================
   1. GLOBAL VARIABLES & RESET
   ===================================================== */
:root {
    --primary-blue: #0b3c8a;
    --secondary-blue: #1e6fd9;
    --gold-yellow: #f5b301;
    --light-bg: #f6f9ff;
    --text-dark: #444;
    --text-muted: #6c757d;
}

body {
    font-family: "roboto";
    background: var(--light-bg);
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    /* Prevents layout shifts for SEO */
}

/* =====================================================
   2. HEADER / NAVBAR
   ===================================================== */
.main-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
    height: 46px;
}

.logo-symbol {
    margin-right: 10px;
}

.logo-text {
    height: 28px;
}

@media (max-width: 768px) {
    .logo-text {
        display: none;
    }
}

/* Counselling Button */
.btn-counselling {
    padding: 8px 22px;
    font-weight: 600;
    border-radius: 50px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    transition: 0.3s ease;
}

.btn-counselling:hover {
    background: var(--gold-yellow);
    color: #000;
}

/* =====================================================
   3. HERO SECTION
   ===================================================== */
.hero-section {
    padding: 90px 0;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
}

.hero-title {
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.hero-title span {
    color: var(--gold-yellow);
    font-weight: 700;
}

.hero-subtitle {
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    text-align: justify;
}

.hero-buttons .btn {
    padding: 12px 30px;
    border-radius: 50px;
    margin-right: 12px;
    margin-bottom: 10px;
}

/* =====================================================
   4. SECTIONS & LAYOUT
   ===================================================== */
.section-title {
    text-align: center;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 40px;
}

.section-title span {
    color: var(--gold-yellow);
    font-weight: 700;
}

.custom-section-one {
    padding: 70px 0;
    background: linear-gradient(135deg, #ffffff, #f6f9ff);
}

.custom-section-two {
    padding: 70px 0;
    background: linear-gradient(45deg, #f8f9fc, #eef1f7);
}

.border-bottom-custom {
    border-bottom: 0.3rem solid var(--gold-yellow);
}

/* =====================================================
   5. CARDS (UNIVERSITIES & INFO)
   ===================================================== */
.custom-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.custom-card:hover {
    transform: translateY(-8px);
}

.custom-card i {
    font-size: 34px;
    color: var(--gold-yellow);
    margin-bottom: 15px;
}

.custom-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #eee;
}

.custom-card h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.custom-card p {
    margin: 4px 0;
    font-size: 14px;
    color: var(--text-muted);
}

/* =====================================================
   6. TABS & STUDY ABROAD
   ===================================================== */
.country-tabs {
    border-bottom: none;
    gap: 1%;
}

.country-tabs .nav-link {
    border: none;
    color: var(--text-muted);
    font-weight: 600;
    padding: 10px;
    margin: 0 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.country-tabs .nav-link.active {
    color: #0d6efd;
    border-bottom: 3px solid #0d6efd;
    background: #fdfefe;
    transform: translateY(-16px);
    transition: 0.5s;
}

.course-badge {
    background: #ffe08a;
    color: #000;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
}

.flag-icon {
    width: 40px;
    margin-bottom: 7px;
    vertical-align: middle;
}

/* =====================================================
   7. CTA SECTION
   ===================================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0b3c8a, #1e6fd9);
    color: #fff;
}

.cta-section h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-warning {
    padding: 14px 34px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.cta-section .btn-warning:hover {
    background: #ffffff;
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* =====================================================
   8. FOOTER
   ===================================================== */
.av-footer {
    background: var(--light-bg);
    padding: 60px 0 25px;
    text-align: center;
}

.footer-logo {
    max-width: 170px;
    margin: auto;
    margin-bottom: 15px;
    display: block;
}

.custom-logo {
    width: 70px;
    height: auto;
}

.footer-text {
    max-width: 650px;
    margin: 0 auto 20px;
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.7;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.footer-contact i {
    color: var(--primary-blue);
    margin-right: 6px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0 6px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary-blue);
    color: #fff;
}

.footer-divider {
    margin: 35px 0 18px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #666;
}

.footer-policy a {
    margin-left: 15px;
    text-decoration: none;
    color: #666;
}

.footer-policy a:hover {
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
    }

    .footer-policy {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
}

/* =====================================================
   9. MODALS & FORMS
   ===================================================== */
.counselling-modal {
    border-radius: 18px;
    padding: 10px;
    background: #ffffff;
}

.counselling-modal h3 {
    font-weight: 700;
    color: var(--primary-blue);
}

.counselling-modal label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: #000;
}

.counselling-modal .form-control,
.counselling-modal .form-select {
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 15px;
}

.counselling-modal .input-group-text {
    background: #f5f7fa;
    border-radius: 12px 0 0 12px;
    font-weight: 600;
}

.counselling-modal .form-check-label {
    font-size: 14px;
}

.counselling-modal .btn-primary {
    background: #87c6ff;
    border: none;
    border-radius: 14px;
    font-weight: 600;
    padding: 12px;
}

.counselling-modal .btn-primary:hover {
    background: #6fb6f5;
}

.thank-you-box {
    display: none;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* =====================================================
   10. FLOATING WHATSAPP
   ===================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    font-size: 30px;
    color: #fff;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none !important;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.country-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 12px;
}

.plane-icon {
    color: #2c6bed;
    font-size: 18px;
}

.student-img img {
    border-radius: 50%;
    display: block;
    object-fit: cover;
}

.custom-student {
    width: 250px;
    margin-bottom: 10px;
}


.custom-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* testimonial text flexible rahe */
.custom-card .testimonial-text {
    flex-grow: 1;
}

/* student name always starts on a new line at same position */
.custom-card h6 {
    margin-top: auto;
    padding-top: 12px;
}