* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --gray-light: #999999;
    --dark-gray: #111827;
    --beige-dark: #b49164;
    --beige-light: #c7ad8b;
    --gray-border: #e0e0e0;
    --gray-background: #e6e6e6;
    --gray-mid: #373737;
    --gray-dark-mid: #414141;
    --dark: #333333;
    --darker: #23282d;
    --darkest: #23282c;
    --off-white: #fafafa;
    --light-gray-background: #f5f5f5;
}

body {
    font-family: 'Gotham', 'ZaridSans-Regular', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    color: var(--dark);
    /* background-color: var(--off-white); */
}

.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}

/************************ Navbar Section *************************************/
/* Navbar */
.navbar {
    background-color: rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
    padding-top: 7px;
    padding-bottom: 7px;
}

.navbar.sticky {
    background-color: var(--darkest);
}

.contact-info {
    font-size: 10px;
    color: var(--off-white);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0px 55px;
}

.contact-info p {
    padding: 0 !important;
    margin: 0 !important;
}

.separator {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    width: 100vw;
    position: absolute;
    left: 0;
    margin-top: 5px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 5px;
}

.navbar .logo img {
    height: 50px;
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    justify-content: space-around;
    flex-grow: 1;
}

.nav-links li a {
    font-size: 12px;
    color: var(--off-white);
    font-weight: 500;
    padding: 8px 10px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-links li a:hover {
    color: var(--beige-light);
}

.nav-links .login-button {
    font-size: 12px;
    font-weight: 600;
    color: rgb(35, 40, 44) !important;
    background-color: rgb(180, 145, 100);
    box-shadow: rgba(199, 173, 139, 0.5) 0px 5px 15px;
    padding: 5px 20px;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.login-button:hover {
    background-color: rgb(185, 146, 94);
    color: #111 !important;
}

/* Dropdown Styles */
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: var(--darkest);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    list-style-type: none;
    padding: 10px 0;
    margin-top: 8px;
    z-index: 1000;
}

.dropdown-menu li a {
    color: var(--off-white);
    padding: 8px 20px;
    display: block;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.dropdown-menu.active {
    display: block;
    /* Show the dropdown when active */
}

.dropdown-icon {
    margin-left: 5px;
    /* Add some space between text and icon */
    font-size: 10px;
    /* Adjust size as needed */
    color: var(--off-white);
    /* Ensure the icon is visible */
    vertical-align: middle;
    /* Center vertically with text */
}

.dropdown-toggle:hover .dropdown-icon {
    color: var(--beige-light);
    /* Change color on hover */
}

.nav-links li:hover .dropdown-menu {
    display: block;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background-color: var(--off-white);
    margin: 4px 0;
}

.close-icon {
    display: none;
    color: var(--off-white);
    font-size: 24px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1002;
}


/************************ Navbar Section Ends*************************************/

/**************************** Banner Section *************************************/
.banner {
    position: relative;
    margin-top: -80px;
    z-index: -1;
    overflow: hidden;
    height: calc(92vh + 50px);
}

.banner::before {
    content: "";
    position: absolute;
    top: 72%;
    left: 0px;
    width: 103%;
    height: 72%;
    background-image: url(assets/hero-section-svg.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
    opacity: 0.6;
    transform: scaleX(-1.2);
}

.banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 33%;
    /* Ensure */
    background-image: url('assets/hero-wave-dark.png');
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: 1;
}

.carousel {
    position: relative;
    background-color: #000;
    /* Ensures no white flash */
    overflow: hidden;

}

.carousel .slide {

    position: relative;
    background-color: #000;
    /* Background for each slide */
}

.carousel .slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* Adjust overlay color and opacity */
    z-index: 1;
}


.carousel img {
    width: 100%;
    height: calc(100vh + 80px);
    object-fit: cover;
    animation: zoom-out 8s infinite;
    z-index: 0;
}


.carousel .title {
    max-width: 1200px !important;
    margin: 0 auto;
    position: absolute;
    top: 13rem;
    left: 8rem;
    color: var(--off-white);
    font-size: 36px;
    font-weight: 500;
    padding-left: 2vw;
    padding-right: 7vw;
    border-radius: 5px;
    font-family: 'Gotham', 'ZaridSans-Regular', ui-sans-serif, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}


/* Zoom out effect */
@keyframes zoom-out {
    0% {
        transform: scale(1.1);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/************************ Banner Section Ends*************************************/

/************************ Service Section *************************************/

.service-section {
    max-width: 1360px;
    margin: 0 auto;
    padding-top: 2.5rem;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;

}

.service-title-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 1rem;
    padding-left: 3.8vw;
    padding-right: 3vw;
}

.service-title-section h3 {
    color: rgb(35, 40, 45);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 600;
    font-family: Gotham-Regular, ZaridSans-Regular, sans-serif;
}

.service-button {
    border: 1px solid #b49164;
    background-color: transparent;
    color: #b49164;
    padding: 10px 7px;
    font-weight: 600;
    border-radius: 2px;
    text-decoration: none;
}


.slider-container {
    overflow: hidden;
    position: relative;
    padding-left: 3.2vw;
}

.slider {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.card {
    border-radius: 15px;
    padding: 20px;
    margin: 10px;
    /* margin included for spacing */
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 3px;
    text-align: left;
    flex: 0 0 auto;
    /* Allow cards to size based on content */
    width: calc(100% / 3 - 20px);
    /* Default to 3 cards on desktop */
}



.card h3 {
    color: rgb(51, 51, 51) !important;
    font-size: 12px !important;
    font-weight: 600;
}

.card p {
    font-size: 12px;
}

.icon-container {
    display: flex;
    align-items: center;
}

.icon-bg {
    background-color: #e0d2b250;
    border-radius: 50%;
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.service-icon {
    width: 20px;
}

.service-logo {
    width: 40px;
    margin: 0;
    padding: 0;
}

.title {
    font-size: 16px;
    color: #111;
    font-weight: 500;
    margin: 10px 0 20px;
}

.description {
    font-size: 10px;
    margin-bottom: 25px;
    color: #666;
}

.features {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    font-size: 9px;
}

.features {
    color: #ccc !important;
}

.feature-icon {
    margin-right: 5px;
    filter: grayscale();
}

.divider {
    border: 0;
    border-top: 1px solid #e0e0e0;
    margin: 15px 0;
}

.service-section-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
}

.service-section-footer .logo {
    width: 100px;
    height: auto;
    padding: 0;
    margin: 0;
}

.card-btn {
    background-color: transparent;
    color: var(--beige-dark);
    border: none;
    padding: 0;
    margin: 0;
    border-radius: 5px;
    cursor: pointer;
}

.navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.arrow {
    cursor: pointer;
    font-size: 1.5rem;
    color: #b49164;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow i {
    display: inline-block;
}

.dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 50%;
    margin: 2px;
}

.dot.active {
    background-color: #b49164;
}

.arrow {
    padding: 5px;
}

.navigation .arrow+.dots {
    margin-left: 5px;
}

.navigation .dots+.arrow {
    margin-right: 5px;
}

/************************ Service Section Ends*************************************/

/************************ Destination-section ************************************/

.destination-section {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    background-color: var(--beige-dark);
    padding: 40px;
}

.destination-title-section {
    max-width: 1360px;
    margin: 0 auto;
    text-align: center;
    color: white;
    margin-bottom: 20px;
    padding-left: 4.9vw;
}

.destination-title {
    color: #fff;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    text-align: left;
    padding-top: 20px;
    padding-bottom: 25px;
}

.destination-subtitle {
    font-size: 16px;
    color: #f5f5f5;
    text-align: left;
    padding-bottom: 20px;
    padding-left: 0;
}

.destination-slider-container {
    position: relative;
    overflow: hidden;
    max-width: 1360px;
    margin: 0 auto;
    padding-left: 4.9vw;
}

.destination-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
    padding-top: 1%;
}

.destination-card {
    background-color: var(--beige-light);
    padding-bottom: 10px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    min-width: calc(100% / 3 - 40px);
    flex: 1;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.destination-card:hover {
    transform: scale(1.01);
    background-color: #fff;
}

.image-container {
    position: relative;

}

.destination-image {
    width: 100%;
    height: 380px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.image-overlay-title {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #23282c;
    color: #fdfbe0;
    font-size: 18px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 4px;
}


.description-container {
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
    transition: color 0.3s ease; 
}

.destination-description {
    font-size: 14px;
    color: #fff;
    transition: color 0.3s ease;
}

.destination-card:hover .destination-description {
    color: #000000;
}

.destination-divider {
    margin: 15px 0;
    background-color: #f5f5f5;
    height: 1px;
    transition: background-color 0.3s ease; 
}

.destination-card:hover .destination-divider {
    background-color: #000000; 
}

.destination-card-btn {
    background-color: #b49164;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease; 
    margin-left: 20px;
}

.destination-card:hover .destination-card-btn {
    background-color: #000000;
    color: #ffffff; 
}

.destination-card-btn:hover {
    background-color: #c7ad8b;
}


.destination-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.destination-left-arrow,
.destination-right-arrow {
    cursor: pointer;
    font-size: 24px;
    color: #fff;
    margin: 0 10px;
}

.destination-dots {
    display: flex;
    gap: 5px;
}

.destination-dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.destination-dot.active {
    background-color: #fff;
}

/************************ Destination-section Ends************************************/

/************************ Hero-section ************************************/

.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #23282c;
    color: white;
    height: 80vh;
}

.hero-content {
    display: flex;
    max-width: 1360px;
}

.hero-text {
    flex: 1;

}

.hero-text h1 {
    font-size: 30px !important;
    margin-bottom: 20px;
    font-weight: 500 !important;
}

.hero-text p {
    font-size: 16px !important;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: normal !important;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.primary-btn {
    background-color: #b49164;
    /* Adjust color as necessary */
    color: #fff;
}

.secondary-btn {
    background-color: transparent;
    border: 2px solid #b49164;
    color: #b49164;
}

.primary-btn:hover,
.secondary-btn:hover {
    opacity: 0.8;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 10%;
}

.hero-image img {
    max-width: 100%;
    width: 550px !important;
    height: 400px !important;
    border-radius: 10px;
    /* Optional for rounded corners */
}

/************************ Hero-section Ends************************************/

/************************ Success-Story-section ************************************/
.success-story-section {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: last baseline baseline;
    width: 100%;
    /* margin: 0 auto; */
    padding-top: 5rem;
    padding-left: 5.5rem;
    padding-right: 6vw;
    box-sizing: border-box;
    margin-bottom: 2.5rem;
    height: 70vh;
}

.stories-slider,
.youtube-channel {
    width: 48%;
    /* Equal width for both sides */
}

.stories-slider {
    text-align: center;
    padding-top: 40px;
}

.story h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.star-rating {
    font-size: 20px;
    color: gold;
    margin-bottom: 10px;
}

.description {
    font-size: 16px;
    margin-bottom: 20px;
}

.avatar img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.name-country {
    font-size: 14px;
    color: #555;
}

.youtube-channel iframe {
    border-radius: 10px;
}

/* Slider styles */
.stories-slider {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.stories-slider .story {
    width: 100%;
    display: none;
    /* Hide all stories initially */
    animation: fadeIn 1s ease-in-out forwards;
}

.stories-slider .story.active {
    display: block;
    /* Show active story */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/************************ Success-Story-section Ends************************************/


/************************ Hero-Paralax-section************************************/

.hero-paralax {
    position: relative;
    height: 100vh;
    background-image: url('assets/usa-banner.jpg');
    ;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    z-index: 1;
}

.hero-content-paralax {
    z-index: 2;
    padding-left: 8vw;
    padding-right: 8vw;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content-paralax h1 {
    margin-bottom: 1.5rem;
}

.hero-paralax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/************************ Hero-Paralax-section Ends************************************/

/************************ courses-slider *********************************************/


.course-section {
    max-width: 1360px;
    margin: 0 auto;
    padding-top: 2.5rem;
    overflow: hidden;
    text-align: center;
}

.course-title-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 1rem;
    padding-left: 4.4vw;
    padding-right: 2.5vw;
}
.all-courses-btn{
    background-color: transparent;
    color: #b49164;
    padding: 10px 20px;
    border: 1px solid #b49164;
    border-radius: 4px;
    cursor: pointer;
}

.course-title-section h3 {
    color: rgb(35, 40, 45);
    font-size: 1.6rem;
    padding-bottom: 1rem;
    font-style: normal;
    font-weight: 600;
    font-family: Gotham-Regular, ZaridSans-Regular, sans-serif;
}

.slick-slider-2 {
    margin-left: 4.4vw;
    position: relative;
    overflow: hidden;
    margin-right: 4.4vw;
}

.course-slide {
    padding: 0 10px;
}

.course-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 3rem;
}


.slick-prev,
.slick-next {
    background-color: rgba(0, 0, 0, 0.6);
    color: #b49164;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    position: absolute;
    bottom: -50px;
    z-index: 10;
}

.slick-prev {
    left: 45%;
    transform: translate(-100%, 0);
}

.slick-next {
    right: 45%;
    transform: translate(100%, 0);
}

.slick-dots {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    position: absolute;
    bottom: -50px;
    width: 100%;
    margin-top: 20px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #b49164;
    opacity: 1;
}

.slick-dots .slick-active button:before {
    color: #b49164;
    transform: scale(1.2);
}

.chevron.left::before {
    content: '<';
}

.chevron.right::before {
    content: '>';
}

/************************ Courses-Slider Section Ends *********************************************/


/************************ All Courses Section Starts *********************************************/

.all-courses-section {
    max-width: 1360px;
    margin: 0 auto;
    padding-top: 8rem;
    text-align: center;
    padding-left: 55px;
    padding-right: 45px;
}

.all-courses-section h2 {
    font-size: 2rem;
    color: #23302d;
}

.course-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    padding: 20px;
}

.course-card {
    text-decoration: none;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
    text-align: center;
}

.course-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.course-card h3 {
    font-size: 1.4rem;
    color: #23302d;
    margin: 10px 0;
}

.course-card p {
    color: #6b7a8f;
}

.course-card:hover {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}


/************************ All Courses Section Ends *********************************************/



/*********************************** EVENT-SECTION **********************************************/

.event-section {
    max-width: 1360px;
    margin: 0 auto;
    padding: 2.5rem 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 2.5rem;
    padding-left: 4.5vw;
}

.event-title-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.event-title-section h3 {
    color: rgb(35, 40, 45);
    font-size: 1.6rem;
    padding-bottom: 1rem;
    font-style: normal;
    font-weight: 600;
    font-family: Gotham-Regular, ZaridSans-Regular, sans-serif;
}

.event-button {
    background-color: transparent;
    color: #b49164;
    padding: 10px 20px;
    border: 1px solid #b49164;
    border-radius: 4px;
    cursor: pointer;
}

.event-slider-container {
    overflow: hidden;
}

.event-slider {
    display: flex;
    transition: transform 0.3s ease;
}

.event-card {
    background: white;
    border: 1px solid #e0e0e0;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 15px;
    text-align: center;
    border-radius: 8px;
    width: 360px;
    /* Set fixed width */
    flex-shrink: 0;
    /* Prevent shrinking */
    margin-right: 20px;
    /* Adjust for spacing */
    position: relative;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.event-image {
    width: 100%;
    height: 240px;
    /* Fixed height */
    object-fit: cover;
    /* Maintain aspect ratio */
    border-radius: 8px;
    transition: transform 0.3s ease;
    /* Transition for hover effect */
}

.event-card:hover .event-image {
    transform: scale(1.05);
    /* Zoom effect on hover */
}

.event-title {
    font-size: 14px;
    padding: 10px;
    margin: 10px 0;
}

.event-card p {
    font-size: 12px;
    padding: 5px;
}

.event-date,
.event-time {
    font-size: 14px;
    color: #999;
}

.event-divider {
    border: none;
    height: 2px;
    background-color: #b49164;
    /* Golden horizontal line */
    margin: 10px 0;
}

.event-detail-button {
    background-color: #b49164;
    /* Golden button */
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.event-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.event-arrow {
    cursor: pointer;
    margin: 0 10px;
    color: #b49164;
    /* Golden arrows */
    position: relative;
    /* Positioning context for the dots */
    display: flex;
    align-items: center;
    /* Center dots vertically with arrows */
}

.event-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Center dots vertically */
}

.event-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #999;
    margin: 0 3px;
    /* Adjusted margin for tighter spacing */
    cursor: pointer;
}

.event-dot.active {
    background: #b49164;
    /* Active dot color */
}

/* Adjust the left and right arrow icons to position with dots */
.left-event-arrow,
.right-event-arrow {
    position: relative;
    display: flex;
    align-items: center;
}


/*********************************** EVENT-SECTION ENDS **********************************************/

/************************************ FAQ-SECTION ****************************************************/


.faq-section {
    background-color: #23282d;
    padding: 40px;
    color: white;
    text-align: center;
    background-image: url('assets/hero-section-svg.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    padding-top: 5rem;
    padding-left: 5vw;
}


.faq-title {
    font-size: 2em;
    padding-bottom: 1rem;
    margin-bottom: 20px;
}

.faq-container {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-item {
    width: 45%;
    /* Two items per row */
    margin: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.faq-header {
    background-color: #b49164;
    /* Golden background */
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-header h3 {
    margin: 0;
    color: white;
    font-size: 15px;
    font-weight: 600;
}

.faq-content {
    background-color: #333;
    /* Darker background for content */
    padding: 15px;
    display: none;
    /* Initially hidden */
}

.faq-header i {
    font-size: 1.2em;
    color: white;
    /* Icon color */
}


.faq-image {
    display: block;
    /* Center the image */
    margin: 20px auto 0;
    /* Adjust margin as needed */
    max-width: 100%;
    /* Ensure it scales with the container */
    height: 2%;
    /* Maintain aspect ratio */
    position: absolute;
    /* Position the image absolutely */
    bottom: 0;
    /* Align the image to the bottom of the section */
    left: 50%;
    /* Center the image horizontally */
    transform: translateX(-50%);
    /* Adjust for center alignment */
}

/************************************ FAQ-SECTION ENDS****************************************************/

/* ********************************** PARTNER-SECTIONS **************************************************/

.partners-section {
    padding: 50px 0;
    overflow: hidden;
    padding-left: 2vw;
    padding-right: 2vw;
}

.partners-section h3 {
    font-size: 28px;
    font-weight: 500;
    max-width: 1200px;
    margin: 0 auto;
}

.partners-slider {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 30px;
    /* Space between logos */
    animation: scroll 30s linear infinite;
    /* Slowing down the speed to 30s */
}

.logo img {
    width: 150px;
    /* Ensures all logos have the same width */
    height: 150px;
    /* Ensures all logos have the same height */
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Move halfway through to make the loop seamless */
    }
}

/* ********************************** PARTNER-SECTIONS ENDS **************************************************/

/************************************** Footer *****************************************************************/

.footer {
    background-color: #333333;
    /* Dark background */
    color: #e6e6e6;
    /* Light text color */
    font-size: 14px;
    padding-top: 40px;
    padding-bottom: 10px;
    padding-left: 6vw;
    padding-right: 4vw;
}

.footer .description {
    font-size: 9px !important;
}

.footer-top {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 0 35px;
}

.footer-col {
    flex: 1;
    padding: 0 10px;
    position: relative;
}

.footer-left {
    flex: 1.5;
}

.footer-col i {
    margin-right: 10px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;

}

.footer-col ul li {
    margin: 8px 0;
    display: flex;
    align-items: center;
    padding-bottom: 10px;
}

/* Link styles */
.footer-col ul li a {
    color: #c7ad8b;
    /* Light brown color for links */
    text-decoration: none;
    /* Remove underline */
    transition: color 0.3s;
    /* Smooth color transition */
    font-size: 11px;
}

.footer-col ul li a:hover {
    color: #b49164;
    /* Highlight color on hover */
}

.footer-left .logo-section {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-left .logo {
    width: 40px;
    height: auto;
}

.footer-left .logo-2 {
    width: 160px;
    height: auto;
}

.footer-left .logo-3 {
    width: 60px;
    height: auto;
}

.footer-left .description {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #999999;
    /* Light grey for description */
}

/* Link styles for footer links */
.footer-links {
    text-align: left;
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #fff;
    font-size: 9px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #414141;
    /* Subtle top border */
    padding: 10px 45px 0px 45px;
}

.footer-bottom .footer-links a:hover {
    color: #b49164;
}

.footer-bottom p {
    margin: 0;
    font-size: 10px;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #b49164;
    /* Button color */
    color: #ffffff;
    /* Button text color */
    padding: 10px;
    border-radius: 50%;
    /* Round shape */
    text-align: center;
    display: none;
    /* Hidden by default */
}

/* Vertical lines between columns */
.footer-col::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #414141;
    /* Vertical line color */
}


.footer-col:last-child::after {
    display: none;
    /* No vertical line on the last column */
}


/* Social links */
.social-links {
    display: flex;
    gap: 15px;
    /* Spacing between icons */
    margin-top: 10px;
}

.social-links a {
    color: #b49164;
    /* Color for social icons */
    text-decoration: none;
    /* Remove underline */
}


/************************************** Footer *****************************************************************/

/************************************** Scroll on Top Button *****************************************************************/
/* Scroll to Top Button */
#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none; /* Initially hidden */
    width: 50px;
    height: 50px;
    background-color: #c7ad8b;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

#scrollToTopBtn:hover {
    background-color: #b49164;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Smooth scroll behavior for html */
html {
    scroll-behavior: smooth;
}
/************************************** Scroll on Top Button ends *****************************************************************/

/************************************************* Responsive Layout *************************************************************/


@media (min-width: 1025px) {
    .destination-card {
        min-width: calc(33.33% - 20px); /* Display 3 cards per view on desktop */
    }
}

@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        height: auto;
        padding: 40px 20px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .hero-image img {
        height: auto;
    }

    .success-story-section {
        flex-direction: column;
        padding: 3rem 2rem;
    }
    
    .stories-slider,
    .youtube-channel {
        width: 100%;
        margin-bottom: 2rem;
    }
    .event-card {
        width: 50%;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .destination-card {
        min-width: calc(50% - 20px); /* Display 2 cards per view on tablet */
    }
}

@media (max-width: 768px) {
    .container{
        width: 100%;
        padding: 0 1rem;
    }
    .contact-info{
        width: 100%;
        padding-top: 0;
        padding-bottom: 0;
        padding-right: 3.5rem;
        padding-left: 0;
    }
     /* Mobile menu */
     .navbar {
        background-color: var(--darkest);
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        background-color: var(--darkest);
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        padding: 0;
        margin: 0;
        justify-content: flex-start;
    }
    .nav-links li {
        margin-top: 70px;
        /* padding-bottom: 20px;  */
    }

    .nav-links li a {
        padding: 5px 0;
        line-height: 1;
        font-size: 24px;
    }
    .nav-links.active {
        display: flex;
        transform: translateX(0);
    }
    .dropdown-menu {
        width: 90%;
        left: 5%;
        align-items: center;
        padding: 20px;
    }

    .hamburger {
        display: flex;
    }

    .close-icon {
        display: block;
    }


    .banner {
        height: calc(100vh + 80px);
    }

    .carousel img {
        width: 100vw;
        height: calc(100vh + 80px);
        object-fit: cover;
        animation: zoom-out 8s infinite;
        z-index: 0;
    }

    .carousel .title {
        width: 100%;
        margin: 0 auto;
        position: absolute;
        top: 15rem;
        left: 0;
        padding-left: 1rem;
        color: var(--off-white);
        font-size: 36px;
        font-weight: 500;
        border-radius: 5px;

    }

    .banner::before {
        content: "";
        position: absolute;
        top: 82%;
        left: 0px;
        width: 140%;
        height: 28%;
        background-image: url(assets/hero-section-svg.png);
        background-size: cover;
        background-repeat: no-repeat;
        z-index: 2;
        opacity: 0.6;
        transform: scaleX(-1);
    }

    .banner::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100vw;
        height: 23%;
        /* Ensure */
        background-image: url('assets/hero-wave-dark.png');
        background-size: cover;
        background-repeat: no-repeat;
        opacity: 0.9;
        z-index: 1;
    }

    .service-section {
        padding-left: 0;
        /* padding-right: 3rem; */
    }

    .service-title-section {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .service-title-section h3 {
        font-size: 16px;
    }

    .card {
        width: calc(100% / 2 - 20px);
    }

    .study-card {
        flex: 0 0 calc(100% / 2 - 20px);
    }
    .destination-card {
        min-width: calc(100% - 20px); 
    }

    .hero-section {
        padding: 20px;
        height: auto;
    }

    .hero-content {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-image img {
        width: 100%;
        margin-left: -11%;
        padding-bottom: 1rem;
    }

    .success-story-section {
        padding: 2rem 1rem;
    }
    
    .stories-slider h2 {
        font-size: 20px;
    }

    .description {
        font-size: 14px;
    }

    .star-rating {
        font-size: 18px;
    }
 
    .course-slide img {
        width: 100%;
        height: auto;
    }

    .all-courses-section{
        width: 100%;
        padding-top: 7rem;
        padding-bottom: 0;
        padding-right: 0;
        padding-left: 0;
    }
    .slick-prev,
    .slick-next {
        bottom: -40px;
    }
    .event-card {
        width: 100%;
    }

    .event-title-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .event-button {
        margin-top: 1rem;
    }
    .faq-title {
        font-size: 1.5em;
    }

    .faq-header h3 {
        font-size: 1.2em;
    }

    .faq-container {
        padding: 0 20px;
    }

    .faq-item {
        width: 100%;
    }
    .footer-top {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .footer-col {
        width: 100%;
        padding: 15px 0;
        border-top: 1px solid #414141;
        /* Horizontal line on top */
    }

    /* Remove vertical line between columns on mobile */
    .footer-col::after {
        display: none;
    }

    /* Add horizontal lines between sections on mobile */
    .footer-col:not(:first-child) {
        border-top: 1px solid #414141;
        /* Adds horizontal line between sections */
    }

    .footer-left {
        text-align: center;
    }

    .footer-left .logo-section {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .footer-links {
        text-align: center;
        font-size: 11px;
        margin-bottom: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .footer-bottom p {
        font-size: 9px;
        margin-top: 10px;
    }

    /* Social links centered on mobile */
    .social-links {
        justify-content: center;
    }
}


@media (max-width: 480px) {
    .card {
        width: calc(100% - 20px);
    }

    .study-card {
        flex: 0 0 100%;
    }

    .hero-text h1 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-image img {
        width: 100%;
    }
    .success-story-section {
        padding: 1.5rem 1rem;
    }
    
    .stories-slider h2 {
        font-size: 18px;
    }

    .description {
        font-size: 13px;
    }

    .avatar img {
        width: 60px;
        height: 60px;
    }

    .name-country {
        font-size: 12px;
    }
    .faq-title {
        font-size: 1.2em;
    }

    .faq-header h3 {
        font-size: 1em;
    }

    .faq-header i {
        font-size: 1em;
    }

    .faq-content {
        font-size: 0.9em;
    }
}



/****************************** Contact Us Page *************************************/
.contact-container{
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}
.contact-us-section{
    margin-top: 6rem;
    padding: 20px;
}
.contact-us-section h2{
    text-align: center;
    font-size: 32px;
    font-weight: 500;
}
  .contact-us-info {
    display: flex;
    justify-content: space-around;
    padding: 20px;
  }
  
  .contact-card {
    background-color: var(--off-white);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    width: 22%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .contact-card i {
    font-size: 2rem;
    color: var(--beige-dark);
    margin-bottom: 10px;
  }
  
  .contact-card h3 {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 18px;
  }
  .contact-card p{
    font-size: 12px;
  }
  
  .address-section {
    padding: 40px;
    text-align: center;
  }
  
  .address-section h2 {
    font-size: 32px;
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 20px;
  }
  
  .address-cards {
    display: flex;
    justify-content: space-around;
  }
  
  .address-card {
    background-color: var(--off-white);
    width: 30%;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  .address-card h4{
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 18px;
  }
  .address-card p{
    font-size: 12px;
  }
  
  .address-card i {
    font-size: 1.5rem;
    color: var(--beige-dark);
  }
  
  .contact-main {
    display: flex;
    justify-content: space-between;
    padding: 40px;
  }
  
  .contact-form-section, .contact-map {
    width: 48%;
    background-color: var(--light-gray-background);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .contact-form-section h2 {
    color: var(--dark-gray);
    margin-bottom: 20px;
  }
  
  .contact-form-section label {
    display: block;
    margin: 10px 0 5px;
  }
  
  .contact-form-section input, .contact-form-section textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--gray-border);
    border-radius: 4px;
  }
  
  .contact-form-section button {
    width: 100%;
    padding: 10px;
    background-color: var(--beige-dark);
    border: none;
    color: white;
    font-size: 16px;
    margin-top: 15px;
    cursor: pointer;
  }
  
  .contact-form-section button:hover {
    background-color: var(--beige-light);
  }
  
  .contact-map iframe {
    border-radius: 8px;
    height: 100%;
  }
  
  @media (max-width: 768px) {
    .contact-us-info, .address-cards, .contact-main {
      flex-direction: column;
    }
    .contact-card, .address-card, .contact-form-section, .contact-map {
      width: 100%;
      margin-bottom: 20px;
    }
  }
  