/* ========== RESET & BASE ========== */
@import url('https://fonts.googleapis.com/css2?family=Cookie&family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* overflow-y: hidden; */
}

.cookie {
  font-family: "Cookie", cursive;
}

.yellow {

  color: #DD9933;

}

.bg-yellow {
  background-color: #DD9933;
}

html {
  scroll-behavior: smooth;
}

.bg-dark {
  background-color: black;
}

.f70 {
  font-size: 60px !important;
}

.f35 {
  font-size: 35px;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

/* Hide hamburger button by default - show only on small screens */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #333;
  /* or your preferred color */
}

/* Show hamburger and hide nav links on mobile */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-list {
    display: none;
    /* hide menu initially */
    flex-direction: column;
    /* stack items vertically */
    background: #fff;
    /* or your nav background */
    position: absolute;
    top: 60px;
    /* adjust based on header height */
    left: 0;
    width: 100%;
    padding: 10px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 999;
  }

  .nav-list.nav-list--open {
    display: flex;
    /* show menu when toggled */
  }

  /* Optional: style nav links in mobile */
  .nav-list li {
    margin: 10px 0;
    text-align: center;
  }

  /* Adjust nav-logo positioning for mobile */
  .nav-logo {
    order: 0;
    /* show logo on top if needed */
    margin-bottom: 10px;
  }
}

/* .text-start {
  font-size: 14px;
} */

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: #ccc; /* or your desired text color */
  font-size: 13px;
}

.contact-info i {
  margin-top: 3px;
  color: #ccc; /* optional icon color */
  min-width: 20px;
}
.footer-bottom {
  font-size: 14px;
  text-align: center;
}






/* ========== LINKS ========== */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* ========== HEADER ========== */
header {
  width: 100%;
}

/* Top Header */
.top-header {
  background-color: #dd9933;
  /* Soft wedding brown */
  color: #fff;
  padding: 10px 40px;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.top-header i {
  margin-right: 8px;
  text-decoration: none;
}

/* ========== NAVIGATION ========== */
.main-nav {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 15px 20px;
  gap: 20px;
}

.nav-list li {
  display: flex;
  align-items: center;
}

.nav-list li a {
  font-size: 15px;
  font-weight: 500;
  padding: 5px 10px;
  transition: color 0.3s ease;
  text-decoration: none;
  list-style: none;
  color: rgb(0, 0, 0);
  text-transform: uppercase;
}

.nav-list li a:hover {
  color: #8e6e53;
}

/* Logo Styling */
.nav-logo a img {
  height: 60px;
  margin: 0 25px;
}

.phone-link {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  margin: 15px;
}

.hamburger span {
  height: 3px;
  background: rgb(255, 255, 255);
  border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background: #000000;
  color: white;
  transition: 0.3s ease;
  z-index: 1000;
  padding: 60px 20px;
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  margin: 15px 0;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
}

.mobile-logo img {
  height: 50px;
  display: none;
}

.mobile-header {
  align-items: center;
  justify-content: space-between;
  background: transparent;
  padding: 10px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1001;
  display: none;
}


.mobile-phone a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Responsive Rules */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .top-header {
    display: block;
    text-align: center;
  }

  .mobile-top-bar {
    display: flex;
  }

  .nav-logo {
    display: none;
  }

  .mobile-header {
    display: flex;
    height: 84px;
  }

  .nav-logo {
    display: none;
  }

  .mobile-logo img {
    display: block;
    margin: 0 272px;

    margin-top: -33px;
  }

  .hamburger {
    display: flex;
    position: absolute;
    top: 2px;
    left: -1px;
    z-index: 1100;
  }
}

/* ========== FOOTER ========== */
/* footer {
  background-color: #111;
  color: #fff;
  padding: 20px 10px;

}

footer a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
}
footer li {
  text-decoration: none;
  list-style: none;
}

footer a:hover {
  color: #fff;
}
.footer-logo img{
  width: 200px;
  height: 200px;
} */


footer {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #000000;
  color: #fff;
  padding: 20px 10px;
  position: relative;
}



/* Footer links */
footer a {

  color: #ccc;
  text-decoration: none;
  font-size: 13px;
}

footer a:hover {
  color: #fff;
}

/* Footer list */
footer ul {
  padding: 0;
  margin-left: 10;
}

footer li {
  color: #ffffff99;
  list-style: none;
  margin-bottom: 5px;
  font-family: Arial, Helvetica, sans-serif
}

/* Heading spacing and alignment */
footer h4 {
  font-size: 24px;
  margin-bottom: 25px;
  text-align: left;
  position: relative;
  display: inline-block;
}

footer h4::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 30%;
  height: 2px;
  background-color: #dd9933;
  opacity: 0.5;
}

.list li {
  list-style: circle;
  color: #cc9a3c;
  margin-left: 18px;
}

/* Image logo */
.footer-logo img {
  width: 158px;
  height: auto;
  margin-bottom: 15px;
}

.wide-column {
  max-width: 100%;
  width: 100%;
}

/* ========== INDEX PAGE ========== */
/* ====== Swiper Section ====== */
.feedback-img img {
  border-radius: 50%;
}

.feedback-content {
  padding: 15px 55px;
}



/* ========== Style for Your Wedding ========== */
.style-for-your-wedding {
  background-color: #000000;
}

.container-swift {
  margin: 50px;
}

.heading-for-wedding {
  color: #dd9933;
  font-family: "Cookie", cursive;
  font-weight: 400;
  font-size: 60px;
  padding: 15px 0;
}

.subheading-for-wedding {
  color: #dd9933;
  font-family: "Cookie", cursive;
  font-size: 40px;
}

.for-your-wedding-btn {
  background-color: transparent;
  border: 2px solid #dd9933;
  padding: 11px 20px;
  border-radius: 30px;
  color: #dd9933;
}

.for-your-wedding-btn:hover {
  background-color: #dd9933;
  color: #fff;
  transition: 0.5s;
}

/* .card-wraper {
  overflow: hidden;
  position: relative;
}

.card-wraper img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease-in-out;
  display: block;
}


.card-wraper:hover img {
  transform: scale(1.1);
} */
/* ========== Destination Wedding ========== */
.destination-container {

  margin: 50px 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.destination-heading {
  font-family: "Cookie", cursive;
  font-weight: 400;
  background-color: #e6a340;
  color: black;
}

.destination-heading h1 {
  font-size: 80px;
  margin-bottom: 0;
  padding: 15px 0;
}

.destination-wedding {
  background-color: black;


}

.destination-btn {
  background-color: transparent;
  border: 2px solid #dd9933;
  padding: 11px 20px;
  border-radius: 30px;
  color: #dd9933;
  transition: 0.5s;
}

.destination-btn:hover {
  background-color: #dd9933;
  color: #fff;
  transition: 0.5s;
}



.quicklinks-section {
  background-color: rgb(255, 252, 252);
}

.quicklinks-section h4 {
  color: black !important;
  text-decoration: none;
}

.quicklinks-section a {
  text-decoration: none;
}

/* ========== Our Client Says ========== */
.feedback-container {
  background-color: #DD9933;

}

.feedback-heading {
  font-family: "Cookie", cursive;
  font-weight: 400;
  font-size: 60px;
  padding: 15px 0;
  background-color: #dd9933;
  color: black;
  margin-bottom: 0;
}

.swiper-container {
  width: 100%;
  max-width: 800px;
  height: 400px;
  margin: auto;
}

.swiper {
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.profile-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #ccc;
  margin-bottom: 20px;
}

.profile-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-caption {
  max-width: 700px;
  font-size: 16px;
  line-height: 1.6;
}

.swiper-feedback {
  height: 60%;
  height: 50vh;
}

/* ========== latest-wedding ========== */
.latest-wedding {
  background-color: black;
}

.latest-wedding-heading {
  font-family: "Cookie", cursive;
  font-size: 70px;
  font-weight: 400;
  color: #dd9933;
  padding: 20px 0;
}

/* ==========   BLOG  ========== */
.blog-container {
  margin: 50px;

}

.blog-read-more-btn {
  background-color: transparent;
  border: 2px solid #000000;
  padding: 11px 20px;
  border-radius: 30px;
  color: #030200;
}

.blog-read-more-btn:hover {
  background-color: #e68e0b;
  color: #000000;
  transition: 0.5s;
}

.shadow-box {
  position: relative;
  z-index: 1;
  background: white;
  padding: 5px;
  text-align: center;
}

.shadow-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 60%;
  height: 5px;
  box-shadow: 0 8px 20px rgba(39, 38, 37, 0.884);
  border-radius: 50%;
  z-index: -1;
}

.blog-image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: hidden;
}

.blog-image-wrapper img {
  width: 100%;
  display: block;
}

.blog-date {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  text-align: center;
}

.blog-caption {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(226, 166, 36, 0.966);
  color: white;
  text-align: center;
  padding: 0px 10px;
  margin: 0;
}

.blog-caption p {
  padding: 0;
  margin: 0;
}

.blog-caption h4,
.blog-caption h6 {
  margin: 0;
}

.home-blog-heading {
  font-family: "Lora", serif;
  font-size: 26px;
}

.home-blog-subheading {
  font-family: "Lora", serif;
  font-size: 16px;
}

.text-yellow {
  color: #dd9933;
}

.blog-card {
  cursor: pointer;
}

.blog-load-more-btn {
  padding: 10px 30px;
  border: 2px solid black;
  background-color: transparent;
  color: black;
  text-transform: uppercase;
  text-align: center;
}

.blog-load-more-btn:hover {
  background-color: black;
  color: white;
}

/* Already added before */
.hidden-blog {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.6s ease;
}

.hidden-blog.show {
  max-height: 1000px;
  /* adjust if needed */
  opacity: 1;
}

/* ========== BUTTON CONTAINER ========== */
.button-container {
  margin: 50px 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.button-container button {
  margin: 10px;
  padding: 10px 20px;
  border-radius: 30px;
  border: 2px solid black;
  background-color: transparent;
  text-transform: uppercase;

}

.button-container button:hover {
  background-color: #DD9933;
  border-color: #DD9933;
}




/* ----------------------------------------
           About page start here
---------------------------------------- */
.mark-wedding {
  background-color: black;
  padding: 70px 15px 15px 0px;
}

.about-page-heading {
  font-family: "Cookie", cursive;
  font-size: 60px;
  color: #DD9933;
  text-align: center;
}

.about-page-subheading {
  font-family: "Cookie", cursive;
  font-size: 30px;
  color: #DD9933;
}

.aboutpage-icon {
  display: flex;
  text-align: center;
  justify-content: center;
  margin: 15px;
}

.aboutpage-icon i {
  padding: 10px;
  background-color: gray;
  margin: 8px;
  font-size: 22px;
  border-radius: 50%;
  cursor: pointer;
}

.aboutpage-icon i:hover {
  background-color: black;
  color: white;

}


.weeding-planner-about-page {
  background-color: #dd9933;
}

.weeding-planner-about-page h1 {
  margin: 0;
  font-family: "Cookie", cursive;
  font-size: 60px;
}

.weeding-planner-about-page h6 {
  margin: 0;
}

.about-page-text-content h5 {
  font-family: "Cookie", cursive;
  font-size: 24px;
  padding: 20px 35px;
  font-weight: 500;

}

.about-page2nd-btn {
  padding: 10px 15px;
  background-color: transparent;
  border: 2px solid black;
  border-radius: 30px;

}

.about-page2nd-btn:hover {
  background-color: black;
  color: white;
}

.about-page-two-btn button {
  color: #DD9933;
  border: 3px solid #dd9933;
  padding: 15px 25px;
  border-radius: 40px;
  font-size: 22px;
  /* font-weight: bold; */
  background-color: transparent;
}

.about-page-two-btn button:hover {
  background-color: rgb(189, 144, 19);
  color: white;
}

.about-page-heart-btn {
  background-color: transparent;
  margin: 30px 0;
  padding: 12px 25px;
  border-radius: 35px;
  border: 3px solid black;
}

.about-page-heart-btn:hover {
  background-color: rgb(216, 169, 14);
  color: white;
}

/* ----------------------------------------
           Services page start here
---------------------------------------- */

.service-page {
  background-image: url('../images/servicepage1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-overlay {
  font-family: "Cookie", cursive;
  text-align: center;
  color: white;
}

.service-page-main-heading {
  font-size: 50px;
  max-width: 1500px;
  text-align: center;
}

.service-page-content-text {
  background-color: #DD9933;
  padding: 35px 50px;
}

.our-expertise {
  font-family: "Cookie", cursive;
}

.our-expertise-sub-heading {
  font-family: "Cookie", cursive;
  font-size: 30px;
}

.service-page-container {
  padding: 50px;
}

.service-page-container-h1 {
  color: #DD9933;
  font-size: 60px;
}

.service-page-container-h6 {
  color: #DD9933;
  font-size: 24px;
}

.service-page-container-h5 {
  color: #DD9933;
  font-size: 40px;
}

.service-page-Destination-Weddings-container {
  background-color: #DD9933;
}

.service-page-Destination-Weddings-container {
  padding: 25px 40px;
}

.memorable-heading {
  font-size: 70px !important;
}

/* ----------------------------------------
           Bride page start here
---------------------------------------- */

.bride-page {
  background-image: url('../images/bride1.webp');
  /* replace with your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-overlay {
  padding: 40px 20px;
  color: white;
  max-width: 900px;
  margin: 0 auto;
}

.bride-main-heading {
  font-size: 70px;
}

.bride-content-text {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.bridals h1 {
  font-size: 70px;
}

.bride-h1-heading {
  font-size: 55px;
}

.bride-h6-heading {
  font-size: 30px;
}

/* ----------------------------------------
           Contact page start here
---------------------------------------- */

.contact-hero {
  background-image: url('../images/contact-us.webp');
  /* Replace with your image path */
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.overlay-text {
  position: relative;
  text-align: center;
  z-index: 1;
}

.overlay-text h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.overlay-text p {
  font-size: 18px;
}

.map-section iframe {
  width: 100%;
  height: 100vh;
  border: none;
  padding: 50px;
}

.contact-section {
  background-color: #cc9a3c;
}

.contact-section input,
.contact-section textarea {
  background-color: transparent;
  border: 2px solid white;
  border-radius: 0px;
  outline: none;
  color: white;
  /* optional: for visibility on transparent bg */
}

/* Apply again on focus to ensure it doesn't change */
.contact-section input:focus,
.contact-section textarea:focus {
  background-color: transparent;
  border-color: white;
  outline: none;
}


/* ----------------------------------------
           faq page start here
---------------------------------------- */


.faq-section {
  background-image: url('../images/faq1.jpg');
  /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-overlay {
  background-color: rgba(5, 5, 5, 0.6);
  /* dark overlay for readability */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-heading {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 400;
  font-family: "Cookie", cursive;
}

.faq-subheading {
  font-size: 20px;
  font-family: "Cookie", cursive;
}


.accordion {
  background-color: transparent;
  color: #dd9933;
  cursor: pointer;
  padding: 18px;
  margin: 10px 0;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  border: 2px solid #dd9933;
}

/* .active,
    .accordion:hover {
        background-color: white;
        border: 1px dashed deepskyblue;
    }
     */
.accordion:after {
  content: '\002B';
  color: #777777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
  border: 2px solid #DD9933;
  padding: 0 8px;
  font-weight: bold;
  border-radius: 3px;
}

.active:after {
  content: "\2212";
  border: 2px solid #DD9933;
}

.panel {
  padding: 0 18px;
  background-color: rgb(0, 0, 0);
  max-height: 0;
  overflow: hidden;
  color: #DD9933;
  transition: max-height 0.2s ease-out;
}

.faq-page {
  background-color: black;
}

/* ----------------------------------------
          OUR GALLERY PAGE START HERE
---------------------------------------- */

.gallery-section {
  background-image: url('../images/g1.webp');
  /* Replace with your image path */
  background-size: cover;
  background-position: center;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.gallery-section .overlay {
  padding: 20px;
  border-radius: 10px;
}

/* ====================BLOG=========================== */

.blog-img-wrapper {
  width: 110%;
  height: 650px;
  overflow: hidden;
  margin-top: 80px;
  padding-left: 60px;
  /* If needed */
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
  padding-left: 100px;
  /* opacity: 0.8; */
}

.blog-img:hover {
  transform: scale(1.1);
}

.log-read-more-btn {
  border: none;
  color: black;
  border-bottom: 2px solid black;
  background-color: transparent;
}

.pagination-btn {
  background-color: white;
  border: 1px solid gray;
  padding: 3px 10px;

}

/* .read-more:hover {
      background-color: #a6384f;
    } */

@media (max-width: 768px) {
  .blogpage {
    grid-template-columns: 1fr;
  }
}

/* ======================BLOG DETAI PAGE================ */
.blog-detail-page {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;

}

.fa-facebook {
  padding: 8px;
  background-color: blue;
  border-radius: 50%;
  color: white;
  font-size: 22px;
  margin: 10px;
  cursor: pointer;
}

.fa-x-twitter {
  padding: 8px;
  background-color: rgb(0, 0, 0);
  border-radius: 50%;
  color: white;
  font-size: 22px;
  margin: 10px;
  cursor: pointer;
}

.fa-pinterest {
  padding: 8px;
  background-color: #D54D52;
  border-radius: 50%;
  color: white;
  font-size: 22px;
  margin: 10px;
  cursor: pointer;
}

.fa-linkedin {
  padding: 8px;
  background-color: #0274B3;
  border-radius: 50%;
  color: white;
  font-size: 22px;
  margin: 10px;
  cursor: pointer;
}

/* ======================home innerpage destination card================ */
.destination-btn {
  background-color: transparent;
  border: 2px solid #dd9933;
  padding: 11px 20px;
  border-radius: 30px;
  color: #dd9933;
  transition: 0.5s;
}

/* .island-img{
    width: 500px;
  height: 600px;
  object-fit: cover;
  border-radius: 50%;
} */
.island-knowmore {
  padding: 15px 25px;
  border: 2px solid #cc9a3c;
  color: #DD9933;
  background-color: transparent;
  border-radius: 20px;
}

/* * ========== MEDIA QUERIES ========== */
@media (max-width: 768px) {
  .nav-list {
    flex-direction: column;
    gap: 12px;
  }

  .nav-logo a img {
    margin: 15px 0;
  }

  .container-swift {
    margin: 20px;
  }

  .destination-container {
    margin: 20px;
  }

  .botton-container {
    margin: 10px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .latest-wedding {
    padding: 10px 10px;
  }

  .weeding-planner-about-page h1 {
    margin: 0;
    font-family: "Cookie", cursive;
    font-size: 30px;
    color: #000000;
  }

  .mark-wedding {
    padding: 10px 20px;
  }

  .about-page-subheading {
    font-family: "Cookie", cursive;
    font-size: 30px;
    color: #DD9933;
    padding: 10px 20px;
  }

  .weeding-planner-about-page h1 {
    margin: 0;
    font-family: "Cookie", cursive;
    font-size: 30px;
  }

  .service-page-main-heading {
    font-size: 25px;
    padding: 10px 10px;

  }

  .service-page-container {
    padding: 20px;
  }

  .service-page-Destination-Weddings-container {
    padding: 25px 20px;
  }

}

.text {
  padding-left: 160px;
}

.info-contact {
  text-align: center;
  padding-left: 120px;
}

.white-link {
  color: white;
  text-decoration: none;
}

.white-link:hover {
  color: #ccc;
  /* Optional: hover effect */
}