*{
    margin: 0;
}

html {
  scroll-behavior: smooth;
}

section{
  padding: 40px 30px;
}


@media screen and (max-width:768px) {
  section{
    padding: 40px 30px;
  }  
}




.float-btn {
  position: fixed;
  bottom: 20px;      /* distance from bottom of screen */
  right: 20px;        /* position on left side */
  width: 50px;       /* button size */
  height: 50px;
  background-color: #25D366; /* WhatsApp green */
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-btn.left{
  left: 20px !important;
  background-color: white;
}

/* WhatsApp icon styling */
.float-btn img {
  width: 30px
}

.float-btn:hover{
  transform: translateY(-10px);
}


/* GENERALIZED ELEMENTS */



.golden-word{
    font-family: "Italianno";
    color: #D4AF37;
    font-size: 65px;
    text-transform: capitalize;
    font-weight: 300;
}
:root{
  --para-p:#2B3B4A ; 
  --para-ff: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif ;
}
p{
    line-height: 1.5;
}

/* HEADER */
/* ---------- HEADER BASE ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px 50px;
  padding-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  z-index: 999;
}

header.scrolled {
  background: #225C70;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.logo {
  display: flex;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  gap: 10px;


}

.logo-img{
  height: 60px;
  width: 60px;
  background-color: white;
  padding: 5px;
  border-radius: 50px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text{
  color: #225C70;
  text-transform: uppercase;
}

.logo-text p{
  font-family: "Montserrat";
  font-size: 8px;
  letter-spacing: 0.5px;
  font-weight: 500;
  text-transform: uppercase;

}


.logo-text h2{
  font-size: 20px;
  font-family: "Cinzel";
  font-weight: 700;
}


/* ---------- NAV LINKS (DESKTOP) ---------- */

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #6B6969;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 300;
  font-family: "Albert Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  padding: 5px 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease;
}

/* Underline animation */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background-color: #225C70;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #225C70;
  font-weight: 500;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: #225C70;
  font-weight: 600;
}

.nav-links a.active::after {
  width: 100%;
}

/* ---------- CONTACT INFO (HIDDEN ON DESKTOP) ---------- */
.contact-info {
  display: none;
  font-family: var(--font-main);
}



/* ---------- HAMBURGER (HIDDEN ON DESKTOP) ---------- */
.hamburger {
  display: none;
}

/* Close button (used only on mobile) */
.close-btn {
  display: none;
  position: absolute;
  top: 24px;
  right: 30px;
  font-size: 34px;
  line-height: 1;
  background: transparent;
  border: 0;
  color: #333;
  cursor: pointer;
}

/* ---------- OVERLAY ---------- */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- SCROLLED STATE COLORS ---------- */
header.scrolled .nav-links a {
  color: white;
}

header.scrolled .logo-text p {
  color: #fff;
}

header.scrolled .logo-text h2{
  color: #fff;
}

header.scrolled .nav-links a::after {
  background-color: white;
}

header.scrolled .nav-links a.active {
  color: #fff;
}

/* ---------- MOBILE STYLES ---------- */
@media (max-width: 768px) {
  header {
    padding: 10px 20px;
  }

  /* Slide-out drawer menu */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: 70%;
    max-width: 360px;
    background: white;
    box-shadow: -2px 0 18px rgba(0,0,0,0.12);
    flex-direction: column;
    align-items: stretch;
    padding: 70px 24px 24px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1100;
  }

  .nav-links.show {
    transform: translateX(0);
  }

  .nav-links a {
    color: #225C70 !important;
    width: 100%;
    padding: 14px 0;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
  }

  .nav-links a::after {
    bottom: 0;
    height: 1px;
  }

  header.scrolled .nav-links a.active {
    border-bottom-color: #225C70;
  }

  /* Show contact info inside drawer */
  .contact-info {
    display: block;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #e5e5e5;
    font-size: 13px;
    color: #333;
  }

  .contact-info p {
    margin: 4px 0;
  }

  .contact-info a {
    color: inherit;
    text-decoration: none;
    border-bottom: none !important;
  }

  /* Show hamburger button */
  .hamburger {
    width: 24px;
    height: 24px;
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.25s ease, background-color 0.3s ease;
  }

  .hamburger span:nth-child(1) { top: 0; }
  .hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
  .hamburger span:nth-child(3) { bottom: 0; }

  /* Optional: invert hamburger color when scrolled */
  header.scrolled .hamburger span {
    background-color: white;
  }

  /* Show close button inside drawer */
  .close-btn {
    display: block;
  }
}

.contact-info a{
  color: #333 !important;
}


/* HERO SECTION */


#hero-section {
  height: 80vh;
  overflow: hidden;
  position: relative;
  padding: 0 !important;
}



.hero-div {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.25);
  transition: transform 0.1s linear;
}

/* Text Overlay */
.hero-content {
  position: absolute;
  top: 45%;
  left: 27%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  padding: 0 20px;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.hero-content h1 {
  font-weight: 300;
  line-height: 1.2;
  background: linear-gradient(135deg, #D4AF37 0%, #f6e27a 50%, #b38728 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: left;
  font-family: "Italianno";
  font-size: 70px;

}

.hero-content p {
  font-size: 15px;
  opacity: 0.9;
  color: white;
  font-family:var(--para-ff);
  text-align: left;
   max-width: 570px;   /* controls line length */
  line-height: 1.45;  /* improves readability */
  word-wrap: break-word;
}


/* Optional subtle hero gradient overlay (improves text readability) */
.hero-div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.55));
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  #hero-section {
    height: 70vh; /* reduce height so it doesn't feel too tall */
  }

  .hero-content {
    top:54%;              /* move text lower */
    left: 36%;             /* re-center horizontally */
    transform: translate(-50%, -50%);
    text-align: center;    /* center align content */
    max-width: 90%;        /* allow comfortable text width */
  }

  .hero-content h1 {
    font-size: 40px;
    line-height: 1.25;
    text-align: left;   /* center text for mobile readability */
  }

  .hero-content p {
    font-size: 14px;
    max-width: 90%;      /* center paragraph block */
    text-align: left;
    line-height: 1.5;
  }

  .hero-div img {
    transform: scale(1.9); /* slightly more zoom to avoid empty edges */
  }
}



/* ABOUT SECTION */

#about-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.about-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 30px;
    max-width: 700px;
}

.v-line {
    width: 1px;
    height: 50px;
    position: relative;
    overflow: hidden;
    background: none;
}
.v-line::after {
    content: "";
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
    background: #225C70;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 1.2s ease;
}
.v-line.visible::after {
    transform: scaleY(1);
}


.about-content p {
    text-align: center;
    font-size: 17px;
    color: var(--para-p);
  font-family:var(--para-ff);
}

.about-content h2{
    color: #225C70;
    font-weight: 100;
    font-size: 55px;
}

.about-content-h2{
    color: #225C70;
    font-weight: 100;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: translateY(-20px);
}

.about-content-h2.visible {
  opacity: 1;
  transform: translateY(0);
}

.signature{
    font-family: "Italianno";
    margin-top: 10px;
    font-size: 22px !important;
    white-space: pre;
}

@keyframes fadeInLetter {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.about-content-p, .about-content-p2{
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(-20px);
    color: var(--cap-p);
}

.about-content-p.visible, .about-content-p2.visible{
    opacity: 1;
    transform: translateY(0);
}



@media screen and (max-width:768px) {
    .about-content{
        gap: 18px;
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }    

    .about-content p{
        text-align: justify;
        line-height: 1.4;
        font-size: 15px;
    }
}


/* STICKY IMAGE SECTION */

.fixed-bg {
  min-height: 60vh;
  background: url("better images/fixedbg.webp") center / cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: #fff;
}

.fixed-bg2 {
  min-height: 60vh;
  background: url("better images/fixedbg2.webp") center / cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: #fff;
}

.fixed-bg2::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.55));
  z-index: 1;
  pointer-events: none;
}


@media screen and (max-width: 768px) {
  .fixed-bg {
    /* NO fixed here on mobile */
    background: url("better images/fixedbg.webp") center center / cover no-repeat;
    background-attachment: scroll; /* optional but clear */
  }
}

@media screen and (max-width: 768px) {
  .fixed-bg2 {
    /* NO fixed here on mobile */
    background: url("better images/fixedbg2.webp") center center / cover no-repeat;
    background-attachment: scroll; /* optional but clear */
  }
}

.fixed-bg::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.55));
  z-index: 1;
  pointer-events: none;
}
.fixed-content {
  position: relative; /* keep above overlay */
  z-index: 7;
}

.fixed-word{
  font-family: "Italianno";
    font-size: 65px;
    text-transform: capitalize;
    font-weight: 100;
}



.fixed-content h2 {
  font-size: 60px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.fixed-content p {
  font-family: var(--para-ff);
}

@media screen and (max-width: 768px) {


  .fixed-word {
    font-size: 35px;
  }

  .fixed-content h2 {
    font-size: 35px;
  }
}






/* ALL PRODUCTS */


.products{
    /* background: linear-gradient(to right, #0b2fa5, #feb47b); */
    margin-top: 70px;
    padding: 50px;
}

.products-content{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.products-text{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 20px !important;
}

.products-text h2{
    color: #225C70;
    font-weight: 100;
    font-size: 65px;
}

.products-text a{
    padding: 10px 15px;
    background-color: #225C70;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    max-width: 110px;
    transition: all 0.3s ease-in-out;
    font-size: 14px !important;
    font-family: "Montserrat";
}

.products-text a:hover{
    transform: scale(1.1);
}

.golden-word.products{
    font-size: 65px !important;
    padding: 0 !important;
}

.products-text p{
    font-size: 17px !important;
    max-width: 320px;
    color: #2b3b4a;
    line-height: 1.3;
    color: var(--para-p);
  font-family:var(--para-ff);
}



.bracelets > div{
    box-shadow: 0 4px 14px #808080;
}


.only-photo{
    height: 350px;
    width: 300px;
      position: relative;
  overflow: visible;
}

.only-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Caption overlay box */
.captions {
  position: absolute;
  bottom: 50px;
  left: -20px;
  padding: 12px 20px;
  background: linear-gradient(to right, #1E3F65E6, #3C7FCBE6);
  border-top-left-radius: 15px;
  z-index: 99;
}

.captions h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.5px;
}

.chains, .bracelets{
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
} 

.chains, .bracelets p {
    max-width: 300px;
}

@media screen and (max-width:768px) {
    .cb, .products-content{
        flex-direction: column !important;
    }

    .products{
        padding: 20px 40px !important;
        margin-top: 30px !important;
    }

    .products-content{
        gap: 30px !important;
    }

    .products-text{
      padding-left: 0 !important;
    }

    .cb{
        justify-content: center;
        align-items: center;
    }

}

:root{
  --cap-offset: 28px;     /* horizontal offset */
  --cap-bottom: 28px;     /* vertical gap from bottom edge */
  --cap-bg: rgba(30,63,101,.9);
  --cap-pad: 12px 18px;
  --shadow: 0 10px 24px rgba(0,0,0,.18);
  --cap-title: #fff;
  --cap-text: #e9eef6;
}

.cb{display:flex;gap:40px;justify-content:center;}
.only-photo{position:relative;overflow:visible;isolation:isolate;}
.only-photo .slide{position:absolute;inset:0;opacity:0;visibility: hidden;
  transition:opacity .8s ease, transform .8s ease;}
.only-photo .slide.is-active{opacity:1;visibility: visible;}
.only-photo img{width:100%;height:360px;object-fit:cover;display:block;}



/* Position logic: keep caption bottom; opposite-side nav uses the same offsets */

/* Nav group — positioned opposite of caption */
.nav{
  position:absolute;
  display:flex;
  z-index:6;
  bottom: 50px;
  right: -10px;
  
}
/* Buttons */
.btn{
   width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: none;
  background: var(--btn-bg);
  color: #fff;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform .15s ease, background .2s ease;
}
.btn:hover{background:rgba(17,33,52,.9);transform:translateY(-1px);}
.btn:active{transform:translateY(0);}


/* WHY US */


.whyus{
    padding: 40px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.why-us-heading{
    padding: 10px;
    gap: 20px;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.why-us-heading h2{
    color: #225C70;
    font-weight: 100;
    font-size: 50px;
}

.why-us-heading p{
    font-size: 13px;
    color: var(--para-p);
  font-family:var(--para-ff);
}

.reasons{
    display: flex;
    gap: 90px;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
}

.reasons > div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.reasons h3{
    color: #225C70;
    font-size: 19px;
    font-weight: 600;
}

.reasons p{
    font-size: 11px !important;
    text-align: center;
    max-width: 250px;
    line-height: 25px;
    color: var(--para-p);
  font-family:var(--para-ff);
}

.reasons img{
    width: 100px;
    height: 100px;
      filter: drop-shadow(0 2px 5px rgba(34, 92, 112, 0.5));
    transition: all 0.3s ease-in-out;
}

.reasons img:hover{
    transform: scale(1.1);
}

@media screen and (max-width:768px) {
    .reasons{
        flex-direction: column;
        gap: 30px !important;
    }    

    .reasons p{
        line-height: 22px !important;
    }
    
}



/* SLIDESHOW IMAGES */

:root {
  --cap-bg: linear-gradient(to right, #1E3F65E6, #3C7FCBE6);
  --cap-pad: 18px 20px;
  --cap-radius: 6px;
  --cap-title: #f4d78a; /* warm gold-ish for title */
  --cap-text: white;
  --btn-bg: #183b5a;
  --btn-bg-hover: #1f4d77;
  --btn-size: 48px;
  --shadow: 0 12px 30px rgba(0,0,0,.25);
}

/* Container */
.hero-slider {
  position: relative;
  padding: 30px 50px;
  padding-left: 60px !important;
  aspect-ratio: 16 / 9;     /* desktop look */
  overflow: hidden;
}

/* Slides wrapper */
.slides, .slide, .slide img {
  width: 100%;
  height: 100%;
}
.slides {
  position: relative;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
    z-index: 1; 
}
.slide.is-active {
  opacity: 1;
  z-index: 1;
}
.slide img {
  object-fit: cover;
}

/* Caption (left box) */
.caption {
  position: absolute;
  left: 28px;
  bottom: 158px;
  max-width: min(22%, 420px);
  background: var(--cap-bg);
  padding: var(--cap-pad);
  box-shadow: var(--shadow);
   z-index: 5;
   border-top-left-radius: 15px;
}
.caption .cap-title {
  margin: 0 0 6px;
  font-weight: 600;
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--cap-title);
}
.caption .cap-desc {
  margin: 0;
  line-height: 1.45;
  font-size: clamp(13px, 1.6vw, 15px);
  color: var(--cap-text);
  font-family:var(--para-ff);
}

/* Right controls */
.controls {
  position: absolute;
  right: 28px;
  bottom: 158px; /* sits lower like your mock */
  display: flex;
  z-index: 2;
}
.nav-btn {
  width: var(--btn-size);
  height: var(--btn-size);
  display: grid;
  place-items: center;
  border: none;
  background: var(--btn-bg);
  color: #fff;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform .15s ease, background .2s ease;
}
.nav-btn:hover { background: var(--btn-bg-hover); transform: translateY(-1px); }
.nav-btn:active { transform: translateY(0); }
.arrow { font-size: 22px; line-height: 1; }

/* Mobile: portrait look like your second image */
@media (max-width: 768px) {
  .hero-slider { aspect-ratio: 3 / 4; } /* taller */
  .caption {
    left: 18px;
    bottom: 58px;
    max-width: 35%;
    padding: 14px 16px;
  }
  .controls {
    right: 18px;
    bottom: 58px;
  }
  .nav-btn { width: 44px; height: 44px; }
}



/* CERTIFICATIONS */


.certifications{
    padding:50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.certifications h2{
    margin-bottom: 20px;
}

.certificate-div{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.certificate-div div{
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.certificate-img{
    width: 150px;
    height: 120px;
}


.certificate-div img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (max-width:768px) {
    .certificate-div{
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
        grid-template-rows: repeat(2, auto);   /* 2 rows */
        gap: 30px; /* optional space between items */
    }    

    .certificate-img{
    width: 100px;
    height: 100px;
}


}


.collection{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 50px;
}

.heading{
    color: #225C70;
    font-weight: 100;
    font-size: 55px;
}

.collection-imgs{
    display: flex;
    flex: 1;
    gap: 15px;
}

.collection-imgs > div {
  /* optional: */
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
}

.collection-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* image nicely fills space without distortion */
}

.collection-text{
    max-width: 700px;
    text-align: center;
    line-height: 1.3;
    color: var(--para-p);
  font-family:var(--para-ff);
}

.collection-a {
    transition: all 0.3s ease-in-out !important;
    text-decoration: none;
    color: white;
    background-color: #225C70;
    padding: 10px 15px;
    border-radius: 30px;
    font-size: 13px;
    box-shadow: 0 2px 10px #214b71;
    font-family: "Montserrat";
}

.collection-a:hover{
    transform: translateY(-10px) !important;
    box-shadow: 0 4px 15px #214b71;
}

.collection-a a{
    text-decoration: none;
    color: white;
}

@media screen and (max-width:768px) {
.collection-imgs{
  flex-direction: column !important;
}  
}


/* GLOBAL PRESENCE */

.global{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
}

.global-h2{
    color: #225C70;
    font-weight: 100;
    font-size: 30px;
}

.global-content{
    display: flex;
    flex-direction: row !important;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.global-content h2{
    color: #D4AF37;
    font-weight: 100;
    font-size: 30px;
    font-style: italic;
    margin-bottom: 10px;
}


.global-img {
    aspect-ratio: 16/9;
}

.global-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.global-content p {
    max-width: 1400px;
    line-height: 1.2;
    color: var(--para-p);
  font-family:var(--para-ff);
}


@media screen and (max-width:768px) {
    .global-content{
        flex-direction: column !important;
        gap: 30px !important;
        text-align: justify;
    }    

    .global-content h2{
        font-size: 25px !important;
    }

    .global{padding: 40px !important;}
    .global-h2{
        font-size: 30px;
    }
    
    .golden-word{
        font-size: 55px !important;
    }


}

/* ===== Footer Styles ===== */
:root{
  --footer-bg: linear-gradient(to right, #1E3F65, #225C70 );
  --footer-fg: rgb(209, 209, 209);
  --footer-dim:rgb(209, 209, 209);
  --brand-accent:white; /* your blue */
  --font-main: "Montserrat";
}

.site-footer{
  background: var(--footer-bg);
  color: var(--footer-fg);
  padding: 40px 50px;
}

.footer-inner{
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* stack items */
  align-items: center;     /* center horizontally */
  text-align: center;      /* center text */
  gap: 32px;
}

.social-row{
  justify-content: center;
}

.footer-brand .brand-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brandlogo-div{
  background-color: white;
  border-radius: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand-logo{
  width: 100px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 0 rgba(0,0,0,0.0));
  border-radius: 10px;
}

.brand-tag{
  margin-top: 10px;
  font-size: 0.95rem;
  color: var(--footer-dim);
}

.footer-title{
  margin: 0 0 12px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--footer-fg);
  opacity: .9;
}

.footer-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;

}
.footer-list a{
  color: var(--footer-dim);
  text-decoration: none;
  transition: color .2s ease;
  font-family: var(--font-main);
  text-transform: uppercase;
  font-size: 13px;
}
.footer-list a:hover{
  color: var(--brand-accent);
}

.social-row{
  display: flex;
  gap: 12px;
}
.social{
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 40px;
  color: var(--footer-fg);
  transition: transform .18s ease, color .2s ease, border-color .2s ease;
}

.social img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.social:hover{
  transform: translateY(-2px);
  color: var(--brand-accent);
  border-color: rgba(34,92,112,.45);
}

.footer-bottom{
  max-width: 1180px;
  margin: 18px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  color: var(--footer-dim);
  font-size: .9rem;
}

/* ===== Responsive ===== */
@media (max-width: 900px){
  .footer-inner{
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px){
  .footer-inner{
    grid-template-columns: 1fr;
  }
  .brand-logo{ width: 90px; }
  .social{ width: 36px; height: 36px; }
}


/* reels section */

.reels{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.reels-div{
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(4, 1fr); /* 2 equal columns */
        grid-template-rows: repeat(2, auto);

}

@media screen and (max-width:768px) {
  .reels-div{
    grid-template-columns: repeat(2,1fr);
  } 
}

.reels-vid{
  aspect-ratio: 1/1;        /* increase this to make it bigger */
  max-width: 100%;    
}


.reels-vid img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reels-vid video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.contact-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 2000;
  padding: 30px;
}

/* Visible state */
.contact-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Modal box */
.contact-modal {
  background: #F2E8E5;              /* match your site background tone */
  padding: 24px 24px 18px;
  border-radius: 16px;
  max-width: 420px;
  width: calc(100% - 40px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  position: relative;

  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* Animate modal when overlay is open */
.contact-overlay.is-open .contact-modal {
  transform: translateY(0);
  opacity: 1;
}

/* Close button (X) */
.contact-close {
  position: absolute;
  top: 8px;
  right: 12px;
  border: none;
  background: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

/* Contact text */
.contact-item {
  font-size: 15px;
  margin-bottom: 10px;
}

#contactTitle{
  color: #225C70;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.contact-label{
  color: #3b6776;
}


.contact-text{
  color: var(--para-p) !important;
  font-family: var(--para-ff);
  font-size: 13px;
}

.contact-details a {
  color: #225C70;
  text-decoration: none;
}



.contact-details a:hover {
  text-decoration: underline;
}



/* ANIMATIONS */

/* Starting state (hidden + slightly offscreen) */
.products-text {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.cb {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* When they come into view */
.products-text.in-view {
  opacity: 1;
  transform: translateX(0);
}

.cb.in-view {
  opacity: 1;
  transform: translateX(0);
}


/* ========== COLLECTION SECTION ========== */
.collection {
  overflow: hidden; /* optional, for cleaner edges */
}

/* heading: come from left */
.collection .heading {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* images: come from right, one by one */
.collection .collection-imgs > div {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* text + button: fade up slightly */
.collection .collection-text,
.collection .collection-a {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* when section is in view */
.collection.in-view .heading {
  opacity: 1;
  transform: translateX(0);
}

.collection.in-view .collection-imgs > div:nth-child(1) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.15s;
}

.collection.in-view .collection-imgs > div:nth-child(2) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

.collection.in-view .collection-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.45s;
}

.collection.in-view .collection-a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}

/* ========== HERO SLIDER SECTION ========== */
.hero-slider {
  overflow: hidden; /* optional */
}

/* caption (heading/desc) from left */
.hero-slider .caption {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* slides block from right */
.hero-slider .slides {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* when hero slider is in view */
.hero-slider.in-view .caption {
  opacity: 1;
  transform: translateX(0);
}

.hero-slider.in-view .slides {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.15s; /* images thoda baad me */
}

/* WHY US – starting state */
.why-us-heading {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reasons > div {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* When section is in view */
.whyus.in-view .why-us-heading {
  opacity: 1;
  transform: translateX(0);
}

.whyus.in-view .reasons > div:nth-child(1) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.15s;
}

.whyus.in-view .reasons > div:nth-child(2) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

.whyus.in-view .reasons > div:nth-child(3) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.45s;
}


/* Optional for clean edges */
.global {
  overflow: hidden;
}

/* Heading: come from left */
.global .global-h2 {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Map image: also from left */
.global .global-img {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Right text block: from right */
.global .global-content > div:last-child {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* When section is in view */
.global.in-view .global-h2 {
  opacity: 1;
  transform: translateX(0);
}

/* image after heading */
.global.in-view .global-img {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.15s;
}

/* text after image */
.global.in-view .global-content > div:last-child {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}


/* Section background */
.jewel-highlight {       /* soft cream */
  padding: 50px 40px;
}

/* Max width container */
.jewel-container {
  max-width: 1100px;
  margin: 0 auto;
  
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Main left card */
.jewel-card-main {
  position: relative;
  flex: 1.1;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);

  /* 👇 animation ke liye INITIAL state */
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

/* 👇 IntersectionObserver jab .in-view add karega, tab ye final state hogi */
.jewel-card-main.in-view {
  opacity: 1;
  transform: translateX(0);
}


.jewel-card-main.in-view {
    opacity: 1;
    transform: translateX(0);
}

.jewel-card-main img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Rating badge */
/* Middle text area */
.jewel-text {
  flex: 1.1;
}

.jewel-text h2 {
    color: #225C70;
    font-weight: 100;
    font-size: 50px;
    padding-bottom: 20px;
}

.jewel-text p {
    line-height: 1.2;
    color: var(--para-p);
    font-family: var(--para-ff);
}

/* Button */
.jewel-btn {
  padding: 10px 26px;
  border-radius: 999px;
  border: 1px solid #d8c1aa;
  background: #f8f1e8;
  color: #7a4d30;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.jewel-btn:hover {
  background: #7a4d30;
  color: #f8f1e8;
  border-color: #7a4d30;
}

/* Right side image card */
.jewel-card-side {
  flex: 0.7;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  width: 200px;
  height: 350px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.jewel-card-side.in-view{
  opacity: 1;
  transform: translateX(0);
}

.jewel-card-side img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .jewel-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .jewel-card-main,
  .jewel-card-side,
  .jewel-text {
    width: 100%;
  }
}

.jewel-texth2{
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

@media screen and (max-width:768px) {
  .jewel-texth2{
    font-size: 40px !important;
    text-transform: capitalize;
  }
}

.jewel-texth2.in-view{
  opacity: 1;
  transform: translateY(0);
}

.jewel-textp{
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.jewel-textp.in-view{
  opacity: 1;
  transform: translateY(0);
}



@media screen and (max-width:768px) {
  .reels{
    display: none;
  }  

  .hero-slider{
    padding: 30px !important;
    margin-bottom: 30px;
  }
}

@media screen and (min-width:769px) {
  .hero-slider{
    display: none;
  }  
}
