html {
  scroll-behavior: smooth;
}

body {
      margin: 0;
      font-family: "Mulish", sans-serif;
      color: #fff;
      background-color: #111;
      line-height: 1.6;
    }

    /* Navbar */
    header {
    position: sticky;
    top: 0;
    background: #fffbec;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px;
}
.nav-links a {color:#000;
}
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: auto;
      padding:0;
    }
    .navbar h1 {font-size: 1.4rem; color: #b89d48;}
    .nav-links {display: flex; gap: 1.5rem;}
    .nav-links a {font-weight: 500; transition: 0.3s;}
    .nav-links a:hover {color: #b89d48;}
    .navbar img {width: 150px;}
    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }
    .hamburger div {
      width: 25px;
      height: 3px;
      background: #fff;
      border-radius: 2px;
    }

    h1, h2, h3 {color: #d4af37;}
    a {text-decoration: none; color: inherit;}
    .container {width: 90%; max-width: 1200px; margin: auto;}



    /* Hero Section */
.hero {
  position: relative;
  background: url('your-hero-image.jpg') center/cover no-repeat;
  color: #fff;
  padding: 80px 20px;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  z-index: 1;
  flex-wrap: wrap; /* ensures wrapping on small screens */
}

/* Left Column */
.hero-content {
  flex: 1;
  min-width: 280px; /* prevents content from shrinking too much */
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn {
  background: #e6b800;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  display: inline-block;
  text-align: center;
}

/* Right Column */
.hero-form {
  flex: 1;
  min-width: 280px;
 
  border-radius: 10px;
  color: #000;
}

.hero-form h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.hero-form input,
.hero-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.hero-form button {
  width: 100%;
  background: #e6b800;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    margin-bottom: 30px;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-form {
    width: 100%;
    max-width: 500px;
    margin: auto;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 60px 15px;
  }

  .hero-content h2 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .btn {
    width: 100%;
  }
}
/* Base */
.hero {
  position: relative;
  background: url('your-hero-image.jpg') center/cover no-repeat;
  color: #fff;
  padding: 80px 20px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
}
.hero-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between; /* desktop two columns */
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  z-index: 1;
  /* IMPORTANT: Do NOT animate this container */
  animation: none !important;
}

/* Left column */
.hero-content {
  flex: 1 1 0;
  min-width: 280px;
  will-change: transform, opacity; /* smoother, no layout shift */
}
.hero-content h2 { font-size: 2.5rem; margin-bottom: 15px; }
.hero-content p  { font-size: 1.2rem; margin-bottom: 25px; }

.btn {
  background: #e6b800; color: #000; font-weight: 700;
  padding: 12px 24px; border-radius: 5px; text-decoration: none; display: inline-block;
}

/* Right column (lock width so it doesn't wiggle) */
.hero-form {
  flex: 0 0 420px;         /* fixed column width */
  max-width: 420px;
  width: 100%;
   
  color: #000;
 
  border-radius: 10px;
  /* isolate paints so transforms on left don't disturb this box */
  contain: paint;
}
.hero-form h3 { margin-bottom: 20px; font-size: 1.5rem; }
.hero-form input, .hero-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    color: #000;
}}
.hero-form button {
  width: 100%; background: #e6b800; border: none;
  padding: 12px; border-radius: 5px; font-weight: 700; cursor: pointer;
}

/* ✨ Animation – apply ONLY to .hero-content */
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animated-in { animation: fadeSlideIn 700ms ease-out 120ms both; }

/* Responsive */
@media (max-width: 992px) {
  .hero-container { flex-direction: column; text-align: center; }
  .hero-content { margin-bottom: 24px; }
  .hero-content h2 { font-size: 2rem; }
  .hero-content p  { font-size: 1rem; }
  .hero-form {
    flex: 1 1 auto; max-width: 520px; width: 100%; margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .hero { padding: 60px 15px; }
  .hero-content h2 { font-size: 1.6rem; }
  .hero-content p  { font-size: 0.95rem; }
  .btn { width: 100%; }
}
    /* Hero */
    .hero {
       
    
      
      background-image: url("../img/banner.webp");
    }
    .hero-overlay {background: rgba(0,0,0,0.5); position: absolute; top: 0; left: 0; right: 0; bottom: 0;}
    .hero-content {position: relative; z-index: 1; color: #fff; padding: 0 20px;}
    .hero h2 {font-size: 2.2rem; margin-bottom: 1rem;}
    .tagline {font-size: 1.1rem; color: #f5e6c8; font-weight: 500;}

  
    .btn {
      background: #d4af37;
      color: #111;
      padding: 12px 25px;
      border-radius: 30px;
      font-weight: bold;
      transition: 0.3s;
      display: inline-block;
      margin-top: 1rem;
    }
    .btn:hover {background: #fff; color: #111;}

    /* Sections */
    section {padding: 60px 20px; text-align: center;}
     

    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
    .service-box {
      background: #222;
      padding: 20px;
      border-radius: 10px;
      transition: 0.3s;
    }
    .service-box:hover {transform: translateY(-5px); background: #333;}

    /* Reels */
    .reels {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }
    .reels iframe {
      width: 100%;
      height: 300px;
      border-radius: 10px;
    }

    /* Contact */
    form {
      max-width: 600px;
      margin: auto;
      background: #222;
      padding: 20px;
      border-radius: 10px;
    }
    form input, form textarea {
      width: 100%;
      padding: 12px;
      margin: 10px 0;
      border: none;
      border-radius: 5px;
    }
    form button {
      background: #d4af37;
      border: none;
      padding: 12px 25px;
      border-radius: 30px;
      font-weight: bold;
      cursor: pointer;
    }
    form button:hover {background: #fff; color: #111;}

    /* Footer */
    footer {background: #000; text-align: center; padding: 20px; font-size: 0.9rem;}

    /* Responsive */
    @media(max-width: 768px) {
      .nav-links {
        display: none;
        flex-direction: column;
        background: #111;
        position: absolute;
        top: 60px;
        right: 20px;
        width: 200px;
        padding: 15px;
        border-radius: 8px;
      }
      .nav-links.active {display: flex;}
      .hamburger {display: flex;}
      .hero h2 {font-size: 1.6rem;}
      .tagline {font-size: 1rem;}
    }

.whatsappCtaBtnPing {
	animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
/* added */
@keyframes ping {
	75%, 100% {
	  transform: scale(2);
	  opacity: 0;
	}
}

.fixed-btm-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 999;
}


/* Container */
#banner-container {
    margin: 0;
    padding: 0;
    position: relative;
    height: 206px;
    overflow: hidden;
}

/* Base Ribbon Style */
#banner-container .banner {
  position: absolute;
  width: 150%;
  height: 60px;
  left: -25%;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  gap: 15px;
}

/* Background Static Ribbon (Blue, no text) */
#banner-container .banner1 {
  top: 50%;
  transform: translateY(-50%) rotate(361deg);
  background-color: #fff1b7;
  z-index: 1;
}

/* Moving Ribbon (Green, with text) */
#banner-container .banner2 {
  top: 50%;
  transform: translateY(-50%) rotate(-5deg);
  background-color: #d4af37;
  z-index: 2;
  overflow: hidden;
}

.ribbon {
  display: flex;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
}

.ribbon span,
.ribbon .fas {
  margin: 0 15px;
}

/* Scroll Animation */
@keyframes scroll {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Mobile */
@media (max-width:768px){
  #banner-container .banner {
    font-size: 16px;
    height: 50px;
  }
}


/* Remove unwanted scrollbars */
body {
  overflow-x: hidden;
}

 
#reels {
    background: #f9f9f9;
    padding: 50px 0;
}

#reels h2 {
  font-size: 25px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 30px;
  text-align: center;
}

.video-container {
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 25px rgba(0,0,0,0.2);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}


/* Reels grid */
#reels .row {
  display: grid;
  grid-template-columns: 1fr 1fr ; /* mobile default = 1 column */
  gap: 20px; /* spacing between videos */
}

#reels .col-md-3 {
  width: 100%;
}

/* Desktop / tablet view */
@media (min-width: 768px) {
  #reels .row {
    grid-template-columns: repeat(4, 1fr); /* 3 columns */
  }
}

*, ::after, ::before {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    max-height: 100%;
}
img, svg {
    vertical-align: middle;
}

img {
    overflow-clip-margin: content-box;
    overflow: clip;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
   
} 


#feedback a {
    display: block;
       background: #d69b00;
    height: 52px;
    padding-top: 10px;
    width: 155px;
    text-align: center;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #ff9800;
}
#feedback {
    height: 0px;
    width: 85px;
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 1000;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

/* Prevent horizontal scroll globally */
html, body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}
#why-us {    padding: 50px 0 0 0 !important;}
.font-25 {font-size: 25px;}
.pt50 {padding-top: 50px ;}

/* Ribbon Container */
#banner-container {
  margin: 0;
  padding: 0;
  position: relative;
  height: 160px; /* thoda kam height mobile ke liye */
  overflow: hidden;
      background: #f6f8fa;
}

/* Base Ribbon */
#banner-container .banner {
  position: absolute;
  width: 120%;   /* pehle 150% tha – ab 120% */
  left: -10%;    /* pehle -25% tha – ab better centering */
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  gap: 15px;
  height: 60px;
}

/* Static background ribbon */
#banner-container .banner1 {
  top: 50%;
  transform: translateY(-50%) rotate(4deg);
  background-color:#fff1b7;
  z-index: 1;
}

/* Moving ribbon */
#banner-container .banner2 {
  top: 50%;
  transform: translateY(-50%) rotate(-4deg);
  background-color: #d4af37;
  z-index: 2;
  overflow: hidden;
}

.ribbon {
  display: flex;
  white-space: nowrap;
  animation: scroll 25s linear infinite;
}

.ribbon span,
.ribbon .fas {
  margin: 0 15px;
}

/* Infinite scroll animation */
@keyframes scroll {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Mobile optimization */
@media (max-width: 768px) {
     #banner-container {
      height: 120px;
        background: #eff3f7;
        background: linear-gradient(180deg, rgb(239 243 247) 50%, rgb(17 17 17) 50%);
    }



  #banner-container .banner {
    font-size: 14px;
    height: 40px;
    width: 140%;   /* thoda jyada width mobile ke liye */
    left: -20%;
  }
}

.box-about {
background: rgb(5 55 44 / 38%);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.3); padding: 20px;}

#about{padding: 50px 0;}
 
.reel-shop-button {
    padding: 5px 20px;
    position: relative;
    line-height: 3.5;
    background: #e6b800;
    border-radius: 32px;
}

#why-us .section-title {
    text-align:center;
    font-size:34px;
    margin-bottom:45px;
    font-weight:700;
    color:#222;
  }

  #why-us .why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
  }

  #why-us .why-box {
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0px 6px 14px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
  }

  #why-us .why-box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 22px rgba(0,0,0,0.15);
  }

  #why-us h4 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 12px;
    color:#111;
        display: flex;
    align-items: center;
    gap: 12px;
    flex-direction: column;
  }

  #why-us h4 i {
    font-size: 23px;
     color: #d69b00;
    transition: transform 0.4s ease, color 0.4s ease, text-shadow 0.4s ease;
    background: #ffffff;
    padding: 10px;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    line-height: 1.5;
  }

  #why-us .why-box:hover h4 i {
    transform: rotate(15deg) scale(1.25);
    color: #ff5722;
    text-shadow: 0 0 10px rgba(255,87,34,0.6);
  }

  #why-us p {
    font-size: 15.5px;
    color:#000;
    margin:0;
    line-height:1.6;
  }

  #why-us .why-text {
    text-align:center;
    margin-top:35px;
    max-width:820px;
    margin-left:auto;
    margin-right:auto;
  }

  #why-us .why-text p {
    font-size:18px;
    line-height:1.7;
    color:#444;
  }

  /* ✅ Mobile Responsive Tweaks */
  @media (max-width: 768px) {

    #why-us .why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    justify-items: stretch;
}
    #why-us {
      padding:1px 20px;
    }
    #why-us .section-title {
      font-size:26px;
      margin-bottom:30px;
    }
    #why-us h4 {
      font-size:18px;
    }
    #why-us p {
      font-size:14.5px;
    }
    #why-us .why-text p {
      font-size:16px;
      line-height:1.6;
    }
  }

  @media (max-width: 480px) {
    #why-us .section-title {
      font-size:22px;
    }
    #why-us .why-box {
      padding:20px;
    }
    #why-us h4 {
      font-size:17px;
    }
    #why-us p {
      font-size:14px;
    }
  }

  input::placeholder {
  color: #000;
  font-family: inherit !important;
  opacity: 0.5;
}

.ser-img {border-radius: 10px;}

#contact {padding-top:0;}
 @media only screen and (max-width: 2000px) and (min-width: 900px) {

#banner-container {
    margin: 0;
    padding: 0;
    position: relative;
    height: 160px;
    overflow: hidden;
    background: #ffffff;
    background: linear-gradient(180deg, rgb(239 243 247) 50%, rgb(17 17 17) 50%);
}

#banner-container .banner2 {
    top: 50%;
    transform: translateY(-50%) rotate(-2deg);
    background-color: #d4af37;
    z-index: 2;
    overflow: hidden;
}

#banner-container .banner1 {
    top: 50%;
    transform: translateY(-50%) rotate(2deg);
    background-color: #fff1b7;
    z-index: 1;
}

 }

 .box {text-align: center;}

.box   a {
      display: inline-block;
      margin-top: 20px;
      padding: 12px 20px;
      background: #333;
      color: #fff;
      text-decoration: none;
      border-radius: 6px;
    }
  .box   a:hover { background: #555; }
  
  
  
  
  


  