@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Inter", sans-serif;
}

.cormorant-font {
  font-family: "Cormorant", serif;
}
 
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}


@media (min-width: 576px) {

  .container,
  .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {

  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}

@media (min-width: 992px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}
.border-bottom::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;

    background: linear-gradient(
        90deg,
        rgba(213, 152, 49, 0.3) 0%,
        rgba(250, 248, 176, 0.3) 50%,
        rgba(213, 152, 49, 0.3) 100%
    );

    pointer-events: none;
    z-index: 100;

    animation: headerBorderLoad 0.8s ease-out forwards;
}

@keyframes headerBorderLoad {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}
  

.link-btn {
  position: relative;
  padding-bottom: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.link-btn img{
  transition: all 0.2s ease;
}
.link-btn:hover img{
  transform: translateY(-5px);
  transition: all 0.2s ease;
}
.link-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #E9C46A;
}
.link-btn::before {
  content: "";
  position: absolute;
  left: -30%;
  bottom: 0;
  width: 30%;
  height: 2px;
  background: #fff;
  transition: left 0.5s ease;
  z-index: 1;
}
.dark-line.link-btn::after{
  background: #524525 !important;;
}
.link-btn:hover::before {
  left: 100%;
}
.validate-has-error {
  display: block;
  padding-top: 0;
  font-size: 12px;
  color: #cc3f44;
  position: absolute;
}

.nav-link:hover,
.nav-link.active {
  background: linear-gradient(90deg,
      #995C0F 0%,
      #EDB746 50%,
      #995C0F 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-pill {
    position: absolute;
    bottom: 0;
    height: 2px;

    background: linear-gradient(
        90deg,
        #995C0F 0%,
        #EDB746 50%,
        #995C0F 100%
    );

    pointer-events: none;
    z-index: 20;

    /* Smooth sliding animation */
    transition: all 0.35s ease;
    will-change: left, width;
} 
 
.nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg,
      #995C0F 0%,
      #EDB746 50%,
      #995C0F 100%);
  pointer-events: none;
  z-index: 20;
  transition: 0.3s ease;
}

.nav-link.active::before {
  width: 60%;
}
@media (max-width: 1023px) {
  .nav-link{ 
    padding-bottom: 10px;
  }
  .nav-link.active::before {
    width:100%
  }
}

.text-gradient {
    background: linear-gradient(
        90deg,
        #D3B127 0%,
        #F3D483 50%,
        #D3B127 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.main-btn {
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.main-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        110deg,
        transparent 20%,
        rgba(255, 255, 255, 0.35) 50%,
        transparent 80%
    );
    transition: left 0.5s ease;
    pointer-events: none;
}

.main-btn:hover::before {
    left: 100%;
}

.main-btn:hover {
    transform: translateY(-2px);
}

.main-btn:active {
    transform: translateY(0);
}
.main-btn:first-child:hover {
    background: #F3D483;
    border-color: #F3D483;
    box-shadow: 0 8px 25px rgba(233, 196, 106, 0.25);
}
.main-btn:nth-child(2):hover {
    background: rgba(233, 196, 106, 0.12);
    border-color: #E9C46A;
    color: #F3D483;
    box-shadow: 0 8px 25px rgba(233, 196, 106, 0.12);
}

 


/* Impact divider */
.impact-border {
    position: absolute;
    top: 0;
    right: 0;

    width: 1px;
    height: 100%;

    background: linear-gradient(
        180deg,
        #111111 0%,
        #E9C46A 100%
    );

    transform: scaleY(0);
    transform-origin: bottom;
    z-index: 5;
}

.impact-border.dark{ 
    background: linear-gradient(
        180deg,
        #E9C46A 0%,
        #E9C46A 100%
    );
}

/* Start animation when section enters viewport */
#impactSection.is-visible .impact-border {
    animation: impactBorderVertical 1s ease-out forwards;
}
#whyChoose.is-visible .impact-border {
    animation: impactBorderVertical 1s ease-out forwards;
}
@keyframes impactBorderVertical {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}
 

@keyframes impactBorderHorizontal {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}



@media (max-width: 1023px) {
  .nav-link {
    border-left: 0;
    padding-top: 4px;
    padding-bottom: 4px;
  }
  
    .impact-border {
        top: auto;
        right: auto;
        bottom: 0;
        left: 0;

        width: 100%;
        height: 2px;

        background: linear-gradient(
            90deg,
            #E9C46A 0%,
            rgba(233, 196, 106, 0.7) 35%,
            rgba(233, 196, 106, 0.25) 70%,
            rgba(233, 196, 106, 0) 100%
        );

        transform: scaleX(0);
        transform-origin: left;
    }

    #impactSection.is-visible .impact-border {
        animation: impactBorderHorizontal 1s ease-out forwards;
    }
}
 
  



.image-showcase-container {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    align-items: center;
    column-gap: 8px;
}
 
.showcase-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    clip-path: polygon(28% 0%, 100% 0%, 72% 100%, 0% 100%);
}
 
.showcase-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}
 
.showcase-center {
    position: relative;
    width: calc(100% + 100px);
    margin-left: -50px;
    margin-right: -30px;
    z-index: 3;
}
 
.showcase-center .showcase-image {
  clip-path: polygon(22% 0%, 100% 0%, 78% 100%, 0% 100%);
}
 
.showcase-left,
.showcase-right {
    position: relative;
    z-index: 1;
    height: 350px;
}
 
.showcase-center.showcase-item{
  height: 450px;
}
 
/* ---- lines: plain CSS, no JS. Kept strictly inside their own
   .showcase-item (a real, already-correct containing block, same one
   .showcase-image already relies on) — nothing can push these
   somewhere else on the page. A fixed rotate matches the clip-path
   slant closely enough that it reads as "following the cut". ---- */
:root{ --line-angle: 12deg; }
 
.showcase-line{
    position: absolute;
    width: 2px;
    background: #c98b1d;
    z-index: 5;
    pointer-events: none;
    transform-origin: center;
}
 
/* LEFT box — one line only, bottom half, sitting outside the left edge
   (matches the reference: the small image gets a short lower-left line) */
.showcase-left .line-bottom{ left: -16px; bottom: 0; height: 46%; }
.showcase-left .line-top,
.showcase-left .line-extra{ display: none; }
 
/* CENTER box — full-height line on both sides (matches the reference's
   tall hero image, flanked its full height) */
.showcase-center .line-left{  left: 20px;  top: 0; height: 100%; }
.showcase-center .line-right{ right: 2px; top: 0; height: 50%; }
.showcase-center .line-extra-center{ display: none; }
 
/* RIGHT box — top + bottom segments with a visible gap in the middle
   ("line with white space between") on the outer right edge */
.showcase-right .line-top{    right: -2px; top: 0;    height: 42%; } 
.showcase-right .line-extra{ display: none; }
 
@media(max-width:768px){
  :root{ --line-angle: 8deg; }
  .showcase-center.showcase-item {
    height: 250px;
  }
  .showcase-left, .showcase-right {
    position: relative;
    z-index: 1;
    height: 150px;
  }
  .showcase-center {
    position: relative;
    width: calc(100% + 60px);
    margin-left: -30px;
  }
  .showcase-image{
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  }
  .showcase-left .line-bottom{ left: -10px; }
  .showcase-center .line-left{  left: -10px; }
  .showcase-center .line-right{ right: -10px; }
  .showcase-right .line-top,
  .showcase-right .line-bottom{ right: -10px; }
}
 
@media(max-width:480px){
  .showcase-line{ display: none; } /* keep the smallest screens clean */
}
 
/* ---- scroll-reveal state: items start hidden/offset, JS toggles
   .in-view on #imageShowcase each time it enters/leaves the
   viewport, so it replays every time you scroll back to it.
   Lines use scaleY for the grow-in — combined with rotate in one
   transform value, so they don't fight each other. ---- */
.showcase-item{
  opacity: 0;
  transform: translateY(48px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}
.showcase-item .showcase-image img{
  transform: scale(1.12);
}
.showcase-line{
  opacity: 0;
  transform: rotate(var(--line-angle)) scaleY(0);
  transition: opacity .5s ease, transform .6s ease;
  transition-delay: .3s;
}
 
#imageShowcase.in-view .showcase-left   { transition-delay: 0s; }
#imageShowcase.in-view .showcase-center { transition-delay: .12s; }
#imageShowcase.in-view .showcase-right  { transition-delay: .24s; }
 
#imageShowcase.in-view .showcase-item{
  opacity: 1;
  transform: translateY(0);
}
#imageShowcase.in-view .showcase-item .showcase-image img{
  transform: scale(1);
  transition: transform .5s ease, transform 1s ease .1s;
}
#imageShowcase.in-view .showcase-line{
  opacity: 1;
  transform: rotate(var(--line-angle)) scaleY(1);
}
 




@media (prefers-reduced-motion: reduce){
  .showcase-item{ transition: none; opacity: 1; transform: none; }
  .showcase-line{ transition: none; opacity: 1; transform: rotate(var(--line-angle)) scaleY(1) !important; }
}

@media (max-width:1280px) {
  .showcase-line{
    display: none;
  }
}




/* 
.main-shape.center{
  height: 300px;
  width: 100%;
  background-color: red;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  position: relative; 
} */



/* 
.main-shape.side{
  height: 200px;
  width: 100%;
  background-color: red;
  clip-path: polygon(33% 0%, 100% 0%, 67% 100%, 0% 100%);
  position: relative; 
}
.side .inner-shape{
  content:"";
  background-color: blue;
  height: calc(100% - 6px);
  width: calc(100% - 8px);
  clip-path: polygon(33% 0%, 100% 0%, 67% 100%, 0% 100%);
  position: absolute;
  left: 4px;
  right: 0;
  top: 3px;
  bottom: 0;
}
.center .inner-shape{
  content:"";
  background-color: blue;
  height: calc(100% - 6px);
  width: calc(100% - 8px);
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  position: absolute;
  left: 4px;
  right: 0;
  top: 3px;
  bottom: 0;
}
.main-shape.side.left{ 
    margin-left: 50px;
}
.main-shape.side.right{ 
    margin-left: -50px;
}


.first-shape{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 70%;
    width: 2px;
    background-color: red;
    margin-left: 80px;
    transform: rotate(9deg);
}


.second-shape{
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    height: 70%;
    width: 2px;
    background-color: red;
    margin-left: 12px;
    transform: rotate(9deg);
}

.third-shape{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 2px;
    background-color: red;
    margin-left: -26px;
    transform: rotate(9deg);
}

.forth-shape{
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    bottom: 0;
    height: 40%;
    width: 2px;
    background-color: red;
    margin-right: 50px;
    transform: rotate(9deg);
} */