@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div {
    font-family: "Poppins", sans-serif !important;
    font-weight: 400;
    font-style: normal;
}


:root {
    --primary-color: #1C3D74;
    --secondary-color: #CFB453;
}


/* Base Navbar Styling */
#home-section .navbar {
    z-index: 10 !important;
    padding: 1rem 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#home-section .navbar .nav-link {
    font-weight: 600;
    font-size: 20px;
    color: #fff !important;
    margin-right: 1rem;
    transition: color 0.3s;
}

#home-section .navbar .nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Contact Info */
#home-section .navbar-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Scroll Effect */
.navbar.scrolled {
    background-color: #0000006b !important;
    padding: 0.2rem !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Mega Dropdown */
.mega-dropdown:hover .mega-menu {
    display: block;
}

.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 800px !important;
    background: #fff;
    color: #000;
    border-radius: 10px;
    margin-top: 10px;
    z-index: 9999;
}

.destination-list li {
    margin-bottom: 10px;
}

.destination-list a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.destination-list a:hover {
    color: #cfb453;
}



/* What's Hot Section */
.hot-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.hot-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.hot-item:hover img {
    transform: scale(1.05);
}

.hot-item span {
    position: absolute;
    bottom: 8px;
    left: 10px;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

/* Responsive Fix */
@media (max-width: 991.98px) {
    .mega-menu {
        position: static;
        transform: none;
        width: 100%;
        border-radius: 0;
    }
}



#home-section .contact-box {
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 30px;
    padding: 6px 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

#home-section .contact-box i {
    font-size: 14px;
}

#home-section .email-box {
    background-color: #ffffff00;
    color: #ffffff;
    font-weight: 500;
    border: 1px solid white;
}

/* ---------- HERO SECTION ---------- */
#home-section .hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

#home-section .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

#home-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 36%);
    z-index: 1;
}

#home-section .hero-content {
    position: relative;
    z-index: 2;
}

#home-section .hero-content h5 {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    font-family: "Caveat", cursive !important;
    font-weight: 800;
    margin-bottom: 0px;
    color: #f8f9fa;
}

.sc-font {
    font-family: "Caveat", cursive !important;
}

#home-section .hero-content h1 {
    font-size: 5rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;

}

#home-section .hero-btn {
    background-color: var(--secondary-color);
    border: none;
    color: #fff;
    padding: 12px 30px;
    margin-top: 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

#home-section .hero-btn:hover {
    background-color: #b8972d;
    transform: translateY(-2px);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
    #home-section .navbar-contact {
        display: none;
        /* hide contact on mobile for clean view */
    }
}

@media (max-width: 768px) {
    #home-section .hero-content h1 {
        font-size: 2rem;
    }

    #home-section .hero-content h5 {
        font-size: 1rem;
    }
}



/* -----about us----------- */
#about-section {
    font-family: "Poppins", sans-serif;
}

#about-section .about-content h2 {
    color: #0f3564;
}

#about-section .text-warning {
    color: #cfb453 !important;
}

.secondary-text {
    color: var(--secondary-color) !important;
}

.primary-text {
    color: var(--primary-color) !important;

}

.primary-size {
    font-size: 3rem;
}

/* Learn More button */
#about-section .learn-more-btn {
    background-color: #cfb453;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#about-section .learn-more-btn:hover {
    background-color: #b8972d;
    transform: translateY(-2px);
}

#about-section .learn-more-btn i {
    transition: transform 0.3s ease;
}

#about-section .learn-more-btn:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    #about-section .about-content {
        text-align: center;
    }

    #about-section .learn-more-btn {
        margin-top: 15px;
    }
}




/* -------------international section -------------------- */

#international-section {
    font-family: "Poppins", sans-serif;
}

#international-section h6 {
    color: #cfb453;
    font-weight: 600;
    letter-spacing: 1px;
}

#international-section h2 {
    color: #0f3564;
    font-weight: 800;
    text-transform: uppercase;
}

/* Destination cards */
#international-section .destination-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

#international-section .destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#international-section .destination-card:hover img {
    transform: scale(1.08);
}

#international-section .destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    text-align: left;
}

#international-section .destination-overlay h5 {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    margin: 0;
}

/* Responsive height adjustments */
@media (max-width: 768px) {
    #international-section .destination-card img {
        height: 180px;
    }
}

@media (max-width: 576px) {
    #international-section .destination-card img {
        height: 160px;
    }
}








/* --------travel section-------------0 */

#travel-section {
    font-family: "Poppins", sans-serif;
    background-color: #fff;
}

#travel-section h2 {
    color: #0f3564;
    font-weight: 800;
    text-transform: uppercase;
}

/* Masonry Layout */
.travel-masonry {
    column-count: 3;
    column-gap: 20px;
}

@media (max-width: 992px) {
    .travel-masonry {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .travel-masonry {
        column-count: 1;
    }
}

/* Travel Card Styling */
.travel-card {
    position: relative;
    overflow: hidden;

    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
    transition: transform 0.3s ease;
}

.travel-card img {
    width: 100%;

    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Vary image heights for natural look */
.travel-card:nth-child(1) img {
    height: 340px;
}

.travel-card:nth-child(2) img {
    height: 300px;
}

.travel-card:nth-child(3) img {
    height: 280px;
}

.travel-card:nth-child(4) img {
    height: 400px;
}

.travel-card:nth-child(5) img {
    height: 300px;
}

.travel-card:nth-child(6) img {
    height: 300px;
}

.travel-card:nth-child(7) img {
    height: 260px;
}

.travel-card:nth-child(8) img {
    height: 380px;
}

.travel-card:nth-child(9) img {
    height: 280px;
}

.travel-card:hover img {
    transform: scale(1.08);
}

.travel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}

.travel-overlay h5 {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-size: 15px;
}

.travel-overlay p {
    color: #dcdcdc;
    font-size: 13px;
    margin: 0;
}

.travel-card:hover .travel-overlay h5 {
    color: #cfb453;
}


/* -------banerr-------- */

#banner-slider {
    overflow: hidden;
}

#banner-slider .main-carousel {
    margin: 0 auto;
}

#banner-slider .carousel-cell {
    width: 33.33%;
    padding: 20px 10px;
}

#banner-slider img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

#banner-slider img:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
    #banner-slider .carousel-cell {
        width: 50%;
    }
}

@media (max-width: 576px) {
    #banner-slider .carousel-cell {
        width: 100%;
    }
}








/* ---------footer---------------- */
.footer-section {
    background-color: #1a1a1a;
    color: #dcdcdc;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

.footer-logo {
    width: 90px;
}

.footer-about p {
    line-height: 1.6;
    color: #cfcfcf;
}

.footer-social a {
    display: inline-block;
    color: #fff;
    background: #2b2b2b;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #cfb453;
    color: #1a1a1a;
}

/* Titles */
.footer-title {
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #dcdcdc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a i {
    margin-right: 6px;
    color: var(--secondary-color);
}

.footer-links a:hover {
    color: #cfb453;
}

/* Instagram Grid */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.insta-grid img {
    width: 90px;
    height: 75px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.insta-grid img:hover {
    transform: scale(1.05);
}

/* Address */
.footer-section p {
    margin-bottom: 6px;
}

/* Bottom footer */
.footer-bottom {
    border-top: 1px solid #333;
    color: #b3b3b3;
}

.footer-bottom .brand {
    color: var(--secondary-color);
    font-weight: 600;
}

.footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
    margin-left: 10px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }

    .footer-social a {
        margin-right: 5px;
    }
}




/* ----------------service----------------- */
#services-section {
    background-color: #f3faff;
    font-family: "Poppins", sans-serif;
}

#services-section h2 {
    color: #0f3564;
    font-weight: 800;
    text-transform: uppercase;
}

#services-section .icon-circle {
    
    background-color: #cfb453;
    color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#services-section .service-card:hover .icon-circle {
    background-color: #0f3564;
    transform: rotate(10deg);
}

#services-section .service-card {
    transition: all 0.3s ease;
}

#services-section .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

#services-section .learn-link {
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

#services-section .learn-link:hover {
    color: #cfb453;
}

#services-section .learn-link i {
    transition: transform 0.3s;
}

#services-section .learn-link:hover i {
    transform: translateX(4px);
}

/* -----------testimonials--------------------- */
#testimonials {
    background-color: #f8fbff;
    font-family: "Poppins", sans-serif;
}

#testimonials h2 {
    color: #0f3564;
    font-weight: 800;
    text-transform: uppercase;
}

.testimonial-card {
    transition: all 0.3s ease;
    border-radius: 10px;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.carousel-cell {
    width: 100%;
}

@media (min-width: 768px) {
    .carousel-cell {
        width: 33%;
        /* show 2 per slide on tablet/desktop */
    }
}




/* ------------------faqs------------------ */
#faq-section {
    background-color: #f8fbff;
    font-family: "Poppins", sans-serif;
}

#faq-section h2 {
    color: #0f3564;
    font-weight: 800;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: #fff;
    border: none;
    outline: none;
    padding: 18px 20px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: #0f3564;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.faq-question:hover {
    background: #f2f7ff;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #cfb453;
}

.faq-answer {
    display: none;
    padding: 20px 20px 20px;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

.faq-item.active .faq-answer {
    display: block;
}



/*---------------------------Contact Us --------------------------------------*/

    /* Section Styling */
    #contact-section {
      padding: 40px 0;
      padding-top: 20px;
      margin-top: -140px;
      background-color: #fff;
      font-family: 'Poppins', sans-serif;
    }

    #contact-section .contact-container h2 {
      font-weight: 700;
      font-size: 2.5rem;
      color: #000;
    }

    #contact-section .contact-container p {
      margin-bottom: 20px;
    }

   #contact-section  .contact-info i {
      font-size: 28px;
      background-color: #ceb352;
      color: #fff;
      padding: 20px;
      border-radius: 50%;
      margin-right: 15px;
    }

   #contact-section  .contact-info h5 {
      font-weight: 600;
      color: #000;
    }

   #contact-section  .contact-info a {
      color: #555;
      text-decoration: none;
    }

    .contact-info a:hover {
      color: #ceb352;
    }

   #contact-section .contact-form input,
  #contact-section  .contact-form textarea {
      background-color: #fff7f3;
      border: 1px solid #eee;
      border-radius: 6px;
      padding: 12px 15px;
      width: 100%;
    }

  #contact-section  .contact-form button {
      background-color: #ceb352;
      color: #fff;
      border: none;
      padding: 12px 25px;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

   #contact-section .contact-form button:hover {
      background-color: #007bb8;
    }

   #contact-section .social-icons a {
      color: #000;
      font-size: 20px;
      margin-right: 15px;
      transition: color 0.3s;
    }

  #contact-section  .social-icons a:hover {
      color: #ceb352;
    }


    /* Social Media Styles */
    .social-card {
        transition: all 0.3s ease;
        border: 1px solid rgba(0,0,0,0.05);
    }
    
    .social-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
    }
    
    .social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        color: white;
        font-size: 1.4rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
   
    
    .social-icon.facebook {
        background-color: #3b5998;
        text-decoration: none;
    }
    
    .social-icon.instagram {
        text-decoration: none;
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    }
    
    .social-icon.twitter {
        background-color: #1DA1F2;
        text-decoration: none;
    }
    
    .social-icon.youtube {
        background-color: #FF0000;
        text-decoration: none;
    }
    
    .social-icon.linkedin {
        background-color: #0077B5;
        text-decoration: none;
    }
    
    .social-icon:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 8px 15px rgba(0,0,0,0.2);
    }
    
    .tripadvisor-container {
        position: relative;
    }
    
    .tripadvisor-container::after {
        content: '';
        position: absolute;
        top: -10px;
        right: -10px;
        bottom: -10px;
        left: -10px;
        border: 2px dashed rgba(0,123,255,0.2);
        border-radius: 10px;
        z-index: -1;
    }



