@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
  box-sizing: border-box;
}
body {
  font-family: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden; /* prevent horizontal scroll */
  line-height: 1.65;
  letter-spacing: 0.2px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.layout_padding {
  padding: 20px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

h1,
h2 {
  font-family: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
    position: relative;
    margin-bottom: 0;
    font-size: 3.5rem;
    font-weight: bold;
}

.heading_container h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 5px;
    background: linear-gradient(90deg, #6C63FF, #A78BFA);
    margin: 10px auto 10px;
}

.heading_container h2 span {
  color: #fdbe2d;
}

.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
  color: #64748b;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none !important;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*header section*/
.hero_area {
  position: relative;
  min-height: 12vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sub_page .hero_area {
  min-height: auto;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}

.header_section {
    /* padding: 15px 0; */
    padding: 0px 0;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.navbar-brand {
  font-family: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
}

.navbar-brand span {
  font-weight: bold;
  font-size: 32px;
  color: #000000;
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin-left: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 5px 20px;
    color: #131313;
    text-align: center;
    text-transform: uppercase;
    border-radius: 5px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-weight: 700;
    position: relative;
}

/* Navbar underline indicator */
.custom_nav-container .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: -6px;
  height: 3px;
  background: #6C63FF;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.custom_nav-container .navbar-nav .nav-item:hover .nav-link::after,
.custom_nav-container .navbar-nav .nav-item.active .nav-link::after { transform: scaleX(1); }

.custom_nav-container .navbar-nav .nav-item .nav-link svg {
  width: 17px;
  height: auto;
  fill: #000000;
  margin-bottom: 2px;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link, .custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #fdbe2d;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link svg, .custom_nav-container .navbar-nav .nav-item.active .nav-link svg {
  fill: #fdbe2d;
}
/* Override: keep active (Home) link black */
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #000000;
}
.custom_nav-container .navbar-nav .nav-item.active .nav-link svg {
  fill: #000000;
}
/* When hovering the active link, match the standard hover color */
.custom_nav-container .navbar-nav .nav-item.active:hover .nav-link {
  color: #fdbe2d;
}
.custom_nav-container .navbar-nav .nav-item.active:hover .nav-link svg {
  fill: #fdbe2d;
}

.custom_nav-container .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  color: #000000;
}

.custom_nav-container .nav_search-btn:hover {
  color: #fdbe2d;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #000000;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000000;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}

/*end header section*/
/* Ensure dropdowns are visible and not clipped by parent containers */
.header_section,
.header_section .container,
.custom_nav-container {
  overflow: visible !important;
  z-index: 1100; /* keep header above page content */
}

/* Desktop: open dropdowns on hover for better UX; keep click on mobile */
@media (min-width: 992px) {
  .custom_nav-container .nav-item:hover > .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: none;
  }
  .custom_nav-container .dropdown-menu {
    z-index: 2000; /* ensure above other elements */
    border: 0; /* remove default border */
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    padding: 12px 0;
  /* Let dropdown size to its content but only a little extra: use auto width and item padding */
  min-width: auto;
  width: auto;
  white-space: nowrap; /* keep each item on one line so menu grows only as needed */
  max-width: 360px; /* prevent overly wide menus */
    pointer-events: auto;
    transition: opacity .15s ease;
  }

  /* Force remove any heavy border and set background consistent with site */
  .custom_nav-container .dropdown-menu,
  .custom_nav-container .dropdown-menu li,
  .custom_nav-container .dropdown-menu a.dropdown-item {
    border: none !important;
    background: #ffffff !important;
    color: #222222 !important;
  }

  .custom_nav-container .dropdown-menu a.dropdown-item:hover {
    background: rgba(108,99,255,0.06) !important;
    color: #6C63FF !important;
  }

  /* Add horizontal padding so the menu is slightly wider than the text */
  .custom_nav-container .dropdown-menu .dropdown-item {
    padding: 12px 28px;
    white-space: nowrap;
  }

/* On small screens, allow dropdowns to wrap and use full width */
@media (max-width: 991px) {
  .custom_nav-container .dropdown-menu {
    white-space: normal;
    min-width: 160px;
    width: 100%;
    box-sizing: border-box;
  }
}
}

/* slider section */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 40px 0 30px 0;
  overflow: hidden; /* contain background and animated elements */
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box h1 {
    font-size: 4.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #002c3e;
    line-height: 70px;
}

.slider_section .detail-box h1 span {
  color: #f7444e;
}

.slider_section .detail-box p {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 1.5rem;
}

.slider_section .detail-box a {
    display: inline-block;
    padding: 12px 45px;
    background-color: #fdbe2d;
    border: 1px solid #fdbe2d;
    color: #ffffff;
    border-radius: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    margin-top: 10px;
    font-weight: 700;
}

.slider_section .detail-box a:hover {
  background-color: transparent;
  color: #fdbe2d;
}

.slider_section .img-box img {
  width: 100%;
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  margin-top: 45px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: #fdbe2d;
}
/* Premium carousel indicators */
.slider_section .carousel-indicators li {
  border: 2px solid #ffffff;
  opacity: .7;
}
.slider_section .carousel-indicators li.active {
  background-color: #6C63FF;
  border-color: #6C63FF;
  opacity: 1;
}

.slider_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.slider_bg_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
}

.product_section .heading_container {
  margin-bottom: 20px;
}

.product_section .box {
    position: relative;
    margin-top: 25px;
    padding: 16px 12px 12px 12px;
    background-color: #ffffff;
    -webkit-transition: all .3s;
    transition: all .3s;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 12px;
}

.product_section .box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: rgba(108, 99, 255, 0.1);
}
/* full-card clickable overlay */
.product_card_link {
  position: absolute;
  inset: 0;
  z-index: 5;
}

/* toolbar */
#prodSearch.form-control { height: 44px; }
.form-select { height: 44px; }

.product_section .box .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 240px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
}

.product_section .box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.product_section .box:hover .img-box img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.product_section .box .detail-box {
  text-align: left;
}

.product_section .box .detail-box h5 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #111827;
  line-height: 1.3;
  height: 40px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product_section .box .detail-box .price-row { 
  display: flex; 
  align-items: baseline; 
  gap: 8px; 
  margin-bottom: 8px; 
}
.product_section .box .detail-box .price-now { 
  font-size: 18px; 
  font-weight: 700; 
  color: #111827; 
  margin: 0; 
}
.product_section .box .detail-box .price-old { 
  color: #6b7280; 
  font-size: 13px; 
  text-decoration: line-through; 
}
.product_section .box .detail-box .discount { 
  color: #16a34a; 
  font-weight: 600; 
  font-size: 12px; 
  background: #e7f6ec; 
  padding: 2px 6px; 
  border-radius: 4px; 
}

.product_section .pill { 
  display: inline-block; 
  padding: 4px 8px; 
  background: #eef2ff; 
  color: #1e3a8a; 
  border-radius: 6px; 
  font-size: 11px; 
  font-weight: 600; 
  margin-bottom: 8px; 
}
.product_section .rating-pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; background: #e7f6ec; color: #0f5132; border-radius: 999px; font-weight: 700; }
.product_section .rating-pill i { color: #22c55e; }

.product_section .box:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.product_section .box:hover .option_container {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.arrival_section {
    background-color: #f8f8f8;
    padding: 30px 0;
    margin: 20px 0;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.product_section .option_container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .2s;
  transition: all .2s;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.product_section .options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product_section .options a {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 30px;
  width: 165px;
  text-align: center;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin: 5px 0;
}

.product_section .options .option1 {
  background-color: #fdbe2d;
  border: 1px solid #fdbe2d;
  color: #ffffff;
}

.product_section .options .option1:hover {
  background-color: transparent;
  color: #1e3a8a;
  border-color: #1e3a8a;
}

.product_section .options .option2 {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
}

.product_section .options .option2:hover {
  background-color: transparent;
  color: #1e3a8a;
  border-color: #1e3a8a;
}

.product_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
      align-items: center;
          justify-content: center;
  margin-top: 45px;
}

.product_section .btn-box a {
  display: inline-block;
  padding: 10px 40px;
  background-color: #6C63FF;
  border: 1px solid #fdbe2d;
  color: #000000;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.product_section .btn-box a:hover {
  background-color: transparent;
  color: #1e3a8a;
  border-color: #1e3a8a;
}

.arrival_section .heading_container {
    color: #002c3e;
    margin-bottom: 25px;
    position: relative;
    z-index: 3;
    text-align: center;
}

.arrival_section .box {
  padding: 40px 30px;
  position: relative;
  margin-bottom: 30px; 
}

.arrival_section .arrival_bg_box {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrival_section .arrival_bg_box img {
    width: 100%;
    height: auto;
    max-width: 800px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.arrival_section .row {
    position: relative;
    z-index: 2;
    margin-top: 20px;
}

/* 📱 Comprehensive Responsive Design */
/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .arrival_section .arrival_bg_box img {
        max-width: 900px;
    }
    
    .arrival_section .box {
        padding: 140px 60px;
    }
    
    .arrival_section .heading_container h2 {
        font-size: 4rem;
    }
    
    .arrival_section p {
        font-size: 18px;
        line-height: 1.8;
    }
    
    .arrival_section a {
        padding: 18px 60px;
        font-size: 18px;
    }
}

/* Desktop (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .arrival_section .arrival_bg_box img {
        max-width: 800px;
    }
    
    .arrival_section .box {
        padding: 130px 55px;
    }
    
    .arrival_section .heading_container h2 {
        font-size: 3.5rem;
    }
    
    .arrival_section p {
        font-size: 17px;
        line-height: 1.8;
    }
}

/* Medium Desktop (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .arrival_section .arrival_bg_box img {
        max-width: 750px;
    }
    
    .arrival_section .box {
        padding: 120px 50px;
    }
    
    .arrival_section .heading_container h2 {
        font-size: 3.2rem;
    }
    
    .arrival_section p {
        font-size: 16px;
        line-height: 1.8;
    }
}

/* Small Desktop/Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .arrival_section .arrival_bg_box img {
        max-width: 700px;
    }
    
    .arrival_section .box {
        padding: 100px 40px;
    }
    
    .arrival_section .heading_container h2 {
        font-size: 2.8rem;
    }
    
    .arrival_section p {
        font-size: 16px;
        line-height: 1.7;
    }
}

/* Mobile (576px - 767px) */
@media (max-width: 767px) {
    .arrival_section .arrival_bg_box img {
        max-width: 100%;
        border-radius: 10px;
    }
    
    .arrival_section .box {
        padding: 60px 25px;
    }
    
    .arrival_section .heading_container h2 {
        font-size: 2.4rem;
    }
    
    .arrival_section p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .arrival_section a {
        padding: 12px 35px;
        font-size: 14px;
        margin-top: 25px;
    }
}

/* Small Mobile (480px - 575px) */
@media (max-width: 575px) {
    .arrival_section .arrival_bg_box {
        margin-bottom: 25px;
    }
    
    .arrival_section .box {
        padding: 50px 20px;
    }
    
    .arrival_section .heading_container h2 {
        font-size: 2rem;
    }
    
    .arrival_section p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* Extra Small Mobile (375px - 479px) */
@media (max-width: 479px) {
    .arrival_section .arrival_bg_box img {
        border-radius: 8px;
    }
    
    .arrival_section .box {
        padding: 40px 15px;
    }
    
    .arrival_section .heading_container h2 {
        font-size: 1.8rem;
    }
    
    .arrival_section p {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* Ultra Small Mobile (320px - 374px) */
@media (max-width: 374px) {
    .arrival_section .arrival_bg_box img {
        border-radius: 6px;
    }
    
    .arrival_section .box {
        padding: 30px 10px;
    }
    
    .arrival_section .heading_container h2 {
        font-size: 1.6rem;
    }
    
    .arrival_section p {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .arrival_section a {
        padding: 10px 25px;
        font-size: 12px;
        margin-top: 20px;
    }
}

.arrival_section2 {
    background: #f8f8f8;  /* same as section 1 background */
    padding: 30px 0;
    margin-bottom: 30px;
}

.arrival_section2 .arrival_bg_box2 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #d3cece;
}

.arrival_section2 .arrival_bg_box2 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}



.arrival_section a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #6C63FF;
  border: 1px solid #fdbe2d;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.arrival_section a:hover {
  background-color: transparent;
  color: #fdbe2d;
}

.arrival_section2 a {
  display: inline-block;
  padding: -12px 45px;
  background-color: #fdbe2d;
  border: 1px solid #fdbe2d;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.arrival_section2 a:hover {
  background-color: transparent;
  color: #fdbe2d;
}

.why_section .box {
    text-align: center;
    margin-top: 20px;
    background-color: #6C63FF;
    padding: 25px 30px;
    border-radius: 5px;
    color: #ffffff;
}

.detail-box h5 {
    font-size: 21px;
    font-weight: 700;
}

.remove_line_bt h2::after {
    display: none;
}

.why_section .box .img-box {
  margin-bottom: 15px;
}

.why_section .box .img-box svg {
  width: 55px;
  height: auto;
  fill: #ffffff;
}

.subscribe_section {
  text-align: center;
}

.subscribe_section .box {
  background-color: #d4ced0;
  padding: 75px 45px;
}

.subscribe_section .subscribe_form .heading_container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #002c3e;
}

.subscribe_section .subscribe_form .heading_container h2 {
  padding: 0 25px;
}

.subscribe_section .subscribe_form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.subscribe_section .subscribe_form form input {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 90px;
    outline: none;
    padding: 5px 25px;
    background-color: #ffffff;
    margin-top: 15px;
    text-align: left;
}

.subscribe_section .subscribe_form form input::-webkit-input-placeholder {
  color: #171620;
}

.subscribe_section .subscribe_form form input:-ms-input-placeholder {
  color: #171620;
}

.subscribe_section .subscribe_form form input::-ms-input-placeholder {
  color: #171620;
}

.subscribe_section .subscribe_form form input::placeholder {
  color: #171620;
}

.subscribe_section .subscribe_form form button {
  display: inline-block;
  padding: 10px 45px;
  background-color: #fdbe2d;
  border: 1px solid #fdbe2d;
  color: #ffffff;
  border-radius: 35px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-transform: uppercase;
  margin-top: 35px;
  font-weight: 600;
  width: 100%;
  max-width: 285px;
}

.subscribe_section .subscribe_form form button:hover {
  background-color: transparent;
  color: #fdbe2d;
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-top: 55px;
}

.client_section .box .img_container {
    width: auto;
    height: auto;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
}

.client_section .box .img_container .img-box {
    width: auto;
    height: auto;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #ffffff;
    margin-right: -1px;
}

.client_section .box .img_container .img-box .img_box-inner {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

.client_section .box .img_container .img-box .img_box-inner img {
  width: 100%;
}

.client_section .box .detail-box {
  margin-top: 25px;
}

.client_section .box .detail-box h5 {
  font-size: 20px;
  font-weight: 600;
}

.client_section .box .detail-box h6 {
  font-size: 15px;
  color: #999998;
}

.client_section .carousel-control-prev,
.client_section .carousel-control-next {
  top: 43%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
  width: auto;
  margin: 0 5px;
  width: 50px;
  height: 50px;
  opacity: 1;
  color: #ffffff;
  background-color: #fdbe2d;
  border-radius: 100%;
}

.client_section .carousel-control-prev:hover,
.client_section .carousel-control-next:hover {
  background-color: #212121;
}

.client_section .carousel-control-prev {
  left: 25%;
}

.client_section .carousel-control-next {
  right: 25%;
}

/* footer section*/
.footer_section {
  background-color: #002c3e;
  color: #ffffff;
  padding-top: 40px;
}

.footer_section {
    color: #ffffff;
    text-align: left;
    /* Disable footer animations on all screens */
    transition: none !important;
}

.footer_section h4 {
  font-size: 28px;
}

.footer_section h4,
.footer_section .footer-logo {
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
  text-align: left;
}

.footer_section .footer-col {
  margin-bottom: 5px;
}

.footer_section .footer_contact .contact_link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer_section .footer_contact .contact_link_box a {
    margin: 5px 0;
    color: #ffffff;
}

.footer_section .footer_contact .contact_link_box a i {
  margin-right: 5px;
}

.footer_section .footer_contact .contact_link_box a:hover {
  color: #fdbe2d;
}

.footer_section .footer-logo {
  display: block;
  font-weight: bold;
  font-size: 32px;
  color: #ffffff;
}

.footer_section .footer_social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
    -ms-flex-pack: center;
    justify-content: left;
    margin-top: 25px;
    margin-bottom: 10px;
    transition: none !important;
}

.footer_section .footer_social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #002c3e;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: #ffffff;
  border-radius: 100%;
  margin: 0 2.5px;
  font-size: 18px;
  transition: none !important;
}

.footer_section .footer_social a:hover {
  color: #fdbe2d;
  transform: none !important;
}

.footer_section .map_container {
  width: 100%;
  height: 0px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.footer_section .map_container .map {
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.footer_section .map_container .map #googleMap {
  height: 100%;
}

.footer_section .footer-info {
  text-align: center;
  margin-top: 5px;
}

.footer_section .footer-info p {
    color: #ffffff;
    margin: 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer_section .footer-info p a {
  color: inherit;
}
/*# sourceMappingURL=style.css.map */

.heading_container.heading_center h3 {
    position: relative;
    margin-bottom: 15px;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
}

li.nav-item ul {
    background: #fff;
    border: solid #000 2px;
    border-radius: 0;
    padding: 10px 20px;
    margin-left: 10px;
    margin-top: 10px;
    box-shadow: 4px 4px 0px 0 #000;
    width: 190px;
}

li.nav-item ul li {
    float: left;
    width: 100%;
    margin: 6px 0;
}

li.nav-item ul li a {
    color: #212529;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.2px;
    margin-top: 10px;
    transition: ease all 0.5s;
}

li.nav-item ul li a:hover, li.nav-item ul li a:focus {
    color: #f7444e;
}

.inner_page_head {
    background: #fdbe2d;
    text-align: center;
    color: #fff;
    /* padding-top: 20px;
    padding-bottom: 10px;
    padding: 60px 0; */
}

.inner_page_head h3 {
    font-size: 42px;
    font-weight: 800;
    
}

/* Contact page specific styling */
.inner_page_head.contact-page {
    background: linear-gradient(135deg, #6C63FF 0%, #8B7FFF 100%);
    padding-top: 25px;
    padding-bottom: 25px;
    border-radius: 0;
    box-shadow: none;
}

.inner_page_head.contact-page h3 {
    margin: 0;
    font-size: 50px;
   
}

/* Responsive adjustments for inner page head */
@media (max-width: 768px) {
    .inner_page_head {
        padding-top: 8px;
        padding-bottom: 8px;
    }
    
    .inner_page_head h3 {
        font-size: 28px;
            padding: 66px 0;
    }
    
    .inner_page_head.contact-page h3 {
        font-size: 24px;
    }
    
    .layout_padding {
        padding: 15px 0;
    }
    
    .arrival_section {
        padding: 20px 0;
        margin: 15px 0;
    }
    
    .arrival_section .box {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .arrival_section2 {
        padding: 20px 0;
        margin-bottom: 20px;
    }
    
    .why_section .box {
        margin-top: 15px;
        padding: 20px 25px;
    }
}

@media (max-width: 576px) {
    .inner_page_head {
        padding-top: 6px;
        padding-bottom: 6px;
    }
    
    .inner_page_head h3 {
        font-size: 24px;
    }
    
    .inner_page_head.contact-page h3 {
        font-size: 20px;
    }
    
    .layout_padding {
        padding: 12px 0;
    }
    
    .arrival_section {
        padding: 15px 0;
        margin: 10px 0;
    }
    
    .arrival_section .box {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .arrival_section2 {
        padding: 15px 0;
        margin-bottom: 15px;
    }
    
    .why_section .box {
        margin-top: 10px;
        padding: 15px 20px;
    }
    
    .slider_section {
        padding: 20px 0 15px 0;
    }
}

/* Product tabs */
.product-description .nav-tabs .nav-link {
  font-weight: 600;
  color: #333;
}
.product-description .nav-tabs .nav-link.active {
  color: #000;
  border-color: #fdbe2d #fdbe2d transparent;
}
.product-description .tab-content {
  background: #fff;
}

/* Sticky CTA for mobile */
#stickyCta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 10px 0;
  z-index: 1050;
}

/* Back to top button */
#backToTop {
  position: fixed;
  right: 16px;
  bottom: 80px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #fdbe2d;
  color: #000;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  z-index: 1050;
}
#backToTop:hover { background: #f2b632; }

/** footer **/

footer {
    background: #f8f8f8;
    padding: 90px 0 0px;
}

.logo_footer {
    margin-bottom: 30px;
}

.information_f p {
    margin-bottom: 1.2rem;
    line-height: 25px;
    font-size: 15px;
}

.widget_menu h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    margin-bottom: 25px;
}

.widget_menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_menu ul li {
    float: left;
    width: 100%;
}

.widget_menu ul li a {
    font-size: 15px;
    color: #000;
    margin-bottom: 0;
    float: left;
    width: 100%;
    margin-top: 5px;
}

.field {
    display: flex;
}

.widget_menu {
    float: left;
    width: 100%;
}

div.form_sub .field input[type="email"], div.form_sub .field input[type="email"]:hover, div.form_sub .field input[type="email"]:focus {
    padding: 10px 110px 10px 15px;
    border-radius: 0;
    border: solid #ccc 1px;
    font-size: 14px;
    position: relative;
    box-shadow: none;
    width: 100%;
    height: 48px;
}

.form_sub {
    position: relative;
}

.form_sub input[type="email"] + input[type="submit"] {
    position: absolute;
    right: 0;
    background: #f7444e;
    color: #fff;
    border: none;
    top: 0px;
    font-size: 14px;
    height: 48px;
    font-weight: 600;
    padding: 0 15px;
}

form input {
    background: #fff;
    border: solid #ccc 1px;
    padding: 15px 15px;
    width: 100%;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: capitalize;
    line-height: normal;
}

form textarea {
    background: #fff;
    border: solid #ccc 1px;
    padding: 15px 15px;
    width: 100%;
    min-height: 150px;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: capitalize;
    line-height: normal;
}

form input[type="submit"] {
    border: none;
    padding: 15px 45px;
    width: auto;
    font-size: 16px;
    text-transform: capitalize;
    line-height: normal;
    margin: 0 auto;
    display: flex;
    background: #6C63FF;
    color: #fff;
    font-weight: 600;
    transition: ease all 0.1s;
}

form input[type="submit"]:hover,
form input[type="submit"]:focus {
    background: #fdbe2d;
    color: #fff;
}

/** cpy **/

.cpy_ {
    background: #222;
    text-align: center;
    padding: 20px 0;
}

.cpy_ p {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
}

.cpy_ p a {
    margin: 0;
    color: #f7444e;
    font-size: 15px;
    font-weight: 400;
}

.home_milestones {
  text-align: center;
  padding: 80px 20px;
  background-color: #f8f9fa;
}

.home_milestones_title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2b2d70; /* dark blue */
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
}

.home_milestones_title::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-color: #f2b632; /* yellow underline */
  margin: 8px auto 0 auto;
  border-radius: 5px;
}

.home_milestones_stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.home_stat {
  background: #6C63FF;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-width: 250px;
  flex: 1;
  max-width: 300px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.home_stat:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #524BD6;
}

.home_stat h3 {
  font-size: 3.5rem;
  color: white; /* white numbers */
  font-weight: 800;
  margin-bottom: 15px;
  font-family: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  counter-reset: count;
}

.home_stat:nth-child(1) h3 {
  animation-delay: 0.2s;
}

.home_stat:nth-child(2) h3 {
  animation-delay: 0.4s;
}

.home_stat:nth-child(3) h3 {
  animation-delay: 0.6s;
}

.home_stat p {
  font-size: 1.1rem;
  font-weight: 600;
  color: white; /* white text */
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 1px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.home_stat:nth-child(1) p {
  animation-delay: 0.4s;
}

.home_stat:nth-child(2) p {
  animation-delay: 0.6s;
}

.home_stat:nth-child(3) p {
  animation-delay: 0.8s;
}

/* Loading animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes countUp {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes numberCount {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Number counting animation class */
.number-animate {
  animation: numberCount 2s ease-out forwards;
}

/* Scroll-triggered animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Different animation types */
.scroll-fade-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.scroll-fade-left.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.scroll-fade-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.scroll-fade-right.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.scroll-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s ease;
}

.scroll-scale.animate-in {
  opacity: 1;
  transform: scale(1);
}

.scroll-rotate {
  opacity: 0;
  transform: rotate(-10deg) scale(0.9);
  transition: all 0.8s ease;
}

.scroll-rotate.animate-in {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Staggered animations for multiple elements */
.scroll-stagger-1 { transition-delay: 0.1s; }
.scroll-stagger-2 { transition-delay: 0.2s; }
.scroll-stagger-3 { transition-delay: 0.3s; }
.scroll-stagger-4 { transition-delay: 0.4s; }
.scroll-stagger-5 { transition-delay: 0.5s; }

/* Bounce effect */
.scroll-bounce {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.scroll-bounce.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Slide up with fade */
.scroll-slide-up {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease;
}

.scroll-slide-up.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Flip animation */
.scroll-flip {
  opacity: 0;
  transform: perspective(400px) rotateY(90deg);
  transition: all 0.8s ease;
}

.scroll-flip.animate-in {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg);
}

/* Zoom in effect */
.scroll-zoom {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.8s ease;
}

.scroll-zoom.animate-in {
  opacity: 1;
  transform: scale(1);
}

/* 📱 Global Responsive Design for All Images and Sections */

/* Product Images Responsive */
.product_section .box .img-box img {
    transition: all 0.3s ease;
}

/* Client Section Images Responsive */
.client_section .box .img_container .img-box .img_box-inner img {
    transition: all 0.3s ease;
}

/* All Section Images Responsive */
.arrival_section2 .arrival_bg_box2 img,
.product_section .box .img-box img,
.client_section .box .img_container .img-box .img_box-inner img,
.slider_section .img-box img,
.about_section .img-box img,
.testimonial_section .img-box img,
.blog_section .img-box img,
.contact_section .img-box img {
    transition: all 0.3s ease;
}

/* Responsive design */
@media (max-width: 768px) {
    .home_milestones_stats {
        gap: 20px;
    }
    
    .home_stat {
        min-width: 200px;
        padding: 30px 20px;
    }
    
    .home_stat h3 {
        font-size: 2.5rem;
    }
    
    .home_stat p {
        font-size: 1rem;
    }
    
    /* Mobile image optimizations */
    .product_section .box .img-box { height: auto; }
    
    .client_section .box .img_container .img-box .img_box-inner {
        width: 120px;
        height: 120px;
    }
    
    .slider_section .img-box img {
        max-width: 100%;
        height: auto;
    }
}

/* Tablet Responsive */
@media (max-width: 991px) {
    .product_section .box .img-box { height: auto; }
    
    .client_section .box .img_container .img-box .img_box-inner {
        width: 130px;
        height: 130px;
    }
}

/* Small Mobile Responsive */
@media (max-width: 576px) {
    .product_section .box .img-box { height: auto; }
    
    .client_section .box .img_container .img-box .img_box-inner {
        width: 100px;
        height: 100px;
    }
    
    .home_stat {
        min-width: 150px;
        padding: 20px 15px;
    }
    
    .home_stat h3 {
        font-size: 2rem;
    }
    
    .home_stat p {
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile Responsive */
@media (max-width: 480px) {
    .product_section .box .img-box { height: auto; }
    
    .client_section .box .img_container .img-box .img_box-inner {
        width: 80px;
        height: 80px;
    }
    
    .home_stat {
        min-width: 120px;
        padding: 15px 10px;
    }
    
    .home_stat h3 {
        font-size: 1.8rem;
    }
    
    .home_stat p {
        font-size: 0.8rem;
    }
}

.item_product_card {
  width: 300px;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  background: #fff;
  text-align: center;
  font-family: Arial, sans-serif;
}

.item_product_image {
  width: 100%;
  background: #f9f9f9;
  padding: 20px;
}

.item_product_image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.item_product_info {
  padding: 15px;
}

.item_product_title {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
}

.item_product_desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.item_buy_btn {
  background: #1e3a8a;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}

.item_buy_btn:hover {
  background: #162d6a;
}


/* Product gallery */
.product-gallery {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  float: left;
}

.product-main-image {
  width: 100%;
  background: #f9fafb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.product-main-image img {
  width: 70%;
  height: auto;
  object-fit: contain;
}

.product-thumbs {
  display: flex;
  gap: 10px;
  margin: 14px 0 0 0;
  padding: 0;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
}

.product-thumbs li {
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease;
}

.product-thumbs li.active,
.product-thumbs li:hover {
  border-color: #1e3a8a;
  transform: translateY(-2px);
}

.product-thumbs img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
}

/* Product detail right column */
.product-detail h2 {
  font-size: 28px;
  font-weight: 700;
}

.product-detail ul {
  padding-left: 18px;
}

/* utility */
.inline-block {
  display: inline-block;
}

/* Ensure product card buttons show as a single vertical column */
.product_section .option_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Ratings bars */
.rating-row {
  display: grid;
  grid-template-columns: 120px 1fr 60px;
  align-items: center;
  gap: 12px;
  margin: 10px 0;
}

.rating-bar {
  position: relative;
  height: 8px;
  background: #eceff4;
  border-radius: 999px;
  overflow: hidden;
}

.rating-bar > span {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  border-radius: 999px;
}

.bg-orange { background-color: #f59e0b; }

.product_section .option_container .options {
  display: contents; /* flatten wrappers so all <a> stack in one column */
}

.scale:hover{
  scale: 1.05;
}


.rating-box {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  font-family: Arial, sans-serif;
}

.rating-left {
  text-align: center;
}

.rating-left h2 {
  font-size: 48px;
  color: #1ca24a; /* green */
  margin: 0;
}

.rating-left h2 span {
  font-size: 36px;
}

.rating-left p {
  color: #6c757d;
  margin: 10px 0 0;
  font-size: 14px;
}

.rating-right {
  flex: 1;
}

.rating-row {
  display: flex;
  align-items: center;
  margin: 8px 0;
  font-size: 14px;
  color: #333;
}

.rating-row span:first-child {
  width: 90px;
}

.bar {
  flex: 1;
  height: 8px;
  background: #e9ecef;
  border-radius: 4px;
  margin: 0 10px;
  overflow: hidden;
}

.fill {
  height: 100%;
  border-radius: 4px;
}

.green { background: #1ca24a; }
.yellow { background: #fbc02d; }
.orange { background: #f57c00; }
.red { background: #d32f2f; }

/* --- Home page visual upgrades (overrides) --- */
/* Gradient overlay for hero background */
.slider_bg_box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.05) 70%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}

/* Hero text colors on top of overlay */
.slider_section .detail-box h1 { color: #ffffff; }
.slider_section .detail-box p { color: #f1f5f9; }
.slider_section .detail-box a { background-color: #6C63FF; border-color: #6C63FF; }
.slider_section .detail-box a:hover { color: #6C63FF; }

/* Product card polish */
.product_section .box { border-radius: 12px; }
.product_section .box:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.product_section .box:hover img { transform: scale(1.06); }
.product_section .box:hover .option_container { box-shadow: 0 20px 40px rgba(0,0,0,0.15); }

/* Buttons */
.btn { border-radius: 8px; transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
.btn-warning { background-color: #ffd166; border-color: #ffd166; color: #2b2d42; }
.btn-warning:hover { background-color: #ffca3a; border-color: #ffca3a; color: #1f2937; }
.btn-dark:hover { background-color: #111827; border-color: #111827; }

/* Links hover accent */
.arrival_section a:hover, .arrival_section2 a:hover { color: #6C63FF; }

/* Sticky header with blur and shadow on scroll */
.header_section { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.9); backdrop-filter: saturate(140%) blur(6px); }
.header_section.header_scrolled { box-shadow: 0 10px 30px rgba(0,0,0,0.08); }

/* filters  */


.filter-controls {
    background: #fdbe2d;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.search-box {
    position: relative;
    margin-bottom: 20px;
}

.search-input {
    width: 100%;
    padding: 3px 45px 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    margin-top: 23px;
}

.search-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 65%;
    transform: translateY(-50%);
    color: #6c757d;
}

.filter-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    min-width: 150px;
}

.filter-label {
    font-weight: 600;
    margin-bottom: 5px;
    color: #495057;
    font-size: 14px;
}

.filter-select {
    padding: 8px 12px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    background-color: white;
    outline: none;
    transition: border-color 0.3s ease;
}

.filter-select:focus {
    border-color: #007bff;
}

.price-range {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-input {
    width: 80px;
    padding: 8px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    text-align: center;
}

.clear-filters {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.clear-filters:hover {
    background: #c82333;
}

.product-grid {
    transition: all 0.3s ease;
}

.product-hidden {
    display: none !important;
}

.no-results {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
    font-size: 18px;
    display: none;
}

.results-count {
    margin: 20px 0;
    font-weight: 500;
    color: #495057;
}

@media (max-width: 768px) {
    .filter-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .price-range {
        justify-content: center;
    }
}

/* Buy Now Button Styles */
.buy-now-btn {
    background: linear-gradient(135deg, #fdbe2d, #f59e0b);
    border: none;
    color: #000;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(253, 190, 45, 0.3);
    margin-top: 8px;
}

.buy-now-btn:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 190, 45, 0.4);
}

.buy-now-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(253, 190, 45, 0.3);
}

.buy-now-btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(253, 190, 45, 0.5);
}

/* Add to Cart Button Styles */
.add-to-cart-btn {
    border: 2px solid #6C63FF;
    color: #6C63FF;
    background-color: transparent;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.add-to-cart-btn:hover {
    background-color: #6C63FF;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 99, 255, 0.3);
}

.add-to-cart-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(108, 99, 255, 0.2);
}

.add-to-cart-btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 99, 255, 0.25);
}

/* Button Group Layout */
.button-group {
    margin-top: 6px;
}

/* Product Actions - New Compact Design */
.product-actions {
    display: flex;
    gap: 8px;
    margin-top: -10px;
    z-index: 10;
    position: relative;
    width: 100%;
}

.btn-compact {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    cursor: pointer;
    min-height: 36px;
    height: 36px;
    box-sizing: border-box;
}

.btn-compact i {
    font-size: 11px;
}

.btn-compact.buy-now-btn {
    background: linear-gradient(135deg, #fdbe2d, #f59e0b);
    color: #000;
    box-shadow: 0 2px 8px rgba(253, 190, 45, 0.3);
}

.btn-compact.buy-now-btn:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(253, 190, 45, 0.4);
}

.btn-compact.add-to-cart-btn {
    background: #ffffff;
    color: #6C63FF;
    border: 1.5px solid #6C63FF;
    box-shadow: 0 2px 8px rgba(108, 99, 255, 0.1);
}

.btn-compact.add-to-cart-btn:hover {
    background: #6C63FF;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108, 99, 255, 0.3);
}

.btn-compact.btn-success {
    background: #16a34a;
    color: white;
    border-color: #16a34a;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3);
}

.btn-compact.btn-success:hover {
    background: #15803d;
    border-color: #15803d;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.4);
}

.btn-compact:active {
    transform: translateY(0);
}

/* Ensure both buttons have exactly the same dimensions */
.btn-compact.buy-now-btn,
.btn-compact.add-to-cart-btn {
    flex: 1;
    width: 50%;
    height: 36px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

/* Responsive adjustments for Buy Now buttons */
@media (max-width: 768px) {
    .product-actions {
        gap: 8px;
        margin-top: 8px;
    }
    
    .btn-compact {
        padding: 10px 14px;
        font-size: 11px;
        min-height: 38px;
        height: 38px;
    }
    
    .btn-compact i {
        font-size: 12px;
    }
}

/* Product Page Responsive Design */
@media (max-width: 1200px) {
    .product_section .heading_container h2 {
        font-size: 3rem;
    }
    
    .product_section .box {
        margin-bottom: 25px;
    }
}

@media (max-width: 992px) {
    .product_section .heading_container h2 {
        font-size: 2.5rem;
    }
    
    .product_section .box {
        margin-bottom: 20px;
    }
    
    .product_section .btn-box {
        margin-top: 35px;
    }
    
    .product_section .btn-box a {
        padding: 8px 30px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .product_section .heading_container h2 {
        font-size: 2rem;
    }
    
    .product_section .layout_padding {
        padding: 40px 0;
    }
    
    .product_section .box {
        margin-bottom: 15px;
    }
    
    .product_section .detail-box h5 {
        font-size: 16px;
        line-height: 1.4;
    }
    
    .product_section .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .product_section .price-now {
        font-size: 18px;
    }
    
    .product_section .price-old {
        font-size: 14px;
    }
    
    .product_section .discount {
        font-size: 12px;
    }
    
    .product_section .pill {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .product_section .btn-box {
        margin-top: 30px;
    }
    
    .product_section .btn-box a {
        padding: 10px 25px;
        font-size: 13px;
        width: 100%;
        max-width: 200px;
    }
    
    /* Button responsive adjustments */
    .button-group {
        gap: 8px !important;
    }
    
    .buy-now-btn,
    .add-to-cart-btn {
        padding: 8px 12px;
        font-size: 13px;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 576px) {
    .product_section .heading_container h2 {
        font-size: 1.8rem;
    }
    
    .product_section .layout_padding {
        padding: 30px 0;
    }
    
    .product_section .box {
        margin-bottom: 12px;
    }
    
    .product_section .detail-box h5 {
        font-size: 15px;
        line-height: 1.3;
    }
    
    .product_section .price-now {
        font-size: 16px;
    }
    
    .product_section .price-old {
        font-size: 13px;
    }
    
    .product_section .discount {
        font-size: 11px;
    }
    
    .product_section .pill {
        font-size: 11px;
        padding: 3px 6px;
    }
    
    .product_section .btn-box {
        margin-top: 25px;
    }
    
    .product_section .btn-box a {
        padding: 8px 20px;
        font-size: 12px;
        max-width: 180px;
    }
    
    /* Button responsive adjustments */
    .buy-now-btn,
    .add-to-cart-btn {
        padding: 6px 10px;
        font-size: 12px;
        letter-spacing: 0.2px;
    }
    
    /* Compact button responsive adjustments */
    .product-actions {
        gap: 6px;
        margin-top: 10px;
    }
    
    .btn-compact {
        padding: 6px 10px;
        font-size: 11px;
        min-height: 32px;
        height: 32px;
    }
    
    .btn-compact i {
        font-size: 10px;
    }
    
    .product_section .box .detail-box h5 {
        font-size: 14px;
        height: 36px;
    }
    
    .product_section .box .detail-box .price-now {
        font-size: 16px;
    }
    
    /* Product grid responsive */
    .product_section .row .col-sm-6 {
        padding: 0 5px;
    }
}

@media (max-width: 480px) {
    .product_section .heading_container h2 {
        font-size: 1.6rem;
    }
    
    .product_section .layout_padding {
        padding: 25px 0;
    }
    
    .product_section .box {
        margin-bottom: 10px;
    }
    
    .product_section .detail-box h5 {
        font-size: 14px;
    }
    
    .product_section .price-now {
        font-size: 15px;
    }
    
    .product_section .price-old {
        font-size: 12px;
    }
    
    .product_section .discount {
        font-size: 10px;
    }
    
    .product_section .pill {
        font-size: 10px;
        padding: 2px 5px;
    }
    
    .product_section .btn-box {
        margin-top: 20px;
    }
    
    .product_section .btn-box a {
        padding: 6px 15px;
        font-size: 11px;
        max-width: 160px;
    }
    
    /* Button responsive adjustments */
    .buy-now-btn,
    .add-to-cart-btn {
        padding: 5px 8px;
        font-size: 11px;
    }
    
    /* Compact button responsive adjustments for small screens */
    .product-actions {
        flex-direction: row;
        gap: 6px;
    }
    
    .btn-compact {
        flex: 1;
        padding: 8px 12px;
        font-size: 12px;
        min-height: 36px;
        width: 50%;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .product_section .box {
        padding: 12px 10px 10px 10px;
    }
    
    .product_section .box .img-box {
        height: 200px;
    }
    
    /* Product grid responsive */
    .product_section .row .col-sm-6 {
        padding: 0 3px;
    }
}

/* Header responsive adjustments */
@media (max-width: 768px) {
    .header_section .navbar-brand img {
        width: 80px;
    }
    
    .header_section .navbar-nav {
        text-align: center;
    }
    
    .header_section .navbar-nav .nav-link {
        padding: 8px 15px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .header_section .navbar-brand img {
        width: 80px;
    }
    
    .header_section .navbar-nav .nav-link {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* Footer responsive adjustments */
@media (max-width: 768px) {
    .footer_section .footer-col {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer_section .footer_social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer_section .footer-col {
        margin-bottom: 25px;
    }
    
    .footer_section .footer-info p {
        font-size: 14px;
        text-align: center;
    }
}

.btn-compact.add-to-cart-btn {
    background: #ffffff;
    color: #6C63FF;
    border: 1.5px solid #6C63FF;
    box-shadow: 0 2px 8px rgba(108, 99, 255, 0.1);
}

.btn-compact.add-to-cart-btn:hover {
    background: #6C63FF;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108, 99, 255, 0.3);
}

.why_section form::before {
   content: '';
   position: absolute;
   top: -2px;
   left: -2px;
   right: -2px;
   bottom: -2px;
   background: var(--gradient-primary);
   border-radius: 20px;
   z-index: -1;
}

.why_section input,
.why_section textarea {
   border: 2px solid #e1e5e9;
   border-radius: 0px;
   padding: 18px 25px;
   font-size: 16px;
   transition: all 0.3s ease;
   background: #f8f9fa;
}

.why_section input:focus,
.why_section textarea:focus {
   border-color: var(--primary-color);
   box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
   background: white;
   outline: none;
}

.why_section input[type="submit"] {
   background: var(--gradient-primary);
   color: white;
   border: none;
   padding: 18px 40px;
   font-weight: 600;
   font-size: 18px;
   border-radius: 50px;
   cursor: pointer;
   transition: all 0.3s ease;
   box-shadow: 0 10px 30px rgba(108, 99, 255, 0.3);
}

.why_section input[type="submit"]:hover {
   transform: translateY(-3px);
   box-shadow: 0 15px 40px rgba(108, 99, 255, 0.4);
}

/* Enhanced arrival section */
.arrival_section {
   background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
   padding: 80px 0;
}

.arrival_section .box {
   background: white;
   border-radius: 25px;
   padding: 60px;
   box-shadow: 0 25px 80px rgba(108, 99, 255, 0.08);
   border: 1px solid rgba(108, 99, 255, 0.1);
   position: relative;
   overflow: hidden;
}

.arrival_section .box::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 5px;
   background: var(--gradient-primary);
}

.arrival_section .heading_container h2 {
   color: var(--primary-color);
   font-size: 2.8rem;
   font-weight: 700;
   margin-bottom: 25px;
   position: relative;
}

.arrival_section .heading_container h2::after {
   content: '';
   position: absolute;
   bottom: -10px;
   left: 0;
   width: 60px;
   height: 4px;
   background: var(--gradient-secondary);
   border-radius: 2px;
}

.arrival_section h3 {
   color: var(--primary-color);
   font-weight: 600;
   margin-bottom: 20px;
}

.arrival_section p {
   color: #555;
   line-height: 1.8;
   font-size: 16px;
}

/* Enhanced arrival section 2 */
.arrival_section2 {
   background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
   padding: 80px 0;
}

.arrival_section2 .box2 {
   background: white;
   border-radius: 25px;

   box-shadow: 0 25px 80px rgba(253, 190, 45, 0.08);
   border: 1px solid rgba(253, 190, 45, 0.1);
   position: relative;
   overflow: hidden;
}

.arrival_section2 .box2::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 5px;
   background: var(--gradient-secondary);
}

.arrival_section2 .heading_container h2 {
   color: var(--secondary-color);
   font-size: 2.8rem;
   font-weight: 700;
   margin-bottom: 25px;
   position: relative;
}

.arrival_section2 .heading_container h2::after {
   content: '';
   position: absolute;
   bottom: -10px;
   left: 0;
   width: 60px;
   height: 4px;
   background: var(--gradient-primary);
   border-radius: 2px;
}

.arrival_section2 h3 {
   color: var(--secondary-color);
   font-weight: 600;
   margin-bottom: 20px;
}

.arrival_section2 a {
   color: var(--primary-color);
   text-decoration: none;
   transition: all 0.3s ease;
}

.arrival_section2 a:hover {
   color: var(--secondary-color);
   text-decoration: underline;
}

/* Smooth scrolling */
html {
   scroll-behavior: smooth;
}

  /* CSS Variables for brand colors */
         :root {
            --primary-color: #6C63FF;
            --secondary-color: #fdbe2d;
            --gradient-primary: linear-gradient(135deg, #6C63FF 0%, #8B7FFF 100%);
            --gradient-secondary: linear-gradient(135deg, #fdbe2d 0%, #FFD700 100%);
         }

         /* Enhanced page header */
         .inner_page_head {
            background: var(--gradient-primary);
            padding: 34px 0;
            position: relative;
            overflow: hidden;
         }

         .inner_page_head::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
         }

         .inner_page_head h3 {
            color: white;
            font-size: 3.5rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            position: relative;
            z-index: 2;
         }

         /* Enhanced why section */
         .why_section {
            background: linear-gradient(135deg, #f8f9ff 0%, #e8eaff 100%);
            padding: 50px 0;
         }
         .why_section .box:hover .img-box svg path {
    fill: white !important;
}
.arrival_section .box:hover a,
.arrival_section2 .box:hover a {
    color: white !important;
}

         .why_section .heading_container h2 {
            color: var(--primary-color);
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 50px;
            text-align: center;
            position: relative;
         }

         .why_section .heading_container h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-secondary);
            border-radius: 2px;
         }

         .why_section .box {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(108, 99, 255, 0.1);
            border: 2px solid transparent;
            background-clip: padding-box;
            position: relative;
            transition: all 0.3s ease;
            height: 100%;
         }

         .why_section .box::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--gradient-primary);
            border-radius: 20px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
         }

         .why_section .box:hover::before {
            opacity: 1;
         }

         .why_section .box:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(108, 99, 255, 0.2);
         }

         .why_section .img-box {
            text-align: center;
            margin-bottom: 25px;
         }

         .why_section .img-box svg,
         .why_section .img-box i {
            width: 80px;
            height: 80px;
            fill: var(--primary-color);
            transition: all 0.3s ease;
         }

         .why_section .box:hover .img-box svg,
         .why_section .box:hover .img-box i {
            fill: white;
            color: white !important;
            transform: scale(1.1);
         }

         .why_section .detail-box h5 {
            color: var(--primary-color);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            text-align: center;
            transition: color 0.3s ease;
         }

         .why_section .box:hover .detail-box h5 {
            color: white;
         }
         
         .why_section .detail-box p {
            color: #666;
            text-align: center;
            line-height: 1.6;
            transition: color 0.3s ease;
         }

         .why_section .box:hover .detail-box p {
            color: rgba(255, 255, 255, 0.9);
         }

         /* Enhanced arrival sections */
         .arrival_section,
         .arrival_section2 {
            background: linear-gradient(135deg, #f8f9ff 0%, #e8eaff 100%);
            padding: 80px 0;
         }

         .arrival_section .box,
         .arrival_section2 .box {
            background: white;
            padding: 50px;
            border-radius: 25px;
            box-shadow: 0 20px 60px rgba(108, 99, 255, 0.1);
            border: 2px solid transparent;
            background-clip: padding-box;
            position: relative;
            transition: all 0.3s ease;
         }

         .arrival_section .box::before,
         .arrival_section2 .box::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            /* background: var(--gradient-primary); */
            border-radius: 25px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
         }

         .arrival_section .box:hover::before,
         .arrival_section2 .box:hover::before {
            opacity: 1;
         }
.arrival_section2 .box:hover{
  /* padding-top: 5px; */
  border-top: 2px solid #6C63FF;
}
         .arrival_section .box:hover,
         .arrival_section2 .box:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 80px rgba(108, 99, 255, 0.15);
         }

         .arrival_section .heading_container h2,
         .arrival_section2 .heading_container h2 {
            color: var(--primary-color);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
         }

         .arrival_section .heading_container h2::after,
         .arrival_section2 .heading_container h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--gradient-secondary);
            border-radius: 2px;
         }

         .arrival_section p,
         .arrival_section2 p {
            color: #555;
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 30px;
            transition: color 0.3s ease;
         }

     
.why_section .img-box svg {
    fill: var(--primary-color) !important;
}
.why_section .box:hover .img-box svg {
    fill: white !important;
}
.why_section .img-box i {
    color: var(--primary-color);
}

.why_section .box:hover .img-box i {
    color: white !important;
}

         .arrival_section a,
         .arrival_section2 a {
            background: var(--gradient-primary);
            color: white;
            padding: 15px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(108, 99, 255, 0.3);
         }

         .arrival_section a:hover,
         .arrival_section2 a:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4);
         }

         /* Enhanced footer */
         .footer_section {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 60px 0 20px;
         }

         .footer_section h4 {
            color: var(--secondary-color);
            font-weight: 600;
            margin-bottom: 25px;
            font-size: 1.3rem;
         }

         .footer_section .contact_link_box a {
            color: #bdc3c7;
            text-decoration: none;
            display: block;
            margin-bottom: 15px;
            transition: color 0.3s ease;
         }

         .footer_section .contact_link_box a:hover {
            color: var(--secondary-color);
         }

         .footer_section .footer-logo {
            color: var(--secondary-color);
            font-size: 1.5rem;
            font-weight: 700;
            text-decoration: none;
         }

         .footer_section .footer_social a {
            color: #bdc3c7;
            margin-right: 15px;
            font-size: 20px;
            transition: color 0.3s ease;
         }

         .footer_section .footer_social a:hover {
            color: var(--secondary-color);
         }

         .footer_section .footer_links ul li {
            margin-bottom: 10px;
         }

         .footer_section .footer_links ul li a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
         }

         .footer_section .footer_links ul li a:hover {
            color: var(--secondary-color);
         }

         /* Responsive improvements */
         @media (max-width: 768px) {
            .inner_page_head h3 {
               font-size: 2.5rem;
            }
            
            .why_section .heading_container h2 {
               font-size: 2.2rem;
            }
            
            .arrival_section .box,
            .arrival_section2 .box {
               padding: 30px 20px;
            }
         }

         /* Smooth animations */
         @keyframes fadeInUp {
            from {
               opacity: 0;
               transform: translateY(30px);
            }
            to {
               opacity: 1;
               transform: translateY(0);
            }
         }

         .why_section .box,
         .arrival_section .box,
         .arrival_section2 .box {
            animation: fadeInUp 0.6s ease forwards;
         }

         .why_section .box:nth-child(2) {
            animation-delay: 0.2s;
         }

         .why_section .box:nth-child(3) {
            animation-delay: 0.4s;
         }
          /* --- Footer Redesign --- */
         .footer_section {
            background: linear-gradient(135deg, #222831 0%, #393E46 100%);
            color: #ffffff;
            padding: 70px 0 20px;
            position: relative;
         }

         .footer_section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #fdbe2d, #ff6b35, #fdbe2d);
         }

         .footer_section h4 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 25px;
            text-transform: uppercase;
            color: #fdbe2d;
         }

         .footer_detail .footer-logo {
            font-size: 28px;
            font-weight: bold;
            color: #ffffff;
            margin-bottom: 15px;
            display: block;
            text-decoration: none;
            transition: color 0.3s ease;
         }

         .footer_detail .footer-logo:hover {
            color: #fdbe2d;
         }

         .footer_detail p {
            color: #dddddd;
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 20px;
         }

         .footer_social {
            margin-top: 25px;
         }

         .footer_social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            font-size: 18px;
            margin-right: 10px;
            margin-bottom: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.2);
         }

         .footer_social a:hover {
            background-color: #fdbe2d;
            color: #222831;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(253, 190, 45, 0.3);
         }

         .footer_contact .contact_link_box a, .footer_links ul li a {
            color: #dddddd;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
         }

         .footer_contact .contact_link_box a:hover, .footer_links ul li a:hover {
            color: #fdbe2d;
            transform: translateX(5px);
         }

         .footer_contact .contact_link_box a {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 8px 0;
         }

         .footer_contact .contact_link_box a i {
            font-size: 18px;
            margin-right: 12px;
            width: 25px;
            color: #fdbe2d;
         }

         .footer_links ul {
            list-style: none;
            padding: 0;
            margin: 0;
         }

         .footer_links ul li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 20px;
         }

         .footer_links ul li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #fdbe2d;
            font-weight: bold;
         }

         .footer_newsletter {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
         }

         .footer_newsletter p {
            color: #cccccc;
            margin-bottom: 20px;
            font-size: 14px;
         }

         .newsletter_form .input-group {
            display: flex;
            gap: 0;
         }

         .newsletter_form .form-control {
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #ffffff;
            border-radius: 25px 0 0 25px;
            padding: 12px 20px;
            flex: 1;
            
         }

         .newsletter_form .form-control::placeholder {
            color: #aaaaaa;
         }

         .newsletter_form .form-control:focus {
            background-color: rgba(255, 255, 255, 0.15);
            border-color: #fdbe2d;
            box-shadow: 0 0 0 0.2rem rgba(253, 190, 45, 0.25);
         }

         .newsletter_form .btn {
            background-color: #fdbe2d;
            border: 1px solid #fdbe2d;
            color: #222831;
            border-radius: 0 25px 25px 0;
         
            font-weight: 600;
            transition: all 0.3s ease;
         }

         .newsletter_form .btn:hover {
            background-color: #ff6b35;
            border-color: #ff6b35;
            transform: translateY(-2px);
         }

         .footer_bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 25px 0;
            margin-top: 50px;
         }

         .footer-info p {
            margin: 0;
            color: #bbbbbb;
            font-size: 14px;
         }

         .footer-info p a {
            color: #fdbe2d;
            text-decoration: none;
            font-weight: 600;
         }

         .footer_extra_links {
            display: flex;
            gap: 20px;
            justify-content: flex-end;
         }

         .footer_extra_links a {
            color: #cccccc;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
         }

         .footer_extra_links a:hover {
            color: #fdbe2d;
         }

         /* --- Mobile Footer Redesign (optimized for Android devices) --- */
         @media (max-width: 991px) {
            .footer_section {
               padding: 40px 0 15px;
            }
            .footer-col {
               margin-bottom: 35px;
               text-align: center;
               padding: 0 15px;
               display: flex;
               flex-direction: column;
               align-items: center;
               justify-content: center;
            }
            .footer_section .row .footer-col:last-of-type {
               margin-bottom: 0;
            }

            /* Center Contact Us section */
            .footer_contact {
               width: 100%;
               display: flex;
               flex-direction: column;
               align-items: center;
            }
            .footer_contact h4 {
               text-align: center;
               width: 100%;
            }
            .footer_contact .contact_link_box {
               display: flex;
               flex-direction: column;
               align-items: center;
               gap: 15px;
               width: 100%;
            }
            .footer_contact .contact_link_box a {
               padding: 12px 15px;
               border-radius: 8px;
               background-color: rgba(255, 255, 255, 0.05);
               width: 100%;
               max-width: 300px;
               justify-content: center;
               text-align: center;
               transition: all 0.3s ease;
            }
            .footer_contact .contact_link_box a:hover {
               background-color: rgba(253, 190, 45, 0.1);
               transform: none;
            }

            /* Center Quick Links section */
            .footer_links {
               width: 100%;
               display: flex;
               flex-direction: column;
               align-items: center;
            }
            .footer_links h4 {
               text-align: center;
               width: 100%;
            }
            .footer_links ul {
               width: 100%;
               display: flex;
               flex-direction: column;
               align-items: center;
               padding: 0;
               margin: 0;
            }
            .footer_links ul li {
               padding-left: 0;
               margin-bottom: 15px;
               width: 100%;
               max-width: 300px;
               text-align: center;
            }
            .footer_links ul li::before {
               display: none;
            }
            .footer_links ul li a {
               display: block;
               padding: 10px 15px;
               background-color: rgba(255, 255, 255, 0.05);
               border-radius: 6px;
               font-size: 16px; /* Prevents zoom on iOS, good for Android too */
               transition: all 0.3s ease;
               text-align: center;
               width: 100%;
            }
            .footer_links ul li a:hover {
               background-color: rgba(253, 190, 45, 0.1);
               transform: none;
            }

            /* Center Newsletter section */
            .footer_newsletter {
               padding: 20px 15px;
               margin: 0 15px;
               width: 100%;
               max-width: 350px;
               display: flex;
               flex-direction: column;
               align-items: center;
               text-align: center;
            }
            .footer_newsletter h4 {
               text-align: center;
               width: 100%;
            }
            .footer_newsletter p {
               text-align: center;
               margin-bottom: 20px;
            }
            .newsletter_form {
               width: 100%;
               display: flex;
               flex-direction: column;
               align-items: center;
            }
            .newsletter_form .input-group {
               flex-direction: column;
               gap: 12px;
               width: 100%;
            }
            .newsletter_form .form-control {
               border-radius: 25px;
               margin-bottom: 0;
               padding: 14px 20px;
               font-size: 16px; /* Prevents zoom on iOS, good for Android too */
               border: 2px solid rgba(255, 255, 255, 0.2);
               width: 100%;
               text-align: center;
            }
            .newsletter_form .form-control:focus {
               border-color: #fdbe2d;
            }
            .newsletter_form .btn {
               border-radius: 25px;
               width: 100%;
               padding: 14px 20px;
               font-size: 16px;
               font-weight: 600;
               min-height: 48px; /* Better touch target */
            }

            .footer_social {
               display: flex;
               justify-content: center;
               flex-wrap: wrap;
               gap: 8px;
            }
            .footer_social a {
               width: 50px;
               height: 50px;
               margin: 0;
               margin-bottom: 0;
               font-size: 20px;
               min-width: 50px; /* Better touch target */
               min-height: 50px; /* Better touch target */
            }
            .footer_bottom {
               text-align: center;
               padding: 20px 15px;
            }
            .footer_extra_links {
               justify-content: center;
               margin-top: 15px;
               flex-wrap: wrap;
               gap: 15px;
            }
            .footer_extra_links a {
               padding: 8px 12px;
               font-size: 14px;
               min-height: 36px; /* Better touch target */
               display: inline-flex;
               align-items: center;
            }
         }

         /* --- Specific optimizations for Android devices --- */
         @media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 1.5) {
            .footer_section {
               padding: 35px 0 10px;
            }
            .footer_section h4 {
               font-size: 18px;
               margin-bottom: 20px;
               text-align: center;
            }
            .footer_detail .footer-logo {
               font-size: 24px;
            }
            .footer_detail p {
               font-size: 14px;
               line-height: 1.5;
               text-align: center;
            }
            .footer_contact .contact_link_box a span {
               font-size: 14px;
            }
            .footer_newsletter p {
               font-size: 13px;
               text-align: center;
            }
            .footer-info p {
               font-size: 13px;
               text-align: center;
            }

            /* Ensure centering for Android devices */
            .footer_links ul li a,
            .footer_contact .contact_link_box a,
            .newsletter_form .form-control,
            .newsletter_form .btn {
               text-align: center;
               
            }
         }

         /* --- Portrait orientation optimizations --- */
         @media (max-width: 768px) and (orientation: portrait) {
            .footer_section {
               padding: 30px 0 10px;
            }
            .footer-col {
               margin-bottom: 30px;
            }
            .footer_newsletter {
               padding: 18px 12px;
            }
            
         }
         .form-control{
               border-radius: 0 !important;
            }
         
         /* --- Landscape orientation optimizations --- */
         @media (max-width: 768px) and (orientation: landscape) {
            .footer_section {
               padding: 25px 0 8px;
            }
            .footer-col {
               margin-bottom: 25px;
            }
            .footer_newsletter {
               padding: 15px 10px;
            }
            .newsletter_form .form-control,
            .newsletter_form .btn {
               padding: 12px 16px;
               
            }
         }