
 @import url('https://fonts.googleapis.com/css2?family=League+Gothic&display=swap');

/* BODY */
/* BODY */
body{
    font-family:'League Gothic', sans-serif;

    overflow-x: hidden;

    position: relative;

    background: transparent;
}

/* BODY BACKGROUND IMAGE */
body::before{
    content: "";

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background:

url("../img/paper1 (1).png") center/cover no-repeat;

    opacity: 0.80;

    z-index: -999;
}
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* ============ NAVBAR - WHITE BACKGROUND, CENTERED LOGO (exactly like i-LEAF second image) ============ */
    .navbar-transparent {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
    
      padding: 16px 0;
      z-index: 1030;
      
     
    }

/* HIDE NAVBAR */
.navbar-hidden{
    transform: translateY(-120%);
   
}

    .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      
    }

    
/* LOGO LEFT */
.nav-logo img {
  height: 55px;
  margin-top: 20px;
}

/* IMPORT FONT */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500&display=swap');

/* NAV ITEMS */
.nav-items{
    display:flex;
    align-items:center;
    gap:2rem;
      margin-right:50px;
      margin-top: 12px;
      
    
}

/* ALL NAV LINKS */
.nav-link-custom{
    font-family:'Oswald', sans-serif;
    font-size:18px;
    font-weight:350;
    
    letter-spacing:0.5px;

    color:#393d40;
    text-decoration:none;

    transition:0.3s ease;
    position:relative;

    padding:6px 0;
}

/* HOVER */
.nav-link-custom:hover{
    color:#00b5e8 ;
}

/* ACTIVE */
.nav-link-custom.active{
    color:#00b5e8 ;
}

/* UNDERLINE EFFECT */
.nav-link-custom.active::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-4px;

    width:100%;
    height:2px;

    background:#00b5e8 ;
    border-radius:10px;
}

   
    /* Mobile toggle button */
    .mobile-nav-toggle {
      display: none;
      background: #f0f0f0;
      border: none;
      font-size: 26px;
      color: #393d40;
      cursor: pointer;
      border-radius: 10px;
      padding: 6px 12px;
    }

   

    /* ========== HERO SECTION WITH IMAGE BANNER (adjusted padding for fixed navbar) ========== */
    .hero-banner {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 620px;
    
      overflow: hidden;
      margin-top: 0;
    }
/* RIGHT SIDE IMAGE */
.hero-right-img {
  position: absolute;
  right: 120px;
  bottom: 0;

  height: 85%;
  max-width: 45%;

  object-fit: cover;

  z-index: 2;

  /* smooth look */
  animation: fadeRight 1s ease;
}

/* animation */
@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


    .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 2;
}


    .hero-content {
      position: relative;
      z-index: 3;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      padding-left: 8%;
      color: rgb(210, 205, 205);
      max-width: 700px;
    }
.hero-title{
  font-family:'League Gothic', sans-serif;

  font-size: 5rem;
  font-weight: 300;

  line-height: 0.9;
  letter-spacing: 2px;

  color:#393d40;



  margin-top: 200px;

  animation: fadeUp 1s ease forwards;
}   

/* GREEN WORD */
.hero-title span{
  color: #00b5e8 ;
}

.hero-title .small-dots{
    font-size: 0.55em;
    letter-spacing:1;

}
.hero-title{
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}



    

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

   
    /* DROPDOWN WRAPPER */
.dropdown-custom {
  position: relative;
}
/* DROPDOWN MENU */
.dropdown-menu-custom{
    position:absolute;
    top:120%;
    left:0;

    background:#fff;
    min-width:220px;

    border-radius:12px;
    padding:10px 0;

    box-shadow:0 10px 30px rgba(0,0,0,0.12);

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);

    transition:0.3s ease;
    z-index:999;
}

/* DROPDOWN LINKS */
.dropdown-menu-custom a{
    display:block;

    padding:11px 20px;

    font-family:'Oswald', sans-serif;
    font-size:18px;
    font-weight:350;
    letter-spacing:0.5px;
    text-transform:capitalize;

    color:#393d40;
    text-decoration:none;

    transition:0.3s ease;
}

/* HOVER */
.dropdown-menu-custom a:hover{
    background:#f5f5f5;
    color:#00b5e8 ;
    padding-left:26px;
}

/* SHOW DROPDOWN */
.dropdown-custom:hover .dropdown-menu-custom{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
.hero-content h1 {
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.hero-sub {
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.3s;
}

.explore-btn {
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-right-img {
  animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* SOCIAL ICON WRAPPER */
.nav-social{
    display:flex;
    align-items:center;
    gap:14px;
    margin-left:10px;
}

/* ICON STYLE */
.social-icon-nav{
    width:38px;
    height:38px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

   

    color:#393d40;
    font-size:15px;

    text-decoration:none;

    transition:0.3s ease;

   
}

/* HOVER */
.social-icon-nav:hover{
    background:#00b5e8 ;
    color:#fff;
    transform:translateY(-3px);
}
/* EXPLORE BUTTON */
.explore-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
font-family: 'Montserrat', sans-serif;
    margin-top:35px;

    padding:2px 10px;

    border:1px solid#00b5e8  ;
    border-radius:50px;
  background:transparent ;
    color:#00b5e8;

    
    font-size:15px;
    font-weight:300;
    letter-spacing:1px;

    text-decoration:none;

    transition:0.3s ease;
}

/* HOVER EFFECT */
.explore-btn:hover{
    background:transparent;
    color:#393d40 ;
    border:1px solid#393d40;

    transform:translateY(-4px);
}

/* =========================================
   TABLET
========================================= */
@media(max-width:991px){

    .nav-container{
        padding:0 25px;
    }

    .nav-logo img{
        height:44px;
        margin-top:5px;
    }

    .hero-banner{
        min-height:100vh;
    }

    .hero-content{
        width:55%;
        padding-left:2%;
    }

    .hero-title{
        font-size:3.7rem;
        margin-top:50px;
    }

    .hero-right-img{
        width:50%;
        max-width:50%;

        right:-10px;
        bottom:20px;

        height:auto;
    }

}

/* =========================================
   MOBILE
========================================= */
@media(max-width:768px){

    .mobile-nav-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .nav-container{
        padding:0 18px;
    }

    .nav-logo img{
        height:40px;
        margin-top:3px;
    }

    .nav-items{
        position:fixed;

        top:0;
        right:-100%;

        width:280px;
        height:100vh;

        background:#fff;

        flex-direction:column;

        align-items:flex-start;
        justify-content:flex-start;

        padding:100px 30px;

        gap:1.4rem;

        transition:0.4s ease;

        z-index:1001;
    }

    .nav-items.active{
        right:0;
    }

    .nav-link-custom{
        font-size:21px;
    }

}

/* =========================================
   SMALL MOBILE
========================================= */
@media(max-width:480px){

    .nav-container{
        padding:0 15px;
    }

    .nav-logo img{
        height:35px;
    }

    .hero-content{
        width:72%;
    }

    .hero-title{
        font-size:2.1rem;

        line-height:0.95;

        letter-spacing:1px;
    }

    .hero-right-img{
        width:64%;
        max-width:64%;

        right:-20px;
        bottom:110px;
    }

    .explore-btn{
        font-size:13px;

        padding:7px 14px;
    }

    .nav-link-custom{
        font-size:19px;
    }

    .social-icon-nav{
        width:34px;
        height:34px;

        font-size:14px;
    }

}
/* =========================================
   LARGE SCREEN ONLY
========================================= */
@media(min-width:1700px){

    .nav-container{
        max-width:1600px;
        padding:0 50px;
    }

    .hero-content{
        max-width:850px;
        padding-left:9%;
    }

    .hero-title{
        font-size:6rem;

        margin-top:160px;
    }

    .hero-right-img{
        max-width:42%;

        right:120px;

        height:88%;
    }

    .explore-btn{
        font-size:16px;

        padding:8px 22px;
    }

}
/* =========================================
   VERY LARGE SCREEN / 4K
========================================= */
@media(min-width:2200px){

    .nav-container{
        max-width:1900px;

        padding:0 70px;
    }

    .nav-logo img{
        height:75px;
    }

    .nav-items{
        gap:2.5rem;
    }

    .nav-link-custom{
        font-size:22px;
    }

    .hero-content{
        max-width:1000px;

        padding-left:10%;
    }

    .hero-title{
        font-size:7rem;

        line-height:0.9;

        margin-top:180px;
    }

    .hero-right-img{
        max-width:40%;

        height:90%;

        right:180px;
    }

    .explore-btn{
        font-size:18px;

        padding:10px 24px;
    }

    .social-icon-nav{
        width:45px;
        height:45px;

        font-size:18px;
    }

}
/* =========================================
   FLOATING WHATSAPP
========================================= */
.floating-whatsapp{
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 45px;
    height: 45px;

    background: #25D366;
    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;

    text-decoration: none;

    z-index: 9999;

    box-shadow: 0 10px 25px rgba(0,0,0,0.18);

    transition: 0.3s ease;

    animation: whatsappFloat 2.5s ease-in-out infinite;
}

/* HOVER */
.floating-whatsapp:hover{
    transform: scale(1.1);
    color: #fff;
}

/* FLOAT ANIMATION */
@keyframes whatsappFloat{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-10px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* MOBILE */
@media(max-width:768px){

    .floating-whatsapp{
        width: 55px;
        height: 55px;

        right: 18px;
        bottom: 18px;

        font-size: 28px;
    }

}
/* =========================================
   ABOUT SECTION
========================================= */
.about-section{
    position: relative;

    width: 100%;
       min-height: 120vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
    url("../img/beesec\ index\ about.jpg.jpeg") center/cover no-repeat;

    padding: 100px 0;
}

/* DARK OVERLAY */
.about-overlay{
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.45);

    z-index: 1;
}

/* CONTAINER */
.about-container{
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1400px;

    margin: auto;
    padding: 0 6%;

    display: flex;
    justify-content: flex-end; /* RIGHT SIDE */
}

/* RIGHT CONTENT */
.about-content{
    max-width: 650px;

    color: #bc9047  ;

    text-align: left;
    transform: translate(100px, -120px);
}

/* TITLE */
.about-title{
    font-family:'League Gothic', sans-serif;

    font-size: 3.5rem;
    font-weight: 175;

    line-height: 1;

    letter-spacing: 2px;

    margin-top: 30px;

    text-transform: uppercase;
    padding-left:0px;
}

/* GREEN TEXT */
.about-title span{
    color:  #bc9047 ;
}

/* DESCRIPTION */
.about-description{
    font-family: 'Montserrat', sans-serif;

    font-size: 17px;
    font-weight: 300;

    line-height: 1.9;

    color:  #bc9047;

    margin-bottom: 35px;

    max-width: 600px;
}

/* BUTTON */


/* =========================================
   TABLET RESPONSIVE
========================================= */
@media(max-width:1024px){

    .about-section{
        min-height: auto;
        padding: 100px 0;
    }

    .about-container{
        padding: 0 5%;
    }

    .about-content{
        max-width: 560px;

        transform: translateX(40px);
    }

    .about-title{
        font-size: 4rem;

        line-height: 1;
    }

    .about-description{
        font-size: 16px;

        line-height: 1.8;
    }

}


/* =========================================
   MOBILE RESPONSIVE
========================================= */
/* =========================================
   MOBILE RESPONSIVE
========================================= */
@media(max-width:768px){

    .about-section{
        min-height: 100vh;

        padding: 80px 0;

        align-items: flex-start;
    }

    /* KEEP CONTENT RIGHT SIDE */
    .about-container{
        justify-content: flex-end;

        padding: 0 20px;
    }

    .about-content{
        width: 58%;

        max-width: 58%;

        transform: translateX(0);

        text-align: left;

        margin-top: 60px;
    }

    .about-title{
        font-size: 2.4rem;

        line-height: 0.95;

        letter-spacing: 1px;

        margin-bottom: 18px;
    }

    .about-description{
        font-size: 14px;

        line-height: 1.7;

        margin-bottom: 25px;
    }

    .about-btn{
        padding: 10px 22px;

        font-size: 14px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */
@media(max-width:480px){

    .about-section{
        padding: 80px 0;
    }

    .about-title{
        font-size: 2.3rem;

        line-height: 1.1;
    }

    .about-description{
        font-size: 14px;

        line-height: 1.7;
    }

    .about-btn{
        width: fit-content;

        padding: 11px 22px;

        font-size: 13px;
    }

}
/* =========================================
   ABOUT SCROLL EFFECT
========================================= */

.about-title{
    transition:1s ease;

    transform-origin:left;
}

.about-description{
    transition:1s ease;
}

/* SMOOTH GPU */
[data-aos]{
    will-change:transform, opacity;

    backface-visibility:hidden;
}
    /* SECTION */
    .feature-section {
      padding: 100px 5%;
      text-align: center;
      background: url("img/iconbg.png") center/cover no-repeat;
      position: relative;
    }

    /* DARK OVERLAY */
    .feature-section::before {
      content: "";
      position: absolute;
      inset: 0;
     
    }

    .feature-title {
      color: #393d40;
      font-size: 3.5rem;
      margin-bottom: 50px;
      position: relative;
      z-index: 2;
      font-family:'League Gothic', sans-serif;
      font-weight: 175;
      letter-spacing: 2px;
      text-transform: uppercase;
      
      
    }

    /* ROW */
    .feature-row {
      display: flex;
      justify-content: center;
      gap: 60px;
      flex-wrap: wrap;
      position: relative;
      z-index: 2;
    }

    /* ITEM */
    .feature-item {
      position: relative;
      width: 180px;
      cursor: pointer;
      text-align: center;
    }

    /* HEXAGON */
    .hexagon {
      width: 160px;
      aspect-ratio: 1 / 1;
      /* 🔥 keeps perfect shape */

      background: #00b5e8 ;

      clip-path: polygon(50% 0%,
          93% 25%,
          93% 75%,
          50% 100%,
          7% 75%,
          7% 25%);

      display: flex;
      align-items: center;
      justify-content: center;
color: #393d40;
      font-size: 42px;
      transition: 0.5s ease;
    }

    /* ROTATE ON HOVER */
    .feature-item:hover .hexagon {
      transform: rotateY(180deg) scale(1.1);
      background: #00b5e8 ;
      color: #393d40;
    }

    /* TEXT BELOW ICON */
    .feature-item p {
      margin-top: 18px;
      color: #393d40;
      font-size: 15px;
      letter-spacing: 1px;
      font-weight: 400;
      font-family: 'Montserrat', sans-serif;
      
    }

    /* HIDDEN CONTENT BOX */
    .feature-content {
      position: absolute;
      top: 50%;
      left: 50%;

      transform: translate(-50%, -50%) scale(0.8);
      width: 260px;

      background: #00b5e8 ;
      color: #393d40;
      padding: 20px;
      border-radius: 10px;

      opacity: 0;
      transition: 0.4s;
    }

    /* SHOW ON HOVER */
    .feature-item:hover .feature-content {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    /* TEXT STYLE */
    .feature-content h3 {
      font-size: 18px;
      margin-bottom: 10px;
      font-family: 'Montserrat', sans-serif;
    }

    .feature-content p {
      font-size: 13px;
      line-height: 1.5;
      font-family: 'Montserrat', sans-serif;
      color: #393d40;
      font-weight: 450;
    }
    
    .about-content .explore-btn{
      display:inline-flex;
    align-items:center;
    justify-content:center;
font-family: 'Montserrat', sans-serif;
    margin-top:35px;

    padding:2px 10px;

    border:1px solid #bc9047 ;
    border-radius:50px;
  background:transparent ;
    color:#bc9047;

    
    font-size:15px;
    font-weight:300;
    letter-spacing:1px;

    text-decoration:none;

    transition:0.3s ease;
}
/* =========================================
   PREMIUM DOOR SECTION
========================================= */
.premium-door-section{
    

    display: flex;
    align-items: center;
    justify-content: space-between;

    

  
   
}

/* LEFT */
.premium-left{
    width: 48%;
}

/* TAG */
.premium-tag{
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: #e9edf4;

    padding: 14px 24px;

    border-radius: 50px;

    font-family:'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #102b56;

    margin-bottom: 30px;
}

/* TITLE */
.premium-title{
    font-family:'League Gothic', sans-serif;

    font-size: 3.5rem;

    line-height: 1;

    color: #00b5e8;

    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.premium-title span{
    color: #393d40;
}

/* TEXT */
.premium-text{
    font-family:'Montserrat', sans-serif;

    font-size: 17px;
    font-weight: 300;

    line-height: 1.9;

    color:#393d40 ;

    max-width: 720px;

    margin-bottom: 40px;
}

/* THUMB ROW */
.premium-thumbs{
    display: flex;
    gap: 24px;

    margin-bottom: 40px;
}

/* THUMB */
.thumb{
    width: 170px;
    height: 210px;

    background: rgba(255,255,255,0.12);

    border-radius: 14px;

    overflow: hidden;

    cursor: pointer;

    transition: 0.3s ease;

    border: 3px solid transparent;
}

.thumb img{
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.thumb.active{
    border-color: #ff7b00;
}

.thumb:hover{
    transform: translateY(-8px);
}

/* BOTTOM */
.premium-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* BUTTON */
.premium-btn{
      display:inline-flex;
    align-items:center;
    justify-content:center;
font-family: 'Montserrat', sans-serif;
    margin-top:-15px;

    padding:2px 10px;

    border:1px solid#00b5e8  ;
    border-radius:50px;
  background:transparent ;
    color:#00b5e8;

    
    font-size:15px;
    font-weight:300;
    letter-spacing:1px;

    text-decoration:none;

    transition:0.3s ease;
}

.premium-btn:hover{
    transform: translateY(-5px);
}

/* NAV BUTTONS */
.premium-nav{
    display: flex;
    gap: 14px;
}

.nav-btn{
    width: 62px;
    height: 62px;

    border-radius: 50%;

    border: 2px solid #393d40;

    background: transparent;

    color: #393d40;

    font-size: 20px;

    cursor: pointer;

    transition: 0.3s ease;
}

.nav-btn:hover{
    background: transparent
    ;
    color: #393d40;
}

/* RIGHT */
.premium-right{
    width: 45%;

    position: relative;
}

.premium-right img{
    width: 100%;

    border-radius: 20px;

    display: block;
}


/* =========================================
   MOBILE
========================================= */
@media(max-width:768px){

    .premium-door-section{
        flex-direction: column;

        gap: 50px;

        padding: 100px 20px;
    }

    .premium-left,
    .premium-right{
        width: 100%;
    }

    .premium-title{
        font-size: 3.5rem;
    }

    .premium-text{
        font-size: 15px;
    }

    .premium-thumbs{
        overflow-x: auto;

        padding-bottom: 10px;
    }

    .thumb{
        min-width: 120px;
        height: 160px;
    }

    .premium-bottom{
        flex-direction: column;

        gap: 25px;

        align-items: flex-start;
    }

}
/* =========================================
   CLASSIC WINDOW SECTION
========================================= */
.classic-section{
   

    display: flex;
    align-items: center;

    gap: 35px;

  

    background: #f4f2e8;
}

/* =========================================
   LEFT THUMBNAILS
========================================= */
.classic-thumbs{
    width: 20%;

    display: flex;
    flex-direction: column;

    gap: 20px;
}

.classic-thumb{
    height: 180px;

    border-radius: 18px;

    overflow: hidden;

    cursor: pointer;

    border: 3px solid transparent;

    transition: 0.3s ease;

    background: #ddd;
}

.classic-thumb img{
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.classic-thumb.active{
    border-color: #ff7b00;
}

.classic-thumb:hover{
    transform: scale(1.03);
}

/* =========================================
   CENTER CONTENT
========================================= */
.classic-content{
    width: 33%;

    background: linear-gradient(180deg,#03c6fc,#72b8cb);

    padding: 35px 40px;

    border-radius: 25px;

    clip-path: polygon(
        0 0,
        100% 0,
        82% 100%,
        0 100%
    );

    position: relative;

    z-index: 2;
}

/* TAG */
.classic-tag{
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 22px;

    border-radius: 40px;

    background: #e9edf4;

    color: #0c2b68;

    font-family:'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 35px;
}

/* TITLE */
.classic-title{
    font-family:'League Gothic', sans-serif;

    font-size: 3.5rem;

    line-height: 1;

    color: #393d40;

    margin-bottom: 40px;
    font-weight: 175;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* FEATURES */
.classic-features{
    display: flex;
    flex-direction: column;

    gap: 20px;

    margin-bottom: 45px;
}

.classic-feature{
    display: flex;
    align-items: center;

    gap: 18px;
}

.feature-icon{
    width: 64px;
    height: 64px;

    border-radius: 18px;

    border: 1px solid#393d40;

    display: flex;
    align-items: center;
    justify-content: center;

    color:#393d40;

    font-size: 22px;
}

.classic-feature p{
    font-family:'Montserrat', sans-serif;

    font-size: 17px;
    font-weight: 300;

    color: #393d40
}

/* BUTTON */
.classic-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
font-family: 'Montserrat', sans-serif;
    margin-top:-15px;

    padding:2px 10px;

    border:1px solid#393d40 ;
    border-radius:50px;
  background:transparent ;
    color:#393d40;

    
    font-size:15px;
    font-weight:300;
    letter-spacing:1px;

    text-decoration:none;

    transition:0.3s ease;
}

.classic-btn:hover{
    transform: translateY(-5px);
}

/* =========================================
   RIGHT IMAGE
========================================= */
.classic-image{
    width: 47%;

    height: 88vh;

    border-radius: 25px;

    overflow: hidden;
}

.classic-image img{
    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* =========================================
   MOBILE
========================================= */
@media(max-width:768px){

    .classic-section{
        flex-direction: column;

        padding: 90px 20px;
    }

    .classic-thumbs{
        width: 100%;

        flex-direction: row;

        overflow-x: auto;
    }

    .classic-thumb{
        min-width: 130px;

        height: 160px;
    }

    .classic-content{
        width: 100%;

        clip-path: none;

        border-radius: 24px;
    }

    .classic-title{
        font-size: 3.2rem;
    }

    .classic-feature p{
        font-size: 15px;
    }

    .classic-image{
        width: 100%;

        height: 500px;
    }

}
/* =========================================
   ANTIQUE SECTION
========================================= */
.antique-section{
   

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;

  

    

    overflow: hidden;
}

/* =========================================
   LEFT SIDE
========================================= */
.antique-left{
    width: 28%;
}

/* TAG */
.antique-tag{
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 24px;

    border-radius: 50px;

    background: #e9edf4;

    color: #082b63;

    font-family:'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 30px;
}

/* TITLE */
.antique-title{
     font-family:'League Gothic', sans-serif;

    font-size: 3.5rem;

    line-height: 1;

    color: #00b5e8;

    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.antique-title span{
    color: #393d40;
}

/* TEXT */
.antique-text{
    font-family:'Montserrat', sans-serif;

    font-size: 17px;

    line-height: 1.9;

    color:#393d40;

    margin-bottom: 40px;
    font-weight: 300;
}

/* BUTTON AREA */
.antique-bottom{
    display: flex;
    align-items: center;

    gap: 30px;
}

/* BUTTON */
.antique-btn{
      display:inline-flex;
    align-items:center;
    justify-content:center;
font-family: 'Montserrat', sans-serif;
    margin-top:-15px;

    padding:2px 10px;

    border:1px solid#00b5e8  ;
    border-radius:50px;
  background:transparent ;
    color:#00b5e8;

    
    font-size:15px;
    font-weight:300;
    letter-spacing:1px;

    text-decoration:none;

    transition:0.3s ease;
}

.antique-btn:hover{
    transform: translateY(-5px);
}

/* NAV */
.antique-nav{
    display: flex;
    gap: 16px;
}

/* ARROWS */
.antique-arrow{
    width: 62px;
    height: 62px;

    border-radius: 50%;

    border: 2px solid #393d40;

    background: transparent;

    color: #393d40;

    font-size: 20px;

    cursor: pointer;

    transition: 0.3s ease;
}

/* =========================================
   RIGHT CARDS
========================================= */
.antique-cards{
    width: 68%;

    display: flex;

    gap: 28px;
}

/* CARD */
.antique-card{
    width: 33%;

    background: #fff;

    border-radius: 8px;

    overflow: hidden;

    box-shadow: 0 12px 30px rgba(0,0,0,0.08);

    transition: 0.3s ease;
}

.antique-card:hover{
    transform: translateY(-10px);
}

/* IMAGE */
.card-image{
    height: 520px;

    overflow: hidden;
}

.card-image img{
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s ease;
}

.antique-card:hover img{
    transform: scale(1.05);
}

/* CONTENT */
.card-content{
    padding: 22px;

    text-align: center;
}

.card-content h3{
    font-family:'League Gothic', sans-serif;

    font-size: 2.2rem;

    color: #ff7b00;

    margin-bottom: 10px;
}

.card-content p{
    font-family:'Montserrat', sans-serif;

    font-size: 17px;

    color: #082b63;
}

/* =========================================
   PRODUCT STACK EFFECT
========================================= */

.product-stack-wrapper{
    position: relative;
}

/* COMMON */
.premium-door-section,
.classic-section,
.antique-section{
    position: sticky;

    top: 0;

    height: 100vh;

    overflow: hidden;

    padding: 35px 7%;

    border-radius: 35px 35px 0 0;

    box-shadow:
    0 -10px 40px rgba(0,0,0,0.18);
}

/* FIRST */
.premium-door-section{
    z-index: 1;

  
    
    
}

/* SECOND */
.classic-section{
    z-index: 2;

    margin-top: 18vh;

    background: #f4f2e8;
}

/* THIRD */
.antique-section{
    z-index: 3;

    margin-top: 18vh;

    background:
    url("../img/antiquebg.png") center/cover no-repeat;
}
.premium-right img{
    transition: 0.4s ease;
}

.thumb.active{
    border: 3px solid #00b5e8 ;

    transform: translateY(-8px);
}
/* =========================================
   ANTIQUE SLIDER
========================================= */

/* HIDE EXTRA */
.antique-cards{
    width: 68%;

    display: flex;

    gap: 28px;

    overflow: hidden;

    scroll-behavior: smooth;
}

/* CARD */
.antique-card{
    min-width: calc((100% - 56px) / 3);

    flex-shrink: 0;
}
.classic-image img{
    transition: 0.4s ease;
}

.classic-thumb.active{
    border: 3px solid #00b5e8 ;

    transform: scale(1.03);
}
/* =========================================
   VIDEO SECTION
========================================= */

.video-section{

    width:100%;

    padding:70px 0 90px;

    display:flex;

    justify-content:center;

    overflow:hidden;

}

/* =========================================
   CONTAINER
========================================= */

.video-container{

    width:86%;

    max-width:1600px;

    margin:auto;

    position:relative;

    overflow:hidden;

    border:1px solid rgba(0,181,232,.25);

    box-shadow:
    0 20px 50px rgba(0,0,0,.20);

}

/* =========================================
   THUMBNAIL
========================================= */

.video-thumbnail{

    position:relative;

    width:100%;

    height:700px;

    cursor:pointer;

    overflow:hidden;

}

.video-thumbnail img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.5s;

}

.video-thumbnail:hover img{

    transform:scale(1.05);

}

/* =========================================
   DARK OVERLAY
========================================= */

.video-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.35);

}

/* =========================================
   PLAY BUTTON
========================================= */

.play-btn{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:95px;

    height:95px;

    border:none;

    border-radius:50%;

    background:#ff0000;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    transition:.35s;

    z-index:10;

    box-shadow:
    0 12px 35px rgba(255,0,0,.35);

}

/* Remove all square outlines */

.play-btn::before,

.play-btn::after{

    display:none;

}

/* Icon */

.play-btn i{

    font-size:38px;

    margin-left:5px;

}

/* Hover */

.play-btn:hover{

    transform:translate(-50%,-50%) scale(1.08);

    background:#cc0000;

}

/* =========================================
   VIDEO PLAYER
========================================= */

.video-player{

    display:none;

    width:100%;

    height:700px;

    background:#000;

}

.video-player.active{

    display:block;

}

.video-player iframe{

    width:100%;

    height:100%;

    border:none;

}

.video-thumbnail.hide{

    display:none;

}

/* =========================================
   LARGE SCREEN
========================================= */

@media(min-width:1800px){

    .video-thumbnail,

    .video-player{

        height:820px;

    }

}

/* =========================================
   LAPTOP
========================================= */

@media(max-width:1400px){

    .video-thumbnail,

    .video-player{

        height:650px;

    }

}

/* =========================================
   TABLET
========================================= */

@media(max-width:991px){

    .video-section{

        padding:60px 20px;

    }

    .video-thumbnail,

    .video-player{

        height:500px;

    }

    .play-btn{

        width:85px;

        height:85px;

    }

    .play-btn i{

        font-size:32px;

    }

}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .video-section{

        padding:50px 15px;

    }

    .video-thumbnail,

    .video-player{

        height:320px;

    }

    .play-btn{

        width:70px;

        height:70px;

    }

    .play-btn i{

        font-size:26px;

    }

}

/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:480px){

    .video-thumbnail,

    .video-player{

        height:240px;

    }

    .play-btn{

        width:60px;

        height:60px;

    }

    .play-btn i{

        font-size:22px;

    }

}
/* =========================================
   TESTIMONIAL SECTION
========================================= */
.testimonial-section{
    position:relative;

    padding:120px 0;

    overflow:hidden;

      background:
    url("../img/testback.jpg") center/cover no-repeat;
}
/* DARK OVERLAY */
.testimonial-section::before{
    content:"";

    position:absolute;

    inset:0;

 

    z-index:1;
}

/* CONTENT ABOVE OVERLAY */
.testimonial-header,
.testimonial-marquee{
    position:relative;

    z-index:2;
}
/* HEADER */
.testimonial-header{
    text-align:center;

    margin-bottom:70px;
}

/* TAG */
.testimonial-tag{
    display:inline-block;

    padding:12px 24px;

    border-radius:40px;

    background:#e9edf4;

    color:#00b5e8;

    font-family:'Montserrat', sans-serif;

    font-size:14px;
    font-weight:700;

    letter-spacing:2px;

    margin-bottom:25px;
}

/* TITLE */
.testimonial-title{
    font-family:'League Gothic', sans-serif;

    font-size:4rem;

    line-height:1;

    letter-spacing:2px;

    text-transform:uppercase;

    color:#393d40;
}

.testimonial-title span{
    color:#00b5e8;
}

/* MARQUEE */
.testimonial-marquee{
    overflow:hidden;

    width:100%;
}

/* TRACK */
.testimonial-track{
    display:flex;

    gap:30px;

    width:max-content;

    animation:testimonialScroll 28s linear infinite;
}

/* CARD */
.testimonial-card{
    width:380px;

    padding:35px 30px;

    border-radius:28px;

    background:rgba(255,255,255,0.72);

    backdrop-filter:blur(10px);

    border:1px solid rgba(0,181,232,0.15);

    box-shadow:
    0 15px 40px rgba(0,0,0,0.08);

    transition:0.4s ease;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

/* IMAGE */
.testimonial-user{
    width:80px;
    height:80px;

    border-radius:50%;

    overflow:hidden;

    margin-bottom:22px;

    border:3px solid #00b5e8;
}

.testimonial-user img{
    width:100%;
    height:100%;

    object-fit:cover;
}

/* STARS */
.stars{
    color:#ffb400;

    font-size:20px;

    margin-bottom:18px;
}

/* TEXT */
.testimonial-card p{
    font-family:'Montserrat', sans-serif;

    font-size:15px;

    line-height:1.9;

    color:#393d40;

    margin-bottom:25px;
}

/* CLIENT NAME */
.client-info h4{
    font-family:'League Gothic', sans-serif;

    font-size:2rem;

    color:#00b5e8;

    letter-spacing:1px;
}

/* LOCATION */
.client-info span{
    font-family:'Montserrat', sans-serif;

    font-size:14px;

    color:#666;
}

/* MOVING EFFECT */
@keyframes testimonialScroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

/* PAUSE */
.testimonial-marquee:hover .testimonial-track{
    animation-play-state:paused;
}

/* =========================================
   MOBILE
========================================= */
@media(max-width:768px){

    .testimonial-section{
        padding:90px 0;
    }

    .testimonial-title{
        font-size:3rem;
    }

    .testimonial-card{
        width:300px;

        padding:28px;
    }

    .testimonial-user{
        width:65px;
        height:65px;
    }

}
/* =========================================
   HOME CONTACT CTA
========================================= */
.home-contact{
    padding:80px 5%;

    text-align:center;

    background:
    linear-gradient(
    135deg,
    #00b5e8,
    #0095c0
    );

    border-radius:30px;

    margin:100px auto;

    max-width:1400px;
}

.home-contact-content h2{
    font-family:'League Gothic',sans-serif;

    font-size:3.5rem;

    letter-spacing:2px;

    color:#393d40;

    margin-bottom:20px;

    text-transform:uppercase;
}

.home-contact-content p{
    font-family:'Montserrat',sans-serif;

    font-size:16px;

    color:#393d40;

    max-width:700px;

    margin:0 auto 35px;

    line-height:1.8;
}

.home-contact-buttons{
    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

.contact-call-btn,
.contact-whatsapp-btn{
    padding:14px 32px;

    border-radius:50px;

    text-decoration:none;

    font-family:'Montserrat',sans-serif;

    font-size:15px;

    transition:0.3s ease;
}

.contact-call-btn{
    background:#393d40;

    color:#00b5e8;
}

.contact-whatsapp-btn{
    background:transparent;

    border:1px solid #393d40;

    color:#393d40;
}

.contact-call-btn:hover,
.contact-whatsapp-btn:hover{
    transform:translateY(-4px);
}

/* MOBILE */
@media(max-width:768px){

    .home-contact{
        padding:60px 20px;
    }

    .home-contact-content h2{
        font-size:2.5rem;
    }

    .home-contact-content p{
        font-size:14px;
    }

}
/* =========================================
   FOOTER
========================================= */

.footer{
     margin-top:0 !important;
    padding-top:60px;
    background:#393d40;
    padding:90px 7% 0;
    margin-top:100px;
    color:#fff;
}

/* =========================================
   CONTAINER
========================================= */

.footer-container{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:1.4fr 1fr 1fr 1fr;

    gap:70px;

    align-items:start;

}

/* =========================================
   COLUMN
========================================= */

.footer-col{

    display:flex;

    flex-direction:column;

}

/* FIRST COLUMN */

.footer-col:first-child{

    align-items:flex-start;

    text-align:left;

}

/* =========================================
   LOGO
========================================= */

.footer-logo{

    display:block;

    height:55px;

    width:auto;

    max-width:240px;

    object-fit:contain;

    margin-bottom:25px;

}

/* =========================================
   ABOUT
========================================= */

.footer-about{

    font-family:'Montserrat',sans-serif;

    font-size:15px;

    line-height:2;

    color:rgba(255,255,255,.75);

    max-width:360px;

    margin-bottom:30px;

}

/* =========================================
   TITLES
========================================= */

.footer-col h3{

    font-family:'League Gothic',sans-serif;

    font-size:25px;

    font-weight:200;

    letter-spacing:1px;

    color:#00b5e8;

    margin-bottom:30px;

    text-transform:uppercase;

}

.footer-col h3::after{

    content:"";

    display:block;

    width:70px;

    height:3px;

    background:#00b5e8;

    margin-top:12px;

}

/* =========================================
   LINKS
========================================= */

.footer-col ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-col ul li{

    margin-bottom:18px;

}

.footer-col ul li a{

    font-family:'Montserrat',sans-serif;

    font-size:15px;

    color:rgba(255,255,255,.82);

    text-decoration:none;

    transition:.3s;

}

.footer-col ul li a:hover{

    color:#00b5e8;

    padding-left:6px;

}

/* =========================================
   CONTACT
========================================= */

.footer-col p{

    display:flex;

    align-items:flex-start;

    gap:15px;

    margin-bottom:20px;

    font-family:'Montserrat',sans-serif;

    font-size:15px;

    line-height:1.9;

    color:rgba(255,255,255,.82);

}

.footer-col p i{

    color:#00b5e8;

    width:18px;

    margin-top:6px;

}

/* =========================================
   SOCIAL
========================================= */

.footer-social{

    display:flex;

    gap:15px;

    margin-top:10px;

}

.footer-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    text-decoration:none;

    transition:.35s;

}

.footer-social a:hover{

    background:#00b5e8;

    transform:translateY(-5px);

}

/* =========================================
   COPYRIGHT
========================================= */

.footer-bottom{

    margin-top:70px;

    padding:25px 0;

    border-top:1px solid rgba(255,255,255,.10);

    text-align:center;

}

.footer-bottom p{

    font-family:'Montserrat',sans-serif;

    font-size:14px;

    color:rgba(255,255,255,.70);

    margin:8px 0;

}

.footer-bottom a{

    color:#00b5e8;

    text-decoration:none;

    transition:.3s;

}

.footer-bottom a:hover{

    color:#fff;

}

/* =========================================
   LARGE SCREEN
========================================= */

@media(min-width:1800px){

    .footer-container{

        max-width:1700px;

    }

}

/* =========================================
   LAPTOP
========================================= */

@media(max-width:1400px){

    .footer-container{

        gap:50px;

    }

}

/* =========================================
   TABLET
========================================= */

@media(max-width:991px){

    .footer-container{

        grid-template-columns:1fr 1fr;

        gap:50px;

    }

    .footer-logo{

        height:50px;

    }

}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .footer{

        padding:70px 20px 0;

    }

    .footer-container{

        grid-template-columns:1fr;

        gap:45px;

    }

    .footer-col{

        align-items:center;

        text-align:center;

    }

    .footer-about{

        max-width:100%;

    }

    .footer-col h3::after{

        margin:12px auto 0;

    }

    .footer-col p{

        justify-content:center;

    }

    .footer-social{

        justify-content:center;

    }

    .footer-logo{

        height:48px;

    }

}

/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:480px){

    .footer{

        padding:60px 15px 0;

    }

    .footer-logo{

        height:42px;

    }

    .footer-col h3{

        font-size:28px;

    }

    .footer-about,

    .footer-col p,

    .footer-col ul li a{

        font-size:14px;

    }

    .footer-social a{

        width:40px;

        height:40px;

    }

}
/* =========================================
   VERY LARGE SCREEN (4K)
========================================= */
@media (min-width:1800px){

    .footer{
        padding:110px 6% 0;
    }

    .footer-container{
        max-width:1700px;
        gap:100px;
    }

    .footer-logo{
        height:70px;
        max-width:300px;
    }

    .footer-about{
        max-width:430px;
        font-size:17px;
    }

    .footer-col h3{
        font-size:30px;
    }

    .footer-col ul li a,
    .footer-col p{
        font-size:17px;
    }

    .footer-social a{
        width:48px;
        height:48px;
        font-size:20px;
    }

}

/* =========================================
   LARGE DESKTOP
========================================= */
@media (max-width:1600px){

    .footer-container{
        max-width:1350px;
        gap:60px;
    }

}

/* =========================================
   LAPTOP
========================================= */
@media (max-width:1400px){

    .footer{
        padding:80px 5% 0;
    }

    .footer-container{
        gap:45px;
    }

    .footer-logo{
        height:52px;
    }

}

/* =========================================
   SMALL LAPTOP
========================================= */
@media (max-width:1200px){

    .footer-container{

        grid-template-columns:1.3fr 1fr 1fr 1fr;

        gap:35px;
    }

    .footer-logo{
        height:48px;
    }

    .footer-about{
        font-size:14px;
    }

    .footer-col h3{
        font-size:22px;
    }

    .footer-col ul li a,
    .footer-col p{
        font-size:14px;
    }

}

/* =========================================
   TABLET
========================================= */
@media (max-width:991px){

    .footer{

        padding:70px 35px 0;
    }

    .footer-container{

        grid-template-columns:1fr 1fr;

        gap:45px;
    }

    .footer-logo{

        height:50px;
    }

    .footer-about{

        max-width:100%;
    }

}

/* =========================================
   MOBILE
========================================= */
@media (max-width:768px){

    .footer{

        padding:60px 20px 0;
    }

    .footer-container{

        grid-template-columns:1fr;

        gap:40px;
    }

    .footer-col{

        align-items:center;

        text-align:center;
    }

    .footer-col:first-child{

        align-items:center;

        text-align:center;
    }

    .footer-logo{

        height:48px;

        margin:auto auto 20px;
    }

    .footer-about{

        max-width:100%;

        text-align:center;
    }

    .footer-col h3::after{

        margin:12px auto 0;
    }

    .footer-col p{

        justify-content:center;

        text-align:center;
    }

    .footer-social{

        justify-content:center;
    }

    .footer-bottom{

        margin-top:50px;
    }

}

/* =========================================
   SMALL MOBILE
========================================= */
@media (max-width:480px){

    .footer{

        padding:50px 15px 0;
    }

    .footer-logo{

        height:42px;
    }

    .footer-col h3{

        font-size:22px;
    }

    .footer-about{

        font-size:14px;

        line-height:1.8;
    }

    .footer-col ul li{

        margin-bottom:14px;
    }

    .footer-col ul li a,

    .footer-col p{

        font-size:14px;
    }

    .footer-social{

        gap:12px;
    }

    .footer-social a{

        width:40px;

        height:40px;

        font-size:16px;
    }

    .footer-bottom{

        padding:20px 0;
    }

    .footer-bottom p{

        font-size:13px;
    }

}

/* =========================================
   SCROLL TO TOP
========================================= */

#scrollTopBtn{

    position:fixed;

    bottom:100px;

    right:25px;

    width:45px;
    height:45px;

    border:none;

    border-radius:50%;

    background:#00b5e8;

    color:#393d40;

    font-size:20px;

    cursor:pointer;

    display:flex;

    align-items:center;
    justify-content:center;

   

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.35s ease;

    z-index:9999;
}

/* SHOW */
#scrollTopBtn.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

/* HOVER */
#scrollTopBtn:hover{

    background:#393d40;

    transform:translateY(-5px);
    color: #00b5e8;

}
@media(max-width:768px){

    #scrollTopBtn{

        width:48px;
        height:48px;

        right:20px;

        bottom:90px;

        font-size:18px;

    }

}
/* =========================================
   NAVBAR
========================================= */

.navbar-transparent{
    position:fixed;
    top:0;
    left:0;

    width:100%;

    padding:18px 0;

    background:transparent;

    transition:
        background .4s ease,
        padding .4s ease,
        transform .4s ease,
        box-shadow .4s ease;

    z-index:9999;
}
/* =========================================
   NAVBAR
========================================= */

.navbar-transparent{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    padding: 18px 0;

    background: transparent;

    transition: all .35s ease;

    z-index: 9999;
}

/* =========================================
   NAVBAR AFTER SCROLL
========================================= */

.navbar-transparent.scrolled{

    background: url("../img/paper1 (1).png") center/cover no-repeat;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 8px 25px rgba(0,0,0,.12);

    padding: 6px 0;
}

/* =========================================
   HIDE NAVBAR
========================================= */

.navbar-hidden{
    transform: translateY(-100%);
}

/* =========================================
   CONTAINER
========================================= */

.nav-container{

    max-width:1400px;

    margin:auto;

    padding:0 40px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:78px;
}

/* Smaller navbar after scroll */

.navbar-transparent.scrolled .nav-container{

    min-height:56px;
}

/* =========================================
   LOGO
========================================= */

.nav-logo{
    display:flex;
    align-items:center;
}

.nav-logo img{

    height:55px;

    display:block;

    margin:0;

    transition:.35s ease;
}

/* Smaller logo */

.navbar-transparent.scrolled .nav-logo img{

    height:40px;
}

/* =========================================
   NAVIGATION
========================================= */

.nav-items{

    display:flex;

    align-items:center;

    gap:32px;

    margin:0;
}

/* =========================================
   LINKS
========================================= */

.nav-link-custom{

    font-family:'Oswald',sans-serif;

    font-size:18px;

    font-weight:350;

    line-height:1;

    color:#393d40;

    text-decoration:none;

    position:relative;

    transition:.3s ease;

    padding:4px 0;
}

/* Smaller text after scroll */

.navbar-transparent.scrolled .nav-link-custom{

    font-size:16px;
}

.nav-link-custom:hover{

    color:#00b5e8;
}

.nav-link-custom.active{

    color:#00b5e8;
}

.nav-link-custom.active::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:100%;

    height:2px;

    background:#00b5e8;
}

/* =========================================
   SOCIAL ICONS
========================================= */

.nav-social{

    display:flex;

    align-items:center;

    gap:10px;
}

.social-icon-nav{

    width:38px;
    height:38px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    color:#393d40;

    text-decoration:none;

    transition:.3s ease;
}

/* Smaller icons after scroll */

.navbar-transparent.scrolled .social-icon-nav{

    width:32px;
    height:32px;

    font-size:15px;
}

.social-icon-nav:hover{

    background:#00b5e8;

    color:#fff;
}

/* =========================================
   MOBILE TOGGLE
========================================= */

.mobile-nav-toggle{

    display:none;

    background:none;

    border:none;

    font-size:28px;

    cursor:pointer;
}

/* =========================================
   TABLET
========================================= */

@media(max-width:991px){

    .nav-container{

        padding:0 25px;
    }

}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .mobile-nav-toggle{

        display:block;
    }

    .nav-items{

        position:fixed;

        top:0;
        right:-100%;

        width:280px;
        height:100vh;

        background:#fff;

        display:flex;

        flex-direction:column;

        align-items:flex-start;

        padding:100px 30px;

        gap:25px;

        transition:.4s;

        z-index:10000;
    }

    .nav-items.active{

        right:0;
    }

    .nav-link-custom{

        font-size:22px;
    }

    .nav-social{

        margin-top:20px;
    }

}

/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:480px){

    .nav-container{

        padding:0 18px;
    }

    .nav-logo img{

        height:42px;
    }

}
/*=========================================
        PRODUCT SLIDER
=========================================*/

.product-slider-section{
    padding:100px 0;
     background:
    url("../img/test.png") center/cover no-repeat;

    overflow:hidden;
}

.product-slider-header{
    text-align:center;
    margin-bottom:60px;
}

.product-slider-header span{
    color:#fff;
    font-family:'Montserrat',sans-serif;
    letter-spacing:3px;
    font-size:15px;
    text-transform:uppercase;
}

.product-slider-header h2{
    font-family:'League Gothic',sans-serif;
    font-size:50px;
    color:#fff;
    letter-spacing:2px;
    margin-top:15px;
}

.product-slider{
    overflow:hidden;
    width:100%;
}

.product-track{
    display:flex;
    gap:30px;
    width:max-content;
    animation:doorSlider 8s linear infinite;
}

.product-slider:hover .product-track{
    animation-play-state:paused;
}

.product-item{
    width:300px;
    flex-shrink:0;
   
    border-radius:15px;
    overflow:hidden;

    transition:.3s;
}

.product-item:hover{
    transform:translateY(-10px);
}

.product-item img{
    width:100%;
    height:420px;
    object-fit:cover;
    display:block;
}

.product-item h3{
    padding:18px;
    text-align:center;
    font-family:'League Gothic',sans-serif;
    font-size:34px;
    color:#393d40;
    letter-spacing:1px;
}

@keyframes doorSlider{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

/* Mobile */

@media(max-width:768px){

.product-slider-header h2{
    font-size:45px;
}

.product-item{
    width:240px;
}

.product-item img{
    height:330px;
}

.product-item h3{
    font-size:28px;
}

}
.product-track{
    display:flex;
    width:max-content;
    animation: slide 12s linear infinite;
}

@keyframes slide{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-50%);
    }
}
/*==========================
        MOBILE HERO
==========================*/
@media (max-width:768px){

    .hero-banner{
        position:relative;
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        min-height:100vh;
        padding:90px 20px 40px;
        overflow:hidden;
    }

    .hero-content{
        position:relative;
        width:100%;
        max-width:100%;
        order:1;

        text-align:center;
        padding:0;
        margin-bottom:25px;

        z-index:2;
    }

    .hero-title{
        margin:0;
        font-size:3rem;
        line-height:1;
        letter-spacing:1px;
        color:#393d40;
    }

    .hero-title span{
        color:#00b5e8;
    }

    .explore-btn{
        margin-top:20px;
        display:inline-block;
        padding:10px 25px;
    }

 .hero-right-img{
    position:relative;
    order:2;

    width:90%;
    max-width:420px;
    height:auto;

    right:auto;
    bottom:auto;
    transform:none;

    margin-top:-20px;   /* Move image upward */
}
}
/*=========================================
        ABOUT MOBILE
=========================================*/
@media (max-width:768px){

    .about-section{
        min-height:100vh;
        padding:70px 20px;
        display:flex;
        justify-content:center;
        align-items:center;
    }

    .about-container{
        width:100%;
        justify-content:center;
        padding:0;
    }

    .about-content{
        width:100%;
        max-width:100%;

        transform:none;

        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;

        text-align:center;
    }

    .about-title{
        width:100%;
        font-size:2.7rem;
        line-height:1;
        letter-spacing:1px;
        margin-bottom:20px;
        text-align:center;
    }

    .about-title span{
        display:block;
    }

    .about-description{
        width:100%;
        max-width:100%;

        font-size:15px;
        line-height:1.9;

        text-align:center;

        margin:0 auto 30px;
    }

    .about-content .explore-btn{
        margin:0 auto;
    }

}
/*=========================================
      MOBILE PREMIUM SECTION
=========================================*/
@media (max-width:768px){

.premium-door-section{
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:60px 20px;
    text-align:center;
}

.premium-left{
    width:100%;
}

.premium-title{
    font-size:52px;
    line-height:1;
    margin-bottom:20px;
}

.premium-text{
    font-size:17px;
    line-height:1.8;
    max-width:100%;
    margin:0 auto 30px;
    text-align:center;
}

.premium-btn{
    display:inline-flex;
    margin-bottom:35px;
}

/* Hide thumbnails & arrows */
.premium-thumbs,
.premium-nav{
    display:none;
}

/* Image Section */
.premium-right{
    width:100%;
    display:flex;
    justify-content:center;
}

.premium-right img{
    width:100%;
    max-width:340px;
    height:450px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

}
#premiumSlider{
    transition:opacity .4s ease;
}
/*=========================================
      CLASSIC SECTION MOBILE
=========================================*/
@media (max-width:768px){

.classic-section{
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:25px;
    border-radius:25px;
    margin:25px 15px;
    background: linear-gradient(180deg,#03c6fc,#72b8cb);
}

.classic-thumbs{
    display:none;
}

.classic-content{
    width:100%;
    text-align:center;
    order:1;
}

.classic-title{
    font-size:52px;
    line-height:1;
    margin-bottom:20px;
}

.classic-features{
    display:none;
}

.classic-btn{
    display:inline-flex;
    margin:25px auto;
}

.classic-image{
    order:2;
    width:100%;
    margin-top:20px;
}

.classic-image img{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:20px;
    transition:.5s;
}

}
.hero-title{
    font-family: 'Story Script', cursive;

    font-size: 4.8rem;
    font-weight: 400;

    line-height: 1.05;
    letter-spacing: 1px;

    color: #393d40;

    margin-top: 170px;

    text-transform: none;

    animation: fadeUp 1s ease forwards;
}

.hero-title span{
    color:#00b5e8;
}

.small-dots{
    font-size:.45em;
}
@media (max-width:768px){

.hero-title{
    font-family:'Story Script', cursive;

    font-size:3.8rem;
    line-height:1.1;

    text-align:center;

    margin-top:20px;
}

}
/* =========================================
   ANTIQUE MOBILE ONLY
========================================= */
@media (max-width:768px){

    .antique-section{
        display:block;
        padding:60px 20px;
    }

    /* Hide description */
    .antique-text{
        display:none;
    }

    .antique-nav{
        display:none;
    }

    .antique-left{
        width:100%;
        margin-bottom:25px;
    }

    .antique-title{
        font-size:2.8rem;
        margin-bottom:15px;
    }

    .antique-bottom{
        margin-top:20px;
    }

    /* Slider */
    .antique-cards{
        width:100%;
        display:flex;
        overflow-x:auto;
        scroll-snap-type:x mandatory;
        gap:20px;
        padding-bottom:10px;
        -webkit-overflow-scrolling:touch;
        scrollbar-width:none;
    }

    .antique-cards::-webkit-scrollbar{
        display:none;
    }

    /* Slightly narrower card */
    .antique-card{
        min-width:85%;
        margin:0 auto;
        scroll-snap-align:center;
        flex-shrink:0;
    }

    /* Increase image height */
    .card-image{
        height:600px;
        
        display:flex;
        align-items:center;
        justify-content:center;
    }

    /* Show full image without cropping */
    .card-image img{
        width:100%;
        height:100%;
        object-fit: cover;
    }
}
/* ==========================
   MOBILE MENU
========================== */

@media(max-width:768px){

.nav-items{

    position:fixed;

    top:0;
    right:-100%;

    width:82%;
    max-width:340px;
    height:100vh;

    background:rgba(255,255,255,.97);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    padding:40px 35px;

    display:flex;
    flex-direction:column;

    transition:.45s ease;

    z-index:99999;

    box-shadow:
    -20px 0 50px rgba(0,0,0,.18);
}

.nav-items.active{
    right:0;
}

/* Close Button */

#closeMenu{

    width:35px;
    height:35px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:2px solid #00b5e8;

    border-radius:50%;

    color:#00b5e8;

    font-size:18px;

    cursor:pointer;

    margin-bottom:20px;

    transition:.35s;
}

#closeMenu:hover{

    background:#00b5e8;
    color:#fff;

    transform:rotate(90deg);
}

/* Links */

.nav-link-custom{

    width:100%;

    padding:16px 0;

    font-size:15px;

    font-family:'Oswald',sans-serif;

    border-bottom:1px solid #ececec;

    transition:.3s;
}

.nav-link-custom:hover{

    padding-left:15px;

    color:#00b5e8;
}

/* Social */

.nav-social{

    margin-top:10px;

    display:flex;

    gap:15px;
}

.social-icon-nav{

    width:35px;
    height:35px;

    border-radius:50%;

    border:1px solid #ddd;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.3s;
   
}

.social-icon-nav:hover{

    background:#00b5e8;
    color:#fff;
    border-color:#00b5e8;
}

}
/*=========================================
      FEATURE SECTION MOBILE
=========================================*/
@media (max-width:768px){

    .feature-section{
        padding:60px 20px;
    }

    .feature-title{
        font-size:42px;
        margin-bottom:40px;
    }

    .feature-row{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:30px 20px;
        justify-items:center;
        align-items:start;
    }

    .feature-item{
        width:100%;
        max-width:160px;
        text-align:center;
    }

    .hexagon{
        width:110px;
        height:110px;
        margin:0 auto;
        font-size:32px;
    }

    .feature-item p{
        margin-top:15px;
        font-size:13px;
        line-height:1.4;
    }

    .feature-content{
        width:220px;
        padding:15px;
    }

    .feature-content h3{
        font-size:16px;
    }

    .feature-content p{
        font-size:12px;
    }

    /* Center the last (5th) item */
    .feature-item:last-child{
        grid-column:1 / span 2;
        justify-self:center;
    }

}
/* Hide close button on desktop */
.close-menu-btn{
    display: none;
}

/* Show close button only on mobile */
@media (max-width:768px){

    .close-menu-btn{
        display: flex;
        align-items: center;
        justify-content: center;

        position: absolute;
        top: 20px;
        right: 20px;

        width: 40px;
        height: 40px;

        background: transparent;
        border: none;

        font-size: 28px;
        color: #393d40;
        cursor: pointer;

        z-index: 1002;
    }

    .close-menu-btn:hover{
        color: #00b5e8;
    }
}