/* ################ Header Section ##################### */
:root{
  overflow-x: hidden !important;
}
body {
  margin: 0;
  cursor: none; /* Hide default cursor */
  overflow-x: hidden;
  /* background: #111; */
}

/* Custom round cursor */
.custom-cursor {
  position: fixed;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: grey;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  animation: cursorPulse 1.5s infinite alternate;
}

@keyframes cursorPulse {
  0% { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-50%, -50%) scale(1.2); }
}

/* Smoke particle */
.smoke {
  position: fixed;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0.8;
  animation: smokeUp 1.5s forwards;
}

/* Smoke rise effect */
@keyframes smokeUp {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(0.5);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -200px) scale(2);
  }
}


/* Smoky Announcement Bar */
.announcement-bar {
  background: linear-gradient(135deg, rgba(20,20,20,0.9), rgba(60,60,60,0.85), rgba(100,100,100,0.7));
  color: #f1f1f1;
  font-size: 14px;
  padding: 6px 0;
  animation: fadeInDown 0.8s ease-in-out;
  backdrop-filter: blur(3px);
}

.announcement-bar a {
  color: #fff; /* Smoky gold text */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.announcement-bar a:hover {
  color: darkgray;
}

@keyframes fadeInDown {
  from {transform: translateY(-100%); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}

/* Navbar Styling */
.navbar {
  font-size: 16px;
  transition: all 0.4s ease;
  z-index: 999;
}

/* Navbar Brand Animation */
.navbar-brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  color: #222 !important;
  transition: color 0.3s ease;
}

/* Navbar Logo */
.logo-img {
  height: 80px; /* default height */
  width: auto;
  max-width: 150px; /* maximum width for larger screens */
  transition: all 0.3s ease;
}

.navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: var(--bs-navbar-color);
    background-color: white;
    border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo-img {
    height: 40px; /* slightly smaller on tablets */
  }
}

@media (max-width: 576px) {
  .logo-img {
    height: 35px; /* small on mobile */
  }
}

.navbar-brand:hover {
  color: darkgray !important;
}

/* Nav Links */
.nav-link {
  margin-left: 18px;
  font-weight: 500;
  color: #222 !important;
  position: relative;
  padding: 8px 14px; /* padding for bg effect */
  border-radius: 6px; /* rounded edges */
  transition: all 0.3s ease;
}

/* Hover effect with background color */
.nav-link:hover {
  background-color: darkgray; /* light grey */
  color: #000 !important;
}

/* Active link styling */
.nav-link.active {
  background-color: darkgray; /* active background */
  color: #000 !important;
  font-weight: 600;
}

/* Navbar on Scroll Effect */
.navbar.scrolled {
  /* background: #000 !important; */
  transition: background 0.5s ease;
}

.navbar.scrolled .nav-link:hover {
  color: #000 !important;
  background-color: rgba(169, 169, 169, 0.3);
}

.navbar.scrolled .navbar-brand {
  color: darkgray !important;
}

/* Smooth Fade Animation for Nav Items */
.navbar-nav li {
  opacity: 0;
  transform: translateY(-15px);
  animation: fadeInNav 0.6s forwards;
}

.navbar-nav li:nth-child(1) { animation-delay: 0.2s; }
.navbar-nav li:nth-child(2) { animation-delay: 0.4s; }
.navbar-nav li:nth-child(3) { animation-delay: 0.6s; }
.navbar-nav li:nth-child(4) { animation-delay: 0.8s; }
.navbar-nav li:nth-child(5) { animation-delay: 1s; }

@keyframes fadeInNav {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ################ End of Header Section ##################### */




/* ################ Home Section ################# */
.home {
  min-height: 100vh;
  background: linear-gradient(135deg, #111 0%, #1c1c1c 50%, #2a2a2a 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Title Styling */
.home-title {
  font-size: 2.8rem;
  line-height: 1.3;
  animation: fadeInLeft 1.2s ease;
}

.home-title span {
  color: darkgray;
  text-shadow: 0 0 8px rgba(255, 77, 77, 0.6);
}

.home-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  animation: fadeInLeft 1.5s ease;
}

.home-subtitle .highlight {
  color: #f8d28c;
  font-weight: 600;
}

/* WhatsApp Button */
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
  animation: fadeInUp 1.8s ease;
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
}

/* Vape Image Animation */
.vape-img-wrapper {
  position: relative;
  animation: floatUpDown 4s ease-in-out infinite;
}

.vape-img {
  max-width: 350px;
  border-radius: 20px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.6));
  transition: transform 0.4s ease;
}

.vape-img:hover {
  transform: scale(1.08) rotate(-3deg);
}

/* Floating Smoke Effect in Background */
.home::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200,200,200,0.4), transparent 70%);
  filter: blur(60px);
  animation: smokeMove 8s infinite linear;
}

.home::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 70%);
  filter: blur(80px);
  animation: smokeMove 10s infinite linear reverse;
}

/* Animations */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes smokeMove {
  0% { transform: translateY(0) scale(1); opacity: 0.5; }
  50% { transform: translateY(-40px) scale(1.2); opacity: 0.3; }
  100% { transform: translateY(0) scale(1); opacity: 0.5; }
}
/* Shop Now Button */
.btn-shop {
  background: white;
  color: #000;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 77, 77, 0.4);
  animation: fadeInUp 1.8s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-shop:hover {
  background: lightgray;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 25px rgba(255, 77, 77, 0.6);
  color: #000;
}


/* ################ About Section ################# */
.about {
  background: #f9f9f9;
  color: #333;
}

.section-title {
    text-align: left;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  animation: fadeInDown 1s ease;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 3px;
  background: darkgray;
  border-radius: 2px;
  animation: slideIn 1.2s ease;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  animation: fadeInLeft 1.2s ease;
}

.about-text .highlight {
  color: darkgray;
  font-weight: 600;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.about-list li {
  font-size: 1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  animation: fadeInUp 1.5s ease;
}

.about-list i {
  color: darkgray;
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Learn More Button */
.btn-learn {
  background: #111;
  color: #fff;
  padding: 10px 26px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  animation: fadeInUp 1.8s ease;
}

.btn-learn:hover {
  background: darkgray;
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 15px rgba(255, 77, 77, 0.5);
}

/* Image Styling */
.about-img-wrapper {
  text-align: center;
  animation: fadeInRight 1.2s ease;
}

.about-img {
  max-width: 100%;
  border-radius: 16px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.about-img:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* Keyframes */
@keyframes slideIn {
  from { width: 0; }
  to { width: 60px; }
}


/* Unique Vape Products Section CSS - No Conflicts */
.vape-products-section .vape-header {
    text-align: center;
    margin-bottom: 40px;
    animation: vapePageFadeInDown 0.8s ease-out;
}

.vape-products-section .vape-header h1 {
    color: darkgray;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin: 10px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.vape-products-section .vape-header p {
    color: rgba(255,255,255,0.9);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.vape-products-section .vape-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Desktop: 4 columns */
    gap: 25px;
    margin-bottom: 30px;
}

.vape-products-section .vape-product-card {
    perspective: 1000px;
    height: 380px;
    opacity: 0;
    transform: translateY(30px);
    animation: vapePageFadeInUp 0.6s ease-out forwards;
}

.vape-products-section .vape-product-card:nth-child(1) { animation-delay: 0.1s; }
.vape-products-section .vape-product-card:nth-child(2) { animation-delay: 0.2s; }
.vape-products-section .vape-product-card:nth-child(3) { animation-delay: 0.3s; }
.vape-products-section .vape-product-card:nth-child(4) { animation-delay: 0.4s; }
.vape-products-section .vape-product-card:nth-child(5) { animation-delay: 0.5s; }

.vape-products-section .vape-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    cursor: pointer;
}

.vape-products-section .vape-product-card:hover .vape-card-inner {
    transform: rotateY(180deg);
}

.vape-products-section .vape-card-front, 
.vape-products-section .vape-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    backface-visibility: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    overflow: hidden;
}

.vape-products-section .vape-card-front {
    background: rgba(245,245,245,0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(128,128,128,0.3);
}

.vape-products-section .vape-card-back {
    background: linear-gradient(135deg, #5a5a5a 0%, #3c3c3c 50%, #2c2c2c 100%);
    backdrop-filter: blur(10px);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
    color: white;
    border: 1px solid rgba(128,128,128,0.2);
}

.vape-products-section .vape-product-image {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.vape-products-section .vape-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed to contain for better mobile display */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px; /* Added padding around images */
}

.vape-products-section .vape-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vape-products-section .vape-product-card:hover .vape-image-overlay {
    transform: translateY(0);
}

.vape-products-section .vape-product-title {
    color: white;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.vape-products-section .vape-product-price {
    color: #e0e0e0;
    font-size: clamp(1.2rem, 2.8vw, 1.3rem);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.vape-products-section .vape-back-content {
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.vape-products-section .vape-back-title {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    color: white;
}

.vape-products-section .vape-back-price {
    font-size: clamp(1.4rem, 3.2vw, 1.7rem);
    font-weight: 800;
    color: #e0e0e0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.vape-products-section .vape-buy-now-btn {
    padding: 10px;
    background: linear-gradient(135deg, #6a6a6a 0%, #4a4a4a 50%, #2c2c2c 100%);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0,0,0,0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: block;
}

.vape-products-section .vape-buy-now-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.vape-products-section .vape-buy-now-btn:hover::before {
    left: 100%;
}

.vape-products-section .vape-buy-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
    background: linear-gradient(135deg, #fff 0%, #d5d4d4 50%, #b7b7b7 100%);
    color: #000 !important;
    font-weight: 700;
    border-color: rgba(255,255,255,0.5);
}

.vape-products-section .vape-show-more-container {
    text-align: center;
    margin-top: 30px;
    animation: vapePageFadeIn 0.8s ease-out 0.5s both;
}

.vape-products-section .vape-show-more-btn {
    padding: 15px 40px;
    background: linear-gradient(135deg, #6a6a6a 0%, #4a4a4a 100%);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.vape-products-section .vape-show-more-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.vape-products-section .vape-show-more-btn:hover::after {
    width: 300px;
    height: 300px;
}

.vape-products-section .vape-show-more-btn:hover {
    background: linear-gradient(135deg, #8a8a8a 0%, #6a6a6a 100%);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-3px);
}

/* Unique Keyframes for Vape Products Section */
@keyframes vapePageFadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes vapePageFadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes vapePageFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Tablet View - 3 columns */
@media (max-width: 1024px) {
    .vape-products-section .vape-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Mobile View - 2 columns */
@media (max-width: 768px) {
    .vape-products-section .vape-products-grid { 
        grid-template-columns: repeat(2, 1fr);
        gap: 15px; 
    }
    
    .vape-products-section .vape-product-card { 
        height: 250px; 
    }
    
    .vape-products-section .vape-card-back { 
        padding: 15px; 
    }
    
    .vape-products-section .vape-product-image img {
        padding: 5px;
    }
    
    .vape-products-section .vape-image-overlay {
        padding: 15px;
    }
}

/* Small Mobile - 2 columns maintained */
@media (max-width: 480px) {
    .vape-products-section .vape-header h1 {
        font-size: 18px;
    }
        
    .vape-products-section .vape-products-grid { 
        gap: 12px; 
    }
    
    .vape-products-section .vape-product-card { 
        height: 220px; 
    }
    
    .vape-products-section .vape-card-back { 
        padding: 12px; 
    }
    
    .vape-products-section .vape-back-content {
        gap: 12px;
    }
    
    .vape-products-section .vape-back-price, 
    .vape-products-section .vape-back-title {
        font-size: 16px;
    }
}

/* Extra Small Mobile - Still 2 columns */
@media (max-width: 360px) {
    .vape-products-section .vape-products-grid { 
        gap: 10px; 
    }
    
    .vape-products-section .vape-product-card { 
        height: 200px; 
    }
    
    .vape-products-section .vape-back-content { 
        gap: 10px; 
    }
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .home-title {
    font-size: 30px;
  }
  .home-subtitle {
  font-size: 15px;
  color: #ccc;
  animation: fadeInLeft 1.5s ease;
}
.navbar.scrolled {
  transition: background 0.5s ease;
}
  .vape-img {
    margin-top: 50px;
    max-width: 250px;
  }
  .about-img {
    max-width: 90%;
  }
  .product-card {
    max-width: 100%;
  }
}

/*############### 3d Effect section ##################### */

/* Section Styling */
.product-highlight {
  background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
  color: #fff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.product-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

/* Product Image 3D Effect */
.product-image {
  flex: 1;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.product-image img {
  width: 350px;
  max-width: 100%;
  border-radius: 20px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transform-style: preserve-3d;
}

.product-image img:hover {
  transform: rotateY(20deg) rotateX(10deg) scale(1.05);
  box-shadow: 0 30px 60px rgba(0,0,0,0.7);
}

/* Product Details */
.product-details {
  flex: 1;
}

.product-details h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #f8f8f8;
}

.product-details p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #cfcfcf;
}

/* Buy Button */
.buy-btn {
  display: inline-block;
  padding: 14px 30px;
  background: white;
  color: #000 !important;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  /* box-shadow: 0 10px 20px rgba(255, 65, 108, 0.4); */
}

.buy-btn:hover {
  background: lightgray !important;
  color: black;

  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px rgba(251, 247, 248, 0.6);
}

/* Responsive */
@media (max-width: 992px) {
  .product-content {
    flex-direction: column;
    text-align: center;
  }
  .product-details h2 {
    font-size: 2rem;
  }
  .product-details p {
    font-size: 1rem;
  }
}

/* ################# Next Section################### */

/* Section Styling */
.animated-products {
  /* background: linear-gradient(135deg, #0d0d0d, #1c1c1c); */
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  background: darkgray;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glowText 2s infinite alternate;
}

@keyframes glowText {
  from { text-shadow: 0 0 10px #fff; }
  to { text-shadow: 0 0 25px darkgray; }
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-content: center;
}

/* Product Card Flip */
.product-card {
  perspective: 1000px;
  transition: transform 0.6s ease;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 350px;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}

.product-card:hover .card-inner {
  transform: rotateY(180deg);
}

/* Front Side */
.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  backface-visibility: hidden;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.card-front {
  background: #222;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.card-front img {
  width: 230px;
  margin-bottom: 20px;
}

.card-front h3 {
  font-size: 1.5rem;
  color: #fff;
}

/* Back Side */
.card-back {
  background: darkgray;
  color: #000 !important;
  transform: rotateY(180deg);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card-back p {
  margin: 15px 0 25px;
  font-size: 1rem;
  line-height: 1.5;
}

/* Buy Button */
.buy-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #fff;
  color: #000;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s ease;
}

.buy-btn:hover {
  background: #000;
  color: #fff;
  transform: scale(1.05);
}

/* Animation on Scroll */
.product-card {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s forwards;
}

.product-card:nth-child(1) { animation-delay: 0.3s; }
.product-card:nth-child(2) { animation-delay: 0.6s; }
.product-card:nth-child(3) { animation-delay: 0.9s; }

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Section Styling */
.animated-products {
  /* background: linear-gradient(135deg, #0d0d0d, #1c1c1c); */
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  background: darkgray;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glowText 2s infinite alternate;
}

@keyframes glowText {
  from { text-shadow: 0 0 10px #fff; }
  to { text-shadow: 0 0 25px darkgray; }
}


/* 🌌 Testimonials Background */
.testimonials {
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
  position: relative;
  overflow: hidden;
}

/* Title Styling */
.section-title h3 {
  font-size: 1.8rem;
  color: #fff;
}
.section-title p {
  font-size: 0.9rem;
}

/* Glassmorphism Card */
.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}

/* Animated Gradient Border */
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(45deg, darkgray, #ffbb33, #44ffdd, darkgray);
  background-size: 300% 300%;
  animation: borderAnim 6s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

@keyframes borderAnim {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hover Glow + Lift */
.testimonial-card:hover {
  transform: translateY(-12px) scale(1.06);
  box-shadow: 0 0 40px rgba(255,255,255,0.2);
}

/* Review Text */
.testimonial-card .review {
  font-size: 0.95rem;
  font-style: italic;
  color: #ddd;
  line-height: 1.6;
}

/* Customer Image */
.testimonial-card img {
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
}

/* Fade-in on Scroll */
.testimonial-card {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 1s ease forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.3s; }
.testimonial-card:nth-child(2) { animation-delay: 0.6s; }
.testimonial-card:nth-child(3) { animation-delay: 0.9s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Why Choose Us Section */
.why-choose h2 {
  text-align: center;
  color: black !important;
  justify-self: center;
  font-size: 2rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.choose-card {
  background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
  border-radius: 16px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  cursor: pointer;
  transform-style: preserve-3d;
}

.choose-card:hover {
  transform: translateY(-10px) scale(1.05) rotateX(5deg);
  box-shadow: 0 15px 25px rgba(0,0,0,0.6);
}

.choose-card .icon {
  font-size: 2.5rem;
  transition: transform 0.3s ease;
}

.choose-card:hover .icon {
  transform: scale(1.2) rotate(10deg);
  color: darkgray;
}

@media (max-width: 767px) {
  .choose-card {
    padding: 20px;
  }
  .choose-card .icon {
    font-size: 2rem;
  }
}


/* CTA Section */
.cta-section {
  background: darkgray;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  margin: 40px auto;
}

.cta-section h2 {
  font-size: 2rem;
  animation: fadeInDown 1s ease-in-out;
}

.cta-section p {
  font-size: 1.1rem;
  animation: fadeInUp 1.2s ease-in-out;
}

/* Animated CTA Button */
.cta-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  background: #1e1e1e;
  border: none;
  border-radius: 50px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.413);
  transition: all 0.4s ease;
  z-index: -1;
}

.cta-btn:hover::before {
  left: 0;
}

.cta-btn:hover {
  transform: scale(1.08);
  background: #000;
  color: #000;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
  .cta-section h2 {
    font-size: 1.5rem;
  }
  .cta-section p {
    font-size: 1rem;
  }
  .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    animation: fadeInDown 1s ease;
  }
  .section-title::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 40%;
    width: 60px;
    height: 3px;
    background: darkgray;
    border-radius: 2px;
    animation: slideIn 1.2s ease;
}
}

/* ########## Special offer sectio ############# */

.special-offer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.special-offer h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: darkgray;
  text-shadow: 0 0 10px darkgray;
}

.special-offer p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

#countdown {
  font-size: 1.5rem;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, darkgray, #fff);
  color: #000;
  font-size: 1.2rem;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 20px darkgray, 0 0 40px #fff, 0 0 60px #000;
  transition: 0.3s;
}

.cta-button:hover {
  box-shadow: 0 0 30px black, 0 0 60px darkgray, 0 0 90px #fff;
  transform: scale(1.05);
}

/* Footer Section */
.footer-section {

  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  background-color: black;
  color: #fff;

}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: darkgray;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.6rem;
}

/* Remove underline from all footer links */
.footer-link {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-link:hover {
  color: #ffcc00;
  text-decoration: none; /* No underline */
}

/* Social Icons */
.footer-social iframe {
  filter: brightness(0) invert(1);
  transition: 0.3s;
  vertical-align: middle;
}

.footer-social iframe:hover {
  filter: brightness(0) invert(0.8) sepia(1) hue-rotate(300deg);
  transform: scale(1.2);
}

/* WhatsApp Button */
.whatsapp-btn {
  display: inline-block;
  background: #25D366;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(37,211,102,0.6);
  margin-top: 10px;
}

.whatsapp-btn:hover {
  background: #1ebe57;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(37,211,102,0.8);
}

.footer-section hr {
  margin: 1.5rem 0;
  border-color: rgba(255,255,255,0.2);
}

/* ================= Responsive ================= */

/* Tablets */
@media (max-width: 992px) {
  .footer-section .row > div {
    margin-bottom: 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .footer-title {
    font-size: 1.1rem;
  }

  .footer-links li,
  .footer-contact li {
    font-size: 0.85rem;
  }

  .footer-social iframe {
    width: 20px !important;
    height: 20px !important;
    margin-right: 8px;
  }

  .whatsapp-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  .call-float, .whatsapp-float {
  bottom: 25px !important;
}
}

/* Extra small devices */
@media (max-width: 480px) {
  .footer-title {
    font-size: 1rem;
  }

  .footer-links li,
  .footer-contact li {
    font-size: 0.8rem;
  }

  .whatsapp-btn {
    padding: 7px 14px;
    font-size: 0.8rem;
  }
  .mission-vision{
    text-align: center;
  }
  .call-float, .whatsapp-float {
  bottom: 25px !important;
}
}

/* WhatsApp Floating CTA */
.whatsapp-float {
  z-index: 999;
  height: 50px;
  width: 50px;
  position: fixed;
  bottom: 55px;
  right: 25px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  animation: glowWhatsApp 2s infinite;
  transition: transform 0.3s ease;
}
.whatsapp-float i {
  font-size: 1.5rem;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
@keyframes glowWhatsApp {
  0% { box-shadow: 0 0 5px #25d366; }
  50% { box-shadow: 0 0 20px #25d366; }
  100% { box-shadow: 0 0 5px #25d366; }
}

/* Call Floating CTA */
.call-float {
  z-index: 999;
  height: 50px;
  width: 50px;
  position: fixed;
  bottom: 55px;
  left: 25px;
  background: #28a745;
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  animation: glowCall 2s infinite;
  transition: transform 0.3s ease;
}
.call-float i {
  font-size: 1.3rem;
}
.call-float:hover {
  transform: scale(1.1);
}
@keyframes glowCall {
  0% { box-shadow: 0 0 5px #28a745; }
  50% { box-shadow: 0 0 20px #28a745; }
  100% { box-shadow: 0 0 5px #28a745; }
}

.btn-dark{
  background-color: white;
  color: black;
}
.btn-learn:hover{
  background-color: darkgray;
  color: white;
 }