:root {
    --navy-blue: #0A2463;
    --royal-blue: #1E73BE;
    --gold: #D4AF37;
    --light-gold: #F9A825;
    --white: #FFFFFF;
    --light-grey: #F4F4F4;
    --dark-grey: #333333;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Lato', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--dark-grey);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--navy-blue);
}

h3 {
    font-size: 1.5rem;
    color: var(--royal-blue);
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--gold)!important;
    color: var(--dark-grey);
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary-custom:hover {
    background-color: var(--light-gold);
    color: var(--dark-grey);
    transform: translateY(-2px);
}

.btn-secondary-custom {
    
    color: var(--royal-blue);
    border: 2px solid var(--royal-blue);
    font-weight: 600;
    padding: 10px 28px;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background-color: var(--royal-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Navigation */
.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--navy-blue) !important;
}

.navbar-tagline {
    font-size: 0.8rem;
    color: var(--royal-blue);
    margin-left: 10px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-grey) !important;
    padding: 5px 15px;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--royal-blue) !important;
}

.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--royal-blue);
    left: 15px;
    bottom: 0;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
    width: calc(100% - 30px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(10, 36, 99, 0.8), rgba(10, 36, 99, 0.9)), url('../img/hero.png') no-repeat center center;
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
}

.hero-section h1 {
    color: var(--white);
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

.bg-light-custom {
    background-color: var(--light-grey) !important;
}

.page-header {
    padding: 60px 0;
}




/* Cards */
.highlight-card, .service-card, .destination-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
    padding: 30px;
}

.highlight-card:hover, .service-card:hover, .destination-card:hover {
    transform: translateY(-10px);
}

.highlight-icon, .service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.highlight-icon {
    color: var(--royal-blue);
}

.service-icon {
    color: var(--navy-blue);
}

/* Destination Cards */
.destination-card {
    padding: 0;
    overflow: hidden;
}

.destination-flag {
    height: 120px;
    background-size: cover;
    background-position: center;
}

.destination-content {
    padding: 20px;
}

.destination-flag-large {
    width: 80px;
    height: 60px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

.destination-detail-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.destination-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.destination-header {
    display: flex;
    align-items: flex-start;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 1.5rem;
}

.destination-flag-large {
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.cta-banner {
    padding: 4rem 0;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}



.destination-header {
    display: flex;
    align-items: center;
}

.destination-detail-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

/* Testimonials */
.testimonial-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 30px;
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--royal-blue);
}

/* CTA Banner */
.cta-banner {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 60px 0;
}

.cta-banner h2 {
    color: var(--white);
}

.whatsapp-prompt {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    margin-top: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-prompt:hover {
    background-color: #128C7E;
    color: var(--white);
    transform: translateY(-2px);
}

.whatsapp-prompt i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--navy-blue), var(--royal-blue));
    color: var(--white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}
/* About Page Styles */
.founder-card {
    background: white;
    border-left: 4px solid var(--primary-blue);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.mission-card, .vision-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.mission-icon, .vision-icon {
    font-size: 2.5rem;
    color: var(--royal-blue);
}

.value-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.value-icon {
    font-size: 2rem;
    color: var(--secondary-green);
}

.team-photo {
    max-height: 400px;
    overflow: hidden;
}

/* New Styles for Enhanced Sections */
.feature-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--primary-blue);
}

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

.feature-icon {
    color: var(--royal-blue);
    font-size: 1.5rem;
    min-width: 50px;
}

.service-features {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    margin-bottom: 0.75rem;
    padding-left: 0;
}

.service-features li i {
    color: var(--secondary-green);
}

.service-card-alt {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--primary-blue);
}

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

.service-icon {
    color: var(--royal-blue);
    font-size: 2.5rem;
}

.founders-message blockquote {
    border-left: 4px solid var(--primary-blue);
    padding-left: 1.5rem;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--dark-text);
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary-blue), var(--royal-blue));
    color: white;
}



/* Color Variables - Add these if not already defined */
:root {
    --primary-blue: #1e3c72;
    --royal-blue: #2a5298;
    --secondary-green: #28a745;
    --dark-text: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
    
    .feature-card, .founder-card, .value-card {
        margin-bottom: 1.5rem;
    }
    
    .founders-message blockquote {
        padding-left: 1rem;
        font-size: 1rem;
    }
}

/* Services Page Styles */
.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    margin-bottom: 10px;
    padding-left: 0;
}

.service-features li i {
    color: var(--secondary-green);
}

.service-image {
    max-height: 400px;
    overflow: hidden;
}

.service-card-alt {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

/* Universities Page Styles */
.university-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;

    overflow: hidden;
}

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

.university-card img {
    width: 100%;
    height: 180px; /* makes all images equal */
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.university-card h4 {
    font-size: 1.2rem;
    margin-top: 15px;
}

.university-card p {
    font-size: 0.9rem;
    color: #555;
}


.country-section {
    margin-bottom: 50px;
}

/* Scholarships Page Styles */
.scholarship-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.scholarship-detail-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--gold);
}

.process-step {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--royal-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto;
}

/* Blog Page Styles */
.blog-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 20px;
    background: var(--white);
}

.blog-category {
    background: var(--royal-blue);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-excerpt {
    color: var(--dark-grey);
    margin-bottom: 15px;
}

.blog-meta {
    font-size: 0.9rem;
    color: #666;
}

.category-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.category-card:hover {
    transform: translateY(-5px);
    color: inherit;
}

.category-icon {
    color: var(--royal-blue);
}

/* Contact Page Styles */
.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--royal-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-card {
    background: white;
}

.consultation-promo {
    background: linear-gradient(135deg, var(--navy-blue), var(--royal-blue)) !important;
}

.map-placeholder {
    background: var(--light-grey);
}

/* Application Form Styles */
.application-form-card {
    background: white;
}

.form-section {
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.form-section:last-child {
    border-bottom: none;
}



:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --light-color: #f8f9fa;
    --primary-color-rgb: 13, 110, 253;
}

/* Custom Background Classes */
.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.bg-light-custom {
    background-color: var(--light-color) !important;
}

/* Text Colors */
.text-primary-custom {
    color: var(--primary-color) !important;
}

/* Button Styles */
.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary-custom:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.btn-outline-primary-custom {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary-custom:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: white;
}

/* Footer */
footer {
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 60px 0 30px;
}

footer h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

footer a {
    color: #ccc;
    text-decoration: none;
}

footer a:hover {
    color: var(--white);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
    margin-right: 10px;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: var(--royal-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    margin-top: 40px;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .destination-header {
        flex-direction: column;
        text-align: center;
    }
    
    .destination-flag-large {
        margin-bottom: 15px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }


    

}