/* ===============================
   RESET AND BASE STYLES
   =============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: white;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===============================
   FLOATING ACTION BUTTONS
   =============================== */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1001;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.call-btn {
    background: linear-gradient(135deg,#0077be,#104b6e);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #0e662b);
    animation-delay: -1.5s;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ===============================
   NAVIGATION
   =============================== */
.navbar {
    position:relative;
    top: 0;
    width: 100%;
    /* background: rgba(0, 119, 190, 0.1); */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    /* background: rgba(0, 119, 190, 0.95); */
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #f1f4f7;
    height: 100px;
    
}
.logo {
    
    width: 80px;
    height: 80px;
    object-fit: contain; /* Keeps image aspect ratio inside 100x100 box */
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 5px  space between logo and text;
    font-size: 2rem;
    color:rgb(65, 146, 36);
    font-weight: 500;
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 1rem;
    color: #00d4ff;
    filter: drop-shadow(0 2px 5px rgba(0, 212, 255, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    /* right:150px; */
   text-align: center;
    color: #005a93;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-size: 18px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #0077be);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #043c5d;
    transform: translateY(-2px);
}

.shopping-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #005a93; /* Bootstrap blue */
  color: white;
  border: none;
  padding: 10px 16px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  bottom: 5px;
}

.shopping-btn i {
  font-size: 18px;
}

.cart-count {
  background-color:  #005a93;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  right: -5px;
}
/* Hamburger icon */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #003d5c;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}
/* SCROLLING EFFECT  */

 .marquee-container {
      width: 100%;
      height: 40px;
      overflow: hidden;
    background-color: #03366a;
      z-index:3;
    }

    .marquee-content {
      display: inline-block;
      white-space: nowrap;
      animation: scroll-left 20s linear infinite;
          

    }

    .marquee-item {
      display: inline-flex;
      align-items: center;
      margin-right: 60px;
      color:white;
      font-size: 15px;
        
    }

    .marquee-item img {
      height:50px;
      width:50px;
      margin-right: 10px;
    }

    @keyframes scroll-left {
      0% {
        transform: translateX(100%);
      }
      100% {
        transform: translateX(-100%);
      }
    }
/* ===============================
   HERO SECTION WITH SLIDER
   =============================== */
.hero {
    height:80vh;
    width:100%;
    position: relative;
    overflow: hidden;    
}

/* hero slider */
.slide {
    position: absolute;
    left:140px;
    width:1240px;
    height:620px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.9s ease;
     overflow: hidden; /* Needed for pseudo-element to stay contained */
        z-index: 1;
  
}

.slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
  transition: transform 0.8s ease;
}

/* Zoom on hover */
.slide::before {
  animation: zoomBg 10s ease-in-out infinite;
}

@keyframes zoomBg {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: white;
    z-index: 2;
    animation: slideUp 5s ease;
    max-width: 800px;
    padding: 0 2rem;
    justify-content: center;
    opacity: 0;
}

.slide-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    padding: 0px;
    text-shadow: 0 2px 30px rgba(24, 25, 28, 0.5);
   

}

.slide-content p {
    font:bold;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color:white;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.cta-btn {
    background:#005a93;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.slider-controls {
    position: absolute;
    top: 40%;
    left:10%;
    width: 80%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
    transform: translateY(-50%);
}

.prev-btn, .next-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.slider-indicators {
    left:50%;
    position: absolute;
    bottom: 50px;
  transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
   
}

.indicator.active {
    background:#005a93;
    transform: scale(1.2);
}

.medical-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 4rem;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(2) {
    animation-delay: -2s;
}

.floating-icon:nth-child(3) {
    animation-delay: -4s;
}
/* video section  */
.video-text-section {
  display: flex;
  justify-content: center;
  padding: 40px;
  gap: 30px;
  background-color: #f9f9f9;
  flex-wrap: wrap;
  align-items: flex-start; /* Align video and text to the top */
}

.video-container {
  flex: 0 0 auto;
}

.video-container video {
  width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.text-content {
  flex: 1;
  width: 400px;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px;
  gap: 10px;
}

.text-content h2 {
  font-size: 26px;
  color:#005a93;
}

.text-content p {
  font-size: 18px;
  color: #464444;
  line-height: 1.6;
}

/* ===============================
   PRODUCTS SECTION
   =============================== */
.products-section {
    padding: 1rem 0;
     scroll-behavior: smooth;
    /* background: linear-gradient(135deg, #f8f9fa, #ebf7fa); */
}   


.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #005a93;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0077be, #00d4ff);
    border-radius: 2px;
}

.product-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.category-btn {
    background: white;
    border: 2px solid #005a93;
    color: #005a93;
    padding: 1rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 119, 190, 0.1);
}

.category-btn.active, .category-btn:hover {
    background: linear-gradient(135deg, #0077be, #00d4ff);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 119, 190, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px;
  background-color: #fff;
}

.product-content {
  flex-grow: 1;
}

.product-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
}

/* Visit Store button - reduced width */
.visit-store-btn {
  flex: 1;
  padding: 10px 14px;
  background-color: #005a93;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: 0.3s ease;
}

 .visit-store-btn:hover {
    background: #05324e;
    transform: scale(1.00);
}
/* Round Icon Buttons */
.circle-btn {
  width: 40px;
  height: 40px;
  background-color: #28a745; /* Default green, overridden below */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 18px;
}

/* Specific Colors */
.call-btn {
  background-color: #28a745;
}

.whatsapp-btn {
  background-color: #25D366;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.product-image {
    text-align: center;
    margin-bottom: 1.5rem;
   
}
.product-image img:hover::before{
     transform: scale(1.1);
}
.product-image i {
    font-size: 4rem;
    color: #0077be;
    margin-bottom: 1rem;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #005a93;
    font-weight: 600;
}

.product-info p {
    color: #464444;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0077be;
    margin-bottom: 1.5rem;
}

.product-image-slider {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    
}



.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
    height:100%;
    opacity: 0;
    transition: opacity 0.s ease-in-out;
}

.slide-image.active {
    opacity: 1;
    z-index: 1;
}


.add-to-cart {
    background: linear-gradient(135deg, #0077be, #00d4ff);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    width: 100%;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 119, 190, 0.3);
}

/* ===============================
   TESTIMONIALS SECTION
   =============================== */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1874ac, #03366a);
    color: white;
}

.testimonials-section .section-title {
    color: white;
}

.testimonials-section .section-title::after {
    background: linear-gradient(90deg, #ffffff, #ffffff);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-content {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.testimonial-text p {
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-text h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.position {
    opacity: 0.8;
    font-size: 0.9rem;
}

.rating {
    text-align: center;
    color: #ffd700;
}

/* ===============================
   CONTACT SECTION
   =============================== */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.info-item i {
    font-size: 2rem;
    color: #0077be;
    margin-top: 0.5rem;
}

.info-item h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-actions h3 {
    font-size: 2rem;
    color: #0077be;
    margin-bottom: 1rem;
}

.contact-actions p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-btn.call {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.contact-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #20b954);
}

.contact-btn.email {
    background: linear-gradient(135deg, #0077be, #00d4ff);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.map-container {
    margin-top: 3rem;
    border-radius: 15px;
    overflow: hidden;
}

/* ===============================
   CART SECTION
   =============================== */
.cart-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.cart-items {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info {
    flex: 1;
    margin-left: 1rem;
}

.cart-item-info h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0077be;
    margin-bottom: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background: #0077be;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: #005a93;
}

.quantity {
    width: 60px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0.5rem;
}

.remove-item {
    background: #ff4757;
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-item:hover {
    background: #ff3742;
}

.cart-summary {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.cart-total {
    text-align: center;
}

.cart-total h3 {
    font-size: 2rem;
    color: #0077be;
    margin-bottom: 2rem;
}

.checkout-btn {
    background: linear-gradient(135deg, #0077be, #00d4ff);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    width: 100%;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 119, 190, 0.3);
}

/* Hidden Vyapar link - available in code but not displayed */
.vyapar-link {
    display: none !important;
}

/* ===============================
   FOOTER
   =============================== */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #00d4ff;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
    color: #00d4ff;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #00d4ff;
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00d4ff;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #f5f5f5; /* Smoke white */
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.footer-bottom a {
  color: #f5f5f5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #ffffff; /* Brighter white on hover */
  text-decoration: underline;
}

/* ===============================
   ANIMATIONS
   =============================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* FOR HEADING TAG NAMES SLIDING ON SLIDE */
@keyframes slideUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.slide-content {
  opacity: 0;
}

.slide-content.animate {
  animation: slideUp 1.5s ease forwards;
  animation-delay: 0.5s;
}



@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */
/* ===============================
   ENHANCED MOBILE RESPONSIVE DESIGN
   =============================== */

 /* Mobile First Approach - Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }
    
    /* Navigation with Hamburger - FIXED: Added visibility and z-index */
    .nav-container {
        padding: 0.5rem 1rem;
        height: 60px;
        flex-direction: row;
        justify-content: space-between;
        position: relative;
        z-index: 1001;
    }
    
    .logo {
        width: 40px;
        height: 40px;
    }
    
    .nav-logo {
        font-size: 1.1rem;
        gap: 5px;
    }
    
    .hamburger {
        display: flex;
        z-index: 1002;
    }
    
    /* FIXED: Navigation menu visibility and styling */
.nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem;
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s ease, visibility 0.3s ease, opacity 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
}

.nav-menu.active {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
}

.nav-link {
    font-size: 16px;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(0, 61, 92, 0.1);
    color: #003d5c;
    text-decoration: none;
    display: block;
    font-weight: 500;
    transition: background-color 0.2s ease, border-radius 0.2s ease;
}

.nav-link:hover {
    background-color: rgba(0, 212, 255, 0.1);
    border-radius: 4px;
}

/* Alternative approach - using transform: translateY instead of translateX */
/* This might work better on some devices */
.nav-menu-alternative {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem;
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
}

.nav-menu-alternative.active {
    transform: translateY(0);
    max-height: 400px;
}

/* Simplest approach - just using max-height */
.nav-menu-simple {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 0 1rem;
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-menu-simple.active {
    max-height: 400px;
    padding: 1rem;
}
    .shopping-btn {
        padding: 8px 16px;
        font-size: 14px;
        margin-top: 1rem;
        align-self: flex-start;
    }
    
    /* Marquee - Smaller */
    .marquee-container {
        height: 30px;
    }
    
    .marquee-item {
        font-size: 12px;
        margin-right: 30px;
    }
    
    .marquee-item img {
        height: 25px;
        width: 25px;
        margin-right: 6px;
    }
    
    /* Hero Section - Compact */
    .hero {
        height: 45vh;
        min-height: 300px;
    }
    
    .slide {
        left: 0;
        width: 100%;
        height: 100%;
        padding: 0 10px;
    }
    
    .slide-content {
        padding: 1rem;
        max-width: 100%;
    }
    
    .slide-content h1 {
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
        line-height: 1.2;
    }
    
    .slide-content p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    
    .cta-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        border-radius: 25px;
    }
    
    /* Remove slider controls to save space */
    .slider-controls {
        display: none;
    }
    
    .slider-indicators {
        bottom: 15px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    /* FIXED: Video Text Section - Full width video, no logo */
    .video-text-section {
        padding: 15px 10px;
        flex-direction: column;
        gap: 15px;
    }
    
    .video-container {
        width: 100%;
        position: relative;
    }
    
    .video-container video {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 250px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    /* Hide logo in video section */
    .video-container .logo,
    .video-container .brand-logo {
        display: none;
    }
    
    .text-content {
        width: 100%;
        padding: 10px;
        text-align: center;
    }
    
    .text-content h2 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #003d5c;
    }
    
    .text-content p {
        font-size: 13px;
        line-height: 1.6;
        color: #666;
    }
    
    /* FIXED: Products Section - Beautiful cards with shadows and better button layout */
    .products-section {
        padding: 2rem 0;
         scroll-behavior: smooth;
    }
    
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title::after {
        width: 50px;
        height: 2px;
        bottom: -8px;
    }
    
    .product-categories {
        flex-direction: column;
        gap: 0.4rem;
        margin-bottom: 1.5rem;
    }
    
    .category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        width: 70%;
        max-width: 180px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    /* FIXED: Beautiful product cards with shadows and proper spacing */
    .product-card {
        padding: 1rem;
        margin: 0 10px;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.05);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .product-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }
    
    .product-image-slider {
        height: 180px;
        margin-bottom: 1rem;
        border-radius: 8px;
        overflow: hidden;
    }
    
    /* FIXED: Keep image aspect ratio and prevent shrinking */
    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 8px;
    }
    
    .product-info {
        margin-bottom: 1rem;
    }
    
    .product-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
        color: #003d5c;
        font-weight: 600;
    }
    
    .product-info p {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.5;
        color: #666;
    }
    
    .product-price {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: #00d4ff;
        font-weight: 700;
    }
    
    /* FIXED: Buttons in one line with proper sizing */
    .product-buttons {
        display: flex;
        flex-direction: row;
        align-items:stretch;
        justify-content:flex-start;
        padding:10px;
         width:100%;
    }
    
    .visit-store-btn {
        padding: 8px 12px;
        font-size: 11px;
        flex: 1;
        width:100%;
        /* max-width: 120px; */
        border-radius: 20px;
        background: linear-gradient(45deg, #005a93, #005a93);
        color: white;
        border: none;
        font-weight: 500;
        transition: all 0.2s ease;
    }
    
    .visit-store-btn:hover {
        transform: scale(1.02);
        box-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
    }
    
    .circle-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
        border-radius: 50%;
        background: #005a93;
        border: 2px solid #00d4ff;
        color:white;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all 0.2s ease;
    }
    
    .circle-btn:hover {
        background: #00d4ff;
        color: white;
        transform: scale(1.1);
    }
    
    /* Testimonials Section - Compact */
    .testimonials-section {
        padding: 2rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .testimonial-content {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .testimonial-image img {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-text p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .testimonial-text h4 {
        font-size: 0.9rem;
    }
    
    .position {
        font-size: 0.75rem;
    }
    
    /* Contact Section - Compact */
    .contact-section {
        padding: 2rem 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-info {
        gap: 1rem;
    }
    
    .info-item {
        padding: 1rem;
        border-radius: 8px;
        flex-direction: column;
        text-align: center;
    }
    
    .info-item i {
        font-size: 1.3rem;
        margin-top: 0;
        margin-bottom: 0.4rem;
    }
    
    .info-item h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .info-item p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .contact-actions {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .contact-actions h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-actions p {
        font-size: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 0.6rem;
        width: 100%;
    }
    
    .contact-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
        width: 100%;
        justify-content: center;
    }
    
    /* Cart Section - Compact */
    .cart-section {
        padding: 2rem 0;
    }
    
    .cart-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cart-items {
        padding: 1rem;
        border-radius: 8px;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        padding: 0.8rem 0;
    }
    
    .cart-item-info {
        margin-left: 0;
        width: 100%;
    }
    
    .cart-item-info h4 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .cart-item-price {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .quantity-controls {
        align-self: flex-end;
        gap: 0.4rem;
    }
    
    .quantity-btn {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .quantity {
        width: 45px;
        padding: 0.3rem;
        font-size: 0.8rem;
    }
    
    .remove-item {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .cart-summary {
        padding: 1rem;
        border-radius: 8px;
    }
    
    .cart-total h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .checkout-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Footer - Compact */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-logo {
        justify-content: center;
        font-size: 1.2rem;
    }
    
    .footer-logo i {
        font-size: 1.3rem;
    }
    
    .footer-section p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-section ul li a {
        font-size: 0.8rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .social-links a {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .footer-bottom {
        padding-top: 1rem;
        font-size: 0.75rem;
    }
    
    /* Floating Actions - Smaller */
    .floating-actions {
        bottom: 10px;
        right: 10px;
        gap: 8px;
    }
    
    .floating-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Utility Classes for Mobile */
    .mobile-center {
        text-align: center;
    }
    
    .mobile-full-width {
        width: 100%;
    }
    
    .mobile-small-text {
        font-size: 0.8rem;
    }
    
    .mobile-margin-bottom {
        margin-bottom: 0.8rem;
    }
    
    .mobile-padding {
        padding: 0.8rem;
    }
    
    /* Hide scroll indicators on mobile */
    .scroll-indicator {
        display: none;
    }
    
    /* Compact spacing utilities */
    .mobile-compact-spacing {
        margin: 0.5rem 0;
        padding: 0.5rem;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }
    
    .nav-container {
        padding: 0.4rem 0.8rem;
        height: 55px;
    }
    
    .logo {
        width: 35px;
        height: 35px;
    }
    
    .nav-logo {
        font-size: 1rem;
    }
    
    .nav-menu {
        top: 55px;
        padding: 0.8rem;
    }
    
    .hamburger span {
        width: 22px;
        height: 2px;
    }
    
    .hero {
        height: 40vh;
        min-height: 280px;
    }
    
    .slide-content h1 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .slide-content p {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
    }
    
    .cta-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .video-text-section {
        padding: 10px 8px;
    }
    
    .video-container video {
        max-height: 200px;
    }
    
    .text-content {
        padding: 8px;
    }
    
    .text-content h2 {
        font-size: 16px;
    }
    
    .text-content p {
        font-size: 12px;
    }
    
    .product-card {
        padding: 0.8rem;
        margin: 0 8px;
    }
    
    .product-image-slider {
        height: 160px;
    }
    
    .product-info h3 {
        font-size: 1rem;
    }
    
    .product-info p {
        font-size: 0.75rem;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
    
    .visit-store-btn {
        padding: 6px 10px;
        font-size: 10px;
        max-width: 110px;
    }
    
    .circle-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .testimonial-card {
        padding: 0.8rem;
    }
    
    .testimonial-image img {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-text p {
        font-size: 0.75rem;
    }
    
    .info-item {
        padding: 0.8rem;
    }
    
    .contact-actions {
        padding: 1rem;
    }
    
    .contact-actions h3 {
        font-size: 1.1rem;
    }
    
    .contact-btn {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }
    
    .cart-items {
        padding: 0.8rem;
    }
    
    .cart-item {
        padding: 0.6rem 0;
    }
    
    .cart-summary {
        padding: 0.8rem;
    }
    
    .floating-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 60vh;
    }
    
    .slide-content h1 {
        font-size: 1.6rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .video-text-section {
        flex-direction: column;
        gap: 15px;
    }
    
    .video-container video {
        width: 100%;
        max-height: 200px;
    }
    
    .text-content {
        width: 100%;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .product-image img,
    .testimonial-image img,
    .logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .product-card:hover {
        transform: none;
    }
    
    .floating-btn:hover {
        transform: none;
    }
    
    .contact-btn:hover {
        transform: none;
    }
    
    /* Increase touch targets */
    .nav-link {
       
    text-align: center;
     font-size: 16px;
    /* padding: 0.8rem 6.2rem; */
    border-bottom: 1px solid rgba(0, 61, 92, 0.1);
    color: #003d5c;
    text-decoration: none;
    display: block;
    font-weight: 500;
    transition: background-color 0.2s ease, border-radius 0.2s ease;
    }
    
    .category-btn {
        padding: 0.8rem 1.2rem;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
    }
    
    .hamburger {
        padding: 0.5rem;
    }
}

/* Accessibility improvements for mobile */
@media (max-width: 576px) {
    /* Ensure sufficient color contrast */
    .nav-link {
        color: #003d5c;
    }
    
    .slide-content {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 8px;
        padding: 1rem;
    }
    
    /* Improve readability */
    .product-info p,
    .testimonial-text p,
    .info-item p {
        line-height: 1.5;
    }
    
    /* Focus indicators */
    button:focus,
    .nav-link:focus,
    .contact-btn:focus,
    .hamburger:focus {
        outline: 2px solid #00d4ff;
        outline-offset: 2px;
    }
}

/* Animation optimizations for mobile */
@media (max-width: 576px) {
    .slide::before {
        animation: none;
    }
    
    .floating-btn {
        animation: none;
    }
    
    /* Reduce motion for better performance */
    @media (prefers-reduced-motion: reduce) {
        .nav-menu {
            transition: none;
            text-align: center;
        }
        
        .hamburger span {
            transition: none;
        }
    }
}

/* Print styles for mobile */
@media print and (max-width: 576px) {
    .hamburger {
        display: none;
    }
    
    .nav-menu {
        position: static;
        transform: none;
        background: none;
        box-shadow: none;
    }
    
    .hero {
        height: auto;
        padding: 1rem 0;
    }
    
    .slide-content h1 {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        page-break-inside: avoid;
    }
    
    .floating-actions {
        display: none;
    }
}


/* Mobile Product Card Improvements */
@media (max-width: 576px) {
    /* Product Cards - Beautiful layout matching the image */
    .product-card {
        padding: 1.2rem;
        margin: 0 10px 1.5rem 10px;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        overflow: hidden;
    }
    
    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    }
    
    /* Product Image Container */
    .product-image-slider {
        height: 200px;
        margin-bottom: 1.2rem;
        border-radius: 12px;
        overflow: hidden;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 12px;
        transition: transform 0.3s ease;
    }
    
    .product-card:hover .product-image img {
        transform: scale(1.05);
    }
    
    /* Product Info */
    .product-info {
        margin-bottom: 1.2rem;
        text-align: center;
    }
    
    .product-info h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
        color: #003d5c;
        font-weight: 600;
        line-height: 1.3;
    }
    
    .product-info p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.6;
        color: #666;
        text-align: center;
    }
    
    .product-price {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
        color: #007bff;
        font-weight: 700;
        text-align: center;
    }
    
    /* Buttons Container - Center aligned */
    .product-buttons {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 0;
        width: 100%;
    }
    
    /* Visit Store Button - Blue theme matching image */
    .visit-store-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        flex: 1;
        max-width: 140px;
        border-radius: 25px;
        background: linear-gradient(135deg,#005a93 0%, #005a93 100%);
        color: white;
        border: none;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    }
    
    .visit-store-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4);
        background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    }
    
    /* Circle Buttons - Phone and WhatsApp */
    .circle-btn {
        width: 44px;
        height: 44px;
        font-size: 16px;
        border-radius: 50%;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all 0.3s ease;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    /* Phone Button - Blue */
    .phone-btn {
        background: linear-gradient(135deg, #005a93 0%, #005a93 100%);
        color: white;
    }
    
    .phone-btn:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4);
    }
    
    /* WhatsApp Button - Green */
    .whatsapp-btn {
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        color: white;
    }
    
    .whatsapp-btn:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    }
    
    /* Products Grid */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem 0;
    }
    
    /* Section Title */
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
        text-align: center;
        color: #003d5c;
        font-weight: 700;
    }
    
    .section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
        margin: 0.5rem auto 0;
        border-radius: 2px;
    }
    
    /* Category Buttons */
    .category-btn {
        padding: 0.8rem 1.6rem;
        font-size: 0.9rem;
        border-radius: 25px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        color: #495057;
        border: 2px solid #dee2e6;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .category-btn.active {
        background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
        color: white;
        border-color: #007bff;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 123, 255, 0.3);
    }
    
    .category-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
}

/* Extra small devices adjustments */
@media (max-width: 480px) {
    .product-card {
        padding: 1rem;
        margin: 0 8px 1.2rem 8px;
    }
    
    .product-image-slider {
        height: 180px;
        margin-bottom: 1rem;
    }
    
    .product-info h3 {
        font-size: 1.1rem;
    }
    
    .product-info p {
        font-size: 0.85rem;
    }
    
    .product-price {
        font-size: 1.3rem;
    }
    
    .visit-store-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        max-width: 120px;
    }
    
    .circle-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* Additional improvements for better UX */
@media (max-width: 576px) {
    /* Smooth scrolling for product section */
    .products-section {
        scroll-behavior: smooth;
    }
    
    /* Loading state for images */
    .product-image img {
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .product-image img.loaded {
        opacity: 1;
    }
    
    /* Focus states for accessibility */
    .visit-store-btn:focus,
    .circle-btn:focus {
        outline: 3px solid rgba(0, 123, 255, 0.5);
        outline-offset: 2px;
    }
    
    /* Text selection styling */
    .product-info h3::selection,
    .product-info p::selection {
        background: rgba(0, 123, 255, 0.2);
        color: #003d5c;
    }
}
/* ===============================
   UTILITY CLASSES
   =============================== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* ===============================
   SCROLLBAR STYLING
   =============================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #0077be, #00d4ff);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #005a93, #0099cc);
}

/* ===============================
   SELECTION STYLING
   =============================== */
::selection {
    background: rgba(0, 212, 255, 0.3);
    color: #0077be;
}

::-moz-selection {
    background: rgba(0, 212, 255, 0.3);
    color: #0077be;
}

/* ===============================
   LOADING STATES
   =============================== */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #0077be;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===============================
   ACCESSIBILITY IMPROVEMENTS
   =============================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus states for accessibility */
button:focus,
.nav-link:focus,
.contact-btn:focus,
.floating-btn:focus {
    outline: 2px solid #00d4ff;
    outline-offset: 2px;
}

/* ===============================
   PRINT STYLES
   =============================== */
@media print {
    .floating-actions,
    .navbar,
    .slider-controls,
    .slider-indicators,
    .floating-icon {
        display: none !important;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    .slide {
        position: static;
        opacity: 1;
        background: none !important;
    }
    
    .slide-content {
        color: #333 !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .section-title {
        color: #333 !important;
    }
}

