/* style.css */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#f5f5f9;
  color:#222;
  overflow-x:hidden;
}

img{
  width:100%;
  display:block;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.section{
  padding:90px 0;
}

.section-title{
  text-align:center;
  color:#3f8cff;
  font-size:2rem;
  margin-bottom:50px;
  font-weight:600;
}

.left{
  text-align:left;
}

/* HEADER */

header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.97);
            box-shadow: 0 2px 20px rgba(0,0,0,0.04);
            z-index: 1000;
          
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 85px;
            max-width: 1000px;
            margin:0 auto;
            padding: 0 80px;
        }
        .logo {
            font-size: 1.4rem;
            font-weight: 700;
            color: #10b981;
            letter-spacing: -1px;
        }
        .logo span {
            color: #1a56db;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 35px;
        }
        .nav-item {
            position: relative;
        }
        .nav-link {
            font-size: 0.80rem;
            font-weight: 600;
            color: #232323;
            text-transform: uppercase;
            padding: 30px 0;
            cursor: pointer;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav-link i {
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }
        .nav-link:hover {
            color: #1a56db;
        }
        .nav-item:hover .nav-link i {
            transform: rotate(180deg);
        }
        
        /* Dropdown Menus */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(15px);
            background-color: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            min-width: 200px;
            border-top: 3px solid #1a56db;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            padding: 12px 0;
            border-radius: 0 0 4px 4px;
        }
        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }
        .dropdown li a {
            display: block;
            padding: 10px 24px;
            font-size: 0.8rem;
            font-weight: 500;
            color: #555;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .dropdown li a:hover {
            background-color: #f8fafc;
            color: #1a56db;
            padding-left: 28px;
        }
         /* --- BUTTONS --- */
        .btn-blue {
            background-color: #2760db;
            color: white;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            border: 2px solid #1a56db;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 4px 10px rgba(26, 86, 219, 0.2);
        }
        .btn-blue:hover {
            background-color: transparent;
            color: #1a56db;
            box-shadow: 0 4px 15px rgba(26, 86, 219, 0.1);
        }
  
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        ul {
            list-style: none;
        }
/* HERO */

.hero{
  height:105vh;
  background:url('https://images.unsplash.com/photo-1483985988355-763728e1935b?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(255,255,255,0.55);
}

.hero-content{
  position:relative;
  z-index:2;
}

.hero-text{
  max-width:500px;
  animation:fadeUp 1s ease;
}

.hero-text h1{
  font-size:4rem;
  line-height:1.1;
  margin-bottom:20px;
}

.hero-text p{
  color:#00050f;
  font-size:1rem;
}

/* ABOUT */

.about{
    background:#f3f3f3;
    padding:80px 0;
}

.section-title{
    text-align:center;
    color:#3f8cff;
    font-size:52px;
    margin-bottom:60px;
}

.about-grid{
    display:grid;
    grid-template-columns:repeat(3, 280px);
    gap:20px;
    justify-content:center;
}

.about-card{
    background:transparent;
}

.about-card img{
    width:100%;
    height:160px;
    object-fit:cover;
    margin-bottom:15px;
}

.about-tag{
    display:block;
    color:#999;
    font-size:13px;
    margin-bottom:8px;
}

.about-card h3{
    color:#3f8cff;
    font-size:24px;
    margin-bottom:10px;
}

.about-card p{
    color:#888;
    font-size:15px;
    line-height:1.5;
    margin-bottom:15px;
}

.about-card a{
    text-decoration:none;
    color:#c9c9c9;
    font-size:14px;
    font-weight:600;
}
/* Image Zoom Animation */
.about-card img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
       
}
.about-img-wrapper {
            overflow: hidden;
            margin-bottom: 22px;
            border-radius: 4px;
        }

.about-card:hover img {
    transform: scale(1.20);
}

/* Learn More Link Animation */
.about-card a {
    transition: all 0.3s ease;
    display: inline-block;
}

.about-card:hover a {
    color: #3f8cff;
    transform: translateX(4px);
}
.learn-more i {
            font-size: 0.7rem;
            transition: transform 0.2s ease;
        }
        .learn-more:hover {
            color: #1a56db;
        }
        .learn-more:hover i {
            transform: translateX(4px);
        }
/* SALE */

.sale{
  height:500px;
  background:url('https://images.unsplash.com/photo-1483985988355-763728e1935b?q=80&w=1600&auto=format&fit=crop') center/cover scroll;
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
}

.sale-overlay{
  position:absolute;
  inset:0;
  background:rgba(255,255,255,0.7);
}

.sale-content{
  position:relative;
  z-index:2;
  text-align:center;
}
.sale-content p{
  font-size:13px;
  color:#999;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:10px;
}
.sale-content h2{
  font-size:3rem;
  color:#2481ff;
  margin-bottom:20px;
}

.sale-content button{
  padding:14px 35px;
  border:none;
  border-radius:40px;
  background:#2481ff;
  color:#fff;
  cursor:pointer;
  transition:.4s;
}

.sale-content button:hover{
  transform:scale(1.08);
}

/* FEATURES SECTION */

.features{
  background:#f5f5f7;
  padding:70px 0;
}

.features-grid{
  max-width:950px;
  margin:auto;

  display:grid;
  grid-template-columns:0.8fr 1.2fr;
  gap:50px;
  align-items:center;
}

/* LEFT */

.features-left{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.features-left span{
  font-size:11px;
  letter-spacing:2px;
  color:#999;
  margin-bottom:15px;
  text-transform:uppercase;
}

.features-left h2{
  font-size:2.2rem;
  line-height:1.2;
  color:#3f8cff;
  font-weight:300;
}

/* RIGHT */

.features-right{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:40px 50px;
}

.feature-box{
  transition:.3s ease;
}

.feature-box:hover{
  transform:translateY(-5px);
}

.feature-box i{
  font-size:1.8rem;
  color:#3f8cff;
  margin-bottom:14px;
}

.feature-box h3{
  font-size:15px;
  margin-bottom:10px;
  color:#111;
  font-weight:600;
}

.feature-box p{
  font-size:14px;
  color:#999;
  line-height:1.7;
  max-width:190px;
}

/* RESPONSIVE */

@media(max-width:768px){

  .features-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .features-left{
    align-items:center;
  }

  .features-right{
    grid-template-columns:1fr;
    justify-items:center;
  }

  .feature-box p{
    max-width:250px;
    margin:auto;
  }

}
/* PRODUCTS */

.products {
  background: #ffffff;
  padding: 60px 0;
}

.products .container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.section-title {
  text-align: center;
  color: #3f8cff;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 35px;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 14px;
  justify-items: center;
  max-width: 580px;
  margin: 0 auto;
}

/* CARD */
.product-card {
  text-align: center;
  cursor: pointer;
  width: 100%;
}

/* IMAGE WRAPPER & NEW OVERLAY EFFECT (VIDEO STYLE) */
.product-image-wrapper {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 0 auto;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .5s ease;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(235, 235, 235, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Overlay ke andar text ki setting */
.overlay-title {
  color: #333333;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

/* HOVER EFFECTS */
.product-card:hover .image-overlay {
  opacity: 1;
}

.product-card:hover .overlay-title {
  transform: scale(0.7);
}

.product-card:hover img {
  transform: scale(1.05);
}

/* INFO (Niche wala text) */
.product-info {
  margin-top: 10px;
}

.product-info h3 {
  color: #a0a0a0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.product-info span {
  font-size: 13px;
  color: #222;
  font-weight: 600;
}

/* MOBILE RESPONSIVENESS */
@media(max-width: 768px) {
  .products .container {
    padding: 0 20px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .product-image-wrapper {
    width: 240px;
    height: 240px;
  }

  .section-title {
    font-size: 2rem;
  }
}
.newsletter{
  background:#f4f4fa;
  padding:80px 20px;
  text-align:center;
  font-family: sans-serif; /* Clean look ke liye font-family */
}

.newsletter h4{
  color:#3f8cff;
  font-size:2.2rem;
  margin-bottom:25px;
  font-weight: 500;
}

.newsletter-top{
  display:flex;
  justify-content:center;
  align-items: center; /* Vertically center align karne ke liye */
  gap:95px;
  margin-bottom:40px;
  flex-wrap:wrap;
}

/* Specific text settings as per image_4f317f.png */
.subscribe-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
  margin: 0;
}

.discount-text {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}

.newsletter-form{
  display:flex;
  justify-content:center;
  align-items:center;
}

.search-box{
  display:flex;
  align-items:center;
  background:#fff;
  overflow:hidden;
  width:45px;
  height:45px;
  transition:0.6s ease;
}

.search-box:hover{
  width:320px;
}

.search-box:focus-within{
  width:320px;
}

.icon{
  width:45px;
  min-width:45px;
  text-align:center;
  font-size:20px;
  cursor:pointer;
  color: #888;
}

.search-box input{
  border:none;
  outline:none;
  width:100%;
  padding:0 15px;
  font-size:15px;
}

.newsletter-form button{
  height:45px;
  border:none;
  background:rgb(238, 235, 235);
  color:#3f8cff;
  font-weight:700;
  padding:0 18px;
  cursor:pointer;
}

/* GALLERY SECTION */


.gallery {
  background: #ffffff;
  padding: 80px 0;
  display: flex;
  justify-content: center; 
  align-items: center;
}

.gallery .container {
  width: 100%;
  max-width: 900px; 
  margin: 0 auto;
  padding: 0 20px;
}

/* GRID SETUP */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  grid-template-rows: repeat(2, 220px); 
  gap: 14px; 
}

/* GALLERY ITEM */
.gallery-item {
  position: relative; 
  overflow: hidden;   
  cursor: pointer;
}

.item-1 {
  grid-row: span 2; 
}

/* IMAGES STYLING (Stable background) */
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
  filter: brightness(0.85); 
  transition: filter 0.4s ease;
}

.gallery-item:hover img {
  filter: brightness(0.7);
}


.item-info {
  position: absolute;
  z-index: 2;
  font-family: sans-serif;
  pointer-events: none; 
  width: max-content;
  bottom: 25px;
  right: 35px;
  top: auto;
  left: auto;
  text-align: left;
  transition: top 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              left 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              bottom 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              right 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              text-align 0.3s ease;
}

.info-bottom-right, .info-top-right {
  bottom: 25px;
  right: 35px;
  top: auto;
  left: auto;
  text-align: left;
}
.item-info h4 {
  color: #3f8cff;       
  font-size: 0.9rem;   
  font-weight: 600;     
  margin: 0 0 2px 0;    
}
.item-info h3 {
  color: #ffffff;       
  font-size: 1.35rem;   /* Is size ko 1.6rem se chota karke 1.35rem kar diya hai */
  font-weight: 800;     
  margin: 0;
  letter-spacing: 0.5px;
  line-height: 1.1;
  text-transform: uppercase;
}


.gallery-item:hover .item-info {
  top: 50%;
  left: 50%;
  bottom: auto;
  right: auto;
  text-align: center; /* Hover hone par alignment center ho jayegi */
  transform: translate(-50%, -50%) scale(1.04); /* Perfect center positioning lock */
}


/* ==========================================================================
   5. MOBILE RESPONSIVENESS
   ========================================================================== */

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr; 
    grid-template-rows: auto;
    gap: 15px;
  }
  
  .item-1 {
    grid-row: span 1;
  }

  .gallery-grid img {
    height: 300px; 
  }

  /* Mobile screen par static responsive position layout */
  .gallery-item:hover .item-info {
    top: auto;
    right: 35px;
    bottom: 25px;
    transform: none;
    text-align: left;
  }
}

.blog {
  background: #f0f2f7;
  padding: 80px 0;
}

.blog .container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TITLE */
.section-title {
  text-align: center;
  color: #3f8cff;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 45px;
  font-family: sans-serif;
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}


.blog-card {
  background: #ffffff;
  border-radius: 0px;
  overflow: hidden;
  text-align: center; 
  
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* HOVER EFFECT: Pure card ke charo taraf intense dark black shadow */
.blog-card:hover {
  box-shadow: 0 0 25px 5px rgba(0, 0, 0, 0.45); 
}


/* IMAGE */
.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

/* CONTENT BOX */
.blog-content {
  padding: 22px 15px; 
}

.blog-content h3 {
  font-size: 14px;
  color: #111111;
  font-weight: 700;
  margin: 0 0 10px 0;
  font-family: sans-serif;
}

/* LEARN MORE LINK */
.blog-content .learn-more {
  color: #3f8cff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  display: inline-block;
  transition: color 0.3s ease;
  font-family: sans-serif;
}

.blog-content .learn-more:hover {
  color: #1a6be6; /* Darker blue on text hover */
}

/* ==========================================================================
   4. MOBILE RESPONSIVENESS
   ========================================================================== */

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 320px;
    margin: 0 auto; 
  }

  .blog-card img {
    height: 260px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  .blog-card:hover {
  box-shadow: 0 12px 16px rgba(0, 0, 0, 0.85);
  }
}
/* ==========================================================================
   1. COLLECTION SECTION LAYOUT
   ========================================================================== */

.collection {
  background: #ffffff;
  padding: 80px 0;
}

.collection .container {
  width: 100%;
  max-width: 850px; 
  margin: 0 auto;
  padding: 0 20px;
}

.collection-header {
  text-align: left; 
  margin-bottom: 35px; 
  font-family: sans-serif;
}

.collection-header .section-title-left {
  color: #3f8cff; 
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin: 0 0 12px 0;
}

.collection-link {
  color: #222222; 
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-block;
  text-transform: uppercase;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; 
}


/* ==========================================================================
   1. COLLECTION SECTION LAYOUT
   ========================================================================== */

.collection {
  background: #ffffff;
  padding: 80px 0;
}

.collection .container {
  width: 100%;
  max-width: 850px; 
  margin: 0 auto;
  padding: 0 20px;
}

.collection-header {
  text-align: left; 
  margin-bottom: 35px; 
  font-family: sans-serif;
}

.collection-header .section-title-left {
  color: #3f8cff; 
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin: 0 0 12px 0;
}

.collection-link {
  color: #222222; 
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-block;
  text-transform: uppercase;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; 
}


/* ==========================================================================
   2. COLLECTION ITEM & TRANSITIONAL OVERLAY SETUP
   ========================================================================== */

.collection-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.collection-grid img {
  width: 100%;
  height: 180px; 
  object-fit: cover;
  border-radius: 0px; 
  display: block;
}

.collection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  background: transparent;
  backdrop-filter: blur(4px); 
  -webkit-backdrop-filter: blur(4px);
  
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  opacity: 0;
  
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
              opacity 0.2s ease-in-out;
}

/* COMMON HOVER: Jab kisi bhi card par mouse jaye, toh overlay core position (0,0) par aa jaye */
.collection-item:hover .collection-overlay {
  transform: translate(0, 0); 
  opacity: 1;
}


/* 1. Left se enter hone wala overlay */
.c-item-1 .collection-overlay {
  transform: translate(-100%, 0);
}

/* 2. Right se enter hone wala overlay */
.c-item-2 .collection-overlay {
  transform: translate(100%, 0);
}

/* 3. Up (Top) se enter hone wala overlay */
.c-item-3 .collection-overlay {
  transform: translate(0, -100%);
}

/* 4. Down (Bottom) se enter hone wala overlay */
.c-item-4 .collection-overlay {
  transform: translate(0, 100%);
}

/* 5. Left Upper Edge (Diagonal Top-Left) se enter hone wala overlay */
.c-item-5 .collection-overlay {
  transform: translate(-100%, -100%);
}

/* 6. Right Bottom Edge (Diagonal Bottom-Right) se enter hone wala overlay */
.c-item-6 .collection-overlay {
  transform: translate(100%, 100%);
}


.social-icons {
  display: flex;
  gap: 12px;
  transform: scale(0.85);
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.collection-item:hover .social-icons {
  transform: scale(1);
}

/* Circular Minimal Icon Buttons */
.icon-btn {
  width: 38px;
  height: 38px;
  background: #ffffff; 
  color: #1c5ec7;      
  border-radius: 50%;  
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06); 
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.icon-btn:hover {
  background: #2378f7;
  color: #ffffff;
  transform: translateY(-2px);
}


/* ==========================================================================
   5. MOBILE RESPONSIVENESS
   ========================================================================== */

@media (max-width: 768px) {
  .collection-header {
    padding-left: 10px; 
  }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr); 
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .collection-grid {
    grid-template-columns: 1fr; 
  }
  
  .collection-grid img {
    height: 220px;
  }
}

.testimonial-full-bleed-bg {
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  background-color: #f0f2f7 !important;
  box-sizing: border-box;
}

.testimonial {
  background: transparent !important;
  padding: 60px 0 80px 0;
  width: 100%;
}

.testimonial-inner-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  background: transparent !important;
}

.testimonial .section-title {
  text-align: center;
  color: #3f8cff;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 40px;
  font-family: sans-serif;
}


.testimonial-flex-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important; /* Forces buttons to lock exactly vertically centered with image/text */
  justify-content: center !important;
  width: 100%;
  gap: 30px; /* Spacing between arrows and the center block */
  background: transparent !important;
}

.testimonial-wrapper {
  flex: 1;
  max-width: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
  background: transparent !important;
}

/* INDIVIDUAL SLIDE BOX */
.testimonial-box {
  width: 100%;
  text-align: center;
  font-family: sans-serif;
  display: none; 
  background: transparent !important;
}

.testimonial-box.active {
  display: block !important; 
}


.testimonial-box img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px auto;
  display: block;
}

.testimonial-box h3 {
  font-size: 15px;
  color: #111111;
  font-weight: 700;
  margin: 0 0 4px 0;
}

.testimonial-box span {
  font-size: 11px;
  color: #7f8c8d;
  display: block;
  margin-bottom: 20px;
}

.testimonial-box p {
  font-size: 13.5px;
  color: #444444; 
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
}


.slider-btn {
  position: relative !important;
  top: auto !important;
  transform: none !important;
  
  background: #bdc3c7 !important;
  color: #0a6be1 !important;
  border: none !important;
  outline: none !important;
  
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  
  font-size: 22px !important;
  font-weight: normal !important;
  cursor: pointer;
  
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  line-height: 1 !important;
  
  flex-shrink: 0;
  transition: background 0.2s ease;
  user-select: none;
}

.prev-btn { padding-right: 2px !important; }
.next-btn { padding-left: 2px !important; }

.slider-btn:hover {
  background: #8f9091 !important;
}

/* Responsive adjustments for phones */
@media (max-width: 768px) {
  .testimonial-flex-row { gap: 10px; }
  .testimonial-wrapper { margin: 0; }
  .testimonial-box p { font-size: 12.5px; }
}
/* LOCATION */

.location_section{
  background:white;
  padding:70px 0;
}

.location .container{
  width:820px;
  margin:auto;
}

/* TITLE */

.section-title{
  text-align:center;
  color:#3f8cff;
  font-size:2.3rem;
  font-weight:300;
  margin-bottom:45px;
}

/* INFO */

.location-info{
  width:700px;
  margin:0 auto 28px;

  display:flex;
  justify-content:space-between;
}

.location-box h3{
  font-size:15px;
  color:#111;
  margin-bottom:6px;
}

.location-box p{
  color:#5d8cff;
  font-size:14px;
}

/* GRID */

.location-grid{
  width:820px;
  margin:auto;

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
}

/* IMAGE + MAP */

.location-grid img,
.location-grid iframe{
  width:100%;
  height:320px;   
  object-fit:cover;
  border:none;
  display:block;
}

/* MOBILE */

@media(max-width:900px){

  .location .container,
  .location-grid,
  .location-info{
    width:100%;
  }

  .location{
    padding:60px 20px;
  }

}

@media(max-width:768px){

  .location-grid{
    grid-template-columns:1fr;
  }

  .location-info{
    flex-direction:column;
    gap:18px;
    text-align:center;
  }

  .location-grid img,
  .location-grid iframe{
    height:260px;
  }

}

/* FOOTER */

.footer{
  background:#f5f5f7;
  padding:60px 0;
}

.footer .container{
  width:760px;   
  margin:auto;
}

/* GRID */

.footer-grid{
  display:grid;
  grid-template-columns:1.8fr .8fr .8fr;
  gap:55px;
  align-items:start;
}

/* LOGO */

.footer-logo{
  font-size:1.6rem;   /* chota */
  font-weight:700;
  margin-bottom:15px;
  color:#46d6b0;
}

.footer-logo span{
  color:#4a86ff;
}

/* TEXT */

.footer-text{
  color:#9a9a9a;
  font-size:13px;    /* chota */
  line-height:1.7;
  max-width:360px;
}

/* HEADINGS */

.footer h3{
  font-size:14px;
  color:#111;
  margin-bottom:18px;
  font-weight:700;
}

/* LINKS */

.footer ul{
  list-style:none;
  padding:0;
}

.footer li{
  margin-bottom:13px;
  color:#9a9a9a;
  font-size:13px;
  transition:.3s;
  cursor:pointer;
}

.footer li:hover{
  color:#4a86ff;
}
.copyright {
            text-align: center;
            padding-top: 35px;
            border-top: 1px solid #e2e8f0;
            font-size: 0.8rem;
            color: #94a3b8;
            letter-spacing: 0.5px;
            background:white;
        }


/* SOCIALS */

.socials{
  margin-top:22px;
  display:flex;
  gap:10px;
}

.socials i{
  width:26px;
  height:26px;
  border-radius:50%;
  background:#fff;
  color:#6da3ff;
  font-size:12px;

  display:flex;
  align-items:center;
  justify-content:center;

  transition:.3s;
  cursor:pointer;
}

.socials i:hover{
  transform:translateY(-3px);
}

/* MOBILE */

@media(max-width:768px){

  .footer .container{
    width:100%;
    padding:0 20px;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

}
/* COPYRIGHT */

.copyright{
  background:#fff;
  padding:18px 0;
  text-align:center;
  border-top:1px solid #ececec;
}

.copyright p{
  font-size:12px;
  color:#555;
  letter-spacing:.3px;
}
/* ANIMATION */

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(50px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* RESPONSIVE */

@media(max-width:992px){

  .about-grid,
  .blog-grid,
  .collection-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .features-grid,
  .location-grid,
  .gallery-grid{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:768px){

  .navbar{
    position:absolute;
    top:80px;
    right:-100%;
    width:280px;
    height:100vh;
    background:#fff;
    flex-direction:column;
    padding:40px;
    transition:.4s;
  }

  .navbar.active{
    right:0;
  }

  .menu-btn{
    display:block;
  }

  .buy-btn{
    display:none;
  }

  .hero-text h1{
    font-size:3rem;
  }

  .about-grid,
  .product-grid,
  .blog-grid,
  .collection-grid,
  .features-right{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .sale-content h2{
    font-size:2rem;
  }
}

@media(max-width:500px){

  .hero-text h1{
    font-size:2.4rem;
  }

  .newsletter-form input{
    width:100%;
  }
}
/* HAMBURGER BUTTON */

.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  z-index: 1100;
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #232323;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* NAVBAR MOBILE */

@media (max-width: 768px) {

  .hamburger-btn {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 85px;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 25px;
    gap: 0;
    box-shadow: -4px 0 20px rgba(0,0,0,0.08);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-link {
    padding: 14px 0;
    width: 100%;
    justify-content: space-between;
  }

  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid #1a56db;
    padding: 5px 0 5px 15px;
    min-width: unset;
    display: none;
  }

  .nav-item.mob-open .dropdown {
    display: block;
  }

  .nav-menu > li:last-child {
    padding: 20px 0;
    border: none;
  }

  .btn-blue {
    width: 100%;
  }

  .nav-container {
    padding: 0 20px;
  }

}
