:root {
  /* === Primary Brand Colors === */
  --primary-color: #003366;     /* Deep Navy Blue - strong base tone */
  --secondary-color: #0072BC;   /* Medium Tech Blue */
  --accent-color: #00AEEF;      /* Sky Blue highlight */
  
  /* === Supporting Tones === */
  --gray-light: #CFD8DC;        /* Light Silver Gray */
  --gray-dark: #37474F;         /* Dark Text Gray */
  --green-accent: #00C853;      /* Vibrant Green Accent */
  --white: #ffffff;             /* Pure White */

  /* === Typography === */
  --font-heading: 'Orbitron', sans-serif; /* Futuristic heading font */
  --font-body: 'Poppins', sans-serif;     /* Clean body font */

  /* === Gradients === */
  --gradient-primary: linear-gradient(135deg, #003366 0%, #0072BC 50%, #00AEEF 100%);
  --gradient-dark: linear-gradient(135deg, #001B33, #000E1A);

    /* === Font Families === */
  --font-heading: 'Orbitron', sans-serif;
  --font-subheading: 'Rajdhani', sans-serif;
  --font-body: 'Poppins', sans-serif;

}

/* === Global Text === */
body {
  font-family: var(--font-body);
  color: var(--gray-dark);
  background-color: var(--white);
}

/* === Headings === */
h1, h2, h3, .navbar-brand span {
  font-family: var(--font-heading);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* === Subheadings or Emphasis === */
h4, h5, h6 {
  font-family: var(--font-subheading);
}




/* ===== Top Header ===== */
.top-header {
  background: var(--gradient-primary);
  font-size: 0.9rem;
}
.top-header i {
  color: var(--white);
}
.contact-info span {
  color: var(--white);
}
.social-icons .social-link {
  color: var(--white);
  border: 1px solid var(--white);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s ease;
}
.social-icons .social-link:hover {
  background-color: var(--white);
  color: var(--secondary-color);
}

/* ===== Navbar ===== */
.main-navbar {
  background-color: var(--white);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  padding: 0.8rem 0;
  transition: 0.3s ease;
  position: sticky;
}

.logo-modern {
  height: 90px;  /* 🔹 Increased logo size */
  width: auto;
  object-fit: contain;
}




.navbar-nav .nav-link {
  font-family: var(--font-subheading);
  font-weight: 500;
  color: var(--gray-dark) ;
  margin: 0 12px;
  position: relative;
  transition: 0.3s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--secondary-color);
}
.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.order-btn {
  background: linear-gradient(135deg, #00AEEF, #0072BC);
  color: #fff !important;
  padding: 8px 22px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 15px rgba(0, 162, 255, 0.3);
  transition: 0.3s ease;
}
.order-btn:hover {
  background: #003366;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 162, 255, 0.4);
  color: #fff !important;
}


/* ===== Responsive Fix ===== */
@media (max-width: 991px) {
  .top-header {
    display: none; /* hide top header on mobile */
  }
  .navbar-nav {
    text-align: center;
    background-color: var(--white);
    border-radius: 10px;
    padding: 10px;
  }
  .order-btn {
    display: inline-block;
    margin-top: 10px;
  }
}

/* ===== Order Now Button (with Camera Icon) ===== */
.order-btn {
  background: linear-gradient(90deg, #003366, #0072BC, #00AEEF);
  color: #fff !important;
  padding: 8px 22px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px; /* spacing between icon and text */
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 162, 255, 0.2);
  border: none;
}

/* Camera icon styling */
.order-btn i {
  font-size: 1.1rem;
  color: #fff;
  transition: transform 0.3s ease;
}

/* Hover Effects */
.order-btn:hover {
  background: linear-gradient(90deg, #0072BC, #00AEEF);
  box-shadow: 0 0 18px rgba(0, 162, 255, 0.4);
  transform: translateY(-2px);
}
.order-btn:hover i {
  transform: rotate(-15deg) scale(1.1);
}


.hero-bs-section {
  background: linear-gradient(135deg, #003366, #0072BC, #00AEEF);
  padding: 120px 0;
  color: #fff;
}

.highlight {
  background: linear-gradient(90deg, #00AEEF, #00C3FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-cam-img {
  max-height: 380px;
  width: auto;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.3));
}

/* Button */
.order-btn {
  background: linear-gradient(90deg, #00AEEF, #0072BC);
  color: #fff !important;
  padding: 10px 25px;
  border-radius: 40px;
}

/* Fade transition smooth */
.carousel-fade .carousel-item {
  transition: opacity .9s ease;
}

@media (max-width:991px){
  .hero-bs-section { text-align:center; padding:80px 0; }
  .hero-cam-img { max-height:260px; }
}




/* =========================================================
   ABOUT SECTION
========================================================= */
.about-section {
  padding: 100px 0;
  background: var(--white);
}

.about-img {
  border-radius: 12px;
  width: 100%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.about-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.3;
}

.about-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-points {
  list-style: none;
  padding-left: 0;
}
.about-points li {
  font-family: var(--font-subheading);
  font-size: 1.1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: var(--primary-color);
}
.about-points li i {
  color: var(--accent-color);
  font-size: 1.3rem;
  margin-right: 10px;
}

/* Button */
.about-btn {
  background: var(--gradient-primary);
  color: #fff !important;
  padding: 10px 26px;
  border-radius: 40px;
  font-family: var(--font-subheading);
  font-weight: 600;
  border: none;
  transition: .3s ease;
}
.about-btn:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}

/* Responsive About Section */
@media (max-width: 991px) {
  .about-title,
  .about-text {
    text-align: center;
  }
  .about-points li {
    justify-content: center;
  }
  .about-btn {
    display: block;
    margin: auto;
  }
}

/* Image wrapper – smooth zoom */
.about-img-wrapper {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Image style */
.about-img {
  width: 100%;
  transition: transform 0.4s ease;
}

/* Hover Zoom Effect */
.about-img-wrapper:hover .about-img {
  transform: scale(1.07);
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: #f7faff;
  padding: 90px 0;
}

.services-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--primary-color);
}

.services-subtext {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-dark);
}

/* Boxes */
.service-box {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.35s ease;
  border-top: 4px solid transparent;
}

.service-box:hover {
  transform: translateY(-8px);
  border-top: 4px solid var(--accent-color);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

/* Icons */
.service-box i {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.service-box h4 {
  font-family: var(--font-subheading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.service-box p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-dark);
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  background: #ffffff;
  padding: 80px 0;
}

.products-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--primary-color);
}

.products-subtext {
  font-family: var(--font-body);
  color: var(--gray-dark);
  font-size: 1rem;
}

/* ===== PRODUCTS SECTION (FIXED HEIGHT CARDS & IMAGES) ===== */
.product-card {
  background: #f8faff;
  padding: 25px;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  height: 100%; /* full height for all cards */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}


.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

/* Image Wrapper — ensures equal size */
.product-card img {
  width: 160px;     /* SAME WIDTH for all images */
  height: 160px;    /* SAME HEIGHT for all images */
  object-fit: contain; /* prevents distortion */
  margin: 0 auto 20px auto;
  transition: 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.08);
}

.product-card h4 {
  font-family: var(--font-subheading);
  font-size: 1.3rem;
  color: var(--primary-color);
}

.product-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-dark);
}

/* ===== PARALLAX SECTION ===== */
.parallax-section {
  height: 380px;
  background-image: url("img/parallax-bg.webp"); /* Change to your image */
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  position: relative;
}

.parallax-overlay {
  background: rgba(0, 29, 61, 0.65); /* Dark navy overlay */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.parallax-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 15px;
}

.parallax-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #e3eaf5;
  max-width: 650px;
  margin: 0 auto 25px auto;
}

.parallax-btn {
  background: var(--gradient-primary);
  color: #fff !important;
  padding: 10px 28px;
  font-family: var(--font-subheading);
  border-radius: 40px;
  transition: 0.3s;
}

.parallax-btn:hover {
  background: var(--accent-color);
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 768px) {
  .parallax-section {
    height: 420px;
  }
}

/* ===== MULTI BRAND SUPPORT (LEFT CONTENT — RIGHT IMAGE) ===== */
.multibrand-lr-section {
  background: #f7fbff;
  padding: 80px 0;
}

.multibrand-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.multibrand-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 20px;
}

.brand-tag {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 10px 28px;
  font-family: var(--font-subheading);
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
}

/* Image styling */
.multibrand-img-wrapper {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.10);
}

.multibrand-img {
  width: 100%;
  transition: 0.3s ease;
}

.multibrand-img-wrapper:hover .multibrand-img {
  transform: scale(1.06);
}

/* Responsive */
@media (max-width: 991px) {
  .multibrand-title,
  .multibrand-text {
    text-align: center;
  }

  .brand-tag {
    display: block;
    margin: auto;
  }
}

/* ===== COUNTER SECTION ===== */
.counter-section {
  background: #ffffff;
  padding: 80px 0;
}

.counter-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.counter-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--gray-dark);
  line-height: 1.7;
}

.counter-box {
  background: #f4f8ff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.counter-box i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.counter-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary-color);
  margin: 0;
}

.counter-box p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-dark);
}

/* Responsive */
@media (max-width: 991px) {
  .counter-title,
  .counter-text {
    text-align: center;
  }
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
  background: #f7fbff;
  padding: 80px 0;
}

.test-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  color: var(--primary-color);
}

.test-subtext {
  font-family: var(--font-body);
  color: var(--gray-dark);
}

/* Wrapper */
.slider-wrapper {
  position: relative;
  margin-top: 40px;
}

/* Slider */
.testimonial-slider {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
}

/* Cards */
.test-card {
  min-width: 100%;
  background: white;
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.10);
  transition: 0.3s ease;
}

.test-card:hover {
  transform: translateY(-8px);
}

/* Desktop: 3 cards */
@media (min-width: 992px) {
  .test-card {
    min-width: calc(33.33% - 20px);
  }
}

/* Icons */
.test-icon {
  font-size: 2.6rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

/* Text */
.test-card p {
  font-family: var(--font-body);
  color: var(--gray-dark);
  font-size: 1rem;
  line-height: 1.6;
}

.test-card h5 {
  margin-top: 10px;
  color: var(--primary-color);
  font-family: var(--font-subheading);
}

/* ===== CONTROLS ON TOP RIGHT ===== */
.slider-controls {
  position: absolute;
  top: -40px;
  right: 0;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.control-btn {
  background: var(--primary-color);
  border: none;
  padding: 10px 14px;
  border-radius: 40px;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(0,162,255,0.6);
  transition: 0.3s ease;
}

.control-btn:hover {
  transform: translateY(-3px);
  background: var(--accent-color);
  box-shadow: 0 0 18px rgba(0,174,239,0.9);
}


/* ===== FOOTER ===== */
.footer-section {
  background: var(--gradient-dark);
  color: #fff;
  padding-top: 60px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-about {
  color: #dbe3f0;
  font-family: var(--font-body);
  line-height: 1.7;
}

/* Titles */
.footer-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

/* Quick Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #dbe3f0;
  text-decoration: none;
  font-family: var(--font-body);
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

/* Contact */
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  margin-bottom: 12px;
  color: #dbe3f0;
  font-family: var(--font-body);
}

.footer-contact i {
  color: var(--accent-color);
  margin-right: 8px;
}

/* Bottom Bar */
.footer-bottom {
  background: #000c1a;
  padding: 12px 0;
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  color: #b8c4d6;
  margin: 0;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

/* Slider Wrapper */
.product-slider-wrapper {
  position: relative;
}

/* Slider Container */
.product-slider {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
  cursor: grab;
}
/* Make all product cards same height */
.product-card {
  background: #f8faff;
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  height: 350px;                /* FIX CARD HEIGHT */
  display: flex;                /* CENTER CONTENT */
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.product-card img {
  width: 160px;        /* SAME WIDTH */
  height: 160px;       /* SAME HEIGHT */
  object-fit: contain; /* Prevent stretch */
  background: #fff;    /* Clean BG for different shapes */
  padding: 10px;       /* Space inside */
  border-radius: 10px; /* Modern rounded look */
  margin-bottom: 15px;
  transition: 0.3s;
}

/* Hover zoom effect */
.product-card:hover img {
  transform: scale(1.08);
}


@media (min-width: 992px) {
  .product-card {
    min-width: calc(33.33% - 20px);
  }
}



.product-card:hover img {
  transform: scale(1.08);
}

/* Controls */
.product-controls {
  position: absolute;
  top: -40px;
  right: 0;
  display: flex;
  gap: 12px;
}

.prod-btn {
  background: var(--primary-color);
  border: none;
  padding: 10px 14px;
  color: #fff;
  border-radius: 40px;
  font-size: 1.4rem;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(0,174,255,0.6);
}

.prod-btn:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}



/* ===== SUPER PARALLAX SECTION ===== */
.super-parallax {
  position: relative;
  height: 70vh;
  background-image: url('img/bg.jpg'); /* your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;   /* PARALLAX */
  overflow: hidden;
}


/* DARK OVERLAY + GRADIENT */
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.85));
  z-index: 2;
}

/* Text Content */
.parallax-content {
  position: relative;
  z-index: 5;
  margin-top: 22vh;
}

.super-title {
  font-size: 3rem;
  font-family: var(--font-heading);
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

/* Breadcrumb */
.breadcrumb-line {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #dcdcdc;
}

.breadcrumb-line a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb-line a:hover {
  color: #fff;
}


/* MOBILE FIXES */
@media (max-width: 768px) {
  .super-parallax {
    height: 45vh;
  }

  .parallax-content {
    margin-top: 14vh;
  }

  .super-title {
    font-size: 2rem;
  }
}

/* ===== ABOUT INFO SECTION ===== */
.about-info-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.about-info-text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-dark);
  margin-bottom: 20px;
}

/* Points */
.about-info-points {
  list-style: none;
  padding: 0;
}

.about-info-points li {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--gray-dark);
}

.about-info-points i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-right: 8px;
}

/* Button */
.about-info-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 10px 28px;
  border-radius: 8px;
  transition: .3s;
}

.about-info-btn:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}

/* Image Box */
.about-img-box {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.about-info-img {
  width: 100%;
  border-radius: 14px;
  transition: 0.4s ease;
}

.about-info-img:hover {
  transform: scale(1.08);
}


/* ===== MISSION & VISION ===== */
.mission-vision-section {
  background: #f8fbff;
}

.mv-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--primary-color);
}

.mv-subtext {
  color: var(--gray-dark);
  font-family: var(--font-body);
}

/* Boxes */
.mv-box {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  transition: .3s ease;
}

.mv-box:hover {
  transform: translateY(-10px);
}

/* Icons */
.mv-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

/* Box Title */
.mv-box h3 {
  font-size: 1.4rem;
  font-family: var(--font-subheading);
  margin-bottom: 10px;
  color: var(--primary-color);
}

/* Content */
.mv-box p {
  font-family: var(--font-body);
  color: var(--gray-dark);
  line-height: 1.6;
}


/* ===== SERVICES GRID SECTION ===== */
.services-main-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--primary-color);
}

.services-main-sub {
  color: var(--gray-dark);
  font-family: var(--font-body);
}

/* Card */
.svc-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
  transition: .3s ease;
  height: 100%;
}

.svc-card:hover {
  transform: translateY(-10px);
}

/* Icon */
.svc-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

/* Title */
.svc-card h4 {
  font-family: var(--font-subheading);
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* Text */
.svc-card p {
  color: var(--gray-dark);
  font-family: var(--font-body);
  line-height: 1.6;
}


/* Sidebar */
.category-box {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.cat-title {
  font-size: 1.3rem;
  color: var(--primary-color);
  font-family: var(--font-heading);
  margin-bottom: 15px;
}

.category-list {
  list-style: none;
  padding: 0;
}

.category-list li {
  margin-bottom: 12px;
}

.category-list a {
  text-decoration: none;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--gray-dark);
  transition: 0.3s;
}

.category-list a:hover {
  color: var(--accent-color);
  padding-left: 6px;
}

/* Product Card – Same Height */
.all-product-card,
.product-card {
  background: #fff;
  padding: 25px 15px;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  height: 320px; /* Adjusted for 200px image */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  transition: 0.3s ease;
}

.all-product-card:hover,
.product-card:hover {
  transform: translateY(-8px);
}

/* SAME IMAGE SIZE — ALWAYS EXACT */
.all-product-card img,
.product-card img {
  width: 200px;
  height: 200px;
  object-fit: contain;       /* Prevent stretching */
  background: #ffffff;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 12px;
  display: block;
}

/* Title always same position */
.all-product-card h4,
.product-card h4 {
  margin-top: auto;          /* Push title to bottom if needed */
  font-size: 1.05rem;
  font-family: var(--font-subheading);
  color: var(--primary-color);
  text-align: center;
}


.product-card h4 {
  font-size: 1.05rem;
  color: var(--primary-color);
  font-family: var(--font-subheading);
}


/* ===== CONTACT CARDS ===== */
.contact-main-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--primary-color);
}

.contact-main-sub {
  color: var(--gray-dark);
  font-family: var(--font-body);
}

/* Card */
.contact-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.10);
  transition: .3s ease;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-10px);
}

/* Icon Box */
.icon-box {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  margin: 0 auto 15px;
  box-shadow: 0 6px 15px rgba(0,174,239,0.4);
}

.icon-box i {
  font-size: 1.8rem;
  color: #fff;
}

.contact-card h4 {
  font-family: var(--font-subheading);
  margin-bottom: 10px;
  color: var(--primary-color);
}

.contact-card p {
  font-family: var(--font-body);
  color: var(--gray-dark);
  line-height: 1.6;
  font-size: 1rem;
}

/* ===== MAP SECTION ===== */
.map-box {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* ===== FORM BOX ===== */
.form-box {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  height: 100%;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Inputs */
.form-input {
  border: 1px solid #d0d0d0;
  padding: 12px;
  border-radius: 10px;
  font-family: var(--font-body);
  transition: 0.3s ease;
}

.form-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 10px rgba(0,174,239,0.4);
}

/* Button */
.form-submit {
  background: var(--primary-color);
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  font-size: 1.1rem;
  transition: .3s ease;
}

.form-submit:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}

/* ===== MAP BOX ===== */
.map-box {
  position: relative;
  width: 100%;
  padding-bottom: 65%; /* Responsive height */
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  height: 100%;
}

.map-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 16px;
}

/* Mobile Fix */
@media (max-width: 768px) {
  .map-box {
    padding-bottom: 55%;
  }
}


/* SUPER CALL SECTION BACKGROUND */
.super-call-section {
  background: var(--gradient-dark);
  padding-top: 70px;
  padding-bottom: 70px;
}

/* MAIN BOX (GLASS EFFECT) */
.super-call-box {
  max-width: 900px;
  margin: auto;
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.2);
  box-shadow: 0 20px 45px rgba(0,0,0,0.4);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* GLOW BORDER */
.super-call-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #00AEEF, #0072BC, #005f99, #00C853);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: glowMove 6s linear infinite;
}

@keyframes glowMove {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Title */
.super-call-title {
  font-size: 2.2rem;
  font-family: var(--font-heading);
  color: #fff;
  margin-bottom: 8px;
}

.super-call-sub {
  color: #cfd8dc;
  font-size: 1rem;
  margin-bottom: 25px;
}

/* Contact list */
.super-contact-list {
  margin: 20px 0;
}

.super-contact-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-family: var(--font-body);
}

.super-contact-item i {
  color: var(--accent-color);
  font-size: 1.3rem;
}

/* Buttons */
.super-btn-group {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Call Button */
.super-call-btn {
  background: var(--primary-color);
  padding: 12px 30px;
  border-radius: 12px;
  color: #fff;
  font-size: 1.1rem;
  transition: .3s ease;
  border: 2px solid transparent;
  box-shadow: 0 0 15px rgba(0,114,188,0.6);
}

.super-call-btn:hover {
  background: var(--accent-color);
  transform: translateY(-4px);
}

/* WhatsApp */
.super-whatsapp-btn {
  background: #25D366;
  padding: 12px 30px;
  border-radius: 12px;
  color: #fff;
  font-size: 1.1rem;
  transition: .3s ease;
  box-shadow: 0 0 15px rgba(37,211,102,0.6);
}

.super-whatsapp-btn:hover {
  background: #1cbc57;
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 768px) {
  .super-call-title { font-size: 1.8rem; }
  .super-call-btn, .super-whatsapp-btn { width: 100%; }
}

/* FIX ANCHOR CLICK ISSUE */
.btn-fix {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10 !important;     /* makes link clickable */
  pointer-events: auto !important;
}

/* Make button clickable full area */
.btn-fix::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  z-index: 9999;
  background: transparent;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
}

.whatsapp-float img {
  width: 58px;
  height: 58px;
}

/* Hover effect */
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}

/* Mobile Size Fix */
@media(max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 18px;
    right: 18px;
  }
  
  .whatsapp-float img {
    width: 52px;
    height: 52px;
  }
}

/* GO TO TOP BUTTON */
.gotop-btn {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 55px;
  height: 55px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  outline: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

/* Hover */
.gotop-btn:hover {
  background: var(--accent-color);
  transform: translateY(-4px);
}

/* Show button when scrolling */
.gotop-btn.show {
  opacity: 1;
  visibility: visible;
}

/* Mobile */
@media (max-width: 768px) {
  .gotop-btn {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    bottom: 75px;
    right: 18px;
  }
}
