* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  top: 0px !important;
  font-family: "Barlow Condensed", sans-serif;
  overflow-x: hidden;
  background-color: white;
}

html {
  scroll-behavior: smooth;
}

/* nav-bar section started */


/* =============== BASE NAVBAR STYLING =============== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #fcd659);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 999;
  padding: 10px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  animation: fadeInNav 0.6s ease;
}

@keyframes fadeInNav {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

/* =============== LOGO =============== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 50px;
  width: 50px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: rotate(-5deg) scale(1.05);
}

.shop-name {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 1px;
}

/* =============== NAV LINKS =============== */
.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #000;
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
}

.nav-list a:hover::after {
  width: 100%;
}

/* =============== LANGUAGE DROPDOWN =============== */
.translate-container {
  position: relative;
}

.translate-btn {
  background: transparent;
  color: #000;
  border: 2px solid #000;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.translate-btn:hover {
  background: #000;
  color: #fcd659;
}

.language-dropdown {
  display: none;
  position: absolute;
  top: 45px;
  right: 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.language-dropdown button {
  background: none;
  border: none;
  color: #333;
  padding: 10px;
  width: 100%;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
}

.language-dropdown button:hover {
  background: #f1f1f1;
}

/* Show dropdown */
.show {
  display: block;
}

/* Rotate arrow when active */
.translate-btn.active .arrow {
  transform: rotate(180deg);
}

/* =============== HAMBURGER MENU =============== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.25);
}

.bar {
  width: 24px;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* =============== RESPONSIVE =============== */
@media (max-width: 1024px) {
  .nav-list {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-list.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, #fcd659);
    text-align: center;
    padding: 20px 0;
    animation: slideDown 0.4s ease forwards;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10%);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-list a {
    font-size: 1.2rem;
    padding: 10px 0;
  }
}

@media (max-width: 480px) {
  .shop-name {
    font-size: 1.4rem;
  }

  .logo img {
    height: 45px;
    width: 45px;
  }

  .translate-btn {
    font-size: 13px;
    padding: 5px 10px;
  }
}

/* ==========================
   HERO SECTION
========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(120deg, #fff8f5, #f3f4f7);
  color: #111;
  padding: 140px 0 80px;
  /* space for navbar */
  overflow: hidden;
}

/* Animated Background */
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 182, 155, 0.15), transparent 70%);
  animation: floatBg 10s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes floatBg {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(5%, 5%) scale(1.05);
  }
}

/* Layout */
.overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  gap: 40px;
  flex-wrap: wrap;
}

/* ===== Content Section ===== */
.content {
  flex: 1 1 400px;
  max-width: 600px;
  opacity: 0;
  transform: translateY(80px);
  transition: all 1.2s ease;
}

.content.show {
  opacity: 1;
  transform: translateY(0);
}

.main-heading {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  letter-spacing: 1px;
  position: relative;
  color: #111;
}

.highlight {
  color: #e44320;
  font-weight: 800;
}

/* Underline Animation */
.main-heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 120px;
  height: 4px;
  background: #e44320;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s ease;
}

/* 
.content.show .main-heading::after {
  transform: scaleX(1);
} */

/* Paragraph */
.description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 35px;
  text-align: justify;
}

/* Buttons */
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s ease;
}

.buttons.show {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.35s ease;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.red-btn {
  background: #e44320;
  color: #fff;
}

.red-btn:hover {
  background: #c73717;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 25px rgba(228, 67, 32, 0.35);
}

/* ===== Image Side ===== */
.image-side {
  flex: 1 1 270px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(80px);
  transition: all 1.2s ease;
}

.image-side.show {
  opacity: 1;
  transform: translateY(0);
}

.image-side img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.6s ease, box-shadow 0.4s ease;
}

.image-side img:hover {
  transform: scale(1.07) rotate(1deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .overlay {
    flex-direction: column;
    text-align: center;
    padding: 0 40px;
  }

  .buttons {
    justify-content: center;
  }

  .image-side img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 60px;
  }

  .main-heading {
    font-size: clamp(1.8rem, 6vw, 3rem);
  }

  .description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .overlay {
    padding: 0 24px;
    gap: 25px;
  }

  .main-heading {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .btn {
    font-size: 14px;
    padding: 12px 22px;
  }

  .image-side img {
    width: 90%;
    max-width: 300px;
  }
}


/* hero section ended */


/* feature section started */
/* -------------------------------------------
   🌟 FEATURE SECTION WITH SCROLL ANIMATIONS
------------------------------------------- */
.feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 5rem 6rem;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #fff 60%, #fdf3f0 100%);
  position: relative;
  overflow: hidden;
  scroll-margin-top: 80px;
}

/* ---------------------------
   Image Side
--------------------------- */
.feature__image {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(-60px);
  transition: all 1.2s ease-out;
}

.feature__image.show {
  opacity: 1;
  transform: translateX(0);
}

.feature__image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.feature__image img:hover {
  transform: scale(1.07) rotate(1deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* ---------------------------
   Content Side
--------------------------- */
.feature__content {
  flex: 1 1 55%;
  opacity: 0;
  transform: translateX(60px);
  transition: all 1.2s ease-out;
}

.feature__content.show {
  opacity: 1;
  transform: translateX(0);
}

.feature__heading {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #111;
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease-out;
}

.feature__heading.show {
  opacity: 1;
  transform: translateY(0);
}

.feature__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff7c5c, #ffb199);
  border-radius: 2px;
  transition: width 1.2s ease-out 0.3s;
}

.feature__heading.show::after {
  width: 50%;
}

.feature__description {
  color: #333;
  font-size: 1.125rem;
  text-align: justify;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  transition: opacity 1.2s ease-out 0.3s;
}

.feature__description.show {
  opacity: 1;
}

/* ---------------------------
   Feature Boxes
--------------------------- */
.feature__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature__box {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.6s ease;
  opacity: 0;
  transform: translateY(30px);
}

.feature__box.show {
  opacity: 1;
  transform: translateY(0);
}

.feature__box:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature__box-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffeae3, #ffd2c7);
  color: #e44320;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature__box:hover .feature__box-icon {
  transform: rotate(10deg) scale(1.1);
  background: linear-gradient(135deg, #ffede8, #ffc6b3);
}

.feature__box-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #111;
}

.feature__box-text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* ---------------------------
   RESPONSIVENESS
--------------------------- */
@media (max-width: 1024px) {
  .feature {
    flex-direction: column;
    padding: 4rem 3rem;
    text-align: center;
  }

  .feature__image img {
    max-width: 80%;
  }

  .feature__grid {
    gap: 1.5rem;
  }

  .feature__box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .feature {
    padding: 3rem 2rem;
    gap: 2rem;
  }

  .feature__heading {
    font-size: 2.25rem;
  }

  .feature__description {
    font-size: 1rem;
  }

  .feature__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .feature {
    padding: 2rem 1.25rem;
  }

  .feature__heading {
    font-size: 1.75rem;
  }

  .feature__description {
    font-size: 0.95rem;
  }

  .feature__box {
    padding: 1rem;
  }

  .feature__box-icon {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }

  .feature__box-title {
    font-size: 1.125rem;
  }
}


/* feature section ended */

/* -------------------------------------------
   🌆 Gallery Section Styling with Scroll Animations
------------------------------------------- */
.gallery-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f9fafc 0%, #eef3f8 100%);
  font-family: 'Poppins', sans-serif;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gallery-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  color: #111;
  text-transform: uppercase;
  margin-bottom: 3rem;
  position: relative;
  opacity: 0;
  transform: translateY(-40px);
  transition: all 0.8s ease-out;
}

.gallery-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80px;
  height: 4px;
  background: #e44320;
  border-radius: 2px;
  transition: transform 0.6s ease-out 0.4s;
}

/* Active on scroll */
.gallery-heading.show {
  opacity: 1;
  transform: translateY(0);
}

.gallery-heading.show::after {
  transform: translateX(-50%) scaleX(1);
}

/* -------------------------------------------
   Gallery Grid
------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
}

.gallery-grid.show {
  opacity: 1;
  transform: translateY(0);
}

/* Each image */
.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.6s ease, transform 0.6s ease;
  transform: scale(0.9);
  opacity: 0;
}

/* Fade in when visible */
.gallery-image.show {
  transform: scale(1);
  opacity: 1;
}

/* Hover effects */
.gallery-image:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  filter: brightness(1.05);
}

/* -------------------------------------------
   Modal Styling
------------------------------------------- */
.image-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  animation: fadeInModal 0.4s ease forwards;
}

.modal-content {
  position: relative;
  text-align: center;
  max-width: 90%;
  max-height: 90%;
  animation: zoomInModal 0.6s ease forwards;
}

.modal-image {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  transition: transform 0.6s ease, opacity 0.6s ease;
  opacity: 1;
}

.modal-image.slide-left {
  transform: translateX(-60%);
  opacity: 0;
}

.modal-image.slide-right {
  transform: translateX(60%);
  opacity: 0;
}

.image-counter {
  color: #fff;
  font-size: 1rem;
  margin-top: 1rem;
  font-family: 'Inter', sans-serif;
}

/* -------------------------------------------
   Navigation Arrows
------------------------------------------- */
.nav-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 0.8rem 1rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2100;
  backdrop-filter: blur(4px);
}

.prev-arrow {
  left: 2rem;
}

.next-arrow {
  right: 2rem;
}

.nav-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

/* -------------------------------------------
   Close Button
------------------------------------------- */
.close-modal-btn {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2200;
  transition: transform 0.3s ease, color 0.3s ease;
}

.close-modal-btn:hover {
  color: #e44320;
  transform: rotate(90deg);
}

/* -------------------------------------------
   Keyframes (Modal only)
------------------------------------------- */
@keyframes fadeInModal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
    display: flex;
  }
}

@keyframes zoomInModal {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* -------------------------------------------
   Responsive
------------------------------------------- */
@media (max-width: 1024px) {
  .gallery-heading {
    font-size: 2.5rem;
  }

  .gallery-grid {
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 4rem 1.5rem;
  }

  .gallery-heading {
    font-size: 2.25rem;
  }

  .gallery-image {
    border-radius: 0.75rem;
  }

  .nav-arrow {
    font-size: 1.75rem;
    padding: 0.7rem;
  }
}

@media (max-width: 480px) {
  .gallery-section {
    padding: 3rem 1rem;
  }

  .gallery-heading {
    font-size: 1.75rem;
  }

  .gallery-grid {
    gap: 1rem;
  }

  .gallery-image {
    border-radius: 0.5rem;
  }

  .close-modal-btn {
    top: 0.75rem;
    right: 0.75rem;
    font-size: 1.5rem;
  }

  .nav-arrow {
    font-size: 1.5rem;
    padding: 0.5rem;
  }
}


/* digital section ended */

/* =====================================================
   🎥 VIDEO SECTION - BASE STYLES
===================================================== */
.video-grid-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #fafafa 0%, #f4f6f9 100%);
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  text-align: center;
  position: relative;
}

/* -------------------------------
   HEADING
------------------------------- */
.video-heading {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.video-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80px;
  height: 4px;
  background: #e44320;
  border-radius: 2px;
  transition: transform 0.7s ease;
}

.video-heading.revealed::after {
  transform: translateX(-50%) scaleX(1);
}

/* -------------------------------
   GRID LAYOUT
------------------------------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}

/* Each video box */
.video-box {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.video-box:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Video and iframe styles */
.video-box video,
.video-box iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
  transition: transform 0.5s ease;
}

.video-box:hover video,
.video-box:hover iframe {
  transform: scale(1.06);
}

/* =====================================================
   SCROLL REVEAL ANIMATIONS
===================================================== */
.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger effect for grid */
.video-box:nth-child(1) {
  transition-delay: 0.1s;
}

.video-box:nth-child(2) {
  transition-delay: 0.2s;
}

.video-box:nth-child(3) {
  transition-delay: 0.3s;
}

.video-box:nth-child(4) {
  transition-delay: 0.4s;
}

.video-box:nth-child(5) {
  transition-delay: 0.5s;
}

.video-box:nth-child(6) {
  transition-delay: 0.6s;
}

.video-box:nth-child(7) {
  transition-delay: 0.7s;
}

/* =====================================================
   RESPONSIVENESS
===================================================== */
@media (max-width: 1024px) {
  .video-grid-section {
    padding: 4rem 1.5rem;
  }

  .video-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .video-heading {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .video-grid-section {
    padding: 3rem 1rem;
  }

  .video-heading {
    font-size: 1.75rem;
  }

  .video-box {
    border-radius: 0.75rem;
  }
}


/* =====================================================
   OUR SPECIALS - PRODUCT SECTION
===================================================== */
.product-section {
  width: 100%;
  margin: 0 auto;
  padding: 80px 20px;
  background: linear-gradient(180deg, #fafafa 0%, #eef2f5 100%);
  text-align: center;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  position: relative;
}

/* -------------------------------
   HEADINGS
------------------------------- */
.product-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
  position: relative;
}

.product-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100px;
  height: 3px;
  background: #e44320;
  border-radius: 2px;
  transition: transform 0.6s ease;
}

.product-title.revealed::after {
  transform: translateX(-50%) scaleX(1);
}

.gallery-description {
  color: #555;
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* -------------------------------
   GRID LAYOUT
------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  justify-content: center;
}

/* -------------------------------
   PRODUCT CARD
------------------------------- */
.product-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.45s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* -------------------------------
   IMAGE + OVERLAY
------------------------------- */
.product-image-container {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image-container img {
  transform: scale(1.12);
}

.description-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.3), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 25px;
  transform: translateY(100%);
  transition: all 0.5s ease;
  opacity: 0;
}

.product-card:hover .description-overlay {
  transform: translateY(0);
  opacity: 1;
}

.description-overlay p {
  font-size: 1rem;
  color: #fff;
  text-align: center;
  line-height: 1.6;
  margin: 0;
}

/* =====================================================
   SCROLL ANIMATIONS
===================================================== */
.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.17, 0.55, 0.55, 1);
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   RESPONSIVENESS
===================================================== */
@media (max-width: 1024px) {
  .product-title {
    font-size: 2.5rem;
  }

  .product-image-container {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .product-section {
    padding: 60px 15px;
  }

  .product-title {
    font-size: 2rem;
  }

  .gallery-description {
    font-size: 1.05rem;
  }

  .product-grid {
    gap: 25px;
  }

  .product-image-container {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .product-section {
    padding: 50px 10px;
  }

  .product-grid {
padding: 2rem;  }

  .product-title {
    font-size: 1.8rem;
  }

  .gallery-description {
    font-size: 0.95rem;
  }

  .product-image-container {
    object-fit: contain;
  }
}

/* Product section ended */


/* ===============================
   CONTACT SECTION
=============================== */
.contact-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #fafafa 0%, #f3f4f7 100%);
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  text-align: center;
}

/* Section Header */
/* CONTACT US Heading with Underline Scroll Animation */
.section-header h1 {
  font-size: 2.8rem;
  color: #222;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

/* Hidden underline initially */
.section-header h1::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #e44320;
  /* Accent color */
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(228, 67, 32, 0.6);
  transition: transform 0.8s ease-out;
}

/* When visible on scroll */
.animate-on-scroll.visible .section-header h1::after {
  transform: translateX(-50%) scaleX(1);
}

.section-header p {
  color: #666;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  max-width: 700px;
  margin-inline: auto;
  line-height: 1.6;
}

/* Container Layout */
.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* ===============================
   SHARED INNER HEADERS
=============================== */
.inner-header {
  margin-bottom: 1.5rem;
  text-align: center;
  opacity: 0;
  animation: fadeUp 1s ease-out forwards;
}

.inner-header h2 {
  color: #e44320;
  font-size: 1.9rem;
  font-weight: 700;
}

.inner-header p {
  color: #777;
  margin-top: 6px;
}

/* ----------------------------------------
   BASE STYLES
---------------------------------------- */
.contact-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #fafafa 0%, #f3f4f7 100%);
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  text-align: center;
}

.section-header {
  margin-bottom: 4rem;
}

.section-header h1 {
  font-size: 2.8rem;
  color: #222;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header p {
  color: #555;
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
}

/* Layout */
.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* ----------------------------------------
   FORM SECTION
---------------------------------------- */
.contact-form-container {
  flex: 1 1 50%;
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
  margin-bottom: 1.25rem;
  text-align: left;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #e44320;
  box-shadow: 0 0 10px rgba(228, 67, 32, 0.2);
  outline: none;
}

.btn-submit {
  background: #e44320;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  background: #c73719;
  transform: translateY(-3px);
}

/* ===============================
   CONTACT SECTION
=============================== */
.contact-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #fafafa 0%, #f3f4f7 100%);
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  text-align: center;
}

.section-header {
  margin-bottom: 4rem;
}

.section-header h1 {
  font-size: 2.8rem;
  color: #222;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

/* Animated underline for "Contact Us" */
.section-header h1::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #e44320;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(228, 67, 32, 0.6);
  transition: transform 0.8s ease-out;
}

.animate-on-scroll.visible .section-header h1::after {
  transform: translateX(-50%) scaleX(1);
}

.section-header p {
  color: #666;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  max-width: 700px;
  margin-inline: auto;
  line-height: 1.6;
}

/* ===============================
/* contact section started 
=============================== */
.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* ===============================
   CONTACT FORM CONTAINER
=============================== */
.contact-form-container {
  flex: 1 1 50%;
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-form-container .inner-header {
  text-align: center;
  animation: fadeUp 1s ease-out forwards;
}

.contact-form-container .inner-header h2 {
  color: #e44320;
  font-size: 1.9rem;
  font-weight: 700;
}

.contact-form-container .inner-header p {
  color: #777;
  margin-top: 6px;
}

/* ===============================
   FORM ELEMENTS
=============================== */
form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 0.5rem;
}

.form-group label {
  color: #333;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

form input,
form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  background-color: #fafafa;
  color: #222;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

form input:focus,
form textarea:focus {
  border-color: #e44320;
  box-shadow: 0 0 12px rgba(228, 67, 32, 0.25);
  background-color: #fff;
  outline: none;
}

form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit Button */
.btn-submit {
  background: linear-gradient(135deg, #e44320, #c73719);
  color: #fff;
  padding: 14px 26px;
  border: none;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 15px rgba(228, 67, 32, 0.2);
}

.btn-submit:hover {
  background: linear-gradient(135deg, #f04d27, #b52e11);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(228, 67, 32, 0.3);
}

/* ===============================
   INFO SECTION
=============================== */
.contact-info {
  flex: 1 1 40%;
  background: #fff;
  border-radius: 20px;
  padding: 60px 45px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.contact-info p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 10px;
}

.info-details p strong {
  color: #e44320;
}

.timing {
  margin-top: 25px;
  padding-top: 15px;
  border-top: 2px solid #eee;
}

/* ===============================
   SCROLL ANIMATIONS
=============================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.animate-on-scroll.fade-left {
  transform: translateX(-60px);
}

.animate-on-scroll.fade-right {
  transform: translateX(60px);
}

.animate-on-scroll.fade-down {
  transform: translateY(-60px);
}

.animate-on-scroll.slide-up {
  transform: translateY(60px);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translate(0);
}

/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 1024px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-form-container,
  .contact-info {
    width: 90%;
    padding: 40px 30px;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 3rem 1.25rem;
  }

  .section-header h1 {
    font-size: 2rem;
  }

  .contact-form-container,
  .contact-info {
    padding: 30px 20px;
  }

  form input,
  form textarea {
    font-size: 0.95rem;
  }

  .btn-submit {
    font-size: 0.95rem;
    padding: 12px 20px;
  }
}

/* contact section ended */


/* map section started */
section.map-section {
  background-color: white;
  text-align: center;
  margin-bottom: 2%;
}

.map-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.map-container {
  position: relative;
  width: 100%;
  height: 400px;
  margin: 0 auto;
  border: 2px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive: 1024px */
@media screen and (max-width: 1024px) {
  .map-section h2 {
    font-size: 1.8rem;
  }

  .map-container {
    height: 350px;
  }
}

/* Responsive: 768px */
@media screen and (max-width: 768px) {
  .map-section h2 {
    font-size: 1.5rem;
  }

  .map-container {
    height: 300px;
  }
}

/* Responsive: 480px */
@media screen and (max-width: 480px) {
  .map-section h2 {
    font-size: 1.3rem;
  }

  .map-container {
    height: 250px;
  }
}

/* map section ended */


/* footer section started */
/* ===== Footer Base ===== */
.footer {
  background-color: #000;
  /* Entire footer black */
  color: #f5f5f5;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== Footer Sections ===== */
.footer-section,
.footer-contact-info {
  flex: 1 1 250px;
  min-width: 250px;
}

.footer-section h3,
.footer-contact-info h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ffffff;
  border-bottom: 2px solid #ff6600;
  display: inline-block;
  padding-bottom: 5px;
}

/* ===== Quick Links ===== */
.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ff6600;
}

/* ===== Contact Info ===== */
.footer-contact-info p {
  margin: 8px 0;
  color: #ccc;
  line-height: 1.5;
}

.footer-contact-info strong {
  color: #fff;
}

.footer-contact-info a {
  color: #ff6600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-info a:hover {
  color: #ffa64d;
  text-decoration: underline;
}

/* ===== Follow Us ===== */
.follow-us .social-icons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.follow-us img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s, opacity 0.3s;
}

.follow-us img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* ===== Footer Bottom ===== */
.footer-bottom {
  border-top: 1px solid #222;
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #bbb;
}

.footer-bottom .powered {
  color: #ff6600;
  font-weight: 500;
  margin-top: 5px;
}

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
  .footer-container {
    justify-content: center;
    gap: 40px;
  }
}

@media (max-width: 768px) {

  .footer-section,
  .footer-contact-info {
    text-align: center;
  }

  .follow-us .social-icons {
    justify-content: center;
  }

  .footer-section h3,
  .footer-contact-info h3 {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 15px;
  }

  .footer-section h3,
  .footer-contact-info h3 {
    font-size: 1rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }

  .follow-us img {
    width: 28px;
    height: 28px;
  }
}


/* footer section ended */
.whatsapp-btn {
  position: fixed;
  /* Makes the button fixed on the page */
  bottom: 20px;
  /* Distance from the bottom of the page */
  right: 20px;
  /* Distance from the right of the page */
  z-index: 1000;
  /* Ensures it appears above other content */
  width: 60px;
  /* Button size */
  height: 60px;
  background-color: #25d366;
  /* WhatsApp green color */
  border-radius: 50%;
  /* Makes it circular */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn img {
  width: 35px;
  /* Icon size */
  height: 35px;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  /* Slight zoom effect on hover */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .whatsapp-btn {
    bottom: 15px;
    right: 15px;
    width: 50px;
    /* Button size */
    height: 50px;
  }

  .whatsapp-btn img {
    width: 30px;
    /* Icon size */
    height: 30px;
  }
}

.uppercase-text {
  text-transform: uppercase;
}

/* Hide Google Translate Branding Completely */
.goog-te-banner-frame,
.goog-logo-link,
.goog-te-gadget span,
.goog-te-balloon-frame,
#google_translate_element select,
.goog-te-gadget {
  display: none !important;
}

/* Hide the Google Translate banner */
.goog-te-banner-frame {
  display: none !important;
}

/* Hide the Google Translate branding and unnecessary elements */
.goog-logo-link,
.goog-te-gadget span,
.goog-te-balloon-frame,
#google_translate_element select,
.goog-te-gadget {
  display: none !important;
}

/* Hide Google Translate banner */
.skiptranslate,
.goog-te-banner-frame {
  display: none !important;
}

@media (max-width: 1024px) {
  .language-dropdown {
    top: -120px;
    right: 0;
    bottom: 0;
    left: 120px;
  }
}

@media (max-width: 480px) {
  .nav-list.active {
    align-items: flex-start;
  }

  .translate-btn {
    margin-left: 20px;
  }

  .nav-list a {
    margin-left: 20px;
  }

  .language-dropdown {
    top: -100px;
    right: 0;
    bottom: 0;
    left: 120px;
  }
}