
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* removes horizontal scroll */
}
html {
  scroll-behavior: smooth;
}


:root {
    --primary: #FEA116;
    --light: #F1F8FF;
    --dark: #0F172B;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}




/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 43, .7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 600px;
      
        object-fit: cover;
    }
}


@media (max-width: 768px) {
    #header-carousel .carousel-item img {
        height: 450px; /* mobile height */
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}







/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;.service-icon-simple {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #0d6efd; /* Hotel theme color */
  border: 2px solid #0d6efd;
  border-radius: 50%;
  transition: all 0.3s ease;
}
}


.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    padding-left: 65px;
    padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
    padding: 30px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: #FFFFFF;
}


/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
    transition: .5s;
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Footer ***/
.newsletter {
    position: relative;
    z-index: 1;
}
/* ================== FOOTER ================== */
.footer {
  position: relative;
  margin-top: 87px;
  padding-top: 180px;
  background: #111; /* optional dark background */
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #FFFFFF;
  border-radius: 35px;
  transition: .3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

/* ================== FOOTER LOGO ================== */
.logo-mode {
  height: 400px !important; 
  width: auto !important;
  margin-top: -80px;
  margin-left: 10px;
  display: block;
}

/* ✅ Tablet view */
@media (max-width: 991px) {
  .logo-mode {
    height: 250px !important;
    margin: 0 auto 20px auto; /* center horizontally with bottom spacing */
  }
}

/* ✅ Mobile view */
@media (max-width: 576px) {
  .logo-mode {
    height: 150px !important;
    margin: 0 auto 15px auto; /* center & keep spacing */
  }
}


/* Force all room cards to have same image height */




.gallery {
  padding: 60px 0;
  background: #f9f9f9;
}

/* Grid container for staggered layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-auto-rows: 200px;
  gap: 20px;
  grid-auto-flow: dense; /* fill gaps automatically */
}

.gallery_img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.gallery_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

/* Hover zoom effect */
.gallery_img:hover img {
  transform: scale(1.1);
}

/* Optional overlay */
.gallery_img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 10px;
}

.gallery_img:hover::after {
  opacity: 1;
}

/* Classes to make certain images bigger */
.gallery_img.tall { grid-row: span 2; }
.gallery_img.wide { grid-column: span 2; }




.gallery-masonry img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  display: block;
  object-fit: cover; /* makes sure image doesn’t look stretched */
}

/* Force same size for main2 and main3 */
.gallery-masonry img[src="img/main2.jpg"],
.gallery-masonry img[src="img/main3.jpg"] {
  height: 250px; /* adjust as you like */
  object-fit: cover;
}




/* Section background */
.ftco-section.bg-light {
  background: #f8f9fa;
  padding: 60px 0;
}

/* Heading */
.heading-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.heading-section p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
}



/* Container */
.video-hero {
  position: relative;
  min-height: 80vh;           /* full, or use 100vh */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

/* The video itself */
.video-hero__video {
  position: absolute;
  inset: 0;                   /* top:0 right:0 bottom:0 left:0 */
  width: 100%;
  height: 100%;
  object-fit: cover;          /* fill the section without distortion */
  pointer-events: none; 
       /* clicks go to buttons, not video */
}

/* Dark overlay for readability (adjust opacity as needed) */
.video-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.8) 100%
  );
}

/* Content on top of video */
.video-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 16px;
}

.video-hero__content h1 {
  font-size: clamp(32px, 6vw, 64px); /* adjusts size for mobile → desktop */
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;              /* force white text */
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7); /* readability */
}
.video-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 16px;
  color: #fff;              /* make all text white */
  text-align: center;
}

.video-hero__btn {
  display: inline-block;
  padding: 12px 22px;
  background: #ff8a00;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.video-hero__btn:hover { transform: translateY(-2px); }

/* Optional: add a diagonal black wedge like your screenshot */
@media (min-width: 992px) {
  .video-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    clip-path: polygon(65% 0, 100% 0, 100% 100%, 50% 100%);
    background: #000;
    opacity: .9;
    z-index: 1;               /* sits above video, below content */
  }
}

/* Default hidden (Bootstrap handles show on click) */
.topbar .dropdown .dropdown-menu {
    display: none; /* hidden by default */
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    background: var(--bs-light);
    border: 0;
    transition: all 0.3s ease-in-out;
    padding-top: 11px;
}

/* Desktop ≥992px → show on hover */
@media (min-width: 992px) {
    .topbar .dropdown:hover .dropdown-menu {
        display: block;
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile/Tablet ≤991px → Bootstrap toggles with .show class */
@media (max-width: 991px) {
    .topbar .dropdown .dropdown-menu {
        position: relative;
        width: 100%;
        margin-top: 5px;
        transform: none;
    }

    /* When opened by Bootstrap */
    .topbar .dropdown.show .dropdown-menu {
        display: block;
        visibility: visible;
        opacity: 1;
    }
}

/* Navbar Links */
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 15px 0;       /* reduced from 35px → better height */
    color: var(--bs-white);
    font-size: 16px;
    font-weight: 500;
    outline: none;
    transition: .3s;
    height: 50px;
}

/* When navbar is sticky */
.sticky-top.navbar-light .navbar-nav .nav-link,
.sticky-top.navbar-light .navbar-nav .nav-item .nav-link {
    padding: 15px 0;       /* keep consistent height */
    color: var(--bs-dark);
    
}

/* Hover & Active */
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item .nav-link.active {
    color: var(--bs-primary);
    
}

/* ================= LOGO ================= */
.navbar-brand {
    display: flex;
    align-items: center;
    height: 80px;   /* ✅ keeps it centered vertically */
    padding: 0;}

/* Default Logo Size (Desktop) */
/* Force override with !important if Bootstrap overrides */
.navbar-light .navbar-brand img.brand-logo {
    height: 65px !important;  /* desktop */
    width: auto !important;
    max-height: 70px !important;
}

.sticky-top.navbar-light .navbar-brand img.brand-logo {
    height: 55px !important;
    
}

@media (max-width: 991px) {
    .navbar-light .navbar-brand img.brand-logo {
        height: 70px !important;
         
    }
}


/* ================= DROPDOWN ================= */
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

/* ================= MOBILE NAVBAR ================= */
@media (max-width: 991.98px) {
  .sticky-top.navbar-light {
      position: relative;
      background: var(--bs-white);
  }

  .navbar.navbar-expand-lg .navbar-toggler {
      padding: 8px 12px;
      border: 1px solid var(--bs-primary);
      color: var(--bs-primary);
  }

  .navbar-light .navbar-collapse {
      margin-top: 10px;
      border-top: 1px solid #ddd;
           /* ✅ stack items vertically */
      padding: 10px 0;
  }

  .navbar-light .navbar-nav {
      display: block;          /* ✅ reset flex */
      width: 100%;
  }

  .navbar-light .navbar-nav .nav-link {
      padding: 10px 15px;
      color: var(--bs-dark);
      display: block;
      width: 100%;
  }

  /* Book Now button full width */
  .navbar-light .btn {
      width: 100%;
      margin-top: 10px;
  }
}


/* ================= DESKTOP NAVBAR ================= */
@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
        
    }

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
        height: 120px;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }

    /* Navbar Link Hover Animation */
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link::after {
        position: absolute;
        content: "";
        width: 0;
        height: 0;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        width: 2px;
        height: 12px;
    }
}


.titlepage {
  margin-bottom: 40px;
}

.titlepage .sub-title {
  font-size: 14px;
  font-weight: 600;
  color: #f39c12;       /* orange accent */
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.titlepage .sub-title::before,
.titlepage .sub-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 2px;
  background: #f39c12;
}

.titlepage .sub-title::before {
  left: -50px;
}

.titlepage .sub-title::after {
  right: -50px;
}

.titlepage .main-title {
  font-size: 36px;
  font-weight: 800;
  color: #0c1633;   /* dark navy/black */
  margin-top: 10px;
}

.titlepage .main-title span {
  color: #f39c12;   /* highlight word */
}

.cta-section {
  position: relative;
  padding: 80px 20px;
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.cta-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55); /* dark overlay for text readability */
  z-index: 0;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-text {
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.btn-cta {
  display: inline-block;
  padding: 14px 30px;
  background: #ffb400;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-cta:hover {
  background: #ff9900;
  transform: translateY(-2px);
}

.newsletter-box {
  border: 3px solid #ff7f32;       /* orange border */
  border-radius: 20px;             /* smooth rounded corners */
  background: #fff;                /* clean white background */
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease-in-out;
}

/* Hover effect */
.newsletter-box:hover {
  box-shadow: 0 12px 35px rgba(255,127,50,0.3); /* orange glow */
  transform: translateY(-5px);
}

/* Buttons styling */
.btn-custom {
  background: #ff7f32;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background: #e66a1f;
  color: #fff;
}

.btn-outline-custom {
  border: 2px solid #ff7f32;
  color: #ff7f32;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background: #ff7f32;
  color: #fff;
}

@media (max-width: 768px) {
  .btn-custom,
  .btn-outline-custom {
    display: block;       /* stack vertically */
    width: 100%;          /* full width buttons */
    margin-bottom: 10px;  /* space between buttons */
  }
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;          /* distance from bottom */
  right: 20px;           /* distance from right */
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 2px 4px 15px rgba(0,0,0,0.4);
  color: #fff;
}


.call-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;         
  left: 20px;
  background: linear-gradient(135deg, #28a745, #1e7e34); /* green gradient */
  color: #fff;
  border-radius: 50%;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}

.call-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.6);
  color: #fff;
}

.topbar {
    width: 100%;
    margin: 0;
    padding: 0;
}

.logo-img {
    height: 289px;      /* Mobile height */
    width: auto;
    margin-top: 21px;
    margin-left: -20px;
}

@media (min-width: 992px) {
    .logo-img {
        height: 318px; /* Desktop height */
    }
}

.room-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.room-item .p-4 {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.room-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.room-gap {
  margin-right: 80px; /* adjust gap */
  padding-top: 60px;
}
/* Tablet adjustments */
@media (max-width: 992px) {
  .room-item img {
    height: 220px; /* smaller height for tablet */
  }
}

/* Mobile adjustments */
@media (max-width: 576px) {
  .room-item img {
    height: 180px; /* smaller height for mobile */
  }

  /* Add spacing between 4th and 5th rooms on mobile */
  .room-mobile-space {
    margin-top: 20px; /* space between stacked rooms */
  }
}




.luxury-tagline {
  font-size: 18px;
  font-weight: bold; /* Makes the text bold */
  letter-spacing: 0.5px;
  line-height: 1.6;
  background: linear-gradient(90deg, #FFD700, #FFC107, #FFB300); /* golden gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

