/* =====================
   GLOBAL RESET & VARIABLES
   ===================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #000;
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.section-title {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-bottom: 3px solid #000;
    padding-bottom: 20px;
    display: inline-block;
    width: 100%;
}



/* =====================
   HEADER STYLES - UPDATED
   ===================== */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    border-bottom: 2px solid #000;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header.scrolled .header-container {
    justify-content: center;
}

.header.scrolled .logo {
    flex: 0;
    text-align: center;
}

.header.scrolled .nav-menu,
.header.scrolled .hamburger {
    display: none !important;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    transition: justify-content 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    transition: all 0.4s ease;
}

.logo-image {
    max-width: 120px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.4s ease;
}

.header.scrolled .logo-image {
    max-width: 100px;
    max-height: 45px;
}



/* Navigation Menu */

.nav-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.menu-list {
    list-style: none;
    display: flex;
    gap: 45px;
}

.menu-link {
    text-decoration: none;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
    text-transform: capitalize;
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #000;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-link:hover::after {
    width: 100%;
}

/* Dropdown Menu */

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 2px solid #000;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    margin-top: 8px;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    display: flex;
    flex-direction: column;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    background-color: #fff;
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link:hover {
    background-color: #f5f5f5;
    padding-left: 28px;
}

/* Hamburger Menu */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background-color: #000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* =====================
   VIDEO SECTION
   ===================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 70%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    width: 100%;
    padding: 0 20px;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 4px;
    margin: 0 0 40px 0;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
    animation: titleFade 1s ease-out forwards;
}

.hero-subtitle-wrapper {
    position: relative;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-line {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    text-align: center;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    white-space: normal;
    display: none;
    line-height: 1.4;
}

.hero-line.active {
    display: block;
    animation: fadeInOut 4s ease-in-out;
}

@keyframes titleFade {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 54px;
    }
    
    .hero-subtitle-wrapper {
        min-height: 70px;
    }
    
    .hero-line {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
        margin: 0 0 30px 0;
    }
    
    .hero-subtitle-wrapper {
        min-height: 80px;
    }
    
    .hero-line {
        font-size: 18px;
        width: 85%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
        margin: 0 0 20px 0;
    }
    
    .hero-subtitle-wrapper {
        min-height: 100px;
    }
    
    .hero-line {
        font-size: 16px;
        width: 80%;
    }
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px; /* space between buttons and subtitle */
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 26px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.25s ease;
}

/* Primary button – Explore More */
.hero-btn-primary {
    background: #ffffff;
    color: #111111;
    border-color: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.hero-btn-primary:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

/* Outline button – About Us */
.hero-btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.hero-btn-outline:hover {
    background: #ffffff;
    color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

/* Responsive buttons */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .hero-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 18px;
    }
    
    .hero-btn {
        width: 70%;
        max-width: 260px;
    }
}





/* ===== MARBLE & GRANITE SHOWCASE SECTION ===== */

.showcase-section {
  padding: 60px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.showcase-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(50, 184, 198, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.showcase-card {
  background: black;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
}

.showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Image Wrapper with Overlay */
.showcase-image-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #f0f0f0;
}

.showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-card:hover .showcase-image {
  transform: scale(1.1);
}

/* Overlay Content */
.showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(50, 184, 198, 0.95) 0%, rgba(33, 128, 141, 0.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 10;
}

.showcase-card:hover .showcase-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
  padding: 30px;
  transform: translateY(20px);
  transition: transform 0.5s ease;
}

.showcase-card:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.overlay-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.95;
}

.showcase-link {
  display: inline-block;
  padding: 10px 24px;
  background: white;
  color: #32b8c6;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.showcase-link:hover {
  background: transparent;
  color: white;
  transform: translateX(5px);
}

/* Info Section */
.showcase-info {
  padding: 25px;
  text-align: center;
  background: white;
}

.showcase-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a2d32;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.showcase-info p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Special Styling for Marble Card */
.marble-card .showcase-overlay {
  background: linear-gradient(135deg, rgba(94, 82, 64, 0.95) 0%, rgba(120, 100, 80, 0.95) 100%);
}

.marble-card .showcase-link {
  color: #8b7355;
}

.marble-card .showcase-link:hover {
  background: #8b7355;
  color: white;
}

/* Special Styling for Granite Card */
.granite-card .showcase-overlay {
  background: linear-gradient(135deg, rgba(31, 33, 33, 0.95) 0%, rgba(60, 65, 65, 0.95) 100%);
}

.granite-card .showcase-link {
  color: #2b2d2d;
}

.granite-card .showcase-link:hover {
  background: #2b2d2d;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }

  .showcase-image-wrapper {
    height: 250px;
  }

  .overlay-content {
    padding: 20px;
  }

  .overlay-content h3 {
    font-size: 20px;
  }

  .overlay-content p {
    font-size: 13px;
  }

  .showcase-info {
    padding: 20px;
  }

  .showcase-info h3 {
    font-size: 18px;
  }
}

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

  .showcase-image-wrapper {
    height: 200px;
  }

  .overlay-content h3 {
    font-size: 18px;
  }

  .overlay-content p {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .showcase-link {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* Animation on Scroll */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.showcase-card {
  animation: slideInUp 0.6s ease-out forwards;
}

.showcase-card:nth-child(2) {
  animation-delay: 0.2s;
}

/* =====================
   PRODUCTS SECTION
   ===================== */

.products-section {
  padding: 60px 0;
  background: #fff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
  margin-bottom: 50px; /* Add gap before button */
}

.product-item {
  background: #fff;
  border: none;
  box-shadow: none;
  overflow: visible;
  transition: none;
  cursor: pointer;
  text-align: center;
}


/* Image - Full Width, No Crop */
.product-item .product-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #fff;
  padding: 0;
  margin-bottom: 15px;
  border-radius: 0;
}

/* Product Name - Below Image */
.product-item .product-name {
  padding: 0;
  text-align: center;
  font-size: 20px;
  font-weight: 450;
  color: #000;
  margin: 0;
  border: none;
  background: #fff;
  letter-spacing: 0.3px;
  
}

/* More Products Button Section */
.more-products-btn {
  text-align: center;
  margin-top: 50px; /* Space above button */
  padding-top: 30px; /* Additional padding */
}

.btn-more-products {
  padding: 16px 55px;
  font-size: 16px;
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
}

.btn-more-products::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: -1;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-more-products:hover {
  color: #fff;
  transform: translateY(-2px);
}

.btn-more-products:hover::before {
  left: 0;
}

/* Tablet View */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 40px;
  }

  .product-item .product-image {
    margin-bottom: 10px;
  }

  .product-item .product-name {
    font-size: 12px;
  }

  .more-products-btn {
    margin-top: 40px;
    padding-top: 20px;
  }
}

/* Mobile View */
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
  }

  .product-item .product-image {
    margin-bottom: 8px;
  }

  .product-item .product-name {
    font-size: 15px;
  }

  .more-products-btn {
    margin-top: 30px;
    padding-top: 20px;
  }

  .btn-more-products {
    padding: 12px 40px;
    font-size: 14px;
  }
}


/* =====================
   BEFORE & AFTER SLIDER
   ===================== */
.before-after-slider {
  max-width: 700px;
  margin: 0 auto 35px;
  position: relative;
  aspect-ratio: 16/10;
  height: auto;
  user-select: none;
  background: #000;
  overflow: hidden;
  border-radius: 8px;
}

.ba-img {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  overflow: hidden;
}

.ba-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* both images same framing */
  object-position: center;
  display: block;
  pointer-events: none;
}

.ba-img-before-base {
  z-index: 1;
}

/* AFTER overlay – width controlled only by JS, no CSS animation */
.ba-img-after-overlay {
  width: 0%;         /* hidden at start */
  z-index: 2;
  /* removed: transition: width 0.3s ease; */
}

.ba-slider-line {
  position: absolute;
  top: 0; 
  bottom: 0;
  left: 50%;         /* visual starting point (center) */
  width: 3px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
  z-index: 3;
  pointer-events: none;
  /* removed: transition: left 0.3s ease; */
}

/* Handle */
.ba-slider-handle {
  position: absolute;
  top: 50%; 
  left: 50%;         /* visual starting point (center) */
  width: 44px; 
  height: 44px;
  margin-left: -22px; 
  margin-top: -22px;
  background: #fff;
  border: 3px solid #000;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  cursor: ew-resize;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  /* removed: transition: left 0.3s ease; */
}

.ba-slider-handle::before,
.ba-slider-handle::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}
.ba-slider-handle::before {
  transform: rotate(-135deg);
  left: 10px;
}
.ba-slider-handle::after {
  transform: rotate(45deg);
  right: 10px;
}

@media (max-width:600px) {
  .before-after-slider {
    max-width: 100%;
    border-radius: 0;
  }
  .ba-slider-handle {
    width: 36px; 
    height: 36px; 
    margin-left: -18px; 
    margin-top: -18px;
  }
}

.slider-description{
  text-align: center;
}

/* =====================
   STATISTICS SECTION
   ===================== */

.simple-stats {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 42px;
  margin: 40px 0 0 0;
  flex-wrap: wrap;
}

.simple-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
  min-width: 140px;
}

.simple-stat i {
  font-size: 32px;
  margin-bottom: 8px;
  color: #000;
}

.stat-counter {
  font-size: 32px;
  font-weight: bold;
  color: #000;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 15px;
  color: #222;
  text-align: center;
}


/* =====================
   TESTIMONIALS SECTION
   ===================== */

.testimonials-section {
    padding: 80px 0;
    background-color: #fff;
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 320px;
}

.testimonial-card {
    display: none;
    padding: 45px;
    border: 2px solid #000;
    background-image: url(images/bca.jpg);
    text-align: center;
    animation: fadeInScale 0.5s ease;
}

.testimonial-card.active {
    display: block;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.testimonial-text {
    font-size: 17px;
    color: #fff;
    margin-bottom: 22px;
    font-style: italic;
    line-height: 1.9;
}

.testimonial-author {
    font-size: 16px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
}

.testimonial-rating {
    font-size: 18px;
    color: #dbb621;
    letter-spacing: 3px;
}

/* =====================
   ENQUIRY FORM SECTION
   ===================== */

.enquiry-section {
    padding: 80px 0;
    background-image: url(images/bg1.jpg);
}

.enquiry-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 45px;
    border: 2px solid #000;
    background-color: #fff;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.required {
    color: #ff0000;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 15px;
    border: 2px solid #000;
    font-size: 14px;
    color: #000;
    background-color: #fff;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
}

.form-submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-submit-btn:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* =====================
   FOOTER STYLES
   ===================== */

.footer {
  background: #000;
  color: #fff;
  padding: 50px 0 20px 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* FOOTER TOP - 3 Column Layout */
.footer-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 30px 0 20px 0;
  border-bottom: 1px solid #333;
}

/* LOGO SECTION */
.footer-logo {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.footer-logo-img {
  width: 120px;
  height: auto;
  margin-bottom: 12px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.footer-logo-img:hover {
  transform: scale(1.05);
}

.footer-logo p {
  font-size: 13px;
  color: #ddd;
  line-height: 1.6;
  text-align: center;
}

/* Rest of the CSS stays the same */
.footer-logo {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}


/* QUICK LINKS SECTION */
.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links ul li a {
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-links ul li a i {
  font-size: 16px;
}

/* CONTACT SECTION */
.footer-contact {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-contact h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.footer-contact p {
  color: #ddd;
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.footer-contact p strong {
  color: #fff;
  font-weight: 600;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: #ddd;
}

/* CALL BUTTON */
.call-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: #000;
  color: #000;
  border: 2px solid #fff;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 12px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.call-btn i {
  margin-right: 8px;
  font-size: 16px;
}

.call-btn:hover {
  background: #000;
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* SOCIAL SECTION */
.footer-social-bottom {
  text-align: center;
  padding: 30px 0 20px 0;
}

.follow-label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-icons a:hover {
  background: #ddd;
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.1);
}

/* FOOTER BOTTOM */
.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: #999;
  padding: 20px 0;
  border-top: 1px solid #333;
  margin-top: 20px;
}

.footer-bottom p {
  margin: 0;
  line-height: 1.6;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: #ddd;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px 0;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }

  .footer-links ul li a {
    justify-content: center;
  }

  .footer-contact {
    align-items: center;
    text-align: center;
  }

  .call-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-social-icons a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .follow-label {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 15px 0;
  }

  .footer-top {
    gap: 20px;
  }

  .footer-logo h2 {
    font-size: 22px;
  }

  .footer-links h4,
  .footer-contact h3 {
    font-size: 14px;
  }

  .footer-social-icons {
    gap: 15px;
  }

  .footer-social-icons a {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}



 

/* =====================
   FIXED BUTTONS
   ===================== */

.fixed-buttons {
    position: fixed;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 100;
}

.fixed-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background-color: #fff;
    color: #000;
    border: 2px solid #000;
    border-radius: 50%;
    text-decoration: none;
    cursor: pointer;
    font-size: 22px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: bold;
}

.fixed-btn:hover {
    background-color: #000cdw;
    color: #000;
    transform: scale(1.12);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* =====================
   WHATSAPP FLOATING BUTTON
   ===================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    z-index: 999;
    animation: pulse 2.5s infinite;
    transition: all 0.4s ease;
}

.whatsapp-float:hover {
    background-color: #25D366;
    color: #fff;
    animation: pulse 1.2s infinite;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(0, 0, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

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

@media (max-width: 768px) {
    .header-container {
        padding: 14px;
    }

    .logo-text {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        border-bottom: 2px solid #000;
        flex-direction: column;
        padding: 20px;
        z-index: 999;
    }

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

    .menu-list {
        flex-direction: column;
        gap: 20px;
    }

    .hamburger {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        display: none;
        border: none;
        box-shadow: none;
        margin: 12px 0 0 20px;
        min-width: auto;
    }

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

    .video-section {
        margin-top: 50px;
        height: 70vh;
    }

    .video-content h1 {
        font-size: 36px;
    }

    .video-content p {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 25px;
    }

    .product-image {
        height: 240px;
    }

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

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

    .fixed-buttons {
        display: none;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 12px;
    }

    .video-section {
        margin-top: 45px;
        height: 60vh;
    }

    .video-content h1 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .video-content p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 13px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 35px;
    }

    .about-section,
    .products-section,
    .slider-section,
    .stats-section,
    .testimonials-section,
    .enquiry-section {
        padding: 50px 0;
    }

    .product-image {
        height: 180px;
    }

    .btn-more-products {
        padding: 12px 25px;
        font-size: 13px;
    }

    .stat-card {
        padding: 30px;
    }

    .stat-counter {
        font-size: 40px;
    }

    .stat-icon {
        font-size: 40px;
    }

    .stat-text {
        font-size: 14px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .enquiry-form {
        padding: 25px;
    }

    .footer-top {
        gap: 25px;
    }

    .footer-map iframe {
        height: 200px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}


/*--------------Social Media icon CSS-----------------*/
.social-icon i,
.stat-icon i,
.fixed-btn i,
.whatsapp-float i {
  font-size: 28px;
  display: inline-block;
}
.fixed-btn i,
.whatsapp-float i {
  font-size: 24px;
}
.stat-icon i {
  font-size: 36px;
}
