    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: #0f0f0f;
      color: white;
    }

/* 🔥 PREMIUM ORANGE THEME */
:root{
  --primary-orange: #ff7a00;
  --secondary-orange: #ffb347;
  --dark-orange: #e66900;

  --gradient-orange: linear-gradient(90deg, #ff7a00, #ffb347, #ff7a00);
  --gradient-orange-soft: linear-gradient(45deg, #ff7a00, #ff9a3c);
}
html {
  scroll-behavior: smooth;
}
/* TOP HEADER */
.top-top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

   background: linear-gradient(90deg, #cc5c00 0%, #ff7a00 50%, #330a00 100%);
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

/* LEFT SIDE */
.top-left span {
  margin-right: 30px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.top-left span i {
  color: #00ffd5;
  transition: all 0.3s ease;
}

.top-left span:hover i {
  color: #ff00ff;
  transform: rotate(20deg) scale(1.2);
}

/* RIGHT SIDE - SOCIAL ICONS */
.top-right {
  display: flex;
  gap: 15px;
}



/* SOCIAL ICONS */
.social-icon {
  width: 40px;  /* slightly bigger for better border */
  height: 40px;
  background: #222;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  position: relative;
  overflow: hidden;
  border: 2px solid #fff; /* bright white border */
  transition: all 0.4s ease;
}

/* Icon inside stays on top */
.social-icon i {
  z-index: 2;
  transition: all 0.4s ease;
}

/* Hover Gradient Glow Effect */
.social-icon::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  
  background: linear-gradient(90deg,#ff7a00,#ffb347,#ff7a00);
  top: -10%;
  left: -10%;
  opacity: 0;
  transform: rotate(45deg);
  transition: 0.4s;
  border-radius: 50%;
  filter: blur(10px);
}

.social-icon:hover::before {
  opacity: 0.9;
  transform: rotate(0deg);
}

/* Hover Scale + Border Glow */
.social-icon:hover {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 0 10px #fff, 0 0 20px #00ffd5, 0 0 30px #ff00ff;
  border-color: #fff; /* ensure border stays bright */
}

/* Individual Brand Colors on Hover */
.social-icon.facebook:hover { color: #3b5998; }
.social-icon.whatsapp:hover { color: #25D366; }
.social-icon.youtube:hover { color: #FF0000; }
.social-icon.instagram:hover { color: #C13584; }
.social-icon.globe:hover { color: #00ffd5; }

/* Responsive Adjustment */
@media (max-width: 768px) {
  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

  .top-left span {
    margin-right: 15px;
  }

    /* HEADER */
    header {
     
      width: 100%;
     
      z-index: 1000;
      backdrop-filter: blur(15px);
      background: white;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-container {
      max-width: 1200px;
       
      margin: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 60px;
      padding-left: 10px;
      padding-right: 10px;
      padding-bottom: 5px;
    }

    /* LOGO */
    .logo {
      font-size: 24px;
      font-weight: 600;
      letter-spacing: 1px;
      background: linear-gradient(45deg, #fff, #aaa);
      -webkit-background-clip: text;
      color: transparent;
    }

    /* NAV LINKS */
    .nav-links {
      display: flex;
      gap: 25px;
      list-style: none;
    }

    .nav-links li {
      position: relative;
      perspective: 500px;
    }

    .nav-links a {
      text-decoration: none;
      color: #000000;
      font-size: 14px;
      padding: 6px 8px;
      display: inline-block;
      transition: all 0.3s ease;
      transform-style: preserve-3d;
    }

    /* 3D HOVER EFFECT */
    .nav-links a:hover {
      transform: rotateX(15deg) rotateY(10deg) scale(1.05);
      color: #ffad5c;
      text-shadow: 0 0 10px rgba(255,122,0,0.7);
    }

    /* UNDERLINE EFFECT */
    .nav-links a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0%;
      height: 2px;
      background: #00ffd5;
      transition: 0.3s;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    /* HAMBURGER */
    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .menu-toggle span {
      height: 3px;
      width: 25px;
      background: white;
      margin: 4px;
      transition: 0.3s;
    }

    /* MOBILE */
    @media(max-width: 768px) {
      .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.9);
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: 0.4s ease;
      }

      .nav-links.active {
        max-height: 500px;
        padding: 20px 0;
      }

      .menu-toggle {
        display: flex;
      }
    }



.buy-btn{
  padding: 15px 100px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  color: #fff !important;
  text-decoration: none;
  background: linear-gradient(90deg, #ff7a00, #ffb347, #ff7a00);
  background-size: 200% auto;
  transition: 0.4s ease;
  box-shadow: 0 0 10px rgba(255,122,0,0.5);
  position: relative;
}

/* SHINE ANIMATION */
.buy-btn:hover{
  background-position: 200% center;
  box-shadow: 0 0 15px rgba(255,122,0,0.8),
              0 0 25px rgba(255,179,71,0.6);
  transform: scale(1.08);
}

/* OPTIONAL: subtle pulse */
.buy-btn{
  animation: btnGlow 2.5s infinite alternate;
}

@keyframes btnGlow{
  from{
    box-shadow: 0 0 8px rgba(255,122,0,0.4);
  }
  to{
    box-shadow: 0 0 18px rgba(255,122,0,0.8);
  }
}



/* MARQUEE CSS */
/* MARQUEE CONTAINER */
.marquee {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #000, #111, #000);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
}

/* SCROLLING TEXT */
.marquee-content {
  display: inline-block;
  white-space: nowrap;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;

  background: linear-gradient(90deg, #ff7a00, #fff3e0, #ff7a00);
-webkit-background-clip: text;
color: transparent;


  animation: scroll 12s linear infinite;
}

/* INFINITE SCROLL */
@keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* SHINE EFFECT */
.marquee-content::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  animation: shine 3s infinite;
}

@keyframes shine {
  100% {
    left: 150%;
  }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .marquee-content {
    font-size: 13px;
    animation-duration: 8s;
  }
}
/* END MARQUEE CSS */

/* FIXED TOP HEADER (MARQUEE + NAVBAR) */
.top-header {

  top: 0;
  width: 100%;
  z-index: 1000;
}

/* REMOVE fixed from header */
header {
 
}

/* SLIDER */
.slider {
 
  width: 100%;
  height: 65vh;
  position: relative;
  overflow: hidden;
  background: #f5f7fa;
}

/* SLIDES */
.slides {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT OVERLAY */
.slide-text {
  position: absolute;
  bottom: 50px;
  left: 60px;
  font-size: 40px;
  font-weight: 700;
  color: #111;
  background: rgba(255,255,255,0.6);
  padding: 10px 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

/* BUTTONS */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.7);
  border: none;
  font-size: 30px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s;
}

.prev:hover, .next:hover {
  background: #00ffd5;
  color: black;
}

.prev { left: 20px; }
.next { right: 20px; }

/* DOTS */
.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 5px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dots .active {
  background: #ff7a00;
  transform: scale(1.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .slider {
    height: 50vh;
  }

  .slide-text {
    font-size: 20px;
    left: 20px;
    bottom: 20px;
  }
}

/* CATEGORY SECTION */
.categories {
  padding: 80px 20px;
 background: linear-gradient(135deg, #fff5eb, #ffe4cc);
  text-align: center;
}

/* HEADING */
.section-title2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;

background: linear-gradient(90deg, #ff7a00, #ffb347, #ff7a00);
  -webkit-background-clip: text;
  color: transparent;

  animation: glowText 3s linear infinite;
}

@keyframes glowText {
  0% { filter: brightness(1); }
  50% { filter: brightness(1.5); }
  100% { filter: brightness(1); }
}

/* GRID */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  position: relative;
}

/* IMAGE */
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* TITLE */
.card h3 {
  padding: 15px;
  font-size: 18px;
  color: #222;
}

/* HOVER EFFECT */
.card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* GLOW BORDER */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
 background: linear-gradient(45deg, #ff7a00, #ffb347, #ff7a00);
-webkit-mask: 
  linear-gradient(#fff 0 0) content-box, 
  linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
  opacity: 0;
  transition: 0.4s;
}

.card:hover::before {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }

  .card img {
    height: 150px;
  }
}

/* FOOTER */
.footer {
  background: linear-gradient(135deg, #1a0c04, #5a2d12, #ffc371);
  color: #ccc;
  padding-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* CONTAINER */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 0 20px;
}

/* LOGO */
.footer-logo {
  font-size: 24px;
  font-weight: 700;
  
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  color: transparent;
}

/* HEADINGS */
.footer-col h3 {
  margin-bottom: 15px;
  color: white;
}

/* TEXT */
.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

/* LINKS */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
  transition: 0.3s;
}

/* HOVER EFFECT */
.footer-col ul li a:hover {
  color: #00ffd5;
  padding-left: 5px;
}

/* BOTTOM BAR */
.footer-bottom {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}

/* FOOTER SOCIAL ICONS */
.footer-social-icons {
  display: inline-flex;
  gap: 10px;
  margin-left: 10px;
}

.footer-social-icons .social-icon {
  width: 28px;
  height: 28px;
  background: #333;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
}

.footer-social-icons .social-icon i {
  z-index: 2;
}

/* Hover Gradient Glow */
.footer-social-icons .social-icon::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: linear-gradient(45deg, #00ffd5, #ff00ff, #007bff);
  top: -10%;
  left: -10%;
  opacity: 0;
  transform: rotate(45deg);
  transition: 0.4s;
  border-radius: 50%;
  filter: blur(10px);
}

.footer-social-icons .social-icon:hover::before {
  opacity: 0.8;
  transform: rotate(0deg);
}

/* Hover Scale + Border Glow */
.footer-social-icons .social-icon:hover {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 0 10px #fff, 0 0 20px #00ffd5, 0 0 30px #ff00ff;
  border-color: #fff;
}

/* Brand Colors on Hover */
.footer-social-icons .facebook:hover { color: #3b5998; }
.footer-social-icons .whatsapp:hover { color: #25D366; }
.footer-social-icons .youtube:hover { color: #FF0000; }
.footer-social-icons .instagram:hover { color: #C13584; }
.footer-social-icons .globe:hover { color: #00ffd5; }

/* Responsive */
@media (max-width: 768px) {
  .footer-social-icons {
    margin-top: 5px;
    display: flex;
    gap: 8px;
  }

  .footer-social-icons .social-icon {
    width: 25px;
    height: 25px;
    font-size: 13px;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
}

/* SECTION */
.showcase {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a0f05, #3b1f0f, #5c2e14);
  text-align: center;
}

/* TITLE */
.showcase-title {
  font-size: 40px;
  margin-bottom: 60px;

  background: linear-gradient(90deg, #ff7a00, #ffd2a6, #ff7a00);
-webkit-background-clip: text;
color: transparent;


  animation: shineText 4s linear infinite;
}

@keyframes shineText {
  0% { background-position: -200%; }
  100% { background-position: 200%; }
}

/* GRID */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: auto;
}

/* CARD */
.showcase-card {
  position: relative;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: 0.6s ease;
}

/* IMAGE */
.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.9)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  color: white;
  transition: 0.5s;
}

/* TEXT */
.overlay h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.overlay p {
  font-size: 14px;
  opacity: 0.8;
}

/* HOVER MAGIC */
.showcase-card:hover {
  transform: scale(1.05) rotateX(5deg) rotateY(-5deg);
}

.showcase-card:hover img {
  transform: scale(1.2);
}

.showcase-card:hover .overlay {
  background: linear-gradient(
    180deg,
    rgba(255,122,0,0.2),
    rgba(0,0,0,0.95)
  );
}

/* GLOW BORDER */
.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(45deg, #00ffd5, #007bff, #00ffd5);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: 0.5s;
}

.showcase-card:hover::before {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .showcase-title {
    font-size: 28px;
  }

  .showcase-card {
    height: 250px;
  }
}

.featured-products {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff5eb, #ffe4cc);
  text-align: center;
}

.featured-products .section-title {
  font-size: 36px;
  margin-bottom: 40px;
background: linear-gradient(90deg, #ff7a00, #ffc371);
-webkit-background-clip: text;
color: transparent;
}

.carousel {
  overflow-x: auto;
  scroll-behavior: smooth;
}

.carousel-track {
  display: flex;
  gap: 20px;
}

.product-card {
  flex: 0 0 220px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card h3 {
  padding: 10px;
  font-size: 16px;
  font-weight: 600;
}

.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.features {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a0f05, #3d1f0f, #6a3518);
  text-align: center;
  color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.feature-box {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 20px;
  transition: 0.5s;
  cursor: pointer;
}

.feature-box span {
  font-size: 40px;
  display: block;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-box:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, #ff7a00, #ffb347);
  color: white;
  box-shadow: 0 20px 40px rgba(0,255,213,0.3);
}


.testimonials {
  padding: 100px 20px;
  background: #111;
  text-align: center;
  color: white;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-top: 20px;
}

.testimonial-card {
  flex: 0 0 300px;
  background: #222;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,255,213,0.3);
}
.social-feed {
  padding: 100px 20px;
  background: #f5f7fa;
  text-align: center;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.social-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.social-grid img:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}




/* FLIPPED CALL & ENQUIRY SECTION - LUXURY ACCENT */
.call-enquiry-flip {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  padding: 80px 20px;
  background: linear-gradient(135deg, #121212, #1c1c1c);
  color: #f5f5f5;
  border-radius: 20px;
  flex-wrap: wrap;
  margin: 50px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

/* LEFT SIDE - CONTACT INFO */
.enquiry-left {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  position: relative;
}

.enquiry-left h2 {
  font-size: 36px;
  color: #e0e0e0;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #ff7a00, #ffb347);
  -webkit-background-clip: text;
  color: transparent;
  animation: subtleShine 4s linear infinite;
}

.enquiry-left p {
  font-size: 18px;
  opacity: 0.85;
}

/* Contact Buttons */
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  color: #fff;
  background: #2a2a2a;
  transition: all 0.4s ease;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

.contact-btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.1);
  transition: 0.4s;
  border-radius: 50px;
}

.contact-btn:hover::after {
  width: 100%;
}

.contact-btn:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 0 20px rgba(0,255,213,0.2), 0 0 30px rgba(255,179,71,0.2);
}

/* DIFFERENT BUTTON COLORS */
.call-btn { background: #2b2b2b; }
.whatsapp-btn { background: #272727; }

/* RIGHT SIDE - FORM */
.enquiry-right {
  flex: 1 1 450px;
}

.enquiry-right h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #f5f5f5;
 background: linear-gradient(90deg, #ff7a00, #ffb347);
  -webkit-background-clip: text;
  color: transparent;
  animation: subtleShine 4s linear infinite;
}

.enquiry-right form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.enquiry-right input,
.enquiry-right textarea {
  padding: 15px 20px;
  border-radius: 10px;
  border: 1px solid #333;
  background: #1e1e1e;
  color: #f5f5f5;
  font-size: 16px;
  transition: all 0.3s ease;
}

.enquiry-right input:focus,
.enquiry-right textarea:focus {
  border-color: #00ffd5;
  box-shadow: 0 0 10px rgba(0,255,213,0.3);
}

/* Submit Button */
.enquiry-right button {
  padding: 15px 25px;
  border-radius: 50px;
  border: none;
  background: #2a2a2a;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.4s ease;
}

.enquiry-right button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0,255,213,0.2), 0 0 25px rgba(255,179,71,0.2);
  background: #333;
}

/* Subtle Shine Animation */
@keyframes subtleShine {
  0% { background-position: -200%; }
  100% { background-position: 200%; }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .call-enquiry-flip {
    flex-direction: column-reverse; /* form first on mobile */
    align-items: center;
  }

  .enquiry-left,
  .enquiry-right {
    flex: 1 1 100%;
    text-align: center;
  }

  .contact-btn {
    justify-content: center;
  }
}





/* CONTAINER */
.floating-container{
    position:fixed;
    bottom:30px;
    right:30px;
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:9999;
}

/* BUTTON BASE */
.float-btn{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
    transition:all 0.35s ease;
    position:relative;
    overflow:hidden;
}

/* HOVER ANIMATION */
.float-btn::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:-100%;
    background:rgba(255,255,255,0.2);
    transition:all 0.4s ease;
}

.float-btn:hover::before{
    left:100%;
}

.float-btn:hover{
    transform:translateY(-6px) scale(1.1);
    box-shadow:0 15px 35px rgba(0,0,0,0.3);
}

/* COLORS */
.whatsapp2{
    background:linear-gradient(135deg,#25D366,#128C7E);
}

.call{
    background:linear-gradient(135deg,#ff4d4d,#b30000);
}

.enquiry{
    background:linear-gradient(135deg,#4da6ff,#0047b3);
}

/* PULSE ANIMATION */
@keyframes pulse {
    0%{
        box-shadow:0 0 0 0 rgba(0,0,0,0.3);
    }
    70%{
        box-shadow:0 0 0 15px rgba(0,0,0,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(0,0,0,0);
    }
}

.float-btn{
    animation:pulse 2.5s infinite;
}

/* TOOLTIP */
.float-btn span{
    position:absolute;
    right:70px;
    background:#000;
    color:#fff;
    padding:6px 10px;
    border-radius:5px;
    font-size:12px;
    opacity:0;
    white-space:nowrap;
    transition:0.3s;
}

.float-btn:hover span{
    opacity:1;
    right:75px;
}



/* MODAL BACKGROUND */
.enquiry-modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:0.4s ease;
    z-index:10000;
}

.enquiry-modal.active{
    opacity:1;
    visibility:visible;
}

/* FORM BOX */
.enquiry-box{
    width:340px;
    padding:25px;
    border-radius:14px;
    background:#0f0f0f;
    box-shadow:0 20px 50px rgba(0,0,0,0.6);
    transform:translateY(50px) scale(0.95);
    transition:0.4s ease;
}

.enquiry-modal.active .enquiry-box{
    transform:translateY(0) scale(1);
}

/* 🔥 SHINING HEADING */
.enquiry-box h2{
    text-align:center;
    margin-bottom:18px;
    font-weight:600;
    background:white;
    background-size:200% auto;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    animation:shineText 3s linear infinite;
}

@keyframes shineText{
    0%{ background-position:0% center; }
    100%{ background-position:200% center; }
}

/* INPUTS */
.enquiry-box input,
.enquiry-box textarea{
    width:100%;
    padding:11px;
    margin:8px 0;
    border-radius:8px;
    border:1px solid rgba(255,255,255,0.08);
    background:#181818;
    color:#fff;
    outline:none;
    transition:0.25s;
}

/* ✨ BORDER GLOW ON CLICK (FOCUS) */
.enquiry-box input:focus,
.enquiry-box textarea:focus{
    border-color:#ff7a00;
    box-shadow:0 0 8px rgba(255,122,0,0.5);
}

/* BUTTON (DECENT ORANGE) */
.enquiry-box button{
    width:100%;
    padding:11px;
    margin-top:12px;
    border:none;
    border-radius:8px;
    background:#ff7a00;
    color:#fff;
    cursor:pointer;
    font-weight:500;
    transition:0.3s;
}

/* BUTTON HOVER */
.enquiry-box button:hover{
    background:#e66900;
    box-shadow:0 0 10px rgba(255,122,0,0.5);
}

/* CLOSE BUTTON */
.close-btn{
    position:absolute;
    top:10px;
    right:15px;
    font-size:24px;
    color:#aaa;
    cursor:pointer;
    transition:0.3s;
}

.close-btn:hover{
    color:#fff;
}

.acp{
padding-top:10px;
}

.white{
    background: #000;
    color: #f5d77a;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    margin-left: 6px;
    transition: 0.3s;
}

/* Grid Layout */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: center;
  margin-top: 20px;
}

/* Image Styling */
.social-grid img {
  width: 100%;
  max-width: 150px;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect - premium feel */
.social-grid img:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.4); /* brand orange glow */
}

/* Section Title */
.section-title2 {
  text-align: center;
  font-size: 28px;
  color: #ff7a00; /* brand color */
  margin-bottom: 20px;
  font-weight: 700;
}














/* Wrapper to hide overflow */
.social-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  margin-top: 20px;
}

/* Marquee container */
.social-marquee {
  display: flex;
  gap: 100px;
  animation: marqueeScroll 20s linear infinite;
}

/* Image styling */
.social-marquee img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  
}

/* Hover effect */
.social-marquee img:hover {
  transform: scale(1.2);
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.4);
}

/* Keyframes for scrolling */
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.social-marquee {
  display: flex;
  animation: marqueeScroll 20s linear infinite;
}

/* Base styling */
.social-marquee img.social-icon2 {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Premium hover effect */
.social-marquee img.social-icon2:hover {
  transform: scale(1.2);
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.4);
}

/* Custom spacing between icons */
.social-icon2.facebook { margin-right: 50px; }   /* bigger gap after FB */
.social-icon2.youtube { margin-right: 30px; }    /* medium gap */
.social-icon2.whatsapp { margin-right: 40px; }   /* custom */
.social-icon2.insta1 { margin-right: 25px; }
.social-icon2.insta2 { margin-right: 20px; }
.social-icon2.insta3 { margin-right: 50px; }     /* end spacing */




/* Wrapper to hide overflow */
.testimonial-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  margin-top: 20px;
}

/* Track container for scrolling */
.testimonial-track {
  display: flex;
  gap: 30px;
  animation: testimonialScroll 25s linear infinite;
}

/* Each testimonial card */
.testimonial-card {
  background: rgba(255, 255, 255, 0.05); /* semi-transparent for premium look */
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  min-width: 250px;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.testimonial-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.4);
}

/* Stars styling */
.stars {
  color: #ff7a00;
  font-size: 18px;
  margin: 5px 0;
}

/* Keyframes for marquee */
@keyframes testimonialScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.testimonial-marquee-wrapper {
  overflow: hidden;   /* hides the scrollbar */
  width: 100%;
  margin-top: 20px;
}

/* Optional: ensure cards don’t wrap */
.testimonial-track {
  display: flex;
  flex-wrap: nowrap;  /* prevent wrapping */
  gap: 30px;
  animation: testimonialScroll 25s linear infinite;
}

/* Container aligns button to the right */
.buy-now-container {
  margin-left: 20px; /* some space from nav-links */
}

/* Buy Now button styling */
.buy-now-btn {
  display: inline-block;
  padding: 10px 25px;
 /* premium orange-gold gradient */
      background: linear-gradient(135deg, #ff7a00, #cc5c00);
  color: #fff;
  font-weight: bold;
  border-radius: 50px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 122, 0, 0.6);
  transition: all 0.3s ease;
  text-decoration:none;
}

/* Hover glow effect */
.buy-now-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.9), 0 0 15px rgba(255, 186, 0, 0.7);
  background: linear-gradient(135deg, #ff5500, #ffd100);
}