@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200;300;400;500;600;700;800&display=swap');

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* smooth scroll */
html {
  scroll-behavior: smooth;
}
/* etc */
:active,
:hover,
:focus {
  outline: 0 !important;
  outline-offset: 0;
}

a,
a:hover {
  text-decoration: none;
}

a:hover {
  color: var(--primary-color) !important;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

/*===== Variable Define =====*/
:root {
  --primary-color: #ff553e;
  --secondary-color: #333;
  --white-color: #fff;
  --black-color: #000;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 100%;
  font-weight: 400;
  font-family: 'Dosis', sans-serif;
}

/*
=========================================
    Custom Scrollbar
=========================================
*/

::-webkit-scrollbar {
  width: 0.3125rem;
}

::-webkit-scrollbar-track {
  background: var(--white-color);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

/*
==========================================
   Custom CSS Design
==========================================
*/

h1 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: var(--white-color);
}

h2 {
  font-weight: 600;
  font-size: 1.5625rem;
  text-transform: capitalize;
  color: var(--white-color);
  line-height: 2.5rem;
}

h4 {
  color: var(--white-color);
  text-transform: capitalize;
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 0.9375rem;
  transition: all .3s linear;
}

h5 {
  color: var(--white-color);
  text-transform: capitalize;
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 10px;
}

p {
  font-size: 1rem;
  color: var(--white-color);
  font-weight: 400;
  line-height: 1.75rem;
  letter-spacing: 0.0625rem;
  opacity: 0.8;
}

.main-btn {
  height: 40px;
  line-height: 40px;
  font-size: 1.125rem;
  display: inline-block;
  color: var(--white-color);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 30px;
  position: relative;
}

.main-btn::after,
.main-btn::before {
  position: absolute;
  top: 50%;
  background-color: rgba(255, 255, 255, .3);
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  transition: all .5s ease-out 0s;
  -webkit-transition: all .5s ease-out 0s;
  transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
}

.main-btn::after {
  transform: translateY(20px);
  -webkit-transform: translateY(20px);
}

.main-btn:hover::before {
  transform: rotate(20deg);
  -webkit-transform: rotate(20deg);
  background-color: var(--primary-color);
}

.main-btn:hover::after {
  transform: rotate(-20deg);
  -webkit-transform: rotate(-20deg);
  background-color: var(--primary-color);
}

.main-btn:hover {
  color: var(--primary-color) !important;
}

.wrapper {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: var(--secondary-color);
}

.text-content {
  width: 60%;
  margin: auto;
}

/*
==========================================
   top-banner Design
==========================================
*/


/*
==========================================
   Premium Navbar Styling
==========================================
*/
.top-header {
  background-color: var(--secondary-color);
}

.top-header span {
  font-size: 0.875rem;
  color: var(--white-color);
  letter-spacing: 0.1062rem;
}

/* Navbar Wrapper */
.navigation-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(20, 20, 20, 0.8) !important; /* Transparent dark */
  backdrop-filter: blur(12px); /* Smooth glass effect */
  -webkit-backdrop-filter: blur(12px); /* Safari support */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08); /* Subtle border */
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25); /* Soft shadow */
}

/* Navbar Items */
.navigation-wrap .nav-item {
  padding: 0 0.75rem;
  transition: all 200ms ease;
}

/* Navbar Toggle (Mobile) */
.navbar-toggler:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

/* Navbar Links */
.navigation-wrap .nav-link {
  padding: 0.9375rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white-color);
  letter-spacing: 0.075rem;
  position: relative;
  transition: color 0.3s ease;
}

/* Hover & Active Links */
.navigation-wrap .nav-link:hover,
.navigation-wrap .nav-link.active {
  color: var(--primary-color);
}

/* Fancy Hover Underline Effect */
.navigation-wrap .nav-link::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navigation-wrap .nav-link:hover::after,
.navigation-wrap .nav-link.active::after {
  width: 50%;
}

/* Scroll Effect - Darker Navbar */
.navigation-wrap.scroll-on {
  background: rgba(15, 15, 15, 0.92) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35) !important;
}

/* Smooth Transition for All */
.navigation-wrap,
.navigation-wrap .nav-link,
.navigation-wrap .nav-item {
  transition: all 0.3s ease-in-out;
}

/* slidebar */



/*
==========================================
New-arrivals section Design
==========================================
*/
.new-arrivals .banner-info{
  bottom:30px;
  margin:auto;
  width:100%;
  position:absolute;
  z-index:9;
  padding:0 15px;
}
.new-arrivals .card-banner:nth-child(2) h2,
.new-arrivals .card-banner:nth-child(2) p,
.new-arrivals .card-banner:nth-child(2) a{
  color:var(--black-color);
}
.new-arrivals .card-banner:nth-child(2) a::before,
.new-arrivals .card-banner:nth-child(2) a::after{
  background-color:var(--black-color);
}

.new-arrivals .card-banner .card-thumb,
.products .item-product{
  position:relative;
  display:block;
  overflow: hidden;
}
.new-arrivals .card-banner .card-thumb img,
.products .item-product img{
  transition: all .5s ease-out 0s;
}
.new-arrivals .card-banner .card-thumb img:hover,
.products .item-product img:hover{
  transform:scale(1.2);
  opacity:0.6;
}
.hh{
  height: 435px!important;
  width: 400px!important;
}


/*
==========================================
 Products section Design
==========================================
*/
.products .wrapper{
  background-color:var(--black-color);
}
.products .nav-tabs{
  border:0;
  justify-content: center;
}
.products .nav-tabs .nav-link{
  display:block;
  padding:0 30px;
  border: 1px solid var(--white-color);
  border-radius: 20px;
  background-color: var(--black-color);
  color:var(--white-color);
  height:36px;
  margin:10px;
  line-height: 34px;
  text-transform: uppercase;

}
.products .product-info .cat-parent,
.products .product-info .wishlist i{
  font-size: 0.875rem;
  color:var(--white-color);
  opacity: 0.6;
  text-transform: uppercase;
}
.products .product-title a{
  margin: 0 0 7px;
  display:block;
  color:var(--white-color);
  overflow:hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-transform: uppercase;
}
.products .rating i{
  color:#f4d632
}
.basket a i{
  color:var(--white-color);
}
/*
==========================================
 deal-of-the-day section Design
==========================================
*/
.deal-of-the-day{
  background-image:url("../images/img/img-4.jpg");
  background-position: center;
  background-color: #000;
  background-repeat: no-repeat;
  background-size: cover;
}


/*
==========================================
blog section Design
==========================================
*/
.blog-section{
  background-color:var(--black-color);
}


/*
==========================================
footer section Design
==========================================
/* ===== Footer Section ===== */
/* === Footer Section === */
.footer-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 60px 0 20px;
  position: relative;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  height: 70px;
  margin-bottom: 20px;
}

.footer-desc {
  color: #ccc !important;
  margin-bottom: 25px;
  line-height: 1.8 !important;
}

.footer-column h3 {
  color: #ffd700;
  font-size: 1.4rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #ccc;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-column ul li a:hover {
  color: #ffd700 !important;
  transform: translateX(5px);
}

.footer-column ul li i {
  color: #ffd700;
  margin-right: 10px;
  font-size: 0.8rem;
}

.contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #ccc !important;
}

.contact-info i {
  color: #ffd700;
  margin-right: 12px;
  min-width: 20px;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  color: #ffd700 !important;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #ffd700;
  color: #000 !important;
  transform: translateY(-3px);
}

/* Newsletter Section */
.newsletter-section {
  text-align: center;
  padding: 40px 0;
  margin: 40px 0;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.newsletter-section h3 {
  color: #ffd700;
  margin-bottom: 15px;
}

.newsletter-section p {
  color: #ccc;
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 30px 0 0 30px;
}

.newsletter-form button {
  padding: 15px 25px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
  border: none;
  border-radius: 0 30px 30px 0;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-methods {
  display: flex;
  gap: 15px;
}

.payment-methods i {
  font-size: 2rem;
  color: #ccc;
  transition: color 0.3s ease;
}

.payment-methods i:hover {
  color: #ffd700;
}

.footer-bottom p {
  color: #888 !important;
  margin: 0;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
}

/* Responsive Design */
@media (max-width: 991px) {
  .footer-content {
    gap: 30px;
  }
  
  .footer-column {
    flex: 1 0 45%;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 15px;
  }
  
  .newsletter-form input,
  .newsletter-form button {
    border-radius: 30px;
  }
}

@media (max-width: 575px) {
  .footer-column {
    flex: 1 0 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

 
/* navbar */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%; /* Hide initially from right */
  width: 75%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Transparent black */
  backdrop-filter: blur(12px); /* Smoky blur effect */
  box-shadow: -2px 0 12px rgba(0,0,0,0.6);
  transition: 0.4s ease-in-out;
  padding: 4rem 2rem 2rem;
  z-index: 9999;
  text-align: center;
}

.mobile-menu.active {
  right: 0; /* Slide in from right */
}

.mobile-menu .close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.mobile-menu .close-btn:hover {
  color: #ffd700; /* Golden hover */
  transform: rotate(90deg); /* Stylish effect */
}

.mobile-menu .nav-link {
  display: block;
  padding: 0.9rem 0;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.mobile-menu .nav-link:hover {
  color: #ffd700;
  letter-spacing: 1px;
}

/* overlay blur background */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  z-index: 999; /* mobile menu se thoda neeche */
  display: none;
}

/* active hone pr show hoga */
#overlay.active {
  display: block;
}

/* jab body ko no-scroll class milegi to background scroll lock ho jayega */
body.no-scroll {
  overflow: hidden;
}

/* ========================================== 
   New-Arrivals / Collections Section
========================================== */

/* Container for all cards */
#new-arrivals .row.align-items-center {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* space between cards */
  justify-content: center;
  margin: 0 auto;
}

/* Each collection card */
#new-arrivals .card-banner {
  flex: 1 1 calc(33.333% - 20px); /* 3 cards per row on desktop */
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 12px; /* rounded corners for the card */
}

/* Image inside card */
#new-arrivals .card-banner .card-thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px; /* rounded images */
  transition: transform 0.5s ease, opacity 0.5s ease;
}

/* Hover effect on images */
#new-arrivals .card-banner .card-thumb img:hover {
  transform: scale(1.2);
  opacity: 0.7;
}

/* Banner info (like text/buttons over image) */
.new-arrivals .banner-info {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 90%;
  text-align: center;
}

/* Text color adjustment for specific cards if needed */
.new-arrivals .card-banner:nth-child(2) h2,
.new-arrivals .card-banner:nth-child(2) p,
.new-arrivals .card-banner:nth-child(2) a {
  color: var(--black-color);
}

.new-arrivals .card-banner:nth-child(2) a::before,
.new-arrivals .card-banner:nth-child(2) a::after {
  background-color: var(--black-color);
}

/* ==========================================
   Responsive Adjustments
========================================== */

/* Laptops / smaller desktops */
@media (max-width: 1200px) {
  #new-arrivals .card-banner {
    flex: 1 1 calc(50% - 20px); /* 2 cards per row */
  }
}

/* Tablets */
@media (max-width: 768px) {
  #new-arrivals .card-banner {
    flex: 1 1 calc(50% - 15px); /* 2 cards per row with smaller gap */
  }
}

/* Mobile */
@media (max-width: 480px) {
  #new-arrivals .card-banner {
    flex: 1 1 100%; /* 1 card per row */
    margin-bottom: 15px;
  }
  #new-arrivals .row.align-items-center {
    gap: 15px; /* reduce spacing on mobile */
  }
}

/* banner video */

.hero-video {
  position: relative;
  height: 100vh; /* full screen video */
  overflow: hidden;
  margin-top: 80px; /* equal to navbar height */
}

.hero-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}


.hero-video .overlay {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  top: 40%;
}

.hero-video .overlay h1 {
  font-size: 3rem;
  font-weight: bold;
}

.hero-video .overlay p {
  font-size: 1.2rem;
  margin: 10px 0 20px;
}

.hero-video .overlay .btn {
  padding: 10px 25px;
  background: #c9a227;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
}

/* ---------- Mobile sidebar (replace older mobile-menu block) ---------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 420px;
  height: 100vh;
   background: rgba(0, 0, 0, 0.5) url("../images/your-image.jpg") center center / cover no-repeat;
  /* ↑ rgba for transparent black overlay (0.5 is 50% opacity) */
  backdrop-filter: blur(4px); /* optional: adds glassy blur */
  padding: 4rem 1.75rem 2rem;
  z-index: 2000;              /* above overlay */
  box-shadow: -12px 0 30px rgba(0,0,0,0.6);
  transition: right 0.35s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  will-change: right;
}


.mobile-menu.active {
  right: 0; /* slide in */
}

/* optional: background image behind dark overlay if you want */
.mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: -1;
}

/* close button */
.mobile-menu .close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  transition: transform 0.25s, color 0.25s;
}
.mobile-menu .close-btn:hover {
  color: var(--gold-color, #ffd700);
  transform: rotate(90deg);
}

/* menu links inside sidebar */
.mobile-menu .nav-link {
  display: block;
  padding: 0.9rem 0;
  font-size: 1.2rem;
  color: #fff;
  transition: color 0.2s, letter-spacing 0.2s;
}
.mobile-menu .nav-link:hover {
  color: var(--gold-color, #ffd700);
  letter-spacing: 1px;
}

/* ---------- Overlay ---------- */
#overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px); /* gentle blur */
  z-index: 1500;              /* below .mobile-menu (2000) */
  display: none;
  transition: opacity 0.25s ease;
}
#overlay.active {
  display: block;
  opacity: 1;
}



/* Preloader background */
/* Preloader background */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;  /* Black background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease; /* smooth fade-out */
}

/* Spinner design */
.spinner {
  position: relative;
  width: 60px;
  height: 60px;
}

.spinner div {
  position: absolute;
  border: 4px solid yellow;
  border-radius: 50%;
  animation: ripple 1.2s infinite;
}

.spinner div:nth-child(2) {
  animation-delay: -0.6s;
}

@keyframes ripple {
  0% {
    top: 28px; left: 28px;
    width: 0; height: 0;
    opacity: 1;
  }
  100% {
    top: 0; left: 0;
    width: 56px; height: 56px;
    opacity: 0;
  }
}

#preloader {
  background: linear-gradient(to right, #000, #111, #000);
}

/* About Us Section - Improved with Original Background */
.about-us {
  background: linear-gradient(135deg, var(--black-color) 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.about-us::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 213, 0, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.section-title .subtitle {
    font-weight: 600;
  display: block;
   font-size: 2.5rem;
  color: #fff89a; /* light yellow shade */
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white-color);
  text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.title-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, var(--gold-color), #ffed4e);
  margin: 1.5rem auto;
  border-radius: 2px;
}

.lead-text {
  font-size: 1.3rem !important;
  line-height: 1.9 !important;
  color: #e0e0e0 !important;
  margin-bottom: 3rem !important;
  font-weight: 300 !important;
  opacity: 0.95 !important;
}

.about-features {
  margin: 3rem 0;
}

.feature-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-item:hover {
  background: rgba(255, 215, 0, 0.05);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--gold-color), #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.feature-icon i {
  font-size: 1.8rem;
  color: var(--black-color);
}

.feature-content h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gold-color);
  text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.feature-content p {
  font-size: 1.05rem !important;
  line-height: 1.7 !important;
  color: #cccccc !important;
  margin: 0 !important;
  opacity: 0.9 !important;
  font-weight: 300 !important;
}

.quality-assurance {
  margin: 3rem 0;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.quality-title {
  font-size: 2rem !important;
  color: var(--gold-color) !important;
  text-align: center;
  margin-bottom: 2rem !important;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(255, 215, 0, 0.2);
}

.quality-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quality-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
  font-size: 1.15rem !important;
  color: #e0e0e0 !important;
  font-weight: 400 !important;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.quality-list li:hover {
  background: rgba(255, 215, 0, 0.05);
  transform: translateX(5px);
}

.quality-list li i {
  color: var(--gold-color);
  margin-right: 1rem;
  font-size: 1.3rem;
  min-width: 25px;
}

/* Fixed Button Alignment */
.about-cta {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.main-btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  text-align: center;
}

.outline-btn {
  background: transparent;
  border: 2px solid var(--gold-color);
  color: var(--gold-color) !important;
}

.outline-btn:hover {
  background: var(--gold-color);
  color: var(--black-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2.2rem;
  }
  
  .lead-text {
    font-size: 1.1rem !important;
  }
  
  .feature-item {
    padding: 1.5rem;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .feature-icon i {
    font-size: 1.5rem;
  }
  
  .feature-content h4 {
    font-size: 1.2rem;
  }
  
  .quality-assurance {
    padding: 1.5rem;
  }
  
  .quality-title {
    font-size: 1.7rem !important;
  }
  
  .quality-list li {
    font-size: 1rem !important;
  }
  
  .about-cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .main-btn {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 576px) {
  .about-us {
    padding: 3rem 0;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .title-divider {
    width: 60px;
  }
  
  .feature-content h4 {
    font-size: 1.1rem;
  }
  
  .feature-content p {
    font-size: 0.95rem !important;
  }
  
  .about-cta {
    flex-direction: column;
  }
  
  .main-btn {
    width: 100%;
    max-width: 220px;
  }
}

/* carousel */
/* Featured Carousel Section - FIXED FOR FULL IMAGE DISPLAY */
.featured-carousel {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.featured-carousel h2 {
  font-size: 2.5rem;
  color: #fff89a; /* light yellow shade */
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}


.featured-carousel p {
  color: #ccc;
  font-size: 1.1rem;
}

.carousel-inner {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  max-width: 400px; /* Maximum width limit */
  margin: 0 auto; /* Center align */
}

/* FIX: Remove fixed height and use responsive container */
.carousel-item {
  position: relative;
}

.carousel-image-container {
  width: 100%;
  overflow: hidden;
}

.carousel-item img {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  object-fit: cover; /* Show full image without cropping */
  max-height: 500px; /* Maximum height limit */
}

.carousel-caption {
  background: rgba(0, 0, 0, 0.7);
  padding: 15px 20px;
  border-radius: 8px;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  max-width: 80%;
}

.carousel-caption h3 {
  color: var(--gold-color);
  font-size: 1.5rem;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.carousel-caption p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.carousel-indicators {
  bottom: 10px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators .active {
  background-color: var(--gold-color);
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(212, 175, 55, 0.7);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-size: 60%;
  transition: all 0.3s ease;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: var(--gold-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .featured-carousel {
    padding: 3rem 0;
  }
  
  .featured-carousel h2 {
    font-size: 2rem;
  }
  
  .carousel-item img {
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .featured-carousel {
    padding: 2rem 0;
  }
  
  .carousel-item img {
    max-height: 350px;
  }
  
  .carousel-caption {
    bottom: 15px;
    padding: 10px 15px;
  }
  
  .carousel-caption h3 {
    font-size: 1.2rem;
  }
  
  .carousel-caption p {
    font-size: 0.9rem;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 576px) {
  .carousel-item img {
    max-height: 300px;
  }
  
  .carousel-caption {
    max-width: 90%;
    bottom: 10px;
    padding: 8px 12px;
  }
  
  .carousel-caption h3 {
    font-size: 1rem;
    margin-bottom: 5px;
  }
  
  .carousel-caption p {
    font-size: 0.8rem;
  }
  
  .carousel-indicators {
    bottom: 5px;
  }
  
  .carousel-indicators button {
    width: 8px;
    height: 8px;
  }
}


