/* ------------------------------------ */
/* 🌐 GLOBAL WEBSITE STYLING            */
/* ------------------------------------ */

:root {
    --primary-color: #f8572f;
    --secondary-color: #fba937;
    --light-bg: #fffbe6;
    --dark-text: #222;
    --light-text: #666;
    --font-main: 'Segoe UI', sans-serif;
    --transition-fast: 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    scroll-behavior: smooth;
    font-size: 16px;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  body {
    font-family: var(--font-main);
    color: var(--dark-text);
    background-color: #fff;
    line-height: 1.6;
  }
  
  a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
  }
  
  a:hover {
    color: var(--secondary-color);
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  p {
    margin-bottom: 15px;
    color: var(--light-text);
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  section {
    padding: 60px 0;
  }
  
  button,
  .btn {
    font-family: var(--font-main);
    cursor: pointer;
    padding: 10px 22px;
    border: none;
    border-radius: 4px;
    transition: all var(--transition-fast);
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    color: #fff;
  }
  
  .btn-primary:hover {
    background-color: var(--secondary-color);
    color: #000;
  }
  
  /* Optional Responsive Utility */
  .text-center {
    text-align: center !important;
  }
  
  /* ------------------------------------ */
  /* 👇 YOUR ORIGINAL FOOTER STYLES BELOW */
  /* ------------------------------------ */
  
  .msn-footer {
    /* position: fixed; */
    /* left: 0; */
    /* bottom: 0; */
    width: 100%;
    z-index: 100;
    background: linear-gradient(135deg, #fffbe6 0%, #fba937 30%, #f8572f 100%);
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    opacity: 0;
    transform: translateY(40px);
    animation: footerSlideDown 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards, gradientMove 8s ease-in-out infinite alternate;
    background-size: 200% 200%;
  }
  
  .msn-footer h1,
  .msn-footer h2,
  .msn-footer h3,
  .msn-footer h4,
  .msn-footer h5,
  .msn-footer h6,
  .msn-footer p,
  .msn-footer a {
    color: #fff !important;
  }
  
  @keyframes footerSlideDown {
    from {
      opacity: 0;
      transform: translateY(-100%);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes gradientMove {
    0% {
      background-position: 0% 50%;
    }
    100% {
      background-position: 100% 50%;
    }
  }
  
 
  
  .footer-logo {
    max-width: 180px;
    padding: 10px 18px;
  }
  
  .footer-desc {
    font-size: 15px;
    line-height: 1.6;
    max-width: 300px;
  }
  
  .msn-footer h5 {
    font-weight: 600;
  }
  
  .msn-footer a {
    color: #fefefe;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
  }
  
  .msn-footer a:hover {
    color: #222;
    text-decoration: underline;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .social-icon {
  display: inline-flex;                   /* Use flex to center content */
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin: 0 6px;
  font-size: 18px;
  transition: background 0.3s ease, color 0.3s, transform 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  background-color: #fff;
  color: #f8572f;
  transform: scale(1.15) rotate(-8deg);
}
  
  /* Navbar Layout & Gradient */
.navbar {
    background: linear-gradient(135deg, #fffbe6 0%, #fba937 30%, #f8572f 100%);
    background-size: 200% 200%;
    animation: navbarGradientMove 8s ease-in-out infinite alternate, navbarSlideDown 1.1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    padding: 4px 12px;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    z-index: 999;
    opacity: 0;
    transform: translateY(-40px);
  }
  
  @keyframes navbarGradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
  }
  
  @keyframes navbarSlideDown {
    from {
      opacity: 0;
      transform: translateY(-40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Logo */
  
 
  .logo-img {
    height: 48px;
  }
  
  /* Search Bar */
  .navbar-search {
    background: rgba(255,255,255,0.85);
    border-radius: 24px;
    padding: 4px 16px;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    margin: 0 32px;
  }
  .navbar-search input {
    border: none;
    background: transparent;
    outline: none;
    color: #222;
    font-size: 1rem;
    width: 220px;
  }
  .search-icon {
    color: #f8572f;
    margin-left: 8px;
  }
  
  /* Navigation Links */
  .navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin-left: 15px;
    padding: 10px 14px;
    transition: color 0.3s;
  }
  .navbar-nav .nav-link:hover {
    color: #000 !important;
  }
  .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
  }

  .whatsapp-icon {
    margin-top: 15px;
  }

  .whatsapp-float:hover {
    background-color: #1ebea5;
    color: white;
    text-decoration: none;
  }
 
  /* Submenu (dropdown inside dropdown) */
  /* Main Shop Dropdown */
.hover-dropdown {
    position: relative;
  }
  .hover-dropdown:hover > .dropdown-menu {
    display: block;
  }
  
  .navbar-nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px !important;
    padding: 10px 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #fffbe6 30%, #fba937 70%);
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    animation: fadeDropdown 0.4s ease-in-out;
    z-index: 999;
  }
  
  /* Submenus inside each item */
  .dropdown-submenu {
    position: relative;
  }
  /* Submenu Style */
.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -8px;
    margin-left: 0;
    display: none;
    width: 180px !important;
    border-radius: 8px;
    background-color: #fdf9f3; /* Light shade background */
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    animation: fadeDropdown 0.4s ease-in-out;
    z-index: 1000;
    right: auto;
  }
  
  /* Show submenu on hover */
  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
  
  /* Menu items */
  .navbar-nav .dropdown-item {
    color: black;
    font-weight: 500;
    padding: 10px 24px;
    transition: background 0.3s, color 0.3s;
  }
  .navbar-nav .dropdown-item:hover {
    background-color: #ffc97d;
    color:black;
  }
  
  /* Mobile Toggler Icon */
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
  /* Hero Slider Section */
  .currency-dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.currency-dropdown summary {
  list-style: none;
  display: flex;
  align-items: center;
  border: none;
}

.currency-dropdown summary::-webkit-details-marker {
  display: none; /* hide default arrow */
}

.currency-options {
  position: absolute;
  background: white;
  border: 1px solid #ddd;
  padding: 8px 0;
  margin-top: 5px;
  border-radius: 6px;
  min-width: 180px;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.currency-options li {
  list-style: none;
}

.currency-options a {
  display: block;
  padding: 6px 16px;
  text-decoration: none;
  color: #333;
}

.currency-options a:hover {
  background: #f1f1f1;
}

/* HERO SLIDER */
#heroSlider {
    height: 100vh;
    position: relative;
    overflow: hidden;
  }
  
  #heroSlider .carousel-item {
    height: 100vh;
  }
  
  #heroSlider img {
    object-fit: cover;
    height: 100%;
  }
  
  .carousel-caption {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25); /* semi-dark overlay for readability */
    padding: 1rem;
    text-align: center;
  }
  
  .hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  }
  
  /* Responsive Text Adjustments */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2rem;
    }
  
    .hero-buttons .btn {
      font-size: 0.9rem;
      padding: 8px 20px;
    }
  }
  
  @media (max-width: 480px) {
    .hero-title {
      font-size: 1.6rem;
    }
  
    .hero-buttons {
      flex-direction: column;
    }
  
    .hero-buttons .btn {
      width: 100%;
      margin-bottom: 10px;
    }
  }
  
  /* Buttons */
  .hero-buttons .btn {
    font-weight: 600;
    padding: 10px 26px;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  .hero-buttons .btn:hover {
    background-color: #fba937;
    color: #fff;
  }
  .category-section h2 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 2rem;
    color: #222;
  }
  
  .category-item {
    overflow: hidden;
    transition: transform 0.4s ease;
    cursor: pointer;
    padding: 10px;
  }
  
  .category-item img {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1/1;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
  }
  
  .category-item:hover img {
    transform: scale(0.95);
  }
  
  .category-label {
    margin-top: 12px;
    font-weight: 700;
    font-size: 1rem;
    color: #222;
  }
  
  .category-section .row {
    gap: 24px 0;
  }
  
  @keyframes categoryFadeInUp {
    0% {
      opacity: 0;
      transform: translateY(40px) scale(0.95);
    }
    60% {
      opacity: 0.7;
      transform: translateY(-8px) scale(1.03);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  
  .category-section .category-item {
    opacity: 0;
    animation: categoryFadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  }
  
  .category-section .row .category-item:nth-child(1) { animation-delay: 0.1s; }
  .category-section .row .category-item:nth-child(2) { animation-delay: 0.2s; }
  .category-section .row .category-item:nth-child(3) { animation-delay: 0.3s; }
  .category-section .row .category-item:nth-child(4) { animation-delay: 0.4s; }
  
  @keyframes sectionSlideInRight {
    0% {
      opacity: 0;
      transform: translateX(-80px) scale(0.98);
    }
    70% {
      opacity: 0.7;
      transform: translateX(12px) scale(1.01);
    }
    100% {
      opacity: 1;
      transform: translateX(0) scale(1);
    }
  }
  
  .category-section {
    opacity: 0;
  }
  .category-section.category-section-animate {
    animation: sectionSlideInRight 1.1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: 0.3s;
  }
  /* Promo Duo Section */
.promo-duo-section .row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.promo-block {
  height: 90vh;
  overflow: hidden;
  position: relative;
  flex: 1 1 0;
  min-width: 0;
}
@media (max-width: 991.98px) {
  .promo-block {
    height: 50vh;
  }
  .promo-duo-section .row {
    gap: 6px;
  }
}
@media (max-width: 767.98px) {
  .promo-duo-section .row {
    flex-direction: column;
    gap: 10px;
  }
 .gender-promo-block {
    height: auto;
    min-height: 220px;
    width: 100%;
    max-width: 100vw;
  }
  .gender-promo-image,
  .gender-promo-overlay {
    position: relative;
    min-height: 220px;
    height: 220px;
    width: 100%;
    inset: unset;
    border-radius: 0;
  }
  .gender-promo-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  .gender-promo-btn {
    font-size: 0.95rem;
    padding: 8px 18px;
  }
}
  
  .gender-promo-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
    z-index: 1;
  }
  
  .gender-promo-block:hover .gender-promo-image {
    transform: scale(1.05);
  }
  
  .gender-promo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    z-index: 2;
    transition: opacity 0.4s ease;
    text-align: center;
    padding: 20px;
  }
  
  .gender-promo-block:hover .promo-overlay {
    opacity: 1;
  }
  
.gender-promo-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fdf9f3;
    text-shadow: 0 2px 6px rgba(250, 245, 245, 0.957);
  }
  
 .gender-promo-btn {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid #fff;
    font-weight: 600;
    padding: 10px 28px;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
  }
  
 .gender-promo-btn:hover {
    background-color:  #ffc97d;
    color: #fff;
  }
  /* Services Section Animation */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease forwards;
  }
  
  .fade-in:nth-child(1) { animation-delay: 0s; }
  .fade-in:nth-child(2) { animation-delay: 0.2s; }
  .fade-in:nth-child(3) { animation-delay: 0.4s; }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Video responsiveness handled by Bootstrap .ratio */
  .object-fit-cover {
    object-fit: cover;
  }
  
  .services-section .ratio {
    width: 220px;
    height: 220px;
    margin: 0 auto 1rem auto;
  }
  @media (max-width: 767.98px) {
    .services-section .ratio {
      width: 140px;
      height: 140px;
    }
  }
  /* Trust Section */
.trust-icon {
    width: 100px;
    height: 100px;
    transition: transform 0.3s ease;
  }
  
  .trust-icon:hover {
    transform: scale(1.1) rotate(1deg);
  }
  
  /* Entry animation */
  .animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
  }
  
  .animate-up:nth-child(1) { animation-delay: 0s; }
  .animate-up:nth-child(2) { animation-delay: 0.2s; }
  .animate-up:nth-child(3) { animation-delay: 0.4s; }
  .animate-up:nth-child(4) { animation-delay: 0.6s; }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .navbar-company-name {
    margin-left: 0.3rem !important;
  }
  .contact-section {
    background: #fff;
    padding: 60px 0;
    margin: 50px;
  }

  .contact-input {
    border: 1px solid #888;
    border-radius: 0;
    padding: 14px 16px;
    font-size: 1rem;
    font-weight: 400;
    color: #222;
  }

  .contact-input::placeholder {
    color: #666;
    letter-spacing: 0.5px;
  }

  .btn-send {
    background: linear-gradient(135deg, #fba937 0%, #f8572f 100%);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    padding: 12px 32px;
    border-radius: 0;
    transition: background 0.3s ease;
  }

  .btn-send:hover {
    background: linear-gradient(135deg, #f8572f 0%, #fba937 100%);
    color: #000;
  }

  .form-result {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 6px;
    margin-top: 90px;
  }

  .form-result.success {
    background-color: #e6ffec;
    color: #155724;
    border: 1px solid #b2dfb2;
  }

  .form-result.error {
    background-color: #fff0f0;
    color: #a70000;
    border: 1px solid #f5b4b4;
  }
  /* Add margin to body or first section to avoid overlap with fixed navbar */
.about-section {
  margin-top: 100px; /* Adjust if your navbar is taller */
}

/* Team cards improvements */
.team-card {
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}
.team-card:hover {
  transform: translateY(-6px);
}

.team-img {
  height: 300px;
  object-fit: cover;
}

/* Section headings */
.about-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #222;
}

.about-section h4 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #333;
  margin-top: 40px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
  border-bottom: 2px solid #ccc;
}


.company-intro-section h1 {
  margin-top:60px ;
  font-size: 3rem;
  font-weight: 800;
  color: #333;
  letter-spacing: 2px;
  margin-bottom: 28px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.company-description {
  font-size: 1.35rem;
  color: #333;
  line-height: 1.3;
  text-align: justify;
  background: rgba(255,255,255,0.85);
  border-radius: 12px;
  padding: 32px 36px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  width: 100%;
  max-width: 1100px;
}
@media (max-width: 767.98px) {
  .company-intro-section {
    margin-top: 80px;
    padding: 32px 0 24px 0;
  }
  .company-intro-section h1 {
    font-size: 2rem;
  }
  .company-description {
    font-size: 1.05rem;
    padding: 18px 10px;
  }
}

.navbar-search input:focus {
  border: 2px solid #f8572f;
  box-shadow: 0 0 0 2px #fba93744;
  background: #fff;
  outline: none;
}

/* Ensure submenu-of-submenu is always visible and does not overflow */
.dropdown-submenu > .dropdown-menu {
  right: auto;
  left: 100%;
}
@media (max-width: 600px) {
  .navbar-nav .dropdown-menu,
  .dropdown-submenu > .dropdown-menu {
    left: 0 !important;
    right: auto !important;
    min-width: 150px !important;
    width: 90vw !important;
    position: static !important;
    box-shadow: none !important;
  }
}
/* Optional: Flip submenu to left if it would overflow (JS needed for full support, but CSS fallback) */
.dropdown-submenu.menu-flip-left > .dropdown-menu {
  left: auto !important;
  right: 100% !important;
}


