/*!
Theme Name: maarsweld
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: maarsweld
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

maarsweld is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;

}

body {

  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;

}

.acf-hidden {
  display: none !important;
}

.container-fluid {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* Container */
.container {
  width: 100%;
  /* padding-right: 15px;
    padding-left: 15px; */
  margin-right: auto;
  margin-left: auto;
}

/* =========================================
   Breadcrumb Icon Flow
========================================= */

/* Default Cursor */
a {
  cursor: pointer;
}

/* Disabled Cursor */
.journey-item-loading,
.journey-item-loading-2 {
  position: relative;
  cursor: not-allowed;
  -webkit-tap-highlight-color: transparent;
}

/* Tooltip */
.journey-item-loading::after,
.journey-item-loading-2::after {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  background: #bb3378e3;
  padding: 5px 10px;
  font-size: 11px;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  white-space: nowrap;
  pointer-events: none;
  z-index: 999;
}

/* Tooltip Text */
.journey-item-loading::after {
  content: "Please Select Category";
}

.journey-item-loading-2::after {
  content: "Please Select Product";
}

/* Desktop */
.journey-item-loading:hover::after,
.journey-item-loading-2:hover::after {
  opacity: 1;
  visibility: visible;
}

/* Mobile */
@media (hover:none) {

  .journey-item-loading::after,
  .journey-item-loading-2::after {
    top: 92%;
    left: 50%;
    padding: 3px 4px;
    font-size: 7px;
  }

  .journey-item-loading:active::after,
  .journey-item-loading-2:active::after,
  .journey-item-loading:focus::after,
  .journey-item-loading-2:focus::after {
    opacity: 1;
    visibility: visible;
  }

}

/* Dropdown */

/* End DropDown */

/* Header */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  /* background: #f5f5f5; */
  /* border-bottom: 1px solid #ddd; */
  background-color: rgba(0, 0, 0, 0.4);
  /* backdrop-filter: blur(7px); */
  transition: all 0.3s ease;
}

/* Navbar */
.navbar {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 45px;
}

/* Menu */
.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  /* color: #333; */
  color: #fff;
  transition: all 0.3s ease;
  font-weight: 500;
  padding: 10px 0;
  display: inline-block;
}

/* After Scroll */
.site-header.scrolled {
  position: fixed;
  width: 100%;
  top: 0;
  background: #f5f5f5;
  /* border-bottom: 1px solid #ddd; */
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.site-header.scrolled .nav-menu a {
  /* color: #333; */
  color: #000;
  font-weight: 500;


}

.site-header.scrolled .nav-menu .current-menu-item a {
  color: #b1124a;
  font-weight: 600;


}

/* Active + Hover underline */
.nav-menu a:hover,
.nav-menu .current-menu-item a,
.site-header.scrolled .nav-menu a:hover {
  color: #b1124a;

}

.nav-menu .current-menu-item a,
.nav-menu .current-menu-ancestor.current-menu-parent a:not(.sub-menu li a),
.nav-menu .sub-menu li.current-menu-item a {
  color: #b1124a;
  font-weight: 600;
}

.nav-menu a::after,
.nav-menu .current-menu-ancestor.current-menu-parent a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 3px;
  background: #b1124a;
  transition: 0.3s;
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after,
.nav-menu .current-menu-ancestor.current-menu-parent a::after {
  width: 100%;
}


/* =========================
   NAV MENU
========================= */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
  list-style: none;
}

.nav-menu li a {
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  font-weight: 500;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* =========================
   DROPDOWN ARROW
========================= */

.nav-menu .menu-item-has-children>a::before {
  content: "\f282";
  font-family: "bootstrap-icons";
  font-size: 12px;
  order: 2;
  transition: 0.3s ease;
}

.nav-menu .menu-item-has-children:hover>a::before {
  transform: rotate(180deg);
}

/* =========================
   SUB MENU
========================= */
button.submenu-toggle {
  display: none;
}

.nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;

  min-width: 230px;

  background: #fff;

  padding: 0;
  margin: 0;

  list-style: none;

  opacity: 0;
  visibility: hidden;

  transform: translateY(10px);

  transition: all 0.3s ease;

  z-index: 999;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

/* Show Dropdown */
.nav-menu li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Submenu Items */
.nav-menu .sub-menu li {
  width: 100%;
}

.nav-menu .sub-menu li a {
  color: #000;
  padding: 14px 18px;
  display: block;
  background: #fff;
  border-bottom: 1px solid #f1f1f1;
}

.nav-menu .sub-menu li:last-child a {
  border-bottom: none;
}

.nav-menu .sub-menu li a:hover {
  background: #f8f8f8;
  color: #b1124a;
}

/* =========================
   FINAL MOBILE MENU FIX
========================= */

/* =========================
   FINAL MOBILE MENU FIX WITH SMOOTH DRAWER EFFECT
========================= */

@media (max-width: 991px) {

  .site-header {
    z-index: 9999;
  }

  .navbar {
    height: auto;
    min-height: 70px;
    padding: 12px 0;
    position: relative;
  }

  .logo img {
    height: 42px;
    object-fit: contain;
    aspect-ratio: 100 / 42;
    max-width: 200px;
  }

  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
    position: relative;
    z-index: 10001;
  }

  .mobile-toggle i {
    color: #fff;
    font-size: 22px;
  }

  .site-header.scrolled .mobile-toggle {
    background: rgba(177, 18, 74, 0.10);
  }

  .site-header.scrolled .mobile-toggle i {
    color: #b1124a;
  }

  .nav-menu {
    position: absolute !important;
    top: calc(100% + 0px) !important;
    left: 0px !important;
    right: 0px !important;
    width: auto !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;

    max-height: calc(100vh - 95px);
    overflow-y: auto;

    padding: 10px !important;
    margin: 0 !important;

    background: #9d225a !important;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    z-index: 10000;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform-origin: top right;
    transform: scale(0.08) rotate(-14deg) translateY(-8px);
    clip-path: circle(0% at 100% 0%);

    transition:
      opacity 0.35s ease,
      visibility 0.35s ease,
      transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
      clip-path 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: scale(1) rotate(0deg) translateY(0);
    clip-path: circle(150% at 100% 0%);
  }

  .nav-menu>li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    opacity: 0;
    transform: translateY(10px);
    transition:
      opacity 0.35s ease,
      transform 0.45s ease;
  }

  .nav-menu.active>li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-menu.active>li:nth-child(1) {
    transition-delay: 0.14s;
  }

  .nav-menu.active>li:nth-child(2) {
    transition-delay: 0.20s;
  }

  .nav-menu.active>li:nth-child(3) {
    transition-delay: 0.26s;
  }

  .nav-menu.active>li:nth-child(4) {
    transition-delay: 0.32s;
  }

  .nav-menu.active>li:nth-child(5) {
    transition-delay: 0.38s;
  }

  .nav-menu>li:last-child {
    border-bottom: 0;
  }

  .nav-menu>li>a {
    width: 100%;
    color: #fff !important;
    padding: 14px 14px !important;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    font-size: 15px;
  }

  .nav-menu>li>a:hover,
  .nav-menu>li.current-menu-item>a {
    background: rgba(255, 255, 255, 0.08);
    color: #fff !important;
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-menu .menu-item-has-children>a::before {
    content: "\f282";
    font-family: "bootstrap-icons";
    font-size: 13px;
    order: 2;
    margin-left: auto;
    color: rgba(255, 255, 255, 0.75);
    transition: transform 0.3s ease;
  }

  .nav-menu .menu-item-has-children:hover>a::before {
    transform: none;
  }

  .nav-menu .menu-item-has-children.submenu-open>a::before {
    transform: rotate(180deg);
  }

  .nav-menu .sub-menu {
    position: static !important;
    display: none;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;

    width: 100%;
    min-width: 100%;
    padding: 6px !important;
    margin: 0 0 10px 0 !important;

    background: rgba(255, 255, 255, 0.07) !important;
    border-radius: 12px;
    box-shadow: none !important;
  }

  .nav-menu .sub-menu li {
    border-bottom: 0;
  }

  .nav-menu .sub-menu li a {
    color: rgba(255, 255, 255, 0.88) !important;
    background: transparent !important;
    padding: 11px 12px 11px 24px !important;
    border-bottom: 0 !important;
    border-radius: 8px;
    font-size: 14px;
    position: relative;
  }

  .nav-menu .sub-menu li a::before {
    content: "";
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.85;
  }

  .nav-menu .sub-menu li a:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
  }

  .header-actions {
    display: none !important;
  }

  .nav-menu .current-menu-item a,
  .nav-menu .current-menu-ancestor.current-menu-parent a:not(.sub-menu li a),
  .nav-menu .sub-menu li.current-menu-item a {

    background: #4e0a2966 !important;
  }
}

@media (max-width: 991px) {

  .nav-menu .menu-item-has-children {
    position: relative;
  }

  .nav-menu .menu-item-has-children>a {
    padding-right: 55px !important;
  }

  .nav-menu .menu-item-has-children>a::before {
    display: none !important;
  }

  button.submenu-toggle {
    position: absolute;
    top: 1px;
    right: 1px;
    display: inline;

    width: 42px;
    height: 42px;

    border: 0;
    border-radius: 9px;

    background: rgba(255, 255, 255, 0.10);
    color: #fff;

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

    cursor: pointer;
    z-index: 2;
  }

  .submenu-toggle i {
    font-size: 13px;
    transition: transform 0.3s ease;
  }

  .nav-menu .menu-item-has-children.submenu-open>.submenu-toggle i {
    transform: rotate(180deg);
  }

}

/* Buttons */
.header-actions {
  display: flex;
  gap: 12px;
}

.btn {
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-primary {
  background: #b1124a;
  color: #fff;
}

.btn-outline {
  border: 1px solid #b1124a;
  color: #b1124a;
  background: transparent;
}

/* Base smooth transition */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

/* =========================
   PRIMARY BUTTON (Call Now)
========================= */
.btn-primary {
  background: #b1124a;
  color: #fff;
  border: none;
}

/* Hover Effect */
.btn-primary:hover {
  background: #8e0e3a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(177, 18, 74, 0.35);
}

/* Shine Effect */
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
}

.btn-primary:hover::before {
  left: 130%;
  transition: 0.7s;
}


/* =========================
   OUTLINE BUTTON (WhatsApp)
========================= */
.site-header.scrolled .btn-outline {
  border: 1px solid #b1124a;
  color: #b1124a;
  background: transparent;
}

/* Hover Effect */
.btn-outline {
  background: #b1124a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(177, 18, 74, 0.25);
}

/* Subtle Glow */
.btn-outline {
  border-color: #b1124a;
}


/* =========================
   ICON ANIMATION (Both)
========================= */
.btn i {
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translatex(3px);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 32px;
}

.mobile-toggle i {
  color: #9D2763;

}

/* Footer CSS */
/* CTA STRIP */
.footer-cta {
  /* margin-top: 15px; */
  /* background: linear-gradient(90deg, #9D2763, #c13a7a); */
  padding: 28px 0;
  /* border-radius: 14px 14px 0 0; */
  background: #9D2763;
}

.footer-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cta-text h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 6px;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

/* CTA Buttons */
.cta-actions {
  display: flex;
  gap: 20px;
}

.btn-outline-light {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
  padding: 10px 18px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: #fff;
  color: #9D2763;
  transform: translateY(-2px);
}

/* MAIN FOOTER */
.footer-main {
  background: linear-gradient(180deg, #0b0e12, #05070a);
  color: #fff;
  padding: 60px 0 20px;

}

.footer-main a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  ;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* LOGO */
.footer-logo {
  width: 160px;
  margin-bottom: 16px;
}

/* TEXT */
.footer-col p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* HEADINGS */
.footer-col h4 {
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: #fff;
}

/* LINKS */
.footer-links {
  /* list-style: none; */
  color: #9D2763;
  padding-left: 1rem;

}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-decoration: none;
  transition: 0.25s;
}

.footer-links a:hover {
  color: #9D2763;
  padding-left: 6px;
}

/* CONTACT */
.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  color: #9D2763;
  margin-top: 3px;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}


/* -------------------------------------------------------------Home Page  */
/* Banner Section */
.hero-slider {
  position: relative;
}

/* Slide */
.hero-slide {
  position: relative;
  height: 700px;
}

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

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    90deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.6) 45%,
    rgba(0,0,0,0.2) 100%
  ); */
  /* background: linear-gradient(90deg, rgb(0 0 0 / 32%) 0%, rgb(0 0 0 / 35%) 45%, rgb(0 0 0 / 25%) 100%); */
  /* background: linear-gradient(112deg, rgba(10, 10, 10, .95) 0%, rgba(10, 10, 10, .5) 30%, rgba(10, 10, 10, .2) 55%); */
    /* background: linear-gradient(112deg, rgba(10, 10, 10, .95) 0%, rgba(10, 10, 10, .5) 50%, rgba(10, 10, 10, .2) 59%); */
    background: linear-gradient(112deg, rgba(10, 10, 10, .95) 0%, rgba(10, 10, 10, .5) 50%, rgba(10, 10, 10, .2) 100%);

  /* background: linear-gradient(112deg, rgba(10, 10, 10, 0.704) 0%, rgba(10, 10, 10, 0.534) 100%, rgba(10, 10, 10, 0.293) 55%); */

}

.hero-banner-pipe {
  font-size: 20px;
}

/* Content */
.hero-content {
  position: absolute;
  top: 60%;
  left: 5%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 650px;
}

.hero-line {
  width: 50px;
  height: 4px;
  background: #9D2763;
  margin-bottom: 3px;
  display: inline-block;
  margin-right: 10px;
}

.hero-line-text {
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-block: 20px;
}

/* Typography */
.hero-content h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 630px;
}

/* Buttons spacing */
.hero-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 80px;
}

/* Features */
.hero-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.hero-feature i {
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

/* Swiper arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

/* Pagination */
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
}

.swiper-pagination-bullet-active {
  background: #9D2763;
}

/* ------------------------------------------------------------About Us */
/* SECTION */
.about-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff, #f6f7f9);
}
.about-image-icon{
  width: 32px;
  height: 32px;
}
/* WRAPPER */
.about-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.about-image {
  border-radius: 16px;
  overflow: hidden;
  /* box-shadow: 0 10px 40px rgba(0,0,0,0.08); */
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
  border-radius: 16px;
}

/* Hover zoom */
.about-image:hover img {
  transform: scale(1.05);
}

/* CONTENT */
.about-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  margin-bottom: 10px;
}

/* UNDERLINE */
.about-line {
  width: 50px;
  height: 3px;
  background: #9D2763;
  margin-bottom: 20px;
}

/* TEXT */
.about-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* FEATURES */
.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 25px;
  justify-content: center;
}

/* FEATURE ITEM */
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #333;
  background: #fff;
  padding: 10px 14px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  width: 216px;
}

/* ICON */
.about-feature .icon {
  width: 32px;
  height: 32px;
  background: #9D2763;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
}

/* Hover */
.about-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(157, 39, 99, 0.2);
}

/* BUTTON */
.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #9D2763;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(157, 39, 99, 0.3);
  transition: 0.3s;
}

.btn-about:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(157, 39, 99, 0.35);
}

/* --------------------------------------------------------Delivery Section */
/* SECTION */
.export-section {
  position: relative;
  padding: 80px 0;

  color: #fff;
}

/* DARK OVERLAY */
.export-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.7) 45%,
      rgba(0, 0, 0, 0.3) 100%);
}

/* CONTENT */
.export-content {
  position: relative;
  z-index: 2;
  max-width: 730px;
}

/* TEXT */
.export-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 15px;
}

.export-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 25px;
}

/* FLAGS */
.export-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 35px;
}

.flag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  transition: 0.3s;
}

.flag img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

/* Hover */
.flag:hover {
  background: rgba(157, 39, 99, 0.4);
  transform: translateY(-2px);
}

/* FEATURES */
.export-features-simple {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.export-pipe {
  font-size: 16px;
}

/* ITEM */
.export-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

/* ICON (simple, no circle, no animation) */
.export-feature i {
  font-size: 16px;
  color: #9D2763;
}

/* HOVER (very subtle like image) */
.export-feature:hover {
  color: #fff;
}

/* ----------------------------------------------Why Section */
/* SECTION */
.why-section-alt {
  padding: 90px 0;
  background: #fff;
  text-align: center;
}

/* HEADER */
.why-header-alt h2 {
  font-family: "Playfair Display", serif;
  font-size: 34px;
}

.underline {
  width: 50px;
  height: 3px;
  background: #9D2763;
  margin: 10px auto 50px;
}

/* FLOW WRAPPER */
.why-flow {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 20px;
}

/* CONNECTING LINE */
.why-flow::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 6%;
  width: 88%;
  height: 2px;
  background: #9D2763;
  z-index: 0;
}

/* STEP */
.why-step {
  position: relative;
  z-index: 2;
  max-width: 180px;
  text-align: center;
  transition: 0.3s;
}

/* ICON */
.why-step-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #9D2763;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: #9D2763;
  transition: 0.3s;
}

/* HOVER EFFECT */
.why-step:hover .why-step-icon {
  background: #9D2763;
  color: #fff;
  border-color: #9D2763;
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(157, 39, 99, 0.3);
}

.why-step h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.why-step p {
  font-size: 13px;
  color: #666;
}
/*---------------------------------------------------------------------------------- Team Section */
/* Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

.team-section {
  padding: 80px 20px;
  background: #f8f9fb;
}

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

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.subtitle {
  color: #c51b5b;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

.section-header.team h2 {
  font-size: 36px;
  margin:  0;
  font-weight: 700;
}

.section-header p {
  color: #666;
  max-width: 650px;
  margin: auto;
  line-height: 1.6;
}

/* Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.team-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.team-card:hover {
  transform: translateY(-8px);
}

/* Image */
.team-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
}

/* Content */
.team-content {
  padding: 20px;
  text-align: center;
}

.role {
  color: #c51b5b;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.team-content h3 {
  margin: 8px 0;
  font-size: 20px;
  font-weight: 700;
}

.team-content p {
  font-size: 14px;
  color: #666;
  margin: 10px 0 20px;
  line-height: 1.5;
}

/* Icons */
.team-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team-icons a {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c51b5b;
  transition: 0.3s;
}

.team-icons a:hover {
  background: #c51b5b;
  color: #fff;
}

/* Responsive */

/* Tablet */
@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 26px;
  }
}
/* team section end */
/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {
  .why-step-icon {
    background: #9D2763;
    color: #fff;
    border-color: #9D2763;
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(157, 39, 99, 0.3);
  }

  .why-flow {
    /* flex-direction: column; */
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .why-flow::before {
    display: none;
  }

  .why-step {
    max-width: 170px;
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width:576px) {
  .export-pipe {
    display: none;
  }

}

@media (max-width: 768px) {

  .export-section {
    padding: 40px 0;
  }

  .export-content {
    max-width: 100%;
    text-align: center;
    padding: 12px;
  }

  .export-flags {
    justify-content: center;
  }

  .export-features-simple {
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  .export-feature {
    /* flex-direction: column; */
    font-size: 12px;
  }

  .hero-content p {
    font-size: 12px;
    max-width: 330px;
  }

  .hero-line {
    width: 25px;
  }

  .hero-line-text {
    font-size: 12px;
  }

  .hero-content {
    position: absolute;
    top: 60%;
  }

  .hero-overlay {
    /* background: linear-gradient(112deg, rgba(10, 10, 10, .95) 0%, rgba(10, 10, 10, .5) 50%, rgba(10, 10, 10, .2) 100%); */
      /* background: linear-gradient(112deg, rgb(10 10 10 / 70%) 0%, rgb(10 10 10 / 100%) 100%, rgba(10, 10, 10, .2) 100%); */
    background: linear-gradient(90deg, rgb(0 0 0 / 55%) 0%, rgb(0 0 0 / 50%) 45%, rgb(0 0 0 / 25%) 100%);
    /* background: linear-gradient(
    90deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.6) 45%,
    rgba(0,0,0,0.2) 100%
  ); */
  }

  .hero-actions {
    margin-bottom: 40px;
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width:425px) {


}

@media (max-width:576px) {
  .about-section {
    padding: 40px 2px;
  }
.about-content{
  padding-left: 8px;
  padding-right: 8px;
}
  .about-image {
    padding: 12px;
  }
    .about-feature {
    width: 180px;
  }
}

@media (max-width: 992px) {

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

  .about-image img {
    height: 290px;
  }

  .about-content {
    text-align: center;
  }

  .about-features {
    justify-content: center;
  }

  .about-line {
    width: 150px;
    margin: 0 auto 20px auto;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .hero-slide,
  .hero-slide img {
    height: 600px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-feature {
    width: 150px;
  }

  .hero-banner-pipe {
    display: none;
  }

  .btn-outline {
    background: #b1124a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(177, 18, 74, 0.25);
  }

  /* Subtle Glow */
  .btn-outline {
    border-color: #b1124a;
  }
}

@media (max-width:375px) {

  .hero-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    width: 130px;

  }

  .btn {
    padding: 10px 12px;
    font-size: 12px;
  }

  .why-step {
    max-width: 100%;
    padding: 0 8px;
  }
}

/* -----------------------------------------Trust section */

/* SECTION BACKGROUND */
.partner-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff, #f4f6f9);
}

/* MAIN CARD */
.partner {
  background: #fff;
  border-radius: 22px;
  padding: 60px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
}

/* GRID */
.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* TEXT */
.partner-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.2;
  margin-bottom: 16px;
}

.partner-content h2 span {
  color: #9D2763;
}

.partner-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 460px;
}

/* BUTTON */
.btn-read {
  background: #9D2763;
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(157, 39, 99, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-read:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(157, 39, 99, 0.35);
}

/* TRUST ICONS */
.trust-icons {
  display: flex;
  margin-top: 45px;
}

.trust-item {
  flex: 1;
  text-align: center;
  border-right: 1px solid #eee;
  padding: 0 15px;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  width: 54px;
  height: 54px;
  margin: auto;
  margin-bottom: 10px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(157, 39, 99, 0.3);
  color: #9D2763;
  background: #fff5f9;
  font-size: 22px;
  transition: all 0.3s ease;
}

.trust-item:hover .trust-icon {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(157, 39, 99, 0.2);
}

/* IMAGE */
.partner-image-wrap {
  position: relative;
}

.partner-image {
  overflow: hidden;
  border-radius: 16px;

}

.partner-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s;
  border-radius: 16px;

}

.partner-image:hover img {
  transform: scale(1.06);
}

/* FLOATING BADGES */
.floating-badges {
  position: absolute;
  right: -30px;
  top: 60px;
  background: linear-gradient(180deg, #9D2763, #c13a7a);
  border-radius: 14px;
  overflow: hidden;
  width: 180px;
  box-shadow: 0 20px 50px rgba(157, 39, 99, 0.4);

  animation: floatY 4s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.floating-badge {
  display: flex;
  gap: 10px;
  padding: 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-badge:last-child {
  border-bottom: none;
}

.floating-badge i {
  font-size: 22px;
}


/* -----------------------------------------------Product Section */
/* SECTION */
.products-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff, #f6f7f9);
  text-align: center;
}

/* TITLE */
.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  /* margin-bottom: 10px; */
}

.underline {
  width: 50px;
  height: 3px;
  background: #9D2763;
  margin: 0 auto 40px;
  border-radius: 20px;
}

/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.product-card {
  background: #fff;
  border-radius: 16px;
  text-align: left;
  transition: all 0.35s ease;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
  position: relative;

  overflow: visible !important;
}

/* Hover Lift */
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.product-image {
  position: relative;
  overflow: visible !important;
  border-radius: 16px 16px 0 0;
}

.product-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
  border-radius: 16px 16px 0 0;

}

/* Image Zoom */
.product-card:hover img {
  transform: scale(1.01);
}

/* ICON (Floating like your design) */
.product-icon {
  position: absolute;
  left: 20px;
  bottom: -24px;
  width: 48px;
  height: 48px;
  background: #9D2763;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 2;
  place-items: center;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(157, 39, 99, 0.4);

  /* Floating animation */
  animation: floatIcon 3.5s ease-in-out infinite;
}

@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* CONTENT */
.product-content {
  padding: 35px 20px 25px;
}

.product-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.product-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  line-height: 20px;
}

/* LINK */
.product-content a {
  font-size: 14px;
  font-weight: 600;
  color: #9D2763;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.product-content a:hover {
  gap: 10px;
}

/* BUTTON */
.products-btn {
  margin-top: 40px;
}

.btn-main {
  background: #9D2763;
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  display: inline-block;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(157, 39, 99, 0.3);
  transition: 0.3s;
  text-decoration: none;
}

.btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(157, 39, 99, 0.35);
}

/* -----------------------------------Facility Section */
/* SECTION */
.facility-section {
  position: relative;
  padding: 80px 0;
  color: #fff;
}

/* DARK OVERLAY */
.facility-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.7) 40%,
      rgba(0, 0, 0, 0.4) 100%);
}

/* CONTENT */
.facility-content {
  position: relative;
  z-index: 2;
}

/* INTRO */
.facility-intro {
  max-width: 600px;
  margin-bottom: 50px;
}

.facility-intro h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 15px;
}

.facility-intro p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
}

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

/* CARD */
.facility-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 28px;
  border-radius: 14px;
  backdrop-filter: blur(6px);
  transition: 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* HOVER */
.facility-card:hover {
  transform: translateY(-8px);
  background: rgba(157, 39, 99, 0.15);
  border-color: rgba(157, 39, 99, 0.4);
}

/* ICON */
.facility-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #9D2763;
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  font-size: 22px;

  /* subtle float */
  animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* TEXT */
.facility-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.facility-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 22px;
}

/* FEATURES STRIP */
.facility-features {
  display: flex;
  gap: 30px;
  margin-top: 45px;
  flex-wrap: wrap;
}

.facility-features div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.9;
}

.facility-features i {
  color: #9D2763;
  font-size: 24px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

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

  .facility-features {
    justify-content: center;
    text-align: center;
  }

  .facility-intro {
    text-align: center;
    margin: 0 auto 40px;
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .product-image img {
    height: 250px;
  }

  .products-section {
    padding: 40px 0;
  }

  .facility-content {
    padding: 12px;
  }

  .facility-features i {
    font-size: 16px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 992px) {

  .partner {
    padding: 40px 25px;
  }

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

  .partner-image img {
    height: 280px;
  }

  .floating-badges {
    right: 10px;
    top: auto;
    bottom: -20px;
    width: 150px;
  }

  .trust-icons {
    /* flex-direction: column; */
    gap: 20px;
  }

  .trust-item {
    border-right: none;
    /* border-bottom: 1px solid #eee; */
    padding-bottom: 15px;
    min-width: 145px;
  }

  .trust-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 576px) {
  .partner-section {
    padding: 40px 0;
  }

  .partner-grid {
    gap: 30px;
  }

  .trust-icons {
    gap: 0;
    flex-wrap: wrap;
  }

  .trust-icon h5 {
    font-size: 12px;
  }

  .floating-badges {
    display: flex;
    right: 0;
    top: 83%;
    bottom: 0;
    width: 100%;
    padding: 0;
  }

  .floating-badge {
    display: flex;
    gap: 10px;
    padding: 10px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

  .footer-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

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

@media (max-width: 576px) {

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}


/* =========================
   MOBILE RESPONSIVE
========================= */
/* Small devices */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

/* Medium devices */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }

}

/* Large devices */
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

/* Extra large devices */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* XXL devices */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

@media (max-width: 992px) {

  .nav-menu {
    backdrop-filter: blur(7px);
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
    animation: slideDown 0.4s ease;

  }

  .site-header.scrolled .nav-menu {
    background-color: #f5f5f5;
  }

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

  .header-actions {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }
}