/*--------------------------------------------------------------*/
/*--------------------------------------------------------------
#         Common Components In All Pages 
----------------------------------------------------------------*/
/*--------------------------------------------------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

/* slide to top button responsive */
@media (max-width:394px) {
    .scroll-top {
        height: 40px;
        width: 40px;
    }
}


/*--------------------------------------------------------------
        # Topics Styling
--------------------------------------------------------------*/
.topics {
    font-family: 'Dancing Script', cursive;
    /* font-family: "Arizonia", cursive; */
    font-size: 50px;
    text-align: center;
    /* margin-top: 80px;
    margin-bottom: 15px; */
    margin: 0%;
    color: rgb(118, 107, 107);
    /* text-shadow: 0 2px 2px rgba(8, 11, 209, 0.491); */

}

/* Extra Large devices (desktops, 1200px and up) */
@media (min-width: 1200px) {
    .topics {
        font-size: 55px;
        margin-top: 90px;
        /* margin-bottom: 20px; */
    }
}

/* Large devices (desktops, 992px and up) */
@media (max-width: 1199.98px) and (min-width: 992px) {
    .topics {
        font-size: 48px;
        margin-top: 70px;
        /* margin-bottom: 18px; */
    }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 991.98px) and (min-width: 768px) {
    .topics {
        font-size: 42px;
        margin-top: 60px;
        /* margin-bottom: 15px; */
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 767.98px) and (min-width: 576px) {
    .topics {
        font-size: 36px;
        margin-top: 50px;
        /* margin-bottom: 12px; */
        /* text-shadow: 0 2px 4px rgba(8, 11, 209, 0.92); */
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .topics {
        font-size: 28px;
        margin-top: 40px;
        /* margin-bottom: 10px; */
        /* text-shadow: 0 1px 3px rgba(8, 11, 209, 0.92); */
    }
}

/* Very small devices (phones, less than 400px) */
@media (max-width: 399.98px) {
    .topics {
        font-size: 24px;
        margin-top: 35px;
        /* margin-bottom: 8px; */
        /* text-shadow: 0 1px 3px rgba(8, 11, 209, 0.92); */
    }
}

/* Alternative version using Bootstrap breakpoints */
/* If you prefer Bootstrap's exact breakpoint values */

/*
.topic {
  font-family: 'Dancing Script', cursive;
  font-size: 50px;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 15px;
  color: white;
  text-shadow: 0 2px 5px rgba(8, 11, 209, 0.92);
}

// Bootstrap XL breakpoint (≥1200px)
@media (min-width: 1200px) {
  .topic {
    font-size: 55px;
    margin-top: 90px;
    margin-bottom: 20px;
  }
}

// Bootstrap LG breakpoint (≥992px)
@media (min-width: 992px) and (max-width: 1199.98px) {
  .topic {
    font-size: 48px;
    margin-top: 70px;
    margin-bottom: 18px;
  }
}

// Bootstrap MD breakpoint (≥768px)
@media (min-width: 768px) and (max-width: 991.98px) {
  .topic {
    font-size: 42px;
    margin-top: 60px;
    margin-bottom: 15px;
  }
}

// Bootstrap SM breakpoint (≥576px)
@media (min-width: 576px) and (max-width: 767.98px) {
  .topic {
    font-size: 36px;
    margin-top: 50px;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(8, 11, 209, 0.92);
  }
}

// Bootstrap XS (extra small) (<576px)
@media (max-width: 575.98px) {
  .topic {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 10px;
    text-shadow: 0 1px 3px rgba(8, 11, 209, 0.92);
  }
}
*/



/*--------------------------------------------------------------
        # Header Section
--------------------------------------------------------------*/
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* position: fixed; */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Logo Styles */
.logo {
    /* width: 45px; */
    height: 65px;
    /* border-radius: 50%; */
    /* background: conic-gradient(from 0deg, #FF6B35, #F7931E, #FFD23F, #7BC043, #00A651, #00B4A6, #0071BC, #2E3192, #662D91, #FF6B35); */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo::before {
    content: '';
    width: 35px;
    height: 35px;
    background: #1a365d;
    border-radius: 50%;
    position: absolute;
}


/* Navigation Styles */
.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #FF6B35 !important;
}

/* Contact Button */
.contact-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    ;
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #2d4a69;
    color: white;
    text-decoration: none;
}



/* Hamburger Button */
.hamburger-btn {
    background: #FFC107;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.hamburger-btn:hover {
    background: #FFB300;
    transform: scale(1.05);
}

/* Side Menu Overlay */
.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.side-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Side Menu - Default (Large Screens - slides from right) */
.side-menu {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    z-index: 2001;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.side-menu.active {
    right: 0;
}

/* Mobile Side Menu - slides from left */
@media (max-width: 992px) {
    .side-menu {
        left: -280px;
        right: auto;
        width: 280px;
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
        transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .side-menu.active {
        left: 0;
        right: auto;
    }
}

@media (max-width: 576px) {
    .side-menu {
        left: -100vw;
        width: 100vw;
    }

    .side-menu.active {
        left: 0;
    }
}

/* Side Menu Header */
.side-menu-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 20px 10px;
    position: relative;

}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-top: 5px;
    margin-right: 5px;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.side-brand-logo {
    /* width: 60px; */
    height: 80px;
    /* border-radius: 50%; */
    /* background: conic-gradient(from 0deg, #FF6B35, #F7931E, #FFD23F, #7BC043, #00A651, #00B4A6, #0071BC, #2E3192, #662D91, #FF6B35); */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* margin-bottom: 15px; */
}

.side-logo::before {
    content: '';
    width: 45px;
    height: 45px;
    background: #1a365d;
    border-radius: 50%;
    position: absolute;
}


/* Side Menu Content */
.side-menu-content {
    padding: 0;
}

.side-menu-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-menu-nav li {
    border-bottom: 1px solid #f0f0f0;
}

.side-menu-nav a {
    display: flex;
    align-items: center;
    padding: 18px 25px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.side-menu-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: #FF6B35;
    transition: width 0.3s ease;
}

.side-menu-nav a:hover {
    background: #f8f9fa;
    color: #FF6B35;
    padding-left: 35px;
}

.side-menu-nav a:hover::before {
    width: 4px;
}

.side-menu-nav i {
    margin-right: 15px;
    font-size: 1.1rem;
    width: 20px;
}

/* Hide navigation on large screens */
@media (min-width: 993px) {
    .side-menu-nav {
        display: none;
    }


}

/* Show navigation on small screens */
@media (max-width: 992px) {
    .side-menu-nav {
        display: block;
    }
}

/* Company Info Section */
.company-info {
    padding: 25px;
    background: #f8f9fa;
    margin: 20px;
    border-radius: 10px;
    border-left: 4px solid #0A2463;
}

.company-info h6 {
    color: #1a365d;
    font-weight: bold;
    margin-bottom: 15px;
}

.company-info p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: justify;
}

/* Contact Info */
.contact-info {
    padding: 20px 25px;
    border-top: 1px solid #f0f0f0;
}

.contact-info h6 {
    color: #1a365d;
    font-weight: bold;
    margin-bottom: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #666;
}

.contact-item i {
    margin-right: 12px;
    color: #FF6B35;
    width: 20px;
}

/* .contact-item .location{
    margin-bottom: 70px;
} */

.contact-item a {
    color: #666;
    text-decoration: none;
}

.contact-item a:hover {
    color: #FF6B35;
}

/* Animation Classes */
.slide-in {
    animation: slideInRight 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-out {
    animation: slideOutRight 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(100%);
    }
}

/* Left slide animations for mobile */
@media (max-width: 992px) {
    .slide-in {
        animation: slideInLeft 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .slide-out {
        animation: slideOutLeft 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0%);
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .navbar-nav {
        display: none;
    }

    .contact-btn {
        display: none;
    }



}


@media (max-width: 576px) {
    .brand-text {
        font-size: 1rem;
    }

}



/*--------------------------------------------------------------
        #           Footer Section
----------------------------------------------------------------*/

.footer-container {
    width: 100%;
    background-image: url(/Images/Footer.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.footer-container .footer {
    /* background-color: #00a3cc; */
    color: #474444;
    padding: 50px 0 30px;
}

.footer-container .footer .footer-brand img {
    height: auto;
    width: 100%;
    max-width: 300px;
}

.footer-container .footer .footer-brand .footer-description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.footer-container .footer .footer-brand .social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-container .footer .footer-brand .social-links .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #dfd3d3;
    color: #00a3cc;
    border-radius: 50%;
    text-decoration: none;
    font-size: 25px;
    transition: all 0.3s ease;
}

.footer-container .footer .footer-brand .social-links .social-link:hover {
    background-color: #00a3cc;
    color: #ffffff;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #474444;
}

.useful-links {
    list-style: none;
    padding: 0;
}

.useful-links li {
    margin-bottom: 15px;
}

.useful-links a {
    color: #474444;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.useful-links a:hover {
    text-decoration: underline;
}

.dropdown-indicator {
    color: #474444;
    font-size: 14px;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-address,
.contact-phone,
.contact-email {
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 15px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
}

.contact-address i,
.contact-phone i,
.contact-email i {
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-text {
    flex: 1;
}

.footer-contact img {
    height: auto;
    width: 100%;
    max-width: 300px;
    max-height: 100px;
    object-fit: contain;
}

.footer-divider {
    height: 1px;
    background-color: #474444;
    margin: 40px 0 20px;
}

.footer-bottom {
    font-size: 13px;
    padding: 10px 0;

}

.footer-links-bottom a {
    color: #474444;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links-bottom a:hover {
    /* color: white; */
    text-decoration: underline;
}

/* Additional responsive adjustments */
@media (max-width: 767.98px) {
    .footer-container .footer {
        padding: 40px 0 20px;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        margin-bottom: 30px;
    }

    .footer-brand:last-child,
    .footer-links:last-child,
    .footer-contact:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 575.98px) {
    .footer-links-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links-bottom a {
        margin: 0;
    }
}




/*--------------------------------------------------------------
# Scroll To Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1111000;
}

.scroll-top:hover {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgb(74, 74, 201);
    color: white;
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
}

.scroll-top i {
    font-size: 40px;
    font-weight: 700;
}


/*--------------------------------------------------------------
#       Whatsapp Bouncing Button Section
--------------------------------------------------------------*/

label {
    display: none;
}

#whats {
    font-size: 45px;
    position: absolute;
    font-weight: 800;
    border-radius: 50%;
    /* color: #128C7E; */
    color: #0da30f;
    /* color: white; */
    position: fixed;
    bottom: 1.2%;
    left: 1.5%;
    z-index: 1111000;

}

#whats:hover {
    /* transform: rotate(360deg);
  transition-duration: 1s; */
    color: #38C93B;
    /* color: white; */
}

/* Bouncing Effect of the Whatsapp Icon */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(0);
    }
}

.bounce-effect {
    animation: bounce 3s ease-in-out infinite;
    animation-delay: 5s;
}


.details {
    height: 200vh;
    width: 100%;
    background-color: chocolate;
}





/*--------------------------------------------------------------*/
/*--------------------------------------------------------------
#         Components Of Home Page 
----------------------------------------------------------------*/
/*--------------------------------------------------------------*/




/*--------------------------------------------------------------
        # Hero Section
--------------------------------------------------------------*/
.hero {
    height: 90vh;
    background: url('/Images/Backgrounds/Dubai-2.jpg') center/cover no-repeat,
        linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding-left: 5%;
}

/* Overlay for better content visibility */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero>.container-fluid {
    position: relative;
    z-index: 2;
}

.hero-texts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    padding: 2rem 0;
}

.welcome-text {
    font-family: "Ceviche One", system-ui;
    font-size: 3.125rem;
    /* 50px */
    color: white;
    margin-bottom: 0.5rem;
}

.hero-main-title {
    font-family: 'Pacifico', sans-serif;
    font-size: 3.75rem;
    /* 60px */
    font-weight: 400;
    color: rgb(255, 255, 255);
    box-shadow: 0 5px 15px rgba(126, 124, 124, 0.11);
    margin-bottom: 1rem;
}

.Wel {
    width: 100%;
    margin-bottom: 30px;
    font-size: 1.25rem;
    /* 20px */
    line-height: 1.5;
    text-align: left;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.993);
    color: white;
}

.discover-btn,
.discover-btn-2 {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 12px 35px;
    border-radius: 25px;
    font-size: 1rem;
    /* 16px */
    font-weight: 600;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.discover-btn:hover,
.discover-btn-2:hover {
    background-color: #0e348d;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px #1256f388;
}

.discover-btn-2 {
    display: none;
    margin-top: 1rem;
}

.hero-image {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive Design */
/* Large devices (desktops, 992px and up) */
@media (max-width: 1600px) {
    .hero {
        height: 92vh;
    }
}

@media (max-width: 1199.98px) {


    .welcome-text {
        font-size: 2.75rem;
        /* 44px */
    }

    .hero-main-title {
        font-size: 3.25rem;
        /* 52px */
    }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 991.98px) {
    .hero {
        height: auto;
        min-height: 90vh;
        padding: 2rem 0;
    }

    .welcome-text {
        font-size: 2.5rem;
        /* 40px */
    }

    .hero-main-title {
        font-size: 2.75rem;
        /* 44px */
    }

    .Wel {
        text-align: center;

        font-size: 1.125rem;
        /* 18px */
    }

    .hero-texts {

        text-align: center;
        align-items: center;
        /* margin-bottom: 2rem; */
    }

    .hero-image {
        justify-content: center;
        align-items: center;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 767.98px) {
    .hero {
        min-height: 100vh;
        padding: 1rem 0;
    }

    .welcome-text {
        font-size: 2rem;
        /* 32px */
    }

    .hero-main-title {
        font-size: 2.25rem;
        /* 36px */
        text-align: center;
    }

    .Wel {
        font-size: 1rem;
        /* 16px */
        text-align: center;
    }

    .discover-btn {
        display: none;
    }

    .discover-btn-2 {
        display: block;
        /* margin: 1rem auto 0; */
    }

    .hero-image {
        /* margin-top: 2rem; */
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .welcome-text {
        font-size: 1.75rem;
        /* 28px */
    }

    .hero-main-title {
        font-size: 1.875rem;
        /* 30px */
    }

    .Wel {
        font-size: 0.87rem;
        /* 14px */
    }

    .discover-btn,
    .discover-btn-2 {
        padding: 10px 25px;
        font-size: 0.875rem;
        /* 14px */
    }
}


/*--------------------------------------------------------------
        #           Main-About Section
        ----------------------------------------------------------------*/
.main-about-section {
    padding: 60px 0;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background-color: white;
}

.main-about-hero-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 10px;
}

/* Image collage styles */
.main-about-image-collage {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin: 0 auto;
}

.main-about-city-image {
    width: 160px;
    height: 220px;
    border-radius: 100px;
    object-fit: cover;
    position: absolute;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.main-about-city-image.main-about-main {
    width: 300px;
    height: 350px;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.main-about-city-image.main-about-top-left {
    top: 0;
    left: 0;
    z-index: 2;
}

.main-about-city-image.main-about-bottom-right {
    bottom: 0;
    right: 0;
    z-index: 2;
}

/* Badge styles */
.main-about-badge {
    position: absolute;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 8px 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    font-weight: 600;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.main-about-badge.main-about-rating {
    top: 10px;
    right: 10px;
}

.main-about-badge.main-about-location {
    bottom: 30px;
    left: 20px;
}

.main-about-badge-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.main-about-badge-icon i {
    color: #FFB800;
    font-size: 16px;
}

.main-about-badge-icon.main-about-star {
    background-color: #FFB800;
    color: white;
    font-size: 14px;
}

.main-about-badge-icon.main-about-location {
    color: #304FFE;
}

/* Decorative elements */
.main-about-decorative-element {
    position: absolute;
    z-index: 0;
}

.main-about-decorative-element.main-about-cloud {
    top: 50px;
    right: 20px;
    color: #4FC3F7;
    font-size: 42px;
    opacity: 0.7;
}

.main-about-decorative-element.main-about-ticket {
    bottom: 30px;
    left: 0;
    color: #FF9800;
    font-size: 36px;
    transform: rotate(-15deg);
    opacity: 0.7;
}

/* Content styles */
.main-about-content {
    flex: 1;
}

.main-about-headline {
    color: #393232;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    text-align: left;
}

.main-about-features {
    list-style-type: disc;
    margin-bottom: 40px;
    padding-left: 20px;
}

.main-about-features li {
    position: relative;
    margin-bottom: 16px;
    color: #393232;
    line-height: 1.6;
    text-align: left;
}

.main-about-cta-button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-weight: 600;
    font-size: 18px;
    padding: 13px 30px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.main-about-cta-button:hover {
    background-color: #0e348d;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px #1256f388;
}

/* Bootstrap responsive adjustments */
@media (max-width: 991.98px) {
    .main-about-hero-container {
        flex-direction: column;
        gap: 30px;
    }

    .main-about-content {
        text-align: center;
        order: 1;
    }

    .main-about-image-collage {
        order: 2;
    }

    .main-about-headline {
        text-align: center;
    }

    .main-about-features li {
        text-align: left;
    }
}

@media (max-width: 767.98px) {
    .main-about-section {
        padding: 40px 0;
    }

    .main-about-image-collage {
        height: 350px;
        max-width: 400px;
    }

    .main-about-city-image.main-about-main {
        width: 220px;
        height: 280px;
    }

    .main-about-city-image.main-about-top-left,
    .main-about-city-image.main-about-bottom-right {
        width: 120px;
        height: 160px;
    }
}

@media (max-width: 575.98px) {
    .main-about-image-collage {
        height: 300px;
        max-width: 320px;
    }

    .main-about-city-image.main-about-main {
        width: 180px;
        height: 240px;
    }

    .main-about-city-image.main-about-top-left,
    .main-about-city-image.main-about-bottom-right {
        width: 100px;
        height: 140px;
    }

    .main-about-badge {
        padding: 6px 12px;
        font-size: 14px;
    }

    .main-about-decorative-element.main-about-cloud {
        font-size: 32px;
    }
}


/*--------------------------------------------------------------
        #         Adventure Section
----------------------------------------------------------------*/

/* Adventure Base Styles */
:root {
    --adventure-primary: #ff8c3b;
    --adventure-secondary: #fefefe;
    --adventure-light: #ffffff;
    --adventure-background: #f8f9fa;
    --adventure-icon-color: #ffffff;
}

.adventure-container {
    width: 100%;
    /* margin-top: 100px; */
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background-color: #EFF8FF;
    padding: 60px 0;
}

/* Adventure Header Styles */
.adventure-header {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 30px;
}

.adventure-title {
    color: #393232;
    font-weight: 800;
    font-size: 42px;
    margin-bottom: 30px;
    margin-left: 35px;
    line-height: 1.2;
    text-align: left;
}

.adventure-description {
    color: #393232;
    max-width: 480px;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.5;
}

/* Adventure Services Section */
.adventure-services-wrapper {
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
}

.adventure-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

.adventure-service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #393232;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

/* .adventure-service-icon:hover {
    background-color: blanchedalmond;
    border: 1px solid #272525;
} */

.adventure-service-icon i {
    color: #393232;
    font-size: 30px;
    font-weight: 1000;
}

/* .adventure-service-icon:hover i {
    color: #0a256371;
} */

.adventure-service-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 16px;
    color: #393232;
}

.adventure-service-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #393232;
}


.adventure-button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    margin-left: 35px;
    text-decoration: none;
    display: inline-block;
}

.adventure-button:hover {
    background-color: #0e348d;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px #1256f388;
    color: white;
}

/* Adventure Image Section */
.adventure-main-image {
    width: 90%;
    margin-left: 5%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .adventure-container {
        /* margin-top: 50px; */
        padding: 40px 0;
    }

    .adventure-title {
        font-size: 28px;
        text-align: center;
        margin-bottom: 40px;
    }

    .adventure-service-item {
        margin-bottom: 40px;
    }

    .adventure-button {
        display: block;
        text-align: center;
        margin: 30px auto 0;
    }
}

@media (max-width: 576px) {
    .adventure-title {
        font-size: 24px;
    }

    .adventure-service-icon {
        width: 50px;
        height: 50px;
    }

    .adventure-service-icon i {
        font-size: 24px;
    }
}




/*--------------------------------------------------------------
        # Tour Packages Slider
----------------------------------------------------------------*/

:root {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --accent-color: #f39c12;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #333;
}

.Tour_Slider_container {
    width: 100%;
    margin: 0 auto;
    /* padding: 20px; */
}

/* Carousel Container */
.Tour_Slider_carousel-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

/* Carousel Track */
.Tour_Slider_carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

/* Carousel Slide */
.Tour_Slider_carousel-slide {
    min-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Tour Cards Grid within Each Slide */
.Tour_Slider_tour-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

/* Tour Package Card */
.Tour_Slider_pkg-card {
    width: 100%;
    max-width: 350px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 25px;
    height: 450px;
    background-color: white;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.Tour_Slider_pkg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(45, 43, 43, 0.539);
    cursor: pointer;
}

.Tour_Slider_card-image {
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.Tour_Slider_pkg-card-img-top {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.Tour_Slider_pkg-card:hover .Tour_Slider_pkg-card-img-top {
    transform: scale(1.05);
}

.Tour_Slider_pkg-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.8rem;
    padding: 5px 10px;
    font-weight: 500;
    border-radius: 4px;
    color: white;
}

.Tour_Slider_pkg-flight {
    position: absolute;
    top: 40px;
    left: 10px;
    font-size: 30px;
    font-weight: 500;
    color: #ffffff;
}

.Tour_Slider_pkg-badge-international {
    background-color: var(--primary-color);
}

.Tour_Slider_pkg-badge-domestic {
    background-color: var(--secondary-color);
}

.Tour_Slider_pkg-badge-family {
    background-color: var(--accent-color);
}

.Tour_Slider_pkg-badge-honeymoon {
    background-color: #e74c3c;
}

.Tour_Slider_pkg-badge-premium {
    background-color: #9b59b6;
}

.Tour_Slider_pkg-price-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

.Tour_Slider_pkg-card-body {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.Tour_Slider_pkg-card-title {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--dark-color);
}

.Tour_Slider_pkg-features {
    font-size: 0.85rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

.Tour_Slider_pkg-features div {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.Tour_Slider_pkg-features i {
    margin-right: 8px;
    color: var(--primary-color);
    width: 16px;
}

.Tour_Slider_pkg-card-rating {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.Tour_Slider_pkg-card-rating .stars {
    margin-right: 5px;
}

.Tour_Slider_pkg-card-footer {
    background-color: white;
    padding: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Tour_Slider_pkg-btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    padding: 8px 20px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

.Tour_Slider_pkg-btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.Tour_Slider_pkg-btn-outline-primary {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.Tour_Slider_pkg-btn-outline-primary:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

/* Carousel Navigation */
.Tour_Slider_carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.Tour_Slider_carousel-button {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.Tour_Slider_carousel-button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.Tour_Slider_carousel-button:active {
    transform: scale(0.95);
}

.Tour_Slider_carousel-button.Tour_Slider_prev {
    margin-left: 15px;
}

.Tour_Slider_carousel-button.Tour_Slider_next {
    margin-right: 15px;
}

.Tour_Slider_carousel-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.Tour_Slider_carousel-button:disabled:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    transform: scale(1);
}

.Tour_Slider_explore-more-container {
    text-align: center;
    margin-top: 30px;
}

.Tour_Slider_explore-more {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.Tour_Slider_explore-more:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(52, 152, 219, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsiveness */
@media (max-width: 992px) {
    .Tour_Slider_pkg-card {
        max-width: 300px;
        height: 430px;
    }
}

@media (max-width: 768px) {
    .Tour_Slider_carousel-slide {
        padding: 5px;
    }

    .Tour_Slider_pkg-card {
        max-width: 280px;
        height: 420px;
    }

    .Tour_Slider_carousel-button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .Tour_Slider_carousel-button.Tour_Slider_prev {
        margin-left: 10px;
    }

    .Tour_Slider_carousel-button.Tour_Slider_next {
        margin-right: 10px;
    }
}

@media (max-width: 576px) {
    .Tour_Slider_carousel-slide {
        gap: 15px;
    }

    .Tour_Slider_pkg-card {
        max-width: 100%;
        height: 400px;
    }

    .Tour_Slider_carousel-button.Tour_Slider_prev {
        margin-left: 10px;
    }

    .Tour_Slider_carousel-button.Tour_Slider_next {
        margin-right: 10px;
    }
}

/*--------------------------------------------------------------
#           Hotel Slider
----------------------------------------------------------------*/

.Hotel_Slider_container {
    width: 100%;
    /* margin: 0 auto; */

}

.Hotel_Slider_section-title {
    /* text-align: center;
    margin: 30px 0;
    color: #4a3636; 
    font-size: 28px;
    font-weight: 700; */
}

/* Carousel Container */
.Hotel_Slider_carousel-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

/* Carousel Track */
.Hotel_Slider_carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    /* cursor: grab; */
}

.Hotel_Slider_carousel-track.Hotel_Slider_dragging {
    /* cursor: grabbing; */
    transition: none;
}

/* Carousel Slide */
.Hotel_Slider_carousel-slide {
    min-width: 100%;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Hotel Cards Grid within Each Slide */
.Hotel_Slider_hotel-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

/* Hotel Card */
.Hotel_Slider_hotel-card {
    width: 100%;
    max-width: 350px;
    background-color: #f4f1f1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 380px;
    /* Reduced height since we removed text */
}

.Hotel_Slider_hotel-card:hover {
    transform: translateY(-5px);
}

.Hotel_Slider_card-image {
    height: 220px;
    width: 100%;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.Hotel_Slider_card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.Hotel_Slider_hotel-card:hover .Hotel_Slider_card-image img {
    transform: scale(1.05);
}

.Hotel_Slider_price-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 12px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    border-radius: 4px;
}

.Hotel_Slider_price-badge .Hotel_Slider_price {
    font-size: 18px;
}

.Hotel_Slider_price-badge .Hotel_Slider_per-night {
    font-size: 12px;
}

.Hotel_Slider_card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.Hotel_Slider_card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #4a3636;
}

.Hotel_Slider_book-now-wrapper {
    margin-top: auto;
}

.Hotel_Slider_book-now,
.Hotel_Slider_explore-more {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.Hotel_Slider_explore-more {
    margin-top: 0%;
}

.Hotel_Slider_book-now:hover,
.Hotel_Slider_explore-more:hover {
    background-color: #0e348d;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px #1256f388;
}

.Hotel_Slider_explore-more-container {
    text-align: center;
    margin-top: 10px;
}

/* Carousel Navigation */
.Hotel_Slider_carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.Hotel_Slider_carousel-button {
    background-color: rgba(74, 54, 54, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Hotel_Slider_carousel-button:hover {
    background-color: rgba(74, 54, 54, 0.8);
}

.Hotel_Slider_carousel-button.Hotel_Slider_prev {
    margin-left: 15px;
}

.Hotel_Slider_carousel-button.Hotel_Slider_next {
    margin-right: 15px;
}

/* Carousel Dots - REMOVED STYLES */
.Hotel_Slider_carousel-dots {
    display: none;
    /* Hide dots completely */
}

/* Star Rating */
.Hotel_Slider_star-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 8px;
}

.Hotel_Slider_star {
    color: #4fbb90;
    font-size: 14px;
}

.Hotel_Slider_location {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    font-size: 12px;
    color: #666;
}

/* Responsiveness */
@media (max-width: 992px) {
    .Hotel_Slider_carousel-slide {
        gap: 15px;
        /* cursor: pointer; */

    }

    .Hotel_Slider_hotel-card {
        max-width: 300px;
        height: 400px;
        /* Adjusted for no text */
        /* cursor: pointer; */
    }

}

@media (max-width: 768px) {
    .Hotel_Slider_carousel-slide {
        padding: 5px;
        /* cursor: pointer; */

    }

    .Hotel_Slider_hotel-card {
        max-width: 280px;
        height: 350px;
        /* Adjusted for no text */
    }

    .Hotel_Slider_carousel-button {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    /* Keep navigation buttons visible on all screens */
    .Hotel_Slider_carousel-nav {
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
    }
}

@media (max-width: 576px) {
    .Hotel_Slider_carousel-slide {
        gap: 15px;
        /* cursor: pointer; */

    }

    .Hotel_Slider_hotel-card {
        max-width: 100%;
        height: 100%;
        /* Adjusted for no text */
    }

    /* Keep navigation buttons in normal position for small screens */
    .Hotel_Slider_carousel-nav {
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
    }
}




/*--------------------------------------------------------------
        #           Transport Slider Section
----------------------------------------------------------------*/
/*--------------------------------------------------------------
        # Transport Vehicle Slider
        ----------------------------------------------------------------*/

.Transport_Slider_container {
    width: 100%;
    margin: 0 auto;
    max-width: 1400px;
    padding: 20px;
}



/* Carousel Container */
.Transport_Slider_carousel-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

/* Carousel Track */
.Transport_Slider_carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

/* Carousel Slide */
.Transport_Slider_carousel-slide {
    min-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
}

/* Vehicle Cards Grid within Each Slide */
.Transport_Slider_vehicle-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

/* Transport Vehicle Card */
.Transport_Slider_vehicle-card {
    width: 100%;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 550px;
}

.Transport_Slider_vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.Transport_Slider_card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.Transport_Slider_card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.Transport_Slider_vehicle-card:hover .Transport_Slider_card-image img {
    transform: scale(1.05);
}

.Transport_Slider_card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.Transport_Slider_card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.Transport_Slider_card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.Transport_Slider_card-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.Transport_Slider_spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #5a6c7d;
}

.Transport_Slider_spec-icon {
    width: 16px;
    height: 16px;
    color: #667eea;
}

.Transport_Slider_card-features {
    margin-bottom: 20px;
    flex-grow: 1;
}

.Transport_Slider_features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.Transport_Slider_feature-tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.Transport_Slider_card-pricing {
    border-top: 1px solid #e1e8ed;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.Transport_Slider_price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.Transport_Slider_price-unit {
    font-size: 0.9rem;
    color: #5a6c7d;
    font-weight: 400;
}

.Transport_Slider_book-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.Transport_Slider_book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

.Transport_Slider_explore-more-container {
    text-align: center;
    margin-top: 30px;
}

.Transport_Slider_explore-more {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.Transport_Slider_explore-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(102, 126, 234, 0.4);
}

/* Carousel Navigation */
.Transport_Slider_carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.Transport_Slider_carousel-button {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Transport_Slider_carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.Transport_Slider_carousel-button.Transport_Slider_prev {
    margin-left: 15px;
}

.Transport_Slider_carousel-button.Transport_Slider_next {
    margin-right: 15px;
}

/* Responsiveness */
@media (max-width: 992px) {
    .Transport_Slider_vehicle-card {
        max-width: 300px;
        height: 530px;
    }


}

@media (max-width: 768px) {
    .Transport_Slider_carousel-slide {
        padding: 10px 5px;
        gap: 20px;
    }

    .Transport_Slider_vehicle-card {
        max-width: 280px;
        height: 520px;
    }

    .Transport_Slider_carousel-button {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .Transport_Slider_container {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .Transport_Slider_carousel-slide {
        gap: 15px;
    }

    .Transport_Slider_vehicle-card {
        max-width: 100%;
        height: 500px;
    }

    .Transport_Slider_card-specs {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .Transport_Slider_card-pricing {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }


}

/* Animation for automatic sliding */
@keyframes transport-slide-fade-in {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.transport-card {
    animation: transport-slide-fade-in 0.6s ease-out;
}

/*--------------------------------------------------------------
        #           Feature Cards Section
----------------------------------------------------------------*/

.features {
    width: 100%;
    margin-top: 50px;
    padding: 0 15px;
    /* margin-top: 10px; */
}

.feature-cards {
    margin-top: 15px;
}

.feature-card {
    background-color: rgba(243, 237, 237, 0.541);
    border-radius: 20px;
    height: 240px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fbfbfb;
    box-shadow: 0 2px 5px rgba(132, 126, 126, 0.603);
    transition: transform 0.3s ease;
    /* backdrop-filter: blur(5px); */
    margin-bottom: 20px;
}

.feature-card:hover {
    transform: translateY(-5px);
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(132, 126, 126, 0.603);

}

.feature-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 60px;
    color: #000000;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #333;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.4;
    color: #030303;
}

.icon-primary {
    color: #2233ee;
    font-size: 40px;
}

/* Custom responsive adjustments */
@media (max-width: 576px) {
    .topic {
        font-size: 2rem;
        /* margin-bottom: 2rem; */
    }

    .feature-card {
        height: auto;
        min-height: 220px;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .topic {
        font-size: 2.2rem;
    }
}

/*--------------------------------------------------------------
#           Blog Slider
----------------------------------------------------------------*/

.Blog_Slider_container {
    width: 100%;
    margin: 0 auto;
}

/* Carousel Container */
.Blog_Slider_carousel-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

/* Carousel Track */
.Blog_Slider_carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

/* Carousel Slide */
.Blog_Slider_carousel-slide {
    min-width: 100%;
    /* padding: 10px; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Blog Cards Grid within Each Slide */
.Blog_Slider_blog-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

/* Blog Card */
.Blog_Slider_blog-card {
    width: 100%;
    max-width: 350px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 450px;
    /* Fixed height for all cards */
}

.Blog_Slider_blog-card:hover {
    transform: translateY(-5px);
}

.Blog_Slider_card-image {
    height: 220px;
    width: 100%;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.Blog_Slider_card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.Blog_Slider_blog-card:hover .Blog_Slider_card-image img {
    transform: scale(1.05);
}

.Blog_Slider_date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 12px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    border-radius: 4px;
}

.Blog_Slider_date-badge .Blog_Slider_day {
    font-size: 24px;
}

.Blog_Slider_date-badge .Blog_Slider_month-year {
    font-size: 12px;
}

.Blog_Slider_card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.Blog_Slider_card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #222;
}

.Blog_Slider_card-text {
    color: #777;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.Blog_Slider_read-more-wrapper {
    margin-top: auto;
}

.Blog_Slider_read-more,
.Blog_Slider_explore-more {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    /* border-radius: 4px; */
    border-radius: 25px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.Blog_Slider_read-more:hover,
.Blog_Slider_explore-more:hover {
    background-color: #0e348d;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px #1256f388;
}

.Blog_Slider_explore-more-container {
    text-align: center;
    margin-top: 10px;
}

/* Carousel Navigation */
.Blog_Slider_carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.Blog_Slider_carousel-button {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Blog_Slider_carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.Blog_Slider_carousel-button.Blog_Slider_prev {
    margin-left: 15px;
}

.Blog_Slider_carousel-button.Blog_Slider_next {
    margin-right: 15px;
}

.Blog_Slider_explore-more-container {
    text-align: center;
    margin-top: 10px;
}

/* Responsiveness */
@media (max-width: 992px) {
    .Blog_Slider_blog-card {
        max-width: 300px;
        height: 430px;
    }
}

@media (max-width: 768px) {
    .Blog_Slider_carousel-slide {
        padding: 5px;
    }

    .Blog_Slider_blog-card {
        max-width: 280px;
        height: 420px;
    }

    .Blog_Slider_carousel-button {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .Blog_Slider_carousel-slide {
        gap: 15px;
    }

    .Blog_Slider_blog-card {
        max-width: 100%;
        height: 400px;
    }

    .Blog_Slider_carousel-button {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
#         FAQ's Section
--------------------------------------------------------------*/

.faqs {
    font-family: Arial, sans-serif;
    /* background-color: #f9f9f9; */
    padding: 20px;
    padding-bottom: 100px;

}

.faq-container {
    width: 90%;
    margin: auto;
    background: rgba(227, 224, 224, 0.409);
    /* backdrop-filter: blur(5px); */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    gap: 50px;
}

h2 {
    text-align: center;
    color: #0073e6;
    margin-bottom: 10px;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 50%;
}


.faq-item {
    width: 100%;
    /* Each FAQ takes half width */
    border-bottom: 1px solid #ccc;
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    transition: color 0.3s ease;
    color: #000000;
    font-size: 15px;
}

.faq-item.active .faq-question {
    color: #0A2463;
    /* Change only the question color */
}

.faq-answer {
    display: none;
    font-size: 13px;
    color: #000000;
    padding: 5px 0;
    text-align: justify;
}

.plus-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.active .plus-icon {
    transform: rotate(45deg);
}

@media (max-width: 803px) {
    .faq-container {

        flex-direction: column;
        gap: 0px;

    }

    .faq-grid {
        width: 100%;
    }

}


/*--------------------------------------------------------------
        #           Testimonial Section
        ----------------------------------------------------------------*/
/* .topic {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: white;
} */

.testimonial-container {
    width: 100%;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding-bottom: 60px;
    margin-top: 5px;
    color: white;
    background: linear-gradient(135deg, #667eea90 0%, #8540417e 100%);
    min-height: 400px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s;
    color: white;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #0A2463;
    margin-bottom: 15px;
}

.testimonial-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 5px;
}

.testimonial-location {
    font-size: 1rem;
    color: #ffffff;
    margin: 0px;
    font-style: italic;
}

.star-rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin: 15px 0;
}

.testimonial-text {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 30px;
    max-width: 100%;
}

.dots-container {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #bbb;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    /* border: 1px solid white; */
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.nav-button:hover {
    background: #384c7a;
}

.prev-button {
    left: 10px;
}

.next-button {
    right: 10px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .testimonial-text {
        width: 100%;
        padding: 0% 10%;
    }

    .testimonial-name {
        font-size: 1.4rem;
    }
}

@media (max-width: 992px) {
    .testimonial-container {
        min-height: 400px;
    }

    .testimonial-slide {
        padding: 30px 15px;
    }

    .testimonial-text {
        width: 100%;
        padding: 0% 10%;
    }

    .testimonial-image {
        width: 100px;
        height: 100px;
    }

    /* .topic {
        font-size: 2rem;
    } */
}

@media (max-width: 768px) {
    .testimonial-container {
        min-height: 400px;
    }

    .testimonial-slide {
        padding: 25px 10px;
    }

    .testimonial-text {
        width: 100%;
        padding: 0% 10%;
        font-size: 0.95rem;
        text-align: center;
    }

    .testimonial-image {
        width: 90px;
        height: 90px;
    }

    .testimonial-name {
        font-size: 1.3rem;
    }

    .star-rating {
        font-size: 1.3rem;
    }

    .nav-button {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    /* .topic {
        font-size: 1.8rem;
    } */
}

@media (max-width: 576px) {
    .testimonial-container {
        height: auto;
        border-radius: 5px;
    }

    .testimonial-slide {
        padding: 20px 8px;
    }

    .testimonial-text {
        width: 100%;
        padding: 0% 10%;
        font-size: 0.9rem;
        text-align: center;

    }

    .testimonial-image {
        width: 80px;
        height: 80px;
        border-width: 3px;
    }

    .testimonial-name {
        font-size: 1.2rem;
    }

    .testimonial-location {
        font-size: 0.9rem;
    }

    .star-rating {
        font-size: 1.2rem;
    }

    .nav-button {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .prev-button {
        left: 5px;
    }

    .next-button {
        right: 5px;
    }

    .topic {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 420px) {
    .testimonial-container {
        height: auto;
    }

    .testimonial-slide {
        padding: 10px 8px;
    }
    

    .testimonial-text {
        font-size: 0.85rem;
        width: 100%;
        padding: 0% 10%;
    }

    .testimonial-image {
        width: 70px;
        height: 70px;
    }

    .testimonial-name {
        font-size: 1.1rem;
    }


}


































.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-top: 5px;
    margin-right: 5px;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}
