@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/CormorantGaramond-Regular.woff2') format('woff2'),
       url('/fonts/CormorantGaramond-Regular.woff') format('woff'),
       url('/fonts/CormorantGaramond-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


/* ===== Reset & Global ===== */
body {
  font-family: 'Cormorant Garamond', serif;
  background: linear-gradient(to right, #fefcf9, #fdf1eb);
  color: #2d2d2d;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  padding: 60px 15px;
}

.left-content h4 {
  color: #b5db8e;
  font-size: 25px;
  margin-bottom: 10px;
  /* font-family: 'Cormorant Garamond', serif; */
}

.left-content h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.3;
  /* font-family: 'Cormorant Garamond', serif; */
  color: #1d1d1d;
}

.left-content p {
  font-size: 20px;
  color: #000;
  margin: 20px 0;
}

/* ===== Booking Box ===== */
.form-box {
  display: flex;
  flex-wrap: wrap;          /* ✅ allow wrapping */
  gap: 30px;                /* ✅ smaller gap */
  border-radius: 12px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  margin-top: 20px;
}

.form-item label {
  font-size: 15px;
  color: #000;
  text-transform: uppercase;
}

.form-item span {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #2d2d2d;
  /* font-family:bold; */
}

.form-submit {
  transition: 0.3s;
  background: #2d2d2d;
  color: #fff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-submit:hover {
  background: #7ab341 !important;
}

/* ===== Right Content (Images) ===== */
.right-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.right-content img {
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  max-width: 90%;         /* ✅ responsive scaling */
  height: auto;
  margin: 15px 0;         /* ✅ normal spacing */
  margin: -51px -101px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .hero {
    text-align: center;
  }

  .form-box {
    justify-content: center;
    gap: 20px;
  }

  .right-content {
    align-items: center;
    margin-top: 30px;
  }

  .left-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .left-content h1 {
    font-size: 28px;
  }

  .left-content h4 {
    font-size: 18px;
  }

  .form-box {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .form-item span {
    font-size: 14px;
  }
}






/* ===== Villa Images ===== */
.villa-images {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.villa-img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Bottom-right image (base) */
.villa-img-2 {
  margin-left: 150px;
  margin-top: 150px;
  z-index: 1;
}

/* Top-left overlapping image */
.villa-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

/* ===== Circle Button ===== */
.circle-btn {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid #1d1d1d;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  position: absolute;
  right: 43px;
  top: 30%;
  transform: rotate(89deg);
}

.circle-btn span {
  font-weight: 600;
  font-size: 20px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(181deg);
}

/* ✅ Responsive (Tablet & Mobile) */
@media (max-width: 992px) {
  .villa-images {
    flex-direction: column;
    align-items: center;
  }

  .villa-img-1,
  .villa-img-2 {
    position: relative;
    margin: 0 auto 20px auto;
    max-width: 90%;
  }

  .circle-btn {
    position: relative;
    margin: 55px auto 0 auto;
    right: 0;
    top: 0;
    transform: rotate(0deg);
  }

  .circle-btn span {
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
  }
}

/* ✅ Small Mobile */
@media (max-width: 576px) {
  .circle-btn {
    width: 100px;
    height: 100px;
  }
  .circle-btn span {
    font-size: 12px;
  }
}

/* header logo css */

img {
  margin-top: 5px;
  margin-left: 0px;
}

/* header logo css close */


/* ===== About Section ===== */
.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 15px;
}

/* Image Group */
.about-images {
  flex: 1 1 45%;
  position: relative;
  min-height: 400px;
}

.about-images .about-img {
  position: absolute;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

/* First image (top-left) */
.about-images .img-1 {
  top: -40px;
  left: 50px;
  width: 55%;
  height: 70%;
  z-index: 3;
}

/* Second image (top-right) */
.about-images .img-2 {
  top: 14%;
  right: 0;
  width: 65%;
  height: 77%;
  z-index: 2;
}

/* Third image (bottom-left) */
.about-images .img-3 {
  bottom: -98px;
  left: 0%;
  width: 73%;
  height: 77%;
  z-index: 1;
}

/* Background */
.bg-section {
  background-image: url('../images/Untitled-1-Recovered 88.png');
  /* background-repeat: no-repeat; */
  background-size: cover;       /* ✅ fill screen */
  background-position: center;  /* ✅ keep centered */
  min-height: 100vh;            /* ✅ full height */
  width: 100%;
  background-position: 0px 100px;
  position: absolute;
  

  
}


/* Right Content */
.about-content {
  flex: 1 1 45%;
  margin-top: 95px;
}

.sub-heading {
  color: #6a8c45;
  /* font-family: 'Cormorant Garamond', serif; */
  font-size: 28px;
  margin-bottom: 10px;
  margin-left: 60px;
}

.main-heading {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  /* font-family: 'Cormorant Garamond', serif; */
  color: #1d1d1d;
  margin-left: 60px;
}

.about-content p {
  font-size: 20px;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.6;
  margin-left: 132px;
}

/* Circle Button-2 */
.circle-btn-2 {
  width: 112px;
  height: 114px;
  border-radius: 51%;
  border: 2px solid #1d1d1d;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -92px;
  text-align: center;
}

.circle-btn-2 span {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}

.circle-btn-2:hover {
  transform: scale(1.1) rotate(10deg);
}

/* ✅ Responsive */
@media (max-width: 992px) {
  .about-section {
    flex-direction: column;
    text-align: center;
    padding: 50px 15px;
  }
  .about-images {
    width: 100%;
    min-height: auto;
    margin-bottom: 30px;
  }
  .about-images .about-img {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
  }

  .about-img.img-1 {
  margin-left: -100px;
}
  .about-content {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .main-heading {
    font-size: 32px;
    margin: 20px 0;
  }
  .sub-heading {
    margin-left: 0;
  }
  .about-content p {
    margin-left: 0;
  }
  .circle-btn-2 {
    margin: 20px auto 0 auto;
    transform: rotate(0deg);
  }
}

@media (max-width: 576px) {
  .about-images {
    min-height: auto;
  }
  .about-images .about-img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  .main-heading {
    font-size: 26px;
  }
  .sub-heading {
    font-size: 20px;
  }
  .about-content {
    padding: 0 15px;
  }
}




/* Rotated image style */
.rotated-img {
  display: block;
  max-width: 40%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transform: rotate(-25deg); /* rotate effect */
  transition: 0.3s ease-in-out;
  margin: 20px auto;
  float: right;
}

/* Hover effect (optional) */
.rotated-img:hover {
  transform: rotate(0deg) scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .rotated-img {
    max-width: 100%;
    transform: rotate(0deg); /* keep straight on mobile */
    margin-right: 0px;
  }
}


/* ===== Packages Section ===== */


/* Section Heading */
.text-h1 {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
  margin-left: -135px;
  margin-top: -222px;
}

.text-h1 .section-subtitle {
  color: #7ab341;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 8px;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
  margin-left: -432px;
  /* font-family: 'Cormorant Garamond', serif; */
}

.text-h1 .section-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  color: #2d2d2d;
  /* font-family: 'Cormorant Garamond', serif; */
  text-align: initial;
  margin-left: 119px;
}

/* Package Items */
.packages-section h2, 
.packages-section h4 {
/* font-family: 'Cormorant Garamond', serif; */
  color: #1d1d1d;
}

.packages-section p {
  color: #000;
  font-size: 20px;
  line-height: 1.6;
  /* font-family: bold; */
}

.package-item h4 {
  margin-bottom: 10px;
  font-size: 35px;
}

.btn {
  border-radius: 6px;
  font-weight: 500;
}

.btn.btn-dark.px-4 {
  background-color: #1e4c57;
}

.btn.btn-outline-dark.px-4:hover {
  background-color: #1e4c57;
}

/* ✅ Tablet view */
@media (max-width: 992px) {
  .text-h1 .section-title {
    font-size: 36px;
  }

  .text-h1 .section-subtitle {
    font-size: 15px;
    margin-top: 30px;
  }
}

/* ✅ Mobile view */
@media (max-width: 576px) {
  .text-h1 .section-title {
    font-size: 26px;
    margin-left: 200px;
  }

  .text-h1 .section-subtitle {
    font-size: 22px;
    margin-left: 138px;
  }

  .packages-section {
    text-align: center;
  }

  .packages-section img {
    width: 100%;
    height: auto;
  }

  .d-flex {
    justify-content: center;
  }
}




/* ===== Full Image Section with Text ===== */
.full-image-section {
  position: relative;
  width: 100%;
  height: 700px; /* fixed height, adjust as needed */
  background: url('../images/photo-1520250497591-112f2f40a3f4.jpeg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
}

.full-image-section .overlay {
  text-align: center;
 /* font-family: 'Playfair Display', serif; */
  padding: 30px 40px;
  border-radius: 12px;
}

.full-image-section .overlay h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  margin-left: -701px;
  margin-top: 250px;
  /* font-family: 'Cormorant Garamond', serif; */
}

/* ✅ Responsive for Mobile */
@media (max-width: 768px) {
  .full-image-section {
    height: 300px;
    padding: 20px;
  }

  .full-image-section .overlay h2 {
    font-size: 22px;
    margin-left: -100px;
    margin-top: 206px;
  }
}



/* ===== Section Styling ===== */
/* .destination-section {
  background: #fefaf6;
} */

.section-subtitle {
  color: #7ab341;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  /* text-transform: uppercase; */
  /* font-family: 'Dancing Script', cursive; */
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  /* font-family: 'Playfair Display', serif; */
  color: #1d1d1d;
}

/* ===== Card Styling ===== */
.destination-card {
  text-align: left;
}

.destination-card .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.destination-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

/* .fw-bold.mt-3 {
  font-family: 'Cormorant Garamond', serif;
} */

.destination-card:hover img {
  transform: scale(1.05);
}

.rating {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fff;
  color: #333;
  font-weight: 600;
  font-size: 14px;
  padding: 3px 8px;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}


.location {
  font-size: 20px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px; /* spacing between icon and text */
  flex-wrap: wrap; /* allow text to wrap on small screens */
}

.location i {
  color: #6e6e6e; /* marker color */
  font-size: 18px;
}

/* ✅ Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .location {
    font-size: 14px;  /* smaller text */
    gap: 6px;         /* tighter spacing */
  }

  .location i {
    font-size: 16px;  /* slightly smaller icon */
  }
}

@media (max-width: 480px) {
  .location {
    font-size: 13px;
    flex-direction: column; /* stack icon above text on very small screens */
    align-items: flex-start; 
    gap: 4px;
  }

  .location i {
    font-size: 15px;
  }
}


/* ===== Section Styling ===== */
/* .testimonial-section {
  background: #f9f9f9;
} */

.section-subtitle {
  color: #7ab341;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
  /* font-family: 'Cormorant Garamond', serif; */
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  /* font-family: 'Cormorant Garamond', serif; */
  margin-bottom: 15px;
  color: #1d1d1d;
}

.section-desc {
  font-size: 20px;
  color: #000;
  margin-bottom: 30px;
}

/* Book now circle button */
.book-now-btn {
  display: inline-block;
  border: 2px solid #000;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(-20deg);
  font-weight: 500;
  cursor: pointer;
}

/* ===== Testimonial Cards ===== */
.testimonial-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  height: 100%;
}

.stars {
  color: #7ab341;
  font-size: 25px;
  margin-bottom: 12px;
}

.review {
  font-size: 20px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.5;
}

.author img {
  border-radius: 50%;
  margin-right: 10px;
}

.author h6 {
  font-size: 14px;
  font-weight: 600;
}

.author small {
  color: #777;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 20px;
  margin-top: 94px;
  margin-bottom: -65px;
}

.image-gallery img {
  width: 100%;
  height: auto;
  display: block;
  
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-gallery img:hover {
  transform: scale(1.05);
}

/* Responsive styles */

/* Tablets and smaller screens */
@media (max-width: 1024px) {
  .image-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile devices */
@media (max-width: 600px) {
  .image-gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 22px;
    text-align: center;
  }
  .section-subtitle, .section-desc {
    text-align: center;
  }
  .book-now-btn {
    margin: 0 auto 20px auto;
  }
  .testimonial-card {
    text-align: center;
  }
  .author {
    justify-content: center;
  }
}


  :root {
    --bg-color: #fbf3e7;
    --primary-color: #13272e;
    --category-bg: #8dc63f;
    --font-green: #a8c452;
    --font-sans: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-serif: 'Georgia', serif;
  }
  * {
    box-sizing: border-box;
  }
  body {
    margin: 0;
   /* font-family: 'Cormorant Garamond', serif; */
    background-color: var(--bg-color);
    color: var(--primary-color);
  }
  .section {
    max-width: 1200px;
    margin: 8rem auto 4rem;
    padding: 0 1rem;
  }
  .section-header {
    margin-bottom: 2rem;
  }
  .section-header .subheading {
    color: var(--font-green);
    /* font-family: 'Cormorant Garamond', serif; */
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
    font-size: 25px;
  }
  .section-header h2 {
    /* font-family: 'Cormorant Garamond', serif; */
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
  }
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .card {
    background: white;
    border-radius: 0 2rem 0 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
  }
  .card:hover {
    transform: translateY(-5px);
  }
  .card-image-wrapper {
    position: relative;
    overflow: hidden;
  }
  .card-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0 2rem 0 1rem;
    object-fit: cover;
    aspect-ratio: 16 / 10;
    transition: transform 0.5s ease;
  }
  .card:hover .card-image-wrapper img {
    transform: scale(1.05);
  }
  .category-label {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--category-bg);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0 12px 12px 0;
    padding: 0.25em 0.8em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    user-select: none;
  }
  .card-content {
    padding: 1.25rem 1.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  .date {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #5a5a5a;
    margin-bottom: 0.7rem;
  }
  .date svg {
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
    fill: #5a5a5a;
    flex-shrink: 0;
  }
  .title {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.25;
    margin: 0;
    flex-grow: 1;
  }
  /* Responsive - Tablets */
  @media (max-width: 900px) {
    .blog-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
  }
  /* Responsive - Mobile */
  @media (max-width: 600px) {
    .section {
      margin: 1.5rem 1rem 3rem;
    }
    .section-header h2 {
      font-size: 1.8rem;
    }
    .blog-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .card {
      border-radius: 1.25rem;
    }
    .card-image-wrapper img {
      border-radius: 1.25rem 1.25rem 0 0;
      aspect-ratio: 4 / 3;
    }
  }


  /* footer css code */

  * {
    box-sizing: border-box;
  }
  body {
    /* font-family: 'Cormorant Garamond', serif; */
    background-color: #f7f8f6;
    color: #143642;
    margin: 0;
    padding: 0 20px 40px;
    line-height: 1.4;
  }
  a {
    text-decoration: none;
    color: inherit;
  }
  ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0.25em;
  }
  ul li {
    margin-bottom: 0.5em;
  }
  /* Container */
  .footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 20px;
  }
  /* Newsletter Section */
  .newsletter-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #b3bfc4;
    padding: 30px 0 20px;
  }
  .newsletter-title {
    font-weight: bold;
    font-size: 1.8rem;
    margin-left: 4px;
  }
  .newsletter-form {
    display: flex;
    max-width: 400px;
    width: 100%;
  }
  .newsletter-input {
    flex-grow: 1;
    font-size: 0.95rem;
    padding: 0.65em 1em;
    border: none;
    border-radius: 0;
    outline: none;
    box-shadow: none;
  }
  .newsletter-input::placeholder {
    color: #888;
    font-weight: normal;
  }
  .newsletter-submit {
    background-color: #143642;
    color: white;
    padding: 0 1.2em;
    border: none;
    cursor: pointer;
    transition: background-color 0.25s ease;
    font-weight: 500;
    letter-spacing: 0.03em;
  }
  .newsletter-submit:hover,
  .newsletter-submit:focus {
    background-color: #165a72;
  }

  /* Links & Info Section */
  .footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 30px 0 20px;
    border-bottom: 1px solid #b3bfc4;
  }
  .footer-col {
    flex: 1 1 200px;
    margin-bottom: 30px;
    min-width: 150px;
  }

  .footer-col h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.9em;
  }
  .footer-col p.brand {
    font-weight: 900;
    font-size: 1.7rem;
    line-height: 1.2;
    margin-bottom: 0.3em;
    color: #000;
  }
  .footer-col p.brand span {
    font-weight: 700;
    color: #90a955; /* distinct green style for "ler" in Traveler */
  }
  .footer-contact p {
    margin: 0.5em 0;
    font-size: 0.9rem;
    color: #000;
    display: flex;
    align-items: center;
    font-family: 'AstoriaClassicSans', Arial, sans-serif;
  }
  .footer-contact p svg {
    flex-shrink: 0;
    margin-right: 8px;
    stroke: #000;
    width: 14px;
    height: 14px;
  }

  .footer-links li a {
    color: #000;
    transition: color 0.2s;
    font-size: 20px;
  }
  .footer-links li a:hover,
  .footer-links li a:focus {
    color: #90a955;
  }

  /* Social Icons */
  .social-icons {
    display: flex;
    gap: 18px;
  }
  .social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    color: white;
    background-color: #143642;
    border-radius: 50%;
    text-align: center;
    font-size: 16px;
    line-height: 1;
    transition: background-color 0.3s ease;
  }
  .social-icons a:hover,
  .social-icons a:focus {
    background-color: #165a72;
  }
  /* Bottom Bar */
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 15px;
    padding-top: 12px;
    color: #000;
  }
  .footer-bottom a {
    color: #000;
    font-weight: 600;
    margin-left: 15px;
    transition: color 0.2s ease;
  }
  .footer-bottom a:first-child {
    margin-left: 0;
  }
  .footer-bottom a:hover,
  .footer-bottom a:focus {
    color: #90a955;
  }
  .footer-bottom-left {
    flex-grow: 1;
  }
  .footer-bottom-right {
    flex-grow: 1;
    text-align: right;
  }
  
  /* Responsive Mobile */
  @media (max-width: 640px) {
    .newsletter-section {
      flex-direction: column;
      gap: 15px;
    }
    .newsletter-title {
      font-size: 1.5rem;
      margin-left: 0;
    }
    .newsletter-form {
      max-width: 100%;
    }
    .footer-main {
      flex-direction: column;
      gap: 30px;
      padding-top: 15px;
    }
    .footer-col {
      min-width: auto;
    }
    .footer-bottom {
      flex-direction: column;
      gap: 10px;
    }
    .footer-bottom-right {
      text-align: left;
    }
  }

  

  /* footer css close */



