body {
    margin: 0;
}

header .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 15px 80px;
    padding: 0 0 0 40px;
    background-color: #ffffff;
    border-radius: 35px;
    box-shadow: 0 2px 4px #808080;
    display: flex;
    align-items: center;
    height: 70px;
    z-index: 1000;
    transition: border-radius 0.3s ease, margin 0.3s ease;
}

header .navbar.scrolled {
    border-radius: 0 !important;
    margin: 0 !important;
}

.logo {
    flex-shrink: 0;
    margin-right: 20px;
}

.logo-image {
    width: 85px;
    height: 47px;
    object-fit: contain;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-links {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: space-between;
}

.menu-items {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-grow: 1;
}

.menu-item {
    position: relative;
    cursor: pointer;
}

.menu-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #000000;
    transition: font-size 0.2s, font-weight 0.2s;
}

.menu-title:hover {
    font-size: 18px;
    font-weight: bold;
}

.menu-title::after {
    content: '';
    display: block;
    height: 3px;
    width: 0;
    background-color: #ff0000;
    border-radius: 2px;
    margin-top: 4px;
    transition: width 0.2s;
}

.menu-title:hover::after {
    width: 30px;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background-color: #372c5f;
    box-shadow: 0 4px 8px #808080;
    z-index: 1000;
}

.dropdown a {
    display: block;
    padding: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.dropdown a:hover {
    background-color: #c8243e;
    color: #ffffff;
}

.menu-item:hover .dropdown {
    display: block;
}

.join-membership-wrapper {
    flex-shrink: 0;
}

.join-membership {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 70px;
    background-color: #372c5f;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 35px;
    transition: border-radius 0.3s ease, margin 0.3s ease;
}

.join-membership.scrolledm {
    border-radius: 0 !important;

}

.join-membership:hover {
    background-color: #4d4d99;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    padding-top: 100px;
    /* Offset for fixed navbar */
}

.footer {
    background-color: #372c5f;
    padding: 20px 40px 5px;
    color: #ffffff;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    width: 64px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    white-space: pre-line;
}

.signup-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #c8243e;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
}

.signup-button:hover {
    background-color: #4d4d99;
}

.footer-columns {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 20px;
}

.footer-column {
    flex: 1;
}

.footer-title a {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    position: relative;
}

.footer-title a:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.footer-column li a {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    position: relative;
}

.footer-column li a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
}

.footer-divider {
    border-color: #ffffff80;
    margin: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    margin: 5px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.footer-copyright a {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    text-decoration: none;
    position: relative;
}

.footer-copyright a:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #ffffff;
    font-size: 30px;
    text-decoration: none;
}

.footer-social a:hover {
    color: #c8243e;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 20px 90px 0px;
}

.hero-text {
    max-width: 50%;
}

.hero-text h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: bold;
    color: #000000;
    margin: 0;
}

.hero-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #372c5f;
    margin: 20px 0 15px;
}

.hero-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: normal;
    color: #000000;
    margin: 0 0 20px;
}

.hero-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #000000;
    margin: 0 0 30px;
}

.explore-button,
.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 60px;
    background-color: #372c5f;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 20px;
}

.explore-button:hover,
.contact-button:hover {
    background-color: #4d4d99;
}

.contact-button {
    background-color: #c8243e;
}

.hero-image {
    max-height: 80vh;
    width: auto;
    max-width: 45%;
}

.circle {
    position: absolute;
    border-radius: 50%;
}

.circle-1 {
    top: 80px;
    left: 120px;
    height: 250px;
    width: 250px;
    background-color: #4d4d99;
    opacity: 0.2;
}

.circle-2 {
    top: 350px;
    left: calc(100% / 3.5);
    height: 25vh;
    width: 25vw;
    background-color: #c8243e;
    opacity: 0.2;
}

.circle-3 {
    bottom: 60px;
    left: 50px;
    height: 120px;
    width: 120px;
    background-color: #0000ff;
    opacity: 0.2;
}

.circle-4 {
    bottom: 150px;
    left: calc(100% / 2.5);
    height: 80px;
    width: 80px;
    background-color: #0000ff;
    opacity: 0.2;
}

.benefits-section,
.support-section {
    padding: 60px 0;
}

.benefits-section h2,
.support-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 20px;
}

.benefits-grid,
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.benefit-item h3,
.support-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #372c5f;
    margin-bottom: 10px;
}

.benefit-item p,
.support-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #000000;
}

.cta-section {
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-section p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 30px;
}

@media (max-width: 800px) {
    .navbar {
        margin: 15px 20px;
        padding: 0 20px;
        flex-wrap: wrap;
    }

    .navbar.scrolled {
        margin: 0;
    }

    .logo {
        margin-right: 10px;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #372c5f;
        padding: 20px;
        border-radius: 0 0 35px 35px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-items {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .menu-item {
        width: 100%;
    }

    .menu-title {
        color: #ffffff;
        padding: 10px;
    }

    .menu-title:hover {
        font-size: 16px;
        font-weight: normal;
    }

    .menu-title::after {
        display: none;
    }

    .dropdown {
        position: static;
        width: 100%;
        background-color: #4d4d99;
        display: none;
    }

    .dropdown.active {
        display: block;
    }

    .join-membership-wrapper {
        width: 100%;
    }

    .join-membership {
        width: 100%;
        border-radius: 0;
        margin-top: 10px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

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

    .footer-logo {
        width: 48px;
    }

    .footer-tagline {
        font-size: 13px;
    }

    .signup-button {
        width: 100%;
        height: 40px;
    }

    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }

    .footer-column {
        cursor: pointer;
    }

    .footer-column ul {
        display: none;
    }

    .footer-column.active ul {
        display: block;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .footer-social {
        justify-content: center;
        width: 100%;
    }

    .hero-section {
        min-height: auto;
        padding: 20px 20px 0px;
    }

    .hero-content {
        flex-direction: column;
        padding: 20px 20px 0px;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
    }

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

    .hero-text h2 {
        font-size: 28px;
    }

    .hero-text h3 {
        font-size: 24px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .explore-button,
    .contact-button {
        width: 100%;
        max-width: 250px;
    }

    .hero-image {
        max-width: 100%;
        margin-top: 20px;
    }

    .circle {
        display: none;
    }

    .benefits-grid,
    .support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefits-section,
    .support-section {
        padding: 40px 20px;
    }

    .cta-section {
        padding: 40px 20px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .cta-section p {
        font-size: 14px;
    }
}

.destinations-section,
.programs-section {
    padding: 60px 20px;
}

.destinations-section h2,
.programs-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 20px;
}

.destinations-grid,
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.destination-item h3,
.program-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #372c5f;
    margin-bottom: 10px;
}

.destination-item p,
.program-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #000000;
    line-height: 1.7;
}

@media (max-width: 800px) {

    .destinations-section,
    .programs-section {
        padding: 40px 10px;
    }

    .destinations-section h2,
    .programs-section h2 {
        font-size: 28px;
    }

    .destinations-grid,
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .destination-item h3,
    .program-item h3 {
        font-size: 20px;
    }

    .destination-item p,
    .program-item p {
        font-size: 14px;
    }
}

.process-section {
    padding: 60px 20px;
}

.process-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 20px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.process-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #372c5f;
    margin-bottom: 10px;
}

.process-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #000000;
    line-height: 1.7;
}

@media (max-width: 800px) {
    .process-section {
        padding: 40px 10px;
    }

    .process-section h2 {
        font-size: 28px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .process-item h3 {
        font-size: 20px;
    }

    .process-item p {
        font-size: 14px;
    }

    .process-item:empty {
        display: none;
    }
}

.hero-section {
    position: relative;
    padding: 20px 20px 20px;
    z-index: 1;
}

.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-text {
    position: absolute;
    top: 100px;
    left: 90px;
    width: 50%;
}

.hero-text h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 15px;
}

.hero-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #372c5f;
    margin-bottom: 10px;
}

.hero-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: normal;
    color: #000000;
    margin-bottom: 10px;
}

.hero-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #000000;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 30px;
    align-items: center;
}

.happy-card {
    width: 300px;
    height: 80px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 8px #808080;
}

.happy-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image {
    position: absolute;
    top: 100px;
    right: 50px;
    height: 100%;
    max-height: calc(100vh - 100px);
    object-fit: contain;
}

.hero-controls {
    position: absolute;
    bottom: 20px;
    right: 50px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.hero-prev,
.hero-next {
    background-color: #4d4d99;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-prev:hover,
.hero-next:hover {
    background-color: #372c5f;
}

.circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.circle-1 {
    height: 250px;
    width: 250px;
    background-color: rgba(77, 77, 153, 0.2);
}

.circle-2 {
    height: calc(100vh / 4);
    width: calc(100% / 4);
    background-color: rgba(200, 36, 62, 0.2);
}

.circle-3 {
    height: 130px;
    width: 100px;
    background-color: rgba(0, 0, 255, 0.2);
}

.circle-4 {
    height: 80px;
    width: 80px;
    background-color: rgba(0, 0, 255, 0.2);
}

.search-section {
    position: relative;
    padding: 120px 20px 60px;
}

.search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 66.67%;
    height: 30px;
    background-color: #f0efeb;
    border-bottom-right-radius: 50px;
}

.search-image.plane {
    position: absolute;
    top: 200px;
    right: 50px;
    width: 100px;
}

.search-image.arrows {
    position: absolute;
    top: 100px;
    right: 150px;
    width: 40px;
}

.search-section h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

.search-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 30px;
}

.search-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

.search-section p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #ffffff;
    font-weight: 300;
    text-align: center;
    margin-bottom: 45px;
}

.search-section .highlight {
    font-size: 25px;
    font-weight: 700;
}

.search-placeholder {
    width: calc(100% - 300px);
    text-align: center;
    color: #ffffff;
    font-size: 16px;
}

.why-choose-us-section {
    padding: 60px 20px;
    position: relative;
}

.why-choose-us-content {
    display: flex;
    gap: 40px;
}

.why-choose-us-left {
    flex: 1;
}

.student-image {
    width: 500px;
    height: 500px;
    object-fit: contain;
    transition: transform 1.2s ease, opacity 1.2s ease;
}

.why-choose-us-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.exper-card {
    width: 400px;
    height: 120px;
    box-shadow: 0 4px 8px #808080;
    border-radius: 12px;
    margin-bottom: 30px;
    transition: transform 0.8s ease;
}

.exper-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-choose-us-points {
    margin-bottom: 20px;
}

.why-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.point-number {
    width: 40px;
    height: 40px;
    background-color: #c8243e;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    margin-right: 12px;
    transition: transform 1.5s ease, opacity 1.5s ease;
}

.why-point p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #000000;
    flex: 1;
}

.fly-plane {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    transition: transform 1.2s ease, opacity 1.2s ease;
}

.destination-section {
    position: relative;
    padding: 60px 20px;
}

.world-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.dotted-down {
    position: absolute;
    top: 250px;
    left: 295px;
    width: 40px;
}

.dotted-right {
    position: absolute;
    bottom: 250px;
    left: 295px;
    width: 40px;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.country-card {
    width: 200px;
    height: 200px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.country-card:hover {
    transform: scale(1.1);
    background-color: #4d4d99;
}

.country-card img {
    width: 100px;
    height: 100px;
}

.country-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    margin-top: 12px;
}

.country-card:hover h4 {
    color: #ffffff;
}

.services-section {
    padding: 80px 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: scale(1.03);
    background-color: #372c5f;
    border-color: #372c5f;
}

.service-card img {
    width: 60px;
    height: 60px;
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    text-align: center;
    margin: 16px 0 12px;
}

.service-card:hover h3 {
    color: #ffffff;
}

.service-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #000000;
    text-align: center;
    line-height: 1.5;
}

.service-card:hover p {
    color: #ffffff;
}

.study-abroad-section {
    padding: 40px 20px;
}

.study-abroad-content {
    display: flex;
    gap: 80px;
}

.study-abroad-left {
    flex: 2;
    position: relative;
}

.airplane-image {
    position: absolute;
    top: -80px;
    left: 0;
    width: 240px;
    transition: transform 1.2s ease, opacity 1.2s ease;
}

.study-abroad-right {
    flex: 3;
}

.study-points {
    margin-bottom: 20px;
}

.study-point {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.study-point .point-number {
    width: 30px;
    height: 30px;
    background-color: #c8243e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    margin-right: 16px;
    transition: transform 1s ease, opacity 1s ease;
}

.study-point p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #ffffff;
}


.team-section {
    padding: 60px 20px;
}

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

.team-card {
    width: 300px;
    height: 400px;
    box-shadow: 0 4px 8px #808080;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.team-card:hover {
    transform: scale(1.05);
}

.team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.team-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.8);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background-color 0.2s ease;
}

.team-card:hover .team-card-overlay {
    background-color: rgba(77, 77, 153, 0.8);
}

.team-card-overlay h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.team-card-overlay p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #000000;
    margin: 0;
}

.whatsapp-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px #808080;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
}

.whatsapp-fab i {
    color: #ffffff;
    font-size: 40px;
}

@media (max-width: 800px) {
    .hero-section {
        padding: 80px 10px 40px;
        height: auto;
        min-height: 100vh;
    }

    .hero-slider {
        height: auto;
    }

    .hero-slide {
        position: relative;
        padding: 20px 0;
        height: auto;
    }

    .hero-text {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text h2 {
        font-size: 24px;
    }

    .hero-text h3 {
        font-size: 20px;
    }

    .hero-text p {
        font-size: 12px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .happy-card {
        width: 100%;
    }

    .hero-image {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        height: auto;
        margin-top: 20px;
    }

    .hero-controls {
        bottom: 10px;
        right: 10px;
    }

    .hero-prev,
    .hero-next {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .circle {
        display: none;
    }


    .search-section {
        padding: 80px 10px 40px;
    }

    .search-overlay {
        width: 100%;
    }

    .search-image.plane,
    .search-image.arrows {
        display: none;
    }

    .search-section h1,
    .search-section h2 {
        font-size: 32px;
    }

    .search-section h3 {
        font-size: 22px;
    }

    .search-section p {
        font-size: 14px;
    }

    .search-section .highlight {
        font-size: 18px;
    }

    .search-placeholder {
        width: 100%;
    }

    .why-choose-us-section {
        padding: 40px 10px;
    }

    .why-choose-us-content {
        flex-direction: column;
    }

    .student-image {
        width: 100%;
        height: auto;
    }

    .exper-card {
        width: 100%;
    }

    .destination-section {
        padding: 40px 10px;
    }

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

    .country-card {
        width: 100%;
    }

    .services-section {
        padding: 40px 10px;
    }

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

    .study-abroad-section {
        padding: 20px 10px;
    }

    .study-abroad-content {
        flex-direction: column;
        gap: 20px;
    }

    .airplane-image {
        position: relative;
        top: 0;
        width: 100%;
    }

    .team-section {
        padding: 40px 10px;
    }

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

    .team-card {
        width: 100%;
        height: 300px;
    }


}