/* Global Styles */
:root {
    --primary: #4169E1;
    --primary-dark: #2A4ECB;
    --secondary: #FFD700;
    --accent: #50C878;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --white: #ffffff;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--dark);
    border: 2px solid var(--secondary);
}

.btn-secondary:hover {
    background-color: #e6c300;
    border-color: #e6c300;
}

/* Call Button Styles */
.call-btn {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    margin-right: 10px;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.call-btn:hover {
    background-color: var(--primary);
    color: white;
}

.call-btn i {
    margin-right: 5px;
}

/* Adjust header CTA spacing */
.header-cta {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between CTA buttons */
}

@media (max-width: 992px) {
    .header-cta {
        display: none;
    }
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    text-align: center;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary);
    margin: 10px auto;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-title {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    text-align: center;
    margin-bottom: 3rem;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between; /* Distribute space evenly */
    align-items: center;
    flex-wrap: wrap;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    flex-grow: 1; /* Allow logo to take available space */
    max-width: 40%; /* Limit logo width to prevent overcrowding */
}

.logo img {
    width: 80px;
    max-width: 15vw;
    height: auto;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.logo-text h1 {
    font-size: 1.2rem;
    color: var(--primary);
    margin: 0;
}

.logo-text p {
    font-size: 0.65rem;
    color: var(--gray);
    margin: 0;
}

.nav-desktop {
    display: flex;
    align-items: center;
    flex-grow: 2; /* Allow navigation to expand */
}

.nav-desktop ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.nav-desktop ul li {
    margin: 0 15px;
}

.nav-desktop ul li a {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-desktop ul li a:hover,
.nav-desktop ul li a.active {
    color: var(--primary);
}

.nav-desktop ul {
    flex-wrap: wrap; /* Allow menu items to wrap */
    justify-content: center;
}
.header-cta {
    display: flex;
    align-items: center;
    flex-grow: 1; /* Allow CTA to take available space */
    justify-content: flex-end; /* Align CTA to the right */
}

.phone-link {
    display: flex;
    align-items: center;
    margin-right: 15px;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.phone-link i {
    margin-right: 5px;
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--primary);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 12px;
}

.mobile-menu ul li a {
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
}

.mobile-menu ul li a.active {
    color: var(--primary);
}

/* Mobile Call Button */
.mobile-cta .call-now {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.65rem;
    text-decoration: none;
    color: white;
}

.mobile-cta .call-now span {
    display: block;
    margin-top: 2px;
}

@media (min-width: 993px) {
    .mobile-cta {
        display: none;
    }
}
/*add on*/
@media (min-width: 801px) and (max-width: 1199px) {
    .header-container {
        padding: 0 15px;
    }
    
    .nav-desktop ul li {
        margin: 0 8px; /* Reduce spacing */
    }
    
    .btn {
        padding: 10px 18px; /* Slightly smaller buttons */
    }
    
    .container {
        max-width: 95%; /* Use more screen real estate */
    }
}/*end*/

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: 70px;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 100%;
    padding: 0 20px;
    max-width: 800px;
    z-index: 2;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slide-content .cta-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 0 20px;
    flex-wrap: wrap;
}

.btn-primary.call-btn,
.btn-primary.book-btn {
    padding: 12px 24px;
    font-size: 1.1rem;
    min-width: 120px;
    transition: all 0.3s ease;
}

.btn-primary.call-btn i,
.btn-primary.book-btn i {
    margin-right: 8px;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.slider-controls button:hover {
    background: rgba(255, 255, 255, 0.4);
}

.slider-dots {
    display: flex;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Mobile Adjustments for Hero Slider */
@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 400px;
    }

    .slide-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .slide-content p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .slide-content .cta-buttons {
        justify-content: center;
        gap: 15px;
        margin: 0 15px;
    }

    .btn-primary.call-btn,
    .btn-primary.book-btn {
        padding: 10px 20px;
        font-size: 1rem;
        min-width: 100px;
    }

    .slider-controls {
        bottom: 15px;
    }

    .slider-controls button {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 60vh;
        min-height: 350px;
    }

    .slide-content h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .slide-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .slide-content .cta-buttons {
        flex-direction: column;
        gap: 10px;
        margin: 0 10px;
    }

    .btn-primary.call-btn,
    .btn-primary.book-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
        min-width: 90px;
    }

    .slider-controls button {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .dot {
        width: 8px;
        height: 8px;
    }
}

/* Core Values Section */
.core-values {
    padding: 80px 0;
    background-color: var(--light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}
/* Style for "Key Highlights" heading */
.country-highlights h4 {
    color: #4169E1; /* blue color */
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1.1rem;
}


/* Center the heading and paragraph */
.value-card h3,
.value-card p {
  text-align: center;
}

/* Style for Key Advantages section */
.country-highlights {
  text-align: center;
  margin: 20px auto;
  max-width: 600px;
}

/* Center the "Key Advantages" heading */
.country-highlights h4 {
  text-align: center;
  margin-bottom: 15px;
}

/* Left-align the list items but keep them centered in container */
.country-highlights ul {
  display: inline-block;
  text-align: left;
  padding-left: 20px;
  margin: 0 auto;
}

/* List item styling */
.country-highlights li {
  margin-bottom: 10px;
  padding-left: 5px;
}
@media (max-width: 768px) {
  .country-highlights {
    max-width: 90%;
  }
}
  
  .country-highlights ul {
    padding-left: 15px;
  }

/* Added responsive styles for country advantages */
.country-highlights {
    display: none;
}

.country-highlights.show {
    display: block;
}


.toggle-advantages {
    margin-top: 15px;
    width: auto; /* Lets content dictate width */
    padding: 10px 24px; /* Match "Learn More" button padding */
    display: inline-block;
}

.country-highlights {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.country-highlights.show {
    max-height: 1000px; /* Adjust based on your content */
    transition: max-height 0.5s ease-in;
}

.advantages-list {
    margin: 15px 0;
    padding-left: 20px;
}

.advantages-list li {
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Mobile CTA Buttons */
.mobile-cta {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 998;
    padding: 10px;
    justify-content: space-around;
    align-items: center;
}

.mobile-cta a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--primary);
    font-size: 0.8rem;
    flex: 1;
    padding: 5px;
}

.mobile-cta i {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.mobile-cta .call-now {
    color: var(--primary);
}

.mobile-cta .whatsapp {
    color: var(--primary); /* royal blue */
}

.mobile-cta .book {
    color: var(--primary);
}

@media (max-width: 768px) {
    .mobile-cta {
        display: flex;
    }

}/* Sticky CTA Buttons */
.sticky-cta.call {
    background-color: var(--primary);
}

@media (min-width: 769px) {
    .sticky-cta.call {
        display: none; /* Hides the call button on desktop */
    }
}

@media (max-width: 992px) {
    .header-cta {
        display: none; /* Keep this to hide the desktop CTA */
    }
    
    /* Add this to show a simplified call button in header */
    .mobile-call-btn {
        display: flex;
        align-items: center;
        padding: 8px 12px;
        background-color: var(--primary);
        color: white;
        border-radius: 4px;
        margin-right: 10px;
    }
    
    .mobile-call-btn i {
        margin-right: 5px;
    }
}

/* Services Preview Section */
.services-preview {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 20px;
    background: var(--white);
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.service-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.reason-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    text-align: center;
}

.reason-card:hover {
    transform: translateY(-10px);
}

.reason-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background-color:#D4AF37;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--dark);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn i {
    margin-right: 8px;
}

.cta-section a.btn:hover {
    background-color: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
}

/* Why Choose Us Section - Responsive with New Color Scheme */
.why-choose-us {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.why-choose-us .container {
    position: relative;
    z-index: 2;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #4169E1;
    position: relative;
}

.why-choose-us h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.reason-card {
    background: white;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #4169E1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.reason-card:hover::before {
    transform: scaleX(1);
}

.reason-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(65, 105, 225, 0.1);
    border-radius: 50%;
    color: #4169E1;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.reason-card:hover .reason-icon {
    background: #ffd700;
    color: white;
    transform: rotateY(180deg);
}

.reason-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #4169E1;
}

.reason-card p {
    color: #333;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-desktop ul li {
        margin: 0 10px;
    }

    .header-container {
        justify-content: center; /* Center on medium screens */
    }

    .logo {
        max-width: 50%; /* Allow more space for logo on medium screens */
    }

    .nav-desktop {
        flex-grow: 1;
        justify-content: center;
    }

    .header-cta {
        display: none; /* Hide CTA on medium screens */
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }
    
    .why-choose-us h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .reason-card {
        padding: 25px 20px;
    }

    .logo img {
        width: 60px;
        max-width: 12vw;
    }

    .logo-text h1 {
        font-size: 1rem;
    }

    .logo-text p {
        font-size: 0.6rem;
    }

    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .header-container {
        justify-content: space-between; /* Distribute on small screens */
    }
}

@media (max-width: 576px) {
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .reason-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .logo img {
        width: 50px;
        max-width: 10vw;
    }

    .logo-text h1 {
        font-size: 0.9rem;
    }

    .logo-text p {
        font-size: 0.55rem;
    }

    .mobile-menu ul li a {
        font-size: 0.9rem;
    }

    .header-container {
        padding: 0 10px; /* Reduce padding on very small screens */
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--primary);
    color: var(--white);
}

.testimonials .section-title,
.testimonials .section-subtitle {
    color: var(--white);
}

.testimonials .section-title:after {
    background: var(--secondary);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    text-align: center;
    padding: 30px;
    display: none;
}

.testimonial.active {
    display: block;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.testimonial p:before,
.testimonial p:after {
    content: '"';
    font-size: 2rem;
    color: var(--secondary);
    opacity: 0.5;
}

.client {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--secondary);
}

.client h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.client span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

.footer-col p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--secondary);
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    color: var(--secondary);
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: flex;
    animation: pulse 2s infinite;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.sticky-cta i {
    margin-right: 10px;
}

/* Hide on mobile (screens less than 992px) */
@media (max-width: 992px) {
    .sticky-cta {
        display: none !important;
    }
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(65, 105, 225, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(65, 105, 225, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(65, 105, 225, 0);
    }
}

/* Page-specific styles */
/* About Page */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/about-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.mission-vision {
    padding: 80px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mv-card {
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mv-card.mission {
    background-color: var(--primary);
    color: var(--white);
}

.mv-card.vision {
    background-color: var(--secondary);
    color: var(--dark);
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mv-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.core-values-about {
    padding: 80px 0;
    background-color: var(--light);
}

.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid var(--light);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.position {
    color: var(--gray);
    margin-bottom: 15px;
    font-weight: 600;
}

.bio {
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-social a {
    width: 35px;
    height: 35px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.stats-section {
    padding: 60px 0;
    background-color: var(--primary);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary);
}

.stat-label {
    font-size: 1.1rem;
}

.stats-section .stat-card:nth-child(1) .stat-number {
    content: "99%";
}

.stats-section .stat-card:nth-child(1) .stat-label {
    content: "customer satisfaction";
}

/* Services Page */
.services-main {
    padding: 100px 0 60px;
}

.service-categories {
    margin-top: 40px;
}

.category-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 60px;
}

.category-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-image img {
    width: 100%;
    height: auto;
    display: block;
}

.category-content {
    text-align: left;
}

.category-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.category-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--gray);
}

.travel-details {
    padding: 60px 0;
    background-color: var(--light);
}

.travel-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.travel-cta {
    text-align: center;
    margin-top: 40px;
    padding: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
}

.travel-cta h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.travel-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Study Abroad Page */
.study-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/study-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
}

.study-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

/* Study Abroad Grid Layout */
.study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.study-card {
    /* Don't set max-width or auto margins here */
    padding: 20px;
    /* other styles */
}

.service-nav {
    background: var(--primary);
    padding: 20px 0;
    position: sticky;
    top: 70px;
    z-index: 900;
}

.nav-tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nav-tabs::-webkit-scrollbar {
    display: none;
}

.nav-tab {
    padding: 10px 20px;
    color: var(--white);
    font-weight: 600;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.nav-tab.active {
    border-bottom-color: var(--secondary);
    color: var(--secondary);
}

.nav-tab:hover {
    color: var(--secondary);
}

.service-section {
    padding: 80px 0;
}

.service-section.alt {
    background-color: var(--light);
}

.service-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.service-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--gray);
}

.service-features {
    margin-bottom: 30px;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.service-features i {
    color: var(--accent);
    margin-right: 10px;
    margin-top: 3px;
}

.pricing {
    margin-bottom: 30px;
}

.pricing h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.price-option {
    margin-bottom: 10px;
}

.price-option h5 {
    font-size: 1rem;
    color: var(--gray);
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.service-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.step {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: 700;
}

.step h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.scholarship-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.type {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.type i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.type h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.success-rate {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.rate-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.rate-circle span {
    font-size: 2rem;
    font-weight: 700;
}

.rate-circle p {
    font-size: 0.8rem;
    margin: 0;
}

.rate-text {
    max-width: 200px;
    font-weight: 600;
}

.orientation-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.topic {
    padding: 15px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.topic h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.topic h4 i {
    margin-right: 10px;
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/contact-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.contact-main {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form {
    padding: 40px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(65, 105, 225, 0.2);
}

.form-group textarea {
    min-height: 150px;
}

.contact-info {
    padding: 40px;
}

.info-card {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 20px;
    margin-top: 5px;
}

.info-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.info-content p,
.info-content a {
    color: var(--gray);
}

.info-content a:hover {
    color: var(--primary);
}

.social-contact {
    margin-top: 40px;
}

.social-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.consultation-cta {
    padding: 60px 0;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* About Hero Section */
.about-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: url('../images/about_hero.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.study-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: url('../images/School.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.services-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: url('../images/Service_Hero.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.about-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

.btn-primary:hover {
    background-color: #1B5E20;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary i {
    margin-right: 10px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-content p {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 60vh;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.3rem;
    }
    .btn-primary {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .about-hero {
        height: 50vh;
        min-height: 400px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: url('../images/Contact_Hero1.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.contact-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-primary {
    background-color: #4169E1;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #FFD700;
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        height: 50vh;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .service-section .container,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        order: -1;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .sticky-cta {
        bottom: 10px;
        right: 10px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .category-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
    }
    
    .study-hero h1,
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-nav {
        top: 70px;
    }
}

/* Video Section Styles */
.video-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

@media (max-width: 768px) {
    .video-container iframe {
        height: 300px;
    }
}

/* Active page highlight */
nav ul li a.active {
    color: var(--primary);
    font-weight: 700;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 7px;
}

.footer-col .quick-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.footer-col .quick-links li {
    margin-bottom: 8px;
}

.footer-col .quick-links a {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col .quick-links a:hover {
    color: #4CAF50;
    transform: translateX(5px);
}

.footer-col .quick-links i {
    margin-right: 8px;
    color: #4CAF50;
}

/* Corner CTA Styles */
.corner-cta {
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (min-width: 993px) {
    .corner-cta {
        position: absolute;
        top: 15px;
        right: 20px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.9);
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .corner-cta .btn {
        margin: 5px 0;
        padding: 8px 12px;
        font-size: 0.9rem;
        width: 140px;
        text-align: center;
    }

    .corner-cta .call-btn {
        border-color: var(--primary);
        color: var(--primary);
    }

    .corner-cta .btn-primary {
        background-color: var(--primary);
        border-color: var(--primary);
    }
}

@media (max-width: 992px) {
    .corner-cta {
        display: none;
    }
}
