
/* ---------------------------------- */
/* GLOBAL */
/* ---------------------------------- */
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
}
body, html {
    overflow-x: hidden !important;
}
:root{
  --navy:#97bdff;
  --navy2:#2575ff;
  --green:#6DFF6D;
  --blue:#6EC1E4;
  --white:#ffffff;
  --gray:#C9CED6;
}
/* ---------------------------------- */
/* NAVBAR */
/* ---------------------------------- */

.navbar-wrapper {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: transparent; /* IMPORTANT – bg image shows behind navbar */
    
}

.navbar-box {
    width: 90%;
    background:linear-gradient(135deg,var(--navy),var(--navy2));
    color:var(--white);
    padding: 6px 35px;
    border-radius: 60px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.1);

    display: flex;
    align-items: center;
    justify-content: space-between;
    
}


.logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
}



.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0 auto;
    color: white;
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links li a:hover {
    color: #0A954F;
}

.book-btn {
    background: #0F9D58;
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background 0.2s;
}
.book-btn:hover { background: #0c7c47; }


.book-btn-mobile {
    padding: 8px 12px;
    border-radius: 50px;
    font-size: 25px;
    text-decoration: none;
    margin-left: auto;
}

.book-btn-mobile i { color: #000; }

.menu-toggle {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    padding-right: 10px;
}

/* MOBILE NAV FIXES */
@media (max-width: 991px) {
    .nav-links, .book-btn {
        display: none !important;
    }

    .logo {
        margin: 0 auto;
        /* padding-left: 0; */
        text-align: center;
        position: absolute;
        left: 80%;
        transform: translateX(-50%);
        padding: 8px 12px;
    }
}

.mobile-menu {
    width: 50%;
    min-width: 200px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 20px;
    font-size: 18px;

    position: fixed;          /* FIXED = stays under navbar always */
    top: 90px;                /* exactly under navbar */
    left: -60%;               /* hidden off-screen */
    z-index: 99999;

    transition: left 0.35s ease;
}

/* Show when opening */
.menu-open {
    left: 10%;               /* original popup spot */
}


.mobile-menu ul { list-style: none; padding: 0; }
.mobile-menu li { margin: 12px 0; }
.mobile-menu a { text-decoration: none; color: #000; font-weight: 500; }


/* ================================================= */
/* HERO BASE */
/* ================================================= */
.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.slides {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 1s ease-in-out;
}

.slide {
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

/* ================================================= */
/* HERO CONTENT (DESKTOP DEFAULT) */
/* ================================================= */
.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 600px;
    color: #fff;
    z-index: 2;
    text-align: left;
}

/* ================================================= */
/* BRAND */
/* ================================================= */
.hero-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.hero-logo {
    height: 48px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.hero-badge {
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 500;
    background: linear-gradient(135deg, var(--navy), var(--navy2));
}

/* ================================================= */
/* TEXT */
/* ================================================= */
.hero-quote {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 14px;
}

.hero-sub {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 28px;
}

/* ================================================= */
/* ACTIONS */
/* ================================================= */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hero-search {
    display: flex;
    align-items: center;
    width: 960px;
    padding: 18px 22px;
    border-radius: 18px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
}

.hero-search input {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    color: #fff;
    font-size: 16px;
}

.hero-search input::placeholder {
    color: rgba(255,255,255,0.8);
}

.search-icon {
    margin-right: 12px;
    font-size: 18px;
}

.hero-btn {
    padding: 14px 34px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.hero-btn.primary {
    background: linear-gradient(135deg, var(--navy), var(--navy2));
    color: #fff;
}

/* ================================================= */
/* TABLET */
/* ================================================= */
@media (max-width: 992px) {

    .hero-content {
        left: 6%;
        max-width: 520px;
    }

    .hero-quote {
        font-size: 38px;
    }

    .hero-search {
        width: 100%;
    }
}

/* ================================================= */
/* MOBILE — BRAND FIRST, WIDE, CLEAN */
/* ================================================= */
@media (max-width: 768px) {

    .hero-content {
        left: 50%;
        top: 52%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
        text-align: left;
    }

    /* Brand stays on top */
    .hero-brand {
        justify-content: flex-start;
        margin-bottom: 18px;
    }

    .hero-logo {
        height: 40px;
    }

    .hero-badge {
        font-size: 13px;
        padding: 6px 14px;
        letter-spacing: 1.5px;
    }

    /* Headline flows naturally */
    .hero-quote {
        font-size: 30px;
        line-height: 1.35;
        margin-bottom: 12px;
    }

    /* Hide sub text for clarity */
    .hero-sub {
        display: none;
    }

    /* Stack actions */
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        margin-top: 20px;
    }

    /* 🔥 REAL FULL-WIDTH SEARCH */
    .hero-search {
        width: 100%;
        padding: 16px 18px;
        border-radius: 14px;
    }

    .hero-search input {
        font-size: 15px;
    }

    /* CTA full width */
    .hero-btn {
        width: 100%;
        padding: 16px 0;
        font-size: 16px;
    }
}

/* ================================================= */
/* SMALL MOBILE */
/* ================================================= */
@media (max-width: 480px) {

    .hero-quote {
        font-size: 26px;
    }

    .hero-search input {
        font-size: 14px;
    }
}

/* destinations */

.countries {
    padding: 70px 8% 40px;
    background: #f9fbff;
    text-align: center;
}

.countries h2 {
    font-size: 42px;
    margin-bottom: 8px;
}

.countries-sub {
    color: #666;
    margin-bottom: 50px;
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);   /* 👈 Always 4 on desktop */
    gap: 28px;
}

@media (max-width: 1200px) {
    .country-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .country-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .country-grid {
        grid-template-columns: 1fr;
    }
}

.country-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    height: 240px;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: black;
}

.country-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.9;
}

.country-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.country-card:hover img {
    transform: scale(1.08);
}

.country-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.country-info {
    position: absolute;
    bottom: 18px;
    left: 18px;
    color: white;
    z-index: 2;
    text-align: left;
}

.country-info span {
    display: block;
    font-size: 20px;
    font-weight: 600;
}

.country-info small {
    opacity: 0.85;
}

.view-all {
    margin-top: 30px;
    background: linear-gradient(135deg, var(--navy), var(--navy2));
    border: none;
    padding: 14px 36px;
    color: white;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.view-all:hover {
    transform: scale(1.05);
}

 
/* about us  */
 
.aboutus {
    padding: 60px 7% 100px;
    background: #f5f9ff;
}

.about-title {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 80px;
}

.about-title h2 {
    font-size: 44px;
    font-weight: 700;
}

.about-title p {
    margin-top: 12px;
    font-size: 18px;
    color: #666;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.about-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    height: 420px;
    /* background: black; */
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    transition: transform 0.4s ease;
}

.about-card:hover {
    transform: translateY(-10px);
}

.about-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.about-card::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to top, rgba(0,0,0,0.55), transparent); */
}

.about-box {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    
    background:linear-gradient(135deg,var(--navy),var(--navy2));
    border-radius: 18px;
    padding: 20px 22px;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.about-box span {
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.about-box p {
    font-size: 14px;
    color: #ffffff;
}
@media (max-width:768px){
    .about-title h2{font-size:30px;}
    .about-card{height:360px;}
}
.about-logo {
    text-align: center;
    margin-bottom: 35px;
}

.about-logo img {
    width: 120px;
    max-width: 40%;
    border-radius: 12px;
}
.about-title {
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 80px;
}

.about-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.about-title-row img {
    width: 60px;
    border-radius: 10px;
}

.about-title-row h2 {
    font-size: 44px;
    font-weight: 700;
    margin: 0;
}
@media(max-width:768px){
    .about-title-row h2{
        font-size:28px;
        text-align:center;
    }

    .about-title-row img{
        width:48px;
    }
}

/* how it wqorks  */

/* ============================= */
/* HOW IT WORKS */
/* ============================= */
.how-it-works{
  padding:100px 8%;
  background:#ffffff;
  text-align:center;
}

.how-it-works h2{
  font-size:42px;
  margin-bottom:10px;
}

.how-sub{
  color:#666;
  margin-bottom:60px;
}

.how-wrapper{
  display:flex;
  align-items:center;
  gap:80px;
}

/* LEFT IMAGE */
.how-image{
  width:45%;
}

.how-image img{
  width:100%;
  border-radius:30px;
  box-shadow:0 30px 60px rgba(0,0,0,0.15);
  transition:opacity 0.4s ease, transform 0.4s ease;
}

/* RIGHT STEPS */
.how-steps{
  width:55%;
  text-align:left;
}

.how-step{
  padding:22px 26px;
  border-radius:18px;
  cursor:pointer;
  transition:all 0.35s ease;
  margin-bottom:20px;
  border:1px solid #eee;
}

.how-step span{
  font-weight:700;
  color:#3b5bff;
  font-size:14px;
}

.how-step h4{
  font-size:20px;
  margin:6px 0;
}

.how-step p{
  color:#666;
  font-size:15px;
}

.how-step.active,
.how-step:hover{
  background:linear-gradient(135deg,var(--navy),var(--navy2));
  color:#fff;
  transform:translateX(6px);
}

.how-step.active p,
.how-step:hover p{
  color:#f1f1f1;
}

/* MOBILE */
@media(max-width:900px){
  .how-wrapper{
    flex-direction:column;
  }
  .how-image,
  .how-steps{
    width:100%;
  }
}


/* img sec  */
 
.imgsec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 8%;
     background:linear-gradient(135deg,var(--navy),var(--navy2));
    color: rgb(0, 0, 0);
}

.imgsec-left {
    width: 45%;
}

.imgsec-left h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.imgsec-left p {
    font-size: 17px;
    color: #ffffff;
    max-width: 420px;
}

.imgsec-line {
    width: 80px;
    height: 3px;
    background: #3b5bff;
    margin: 28px 0 16px;
}

.imgsec-tag {
    font-size: 14px;
    letter-spacing: 2px;
    color: #00fbff;
}

.imgsec-right {
    width: 50%;
}

.imgsec-right img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
}
@media(max-width:768px){
    .imgsec {
        padding: 50px 5%;
        display: none;
    }

    .imgsec-left {
        display: none;
    }

    .imgsec-right {
        width: 100%;
        display: none;
    }
}
/* why  */

/* ============================= */
/* WHY VOYEGER */
/* ============================= */
.why-voyeger{
  padding:120px 8%;
  background:linear-gradient(135deg,#f7f9ff,#ffffff);
  text-align:center;
}

.why-voyeger h2{
  font-size:40px;
  margin-bottom:70px;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:40px;
}

.why-card{
  background:#ffffff;
  border-radius:28px;
  padding:40px 30px;
  box-shadow:0 30px 60px rgba(0,0,0,0.08);
  transition:transform 0.4s ease;
  animation:float 6s ease-in-out infinite;
}

.why-card:nth-child(2){ animation-delay:1s; }
.why-card:nth-child(3){ animation-delay:2s; }
.why-card:nth-child(4){ animation-delay:3s; }

.why-card img{
  width:70px;
  margin-bottom:22px;
}

.why-card h4{
  font-size:20px;
  margin-bottom:10px;
}

.why-card p{
  color:#666;
  font-size:15px;
}

.why-card:hover{
  transform:translateY(-12px);
}

@keyframes float{
  0%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
  100%{ transform:translateY(0); }
}

/* testimonials  */
.testimonials{
  padding:100px 8%;
  background:#f7f9ff;
  text-align:center;
}

.testimonials h2{
  font-size:40px;
  margin-bottom:60px;
  font-weight:700;
}

.testimonial-wrapper{
  overflow:hidden;
  padding: 10px 0;
}

.testimonial-track{
  display:flex;
  gap:45px;
  transition:transform 0.8s ease;
  width: 100%;
}

/* Card */
.testimonial-card{
  min-width:30%;
  box-sizing:border-box;
  background:linear-gradient(135deg,var(--navy),var(--navy2));
  border-radius:26px;
  padding:45px 35px;
  /* box-shadow:0 25px 60px rgba(0,0,0,0.08); */
  text-align:center;
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover{
  transform: translateY(-6px);
  /* box-shadow:0 35px 70px rgba(0,0,0,0.12); */
}

/* Profile letter */
.profile{
  width:64px;
  height:64px;
  border-radius:50%;
  background:linear-gradient(135deg,#3b5bff,#6f8cff);
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  font-weight:600;
  margin:auto;
  margin-bottom:26px;
  line-height:1;
}

/* Quote text */
.testimonial-card p{
  font-size:18px;
  line-height:1.7;
  color:#222;
  margin-bottom:18px;
}
.testimonial-card::before{
  content:"“";
  position:absolute;
  top:18px;
  left:22px;
  font-size:60px;
  color:rgba(59,91,255,0.08);
}


/* Name */
.testimonial-card span{
  font-size:14px;
  color:#666;
  letter-spacing:0.3px;
}

/* Tablet */
@media(max-width:900px){
  .testimonial-card{ min-width:50%; }
}

/* Mobile */
@media(max-width:600px){
  .testimonial-card{ min-width:100%; }
}
.contactus{
  padding:120px 8%;
  background:#ffffff;
}

.contact-wrapper{
  display:flex;
  gap:60px;
  align-items:center;
}

.contact-left{
  width:45%;
}

.contact-left h2{
  font-size:42px;
  margin-bottom:18px;
}

.contact-left p{
  font-size:17px;
  color:#555;
  line-height:1.7;
  margin-bottom:30px;
}

.contact-info span{
  display:block;
  font-size:15px;
  color:#3b5bff;
  margin-bottom:8px;
}

.contact-right{
  width:55%;
}

.contact-right form{
  background:#f7f9ff;
  padding:40px;
  border-radius:28px;
  box-shadow:0 25px 60px rgba(0,0,0,0.06);
}

.contact-right input,
.contact-right textarea{
  width:100%;
  padding:14px 16px;
  margin-bottom:18px;
  border-radius:12px;
  border:1px solid #ddd;
  font-size:15px;
  outline:none;
}

.contact-right textarea{
  min-height:120px;
  resize:none;
}

.contact-right input:focus,
.contact-right textarea:focus{
  border-color:#3b5bff;
}

.contact-right button{
  background:linear-gradient(45deg,#3b5bff,#6f8cff);
  border:none;
  color:white;
  padding:14px 30px;
  border-radius:24px;
  font-size:15px;
  cursor:pointer;
  transition:transform 0.3s ease;
}

.contact-right button:hover{
  transform:scale(1.05);
}

/* Mobile */
@media(max-width:900px){
  .contact-wrapper{
    flex-direction:column;
  }

  .contact-left,
  .contact-right{
    width:100%;
  }
}






/* footer  */
/* --- Global Styles for Footer --- */
.main-footer {
    width: 100%;
    /* margin-top: 60vh; */
    /* margin-bottom: 20vh; */
    /* font-family: , sans-serif; Fallback font */
}

/* ========================================= */
/* 1. Newsletter Section (Top Green Part) */
/* ========================================= */
.newsletter-section {
    background-color: #38a55e; /* Vibrant green color */
    padding: 60px 100px 80px 100px; /* Adjust padding for visual balance */
    position: relative;
    overflow: hidden;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px; /* Optional: Constrain content width */
    margin: 0 auto;
}

.newsletter-text {
    max-width: 450px;
    color: #fff;
}

.newsletter-heading {
    font-family: 'Poppins', sans-serif; /* Assuming Poppins based on the image style */
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.newsletter-description {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.9;
    margin: 0;
}
.footer-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
}
.newsletter-form-container {
    display: flex;
    gap: 15px;
    align-items: center;
}

.email-input {
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    background-color: rgba(255, 255, 255, 0.4); /* Semi-transparent background */
    width: 300px;
    outline: none;
}
.email-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.subscribe-button {
    background-color: #ffffff;
    color: #38a55e;
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}
.subscribe-button:hover {
    background-color: #e6e6e6;
}

/* Back to Top Button */
.back-to-top {
    position: absolute;
    bottom: -20px; /* Position half outside the section */
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: #4CAF50; /* A darker shade of green */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* Styling the arrow inside the button */
.back-to-top svg {
    transform: translateY(-2px); /* Slight lift for visual balance */
}


/* ========================================= */
/* 2. Main Footer (Bottom Dark Part) */
/* ========================================= */
.footer-bottom {
    background-color: #00104f; /* Dark background color */
    color: #ffffff;
    padding: 80px 100px 40px 100px;
}

.footer-content {
    max-width: 1400px; /* Match newsletter width */
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links-social {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    /* This section contains the navigation links and social icons */
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    margin: 0 10px;
    transition: color 0.3s;
}
.footer-nav a:first-child { margin-left: 0; }
.footer-nav a:hover {
    color: #38a55e;
}

.pipe {
    color: #777;
    font-size: 16px;
    font-weight: 300;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s, border-color 0.3s;
}
.social-icon:hover {
    background-color: #38a55e;
    border-color: #38a55e;
}

.footer-separator {
    border: none;
    height: 1px;
    background-color: rgb(255, 255, 255);
    margin-bottom: 20px;
}

.footer-copyright-policy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #ccc;
}

.privacy-policy {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.privacy-policy:hover {
    color: #38a55e;
}


/* ========================================= */
/* 📱 Responsive Adjustments (Max width 768px) */
/* ========================================= */
@media (max-width: 768px) {
    /* Newsletter Section */
    .newsletter-section {
        padding: 40px 20px 60px 20px;
    }

    .newsletter-content {
        flex-direction: column; /* Stack text and form */
        align-items: flex-start;
        gap: 30px;
    }

    .newsletter-heading {
        font-size: 28px;
    }

    .newsletter-form-container {
        flex-direction: column; /* Stack input and button */
        width: 100%;
        gap: 10px;
    }

    .email-input {
        width: 100%;
    }

    .subscribe-button {
        width: 100%;
    }

    /* Main Footer Section */
    .footer-bottom {
        padding: 60px 20px 30px 20px;
    }

    .footer-links-social {
        flex-direction: column; /* Stack links and social icons */
        align-items: flex-start;
        gap: 20px;
    }

    .footer-nav {
        display: flex;
        flex-wrap: wrap; /* Allow links to wrap */
    }

    .footer-nav a, .pipe {
        margin: 0 5px;
    }

    .footer-copyright-policy {
        flex-direction: column; /* Stack copyright and policy */
        gap: 10px;
        align-items: flex-start;
    }
        .contact-title {

        font-size: 30px;
    }
}