:root {
    --primary-color: #0f172a;   /* Dark blue primary color */
    --secondary-color: #3b82f6; /* Bright blue secondary */
    --accent-color: #2563eb;    /* Darker blue accent */
    --text-color: #1e293b;      /* Main text color */
    --light-text: #64748b;      /* Secondary text color */
    --background: #ffffff;      /* Main background */
    --section-bg: #f8fafc;      /* Section background */
    --gold: #f39c12;
    --header-height: 80px;        /* Header height */
    --transition-slow: 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    --transition-medium: 0.3s cubic-bezier(0.65, 0, 0.35, 1);
    --transition-fast: 0.2s cubic-bezier(0.65, 0, 0.35, 1);
}
.lang-toggle {
    display: flex;
    justify-content: flex-end; /* aligns items horizontally to the right */
    align-items: flex-start;   /* aligns items vertically to the top */
    padding: 10px;             /* optional: gives some spacing inside the container */
    position: relative;        /* required if absolutely positioning elements inside later */
    gap: 5px;
}
.lang-button{min-width: 15px;min-height: 15px;}
.lang-button:hover {border-color: transparent; cursor: pointer;}
.lang-button1, .lang-button2 {
    position: absolute;
    right: 25px;
    width: 30px;
    height: 30px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.lang-button1 {bottom: 33px;}
.lang-button2 {bottom: 8px;}
.flag-icon {width: 30px;  height: 30px;object-fit: contain;  }
.lang-button:hover {
  background-color: var(--accent-color, #ef4444); /* Fallback color */
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.footer-i{padding: 0;}
html, body {                    /* Global Styles */
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;    /* Smooth scrolling */
}
* {                             /* Reset and Box Sizing */
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;     /* Include padding in element size */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;/*later added*/
}
.partners-section {padding: 80px 0;background: white;}
.partners-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}
.partner-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.partner-card:hover {transform: translateY(-10px);box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);}
.partner-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #1a3a6c;
}
.partner-button {/* NEW EFFECT - Tampa Chess Champions Style */
    display: inline-block;
    position: relative;
    font-size: 1.8rem;
    margin-bottom: 10px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}
.partner-button:hover {color: var(--gold) !important;transform: translateY(-2px);}
.partner-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), #e67e22);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}
.partner-button:hover::after { width: 100%;}
.partner-description {padding: 25px;color: #555;}
.partner-description h3 {color: #2c5282;margin-bottom: 15px;font-size: 1.4rem;}
.partner-description ul {list-style: none;margin: 20px 0;}
.partner-description ul li {padding: 8px 0;padding-left: 30px;position: relative;}
.partner-header {padding: 25px;background: #1a3a6c;color: white;text-align: center;}
.partner-description ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #28a745;
}
.demo-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}
.demo-title {font-size: 2rem;color: #1a3a6c;margin-bottom: 40px;}
.demo-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}
.demo-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
    color: #777;
}
@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}
.demo-container {/* Demo styling to show the button in context */
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}
.demo-title {font-size: 2rem;color: #1a3a6c;margin-bottom: 40px;}
.demo-description {font-size: 1.1rem;line-height: 1.7;color: #555;margin-bottom: 30px;}
.demo-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
    color: #777;
}
.benefits-section {background: #f8f9fa;padding: 80px 0;text-align: center;}
.benefits-container {max-width: 800px;margin: 0 auto;}
.benefits-container h3 {font-size: 2rem;color: #1a3a6c;margin-bottom: 40px;}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}
.benefit-card:hover {transform: translateY(-5px);}
.benefit-icon {font-size: 2.5rem;color: #2c5282;margin-bottom: 20px;}
.benefit-card h4 {font-size: 1.3rem;margin-bottom: 15px;color: #1a3a6c;}
a {text-decoration: none;color: inherit;cursor: pointer;}
.section {padding: 100px 0;}
.programs-section {margin: 2rem 0;}/* Add to the modal styles */
.programs-section h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.program-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}
.program-images img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.destination-cities {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 12px;
}
.destination-cities h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
body {                                  /* Typography and Base Styles */
    font-family: 'Inter', sans-serif;   /* Main font */
    line-height: 1.6;                   /* Line spacing */
    color: #333;
    font-size: 16px;                    /* Base font size */
    background-color: var(--background);
    overflow-x: hidden;                 /* Prevent horizontal scroll */
    cursor: default;                    /* Default cursor */
}
header {                    /* Header Styles */
    position: fixed;        /* Fixed position */
    top: 0;
    width: 100%;
    background: #ffffff;
    backdrop-filter: blur(10px);    /* Frosted glass effect */
    z-index: 1000;                  /* Ensure header stays on top */
    padding: 1rem 2rem;
    transition: all 0.3s ease;      /* Smooth state changes */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);    /* Subtle shadow */
}
.more-countries {background-color: #f8f9fa;padding: 100px 0;}
.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.country-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.country-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.country-flag {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.country-flag-continued {
    width: 100%;
    height: 120px;
    object-fit: cover;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}
.country-name {
    padding: 15px 10px 5px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}
.country-info {
    padding: 0 20px 20px;
    font-size: 0.9rem;
    color: var(--light-text);
}
.popularity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
    color: #eab308;
}
header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
header.scrolled .logo-container {background: rgba(255, 255, 255, 0.98);}
.section-header {text-align: center;margin-bottom: 3rem;}
nav {display: flex;justify-content: space-between;align-items: center;}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.explore-button {
    display: inline-flex;
    align-items: center;
    background: none;
    color: white;
    font-weight: 600;
    padding: 0.5rem 0;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}
.explore-button:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: white;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}
.explore-button:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
.explore-button i {margin-left: 0.5rem;transition: transform 0.3s ease;}
.explore-button:hover i {transform: translateX(5px);}
.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}
.logo a {display: flex;align-items: center;gap: 12px;}
.logo-img {
    height: 40px;
    width: auto;
    border-radius: 8px;
    filter: brightness(0.95) contrast(1.1); /* Enhance logo visibility */
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: white;
    border-radius: 1px;
}
@media (max-width: 992px) {
    .logo-img {height: 32px;}
    .logo-container {padding: 6px 10px;}
}
@media (max-width: 768px) {
    .logo-img {height: 28px;}
    .logo-container {
        padding: 5px 8px;
        gap: 8px;
    }
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-links a:hover {color: #007bff;}
.apply-content .cta-button {
    display: inline-block; 
    width: auto; 
    padding: 0.7rem 2rem;
}
.cta-button, .outline-button, .destination-link {
    outline: none;
    position: relative;
    z-index: 10;
}
.cta-button:focus-visible, .outline-button:focus-visible, .destination-link:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}
.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff !important;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: transform var(--transition-fast), 
                background-color var(--transition-fast), 
                box-shadow var(--transition-fast);
}
.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.cta-content {max-width: 800px;margin: 0 auto;}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.apply-content {
  text-align: center; 
  display: flex;
  flex-direction: column;
  align-items: center; 
  gap: 1.5rem; 
}
.outline-button {
    display: inline-block;
    background-color: transparent;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    border: 2px solid #fff;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background-color var(--transition-fast), 
                color var(--transition-fast),
                transform var(--transition-fast);
}
.cta-button:hover, .outline-button:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}
.outline-button:hover {
    background-color: #fff;
    color: var(--accent-color);
    transform: translateY(-3px);
}
.cta-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}
section {
    min-height: 100vh;
    padding: 120px 2rem 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 4rem 0 2rem;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-info p {
    opacity: 0.7;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.footer-social {display: flex;gap: 1rem;}
.footer-links h3 {
    margin-top:25px;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}
.footer-links ul {list-style: none;}
.footer-links li {margin-bottom: 0.8rem;}
.footer-links a {
    opacity: 0.7;
    transition: opacity var(--transition-fast), 
                color var(--transition-fast),
                transform var(--transition-fast);
    display: inline-block;
}
.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
    transform: translateX(5px);
}
.footer-bottom-links {display: flex;gap: 2rem;}
.footer-bottom-links a {
    opacity: 0.7;
    transition: opacity var(--transition-fast), 
                color var(--transition-fast);
}
.footer-bottom-links a:hover {opacity: 1;color: var(--secondary-color);}
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.copyright p {opacity: 0.7;}
.back-to-top {
    position: fixed;
    bottom: -60px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 99;
    transition: bottom 0.3s, background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}
.back-to-top.visible {bottom: 30px;}
.back-to-top:hover {
    background-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}
.container {max-width: 1200px;margin: 0 auto;padding: 0 2rem;}
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}
.section-subtitle {
    color: #667eea;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}
.hero {
    min-height: 100vh;
    height: auto;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7)), 
                url('images/hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding-top: var(--header-height);
}
#iasBadge {position: absolute;bottom: 25px; left: 25px; }
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.hero h1 {font-size: 3.5rem;margin-bottom: 1.5rem;line-height: 1.2;}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.featured {background: #f8f9fa;margin: 69px;padding:0;  /*did myself*/
}
.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}
.services { 
    background: white; 
    margin: 69px; 
    padding:0;  
}
.about { 
    background: #f8f9fa; 
    margin: 0px; 
    padding:0;  
}
.destinations { 
    background: white; 
    margin: 0px; 
    padding:0;  
}
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}
.destination-image {
    position: relative;
    height: 300px;border-radius: 12px !important;
    overflow: hidden;
}
.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.destination-card {
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}
.destination-card:hover .destination-image img {transform: scale(1.1);}
.testimonial-link{
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--secondary-color);
    transition: color var(--transition-fast);
    bottom: 8px; /* Adjust as needed */
    right: 55px; /* Adjust for precise placement */
    position: absolute; /* This anchors it within the parent */
}
.testimonial-link i {
    margin-left: 0.5rem;
    transition: transform var(--transition-fast);
}
.testimonial-link:hover {color: var(--accent-color);}
.testimonial-link:hover i {transform: translateX(5px);}
.testimonials { 
    background: white; 
    margin: 0px; /*did myself*/
    padding:0;  /*did myself*/
    position:relative;
}
.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}
.testimonial-item {display: none;animation: fadeIn 0.5s ease forwards;}
.testimonial-item.active {display: block;}
.testimonial-content {
    background-color: #fff;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}
.testimonial-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--light-text);
    position: relative;
    z-index: 1;
}
.testimonial-author {display: flex;align-items: center;}
.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}
.testimonial-dots {display: flex;margin: 0 1rem;}
.prev-testimonial,.next-testimonial {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--light-text);
    cursor: pointer;
    transition: color var(--transition-fast);
}
.prev-testimonial:hover,.next-testimonial:hover {color: var(--secondary-color);}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d1d5db;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}
.dot.active {background-color: var(--secondary-color);}
.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}
.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}
.author-info p {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 0;
}
.quote {position: absolute;top: 2rem;left: 2rem;font-size: 2rem;color: rgba(59, 130, 246, 0.1);}
.cta {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    color: #fff;
    text-align: center;
}
.apply { background: white; }
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}
.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    color: #777;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.close-modal:hover {color: #333;background: rgba(0, 0, 0, 0.05);}
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    mix-blend-mode: difference;
}
.cursor-follower {
    position: fixed;
    width: 30px;
    height: 30px;
    background-color: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
    transition: 0.1s cubic-bezier(0.75, -0.27, 0.3, 1.33) transform, 
                0.3s cubic-bezier(0.75, -0.27, 0.3, 1.33) width, 
                0.3s cubic-bezier(0.75, -0.27, 0.3, 1.33) height,
                0.3s cubic-bezier(0.75, -0.27, 0.3, 1.33) background-color,
                0.3s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
}
a:hover ~ .cursor-follower,button:hover ~ .cursor-follower {width: 50px;height: 50px;opacity: 0.5;}
.reveal-text {position: relative;overflow: visible;display: inline-block;}
.reveal-text.animate::after {
    display: block;
    animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.delay-1::after {animation-delay: 0.2s;}
.fade-in.delay-1 {transition-delay: 0.2s;}
.delay-2::after {animation-delay: 0.4s;}
.fade-in.delay-2 {transition-delay: 0.4s;}
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
}
.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
    margin-bottom: 10px;
}
.wheel {
    width: 4px;
    height: 8px;
    background-color: #fff;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 1.5s ease infinite;
}
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease, transform 1s ease;
}
.fade-in.visible {opacity: 1;transform: translateY(0);}
.fade-in.delay-3 {transition-delay: 0.6s;}
.fade-in.delay-4 {transition-delay: 0.8s;}
.fade-in.delay-5 {transition-delay: 1s;}
.text-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}
.text-block p {margin-bottom: 1.5rem;color: var(--light-text);}
.text-block h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}
.text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}
.feature-list {list-style: none;margin-top: 2rem;}
.feature-list {list-style: none;padding: 0;}
.feature-list li {margin-bottom: 1rem;display: flex;align-items: center;}
.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #555;
}
.feature-list i {
    margin-right: 1rem;
    color: var(--secondary-color);
    font-size: 1.2rem;
}
.feature-list i {
    color: #667eea;
    margin-right: 1rem;
    font-size: 1.2rem;
}
.image-block {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.image-block img, .reveal-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.reveal-image {position: relative;overflow: hidden;}
.reveal-image img {
    transform: scale(1);
    opacity: 1;
    transition: transform 1.5s cubic-bezier(0.65, 0, 0.35, 1), 
                opacity 0.5s ease;
}
.reveal-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    transform: translateX(-100%);
    z-index: 1;
}
.reveal-image.visible img {transform: scale(1);opacity: 1;}
.reveal-image.visible::before {animation: imageReveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;}
.image-block img, .reveal-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.services {background-color: var(--section-bg);}
.services {background: white;}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.service-card .icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}
.service-card p {color: var(--light-text);}
.service-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.service-card .icon i {font-size: 2rem;color: white;}
.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}
.service-card:hover {transform: translateY(-10px);}
.service-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.service-card .icon i {font-size: 2rem;color: white;}
.service-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}
.service-card p {color: #666;line-height: 1.6;}
.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: background-color var(--transition-fast),
                transform var(--transition-fast);
}
.social-icon:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}
.service-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.service-card .icon i {font-size: 2rem;color: white;}
.service-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.service-card .icon i {font-size: 2rem;color: white;}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    text-align: center;
}
.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    text-align: center;
}
.about-stat span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}
.about-stat p {font-size: 0.9rem;color: var(--light-text);}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
.about-stat {text-align: center;}
.about-stat span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}
.about-stat p {color: #666;font-weight: 500;}
.text-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom:1.5rem;
    transition: color var(--transition-fast);
}
.text-link i {
    margin-left: 0.5rem;
    transition: transform var(--transition-fast);
}
.text-link:hover {color: var(--accent-color);}
.text-link:hover i {transform: translateX(5px);}
.destination-link {
    pointer-events: auto;
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}
.destination-link i {
    margin-left: 0.5rem;
    transition: transform var(--transition-fast);
}
.destination-card:hover .destination-link {opacity: 1;}
.destination-card:hover .destination-link i {transform: translateX(5px);}
.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: #fff;
    transform: translateY(0);
    transition: transform var(--transition-medium);
}
.destination-overlay h3 {font-size: 1.5rem;margin-bottom: 1rem;}
.destination-card:hover .destination-overlay {transform: translateY(-10px);}
@keyframes reveal {
    0% {transform: translateX(-100%);}
    50% {transform: translateX(0);}
    100% {transform: translateX(100%);visibility: hidden; /* This will hide it after completion */}
}
@keyframes imageReveal {
    0% {transform: translateX(-100%);}
    50% {transform: translateX(0);}
    100% {transform: translateX(100%);}
}
@keyframes scroll {
    0% {transform: translateX(-50%) translateY(0);opacity: 1;}
    100% {transform: translateX(-50%) translateY(20px);opacity: 0;}
}
@keyframes fadeInMobile {
    from {opacity: 0;transform: translateY(15px);}
    to {opacity: 1;transform: translateY(0);}
}
@keyframes slideInLeftMobile {
    from {opacity: 0;transform: translateX(-20px);}
    to {opacity: 1;transform: translateX(0);}
}
@keyframes slideInRightMobile {
    from {opacity: 0;transform: translateX(20px);
    }
    to {opacity: 1;transform: translateX(0);}
}
@keyframes slideDown {
    from {opacity: 0;transform: translateY(-20px);}
    to {opacity: 1;transform: translateY(0);}
}
@keyframes fadeIn {
    from {opacity: 0;transform: translateY(20px);}
    to {opacity: 1;transform: translateY(0);}
}
@keyframes pulse {
    0% {transform: scale(1);}
    50% {transform: scale(1.05);}
    100% {transform: scale(1);}
}
@keyframes slideIn {
    from {transform: translateX(-30px);opacity: 0;}
    to {transform: translateX(0);opacity: 1;}
}
@keyframes modalFadeIn {
    from {opacity: 0;transform: translateY(-50px);}
    to {opacity: 1;transform: translateY(0);}
}
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        max-width: 400px;
        background-color: #fff;
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.5s cubic-bezier(0.65, 0, 0.35, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 100;
        padding: 2rem;
    }
    .nav-links.active {right: 0;}
    .hamburger {display: block;}
    .hamburger.active span:nth-child(1) {transform: translateY(8px) rotate(45deg);}
    .hamburger.active span:nth-child(2) {opacity: 0;}
    .hamburger.active span:nth-child(3) {transform: translateY(-8px) rotate(-45deg);}
    .featured-content,
    .about-content,
    .footer-content {grid-template-columns: 1fr;}
    .text-block,
    .image-block {grid-row: auto;}
    .hero h1 {font-size: 2.5rem;}
    .section-title {font-size: 2rem;}
}
@media (max-width: 768px) {
    section {padding: 60px 0;}
    .section-header {margin-bottom: 40px;}
    .container {padding: 0 20px;}
    .row {flex-direction: column;}
    .col-md-6 {width: 100%;margin-bottom: 30px;}
    h1 {font-size: 2.2rem;}
    h2 {font-size: 1.8rem;}
    h3 {font-size: 1.5rem;}
    .navbar {padding: 15px 0;}
    .navbar-toggle {display: block;}
    .navbar-collapse {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--bg-color);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }
    .navbar-collapse.active {display: block;animation: slideDown 0.3s ease-in-out;}
    .navbar-nav {flex-direction: column;padding: 20px;}
    .nav-item {margin: 10px 0;}
    .card {margin-bottom: 30px;}
    .card-body {padding: 20px;}
    .img-fluid {max-width: 100%;height: auto;}
    .btn-group {flex-direction: column;}
    .btn {margin: 5px 0;width: 100%;}
    input, select, textarea {font-size: 16px; /* Prevents iOS zoom on focus */}
    .grid-3, .grid-4 {grid-template-columns: 1fr 1fr;gap: 20px;}
    .feature-icon {margin-bottom: 15px;}
    .hero-content {text-align: center;}
    .hero-image {margin-top: 30px;max-width: 80%;margin-left: auto;margin-right: auto;}
    .testimonial {padding: 20px;}
    .footer-widgets { grid-template-columns: 1fr;gap: 30px;}
    .fade-in {animation: fadeInMobile 1s ease forwards;}
    .slide-in-left {animation: slideInLeftMobile 0.8s ease forwards;}
    .slide-in-right {animation: slideInRightMobile 0.8s ease forwards;}
}
@media (max-width: 768px) {
    .card:active,.btn:active,.nav-link:active {transform: scale(0.98);transition: transform 0.2s;}
    .feature-item {transition: all 0.3s ease;}
    .feature-item:active {background-color: rgba(var(--primary-rgb), 0.05);}
}
@media (max-width: 600px) {
    .hero-content {padding: 2rem 1rem;}
    .hero p {font-size: 1rem;}
    .btn {padding: 0.6rem 1.2rem;font-size: 0.9rem;}
    .feature-card {padding: 1rem;}
    .feature-icon {width: 50px;height: 50px;}
    .testimonial-card {padding: 1rem;}
    .testimonial-text {font-size: 0.9rem;}
    .client-info img {width: 40px;height: 40px;}
    .pricing-card {padding: 1rem;}
    .price {font-size: 1.5rem;}
    .footer {padding: 2rem 1rem;}
    .footer-links {flex-direction: column;gap: 1.5rem;}
}
@media (max-width: 480px) {
    .hero h1 {font-size: 1.8rem;}
    .section-title {font-size: 1.5rem;}
    .nav-menu {width: 80%;}
    .features-grid,
    .testimonials-grid,
    .pricing-grid {grid-template-columns: 1fr;}
    .feature-title {font-size: 1.2rem;}
    .cta-box {padding: 1.5rem 1rem;}
    .cta-title {font-size: 1.3rem;}
}
@media print {
    .header,.footer,.cta-section,.btn {display: none;}
    body {font-size: 12pt;color: #000;background: #fff;}
    .container {width: 100%;padding: 0;margin: 0;}
    a {color: #000;text-decoration: underline;}
    .section {page-break-inside: avoid;margin-bottom: 2cm;}
    h1, h2, h3 {page-break-after: avoid;}
}
@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #f5f5f5;
        --bg-color: #121212;
        --card-bg: #1e1e1e;
        --border-color: #333;
    }
    .header {background: rgba(30, 30, 30, 0.9);}
    .feature-card,.testimonial-card,.pricing-card,.contact-form textarea {background: var(--card-bg);}
    .btn-secondary {background: #333;color: #fff;}
    .btn-secondary:hover {background: #444;}
    img {filter: brightness(0.9);}
    .footer {background: #0a0a0a;}
    ::-webkit-scrollbar-track {background: #1a1a1a;}
}
@media (max-width: 768px) {
    .featured-content,.about-content {grid-template-columns: 1fr;gap: 2rem;}
    .services-grid {grid-template-columns: 1fr;gap: 1.5rem;}
    .about-stats {grid-template-columns: 1fr;gap: 1rem;}
}
.country-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}
.country-modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: modalFadeIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.country-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.country-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0;
}
.country-flag-continued{
    width: 100%;
    height: 120px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px;
}
.country-flag-continued img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.country-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--light-text);
    margin-bottom: 2rem;
    padding: 0 1rem;
}
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}
.program-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.program-card h4 {font-size: 1.25rem;margin-bottom: 1rem;color: var(--primary-color);}
.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}
.program-details p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
}
.program-details i {
    margin-right: 0.75rem;
    color: var(--secondary-color);
    min-width: 20px;
    margin-top: 3px;
}