/* ===== Global Styles ===== */
body {
  font-family: 'Urbanist', sans-serif;
  margin: 0;
  padding: 0;
}

/* ===== Header / Navbar ===== */
.header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
}


/* .navbar-nav .nav-item {
  display: flex !important;
}

.navbar-nav .nav-link {
  display: block !important;
} */


/* Default (desktop/tablet) – horizontal */
.navbar-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px; /* optional spacing between items */
}

/* On small screens – vertical */
@media (max-width: 992px) {
  .navbar-nav {
    flex-direction: column !important;
    text-align: center !important;
  }
}


/* Logo */
.logo img {
  max-height: 60px;
  width: auto;
}


.navbar-nav .nav-link {
  text-decoration: none;
  color: #2E85E4;
  font-weight: 300;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease;
}

/* Hover underline effect */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: #2E85E4;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Active state: blue underline + blue text */
.navbar-nav .nav-link.active {
  color: #2E85E4 !important;
  font-weight: 500;
}

.navbar-nav .nav-link.active::after {
  width: 100%;
  background-color: #2E85E4;
}


/* for toggle */
.navbar-nav .nav-link {
  
      transition: 0.3s;
    }
 
    .navbar-nav .nav-link:hover {
      color: #007bff;
    }
 
    @media (max-width: 992px) {
      .navbar-nav {
        flex-direction: column !important;
        text-align: center !important;
      }
    }
 

/* Main dropdown container */
.nav-item.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  min-width: 400px;
 
  color: #2E85E4;
  z-index: 999;
}

/* Show dropdown when parent is active */
.nav-item.dropdown.active .dropdown-menu {
  display: flex;
}

/* Products grid - 2 columns */
.products-grid {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap !important;
}

/* Each column */
.products-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Links inside dropdown - hover underline effect */
.products-list li {
  position: relative; /* Ensure pseudo-element positions correctly */
}

.products-list li a {
  color: #2E85E4;
  text-decoration: none;
  font-weight: 100; /* text weight */
  padding-bottom: 3px;
  display: inline-block;
  position: relative;
  transition: color 0.3s;

}

/* Sliding underline */
.products-list li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;          /* thickness of underline */
  bottom: 0;
  left: 0;
  background-color: #2E85E4; /* underline color on hover */
  transition: width 0.3s ease;
}

.products-list li a:hover {
  color: #2E85E4; /* text color on hover */
}

.products-list li a:hover::after {
  width: 100%; /* slide full width */
}



/* Header Buttons */
.header-buttons {
  display: flex;
  gap: 10px;
}
@media (max-width: 767px) {
  .header-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .navbar-nav {
    text-align: center;
  }
}

.header-rect-btn {
  padding: 10px 14px;
  background: #2E85E4;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;

}

.header-rect-btn:hover {
  background: #003f82;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: url('/assets/images/bg1.png') center/cover no-repeat; /* your bg image */
  color: #fff;
  text-align: left;
  padding: 0 40px;
}

/* Hero Content */
.hero-content {
  max-width: 600px;
  background: rgba(0,0,0,0.5);
  padding: 40px 30px;
  border-radius: 12px;
  opacity: 0;
  transform: translateX(-100px);
  animation: slideInRight 1.5s ease-out forwards;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero .line {
  width: 5px;
  height: 440px;
  background: #ffc107;
  border-radius: 2px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 15px;
}

.hero p {
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 25px;
}

.hero .btn {
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 30px;
  margin-right: 10px;
}

/* Responsive Hero */
@media (max-width:768px) {
  .hero {
    height: auto;
    padding: 60px 20px;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero .line {
    width: 80px;
    height: 4px;
  }

  .hero h1 { font-size: 3rem; }
  .hero p { font-size: 1rem; }
}


/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 80vh; /* adjust height */
  overflow: hidden;
}

/* Slideshow Background */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* behind hero-content */
}

/* Each slide */
.hero-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

/* Active slide */
.hero-slideshow .slide.active {
  opacity: 1;
}

/* Hero content stays on top */
.hero .container {
  position: relative;
  z-index: 2;
}



/* Blurred Buttons */
.btn-blur {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  color: #007bff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-blur:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #007bff;
  color: #0056b3;
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 60px 20px;
    text-align: center;
  }
  .hero .container {
    flex-direction: column;
    align-items: center;
  }
  .hero .line {
    width: 80px;
    height: 4px;
    margin: 20px auto;
  }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .hero .btn { padding: 10px 20px; font-size: 0.9rem; }
}

/* WhatsApp Floating Icon */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 25px;
  background-color: #25D366;
  color: white;
  font-size: 28px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 10;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
}

/* @media (max-width: 576px) {
  .whatsapp-float {
    right: 65px; 
    bottom: 15px; 
  }
}  */


/* About Us Section */
section.py-5 {
  padding: 80px 20px;
background: #f9f9f9;
}

section.py-5 h2 {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.about-img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;

}

section.py-5 h3 {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #222;
}

section.py-5 p {
  font-size: 1.5rem;
  color: #555;
  line-height: 1.6;
}

section.py-5 .btn-primary {
  background-color: #007bff;
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

section.py-5 .btn-primary:hover {
  background-color: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
  section.py-5 .row {
    flex-direction: column-reverse;
    text-align: center;
  }

  section.py-5 .text-start {
    text-align: center;
    margin-bottom: 30px;
  }

  .about-img {
    max-width: 100%;
  }

  section.py-5 h2 {
    font-size: 2rem;
  }

  section.py-5 h3 {
    font-size: 1.5rem;
  }

  section.py-5 p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .about-section .row {
    flex-direction: column-reverse;
    text-align: center;
  }
  .about-section .text-start {
    text-align: center;
    margin-bottom: 20px;
  }
  .about-img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
  }
  .feature-card {
    height: auto;
    padding: 20px;
  }
}

/* ===== About Us Animation ===== */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-in-out;
}

.animate.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate.slide-left {
  opacity: 0;
  transform: translateX(-50px);
}

.animate.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate.slide-right {
  opacity: 0;
  transform: translateX(50px);
}

.animate.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}



/* why choose us  */

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Hover effect for card */
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(46, 133, 228, 0.3); /* soft blue shadow */
}

/* Icon animation */
.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
}

.feature-card.visible .feature-icon {
  opacity: 1;
  transform: translateY(0);
}

/* Heading animation */
.feature-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
  transition: transform 0.5s ease, opacity 0.5s ease ease-in-out;
  opacity: 0;
  transform: translateY(20px);
}

.feature-card.visible h5 {
  opacity: 1;
  transform: translateY(0);
}

/* Paragraph animation */
.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  transition: transform 0.5s ease, opacity 0.5s ease;
  font-weight: bold;
  transform: translateY(20px);
}

.feature-card.visible p {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .feature-card {
    padding: 1.5rem 1rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }

  .feature-card p {
    font-size: 0.9rem;
  }
}
/* why choose us animation*/
/* Animation Base */
.animate {
  opacity: 0;
  transition: all 0.8s ease-in;
}

/* Fade-up for section heading */
.animate.fade-up {
  transform: translateY(30px);
}

.animate.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide-up for cards */
.animate.slide-up {
  transform: translateY(50px);
}

.animate.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* feature productsss */

.featured-products {
  background: #f8f9fa;
}

/* Animate section title */
.animate-title {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideIn 0.8s forwards;
}

/* Product card animation */
.product-card {
  overflow: hidden;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img {
  transform: translateY(-15px) scale(1.05); /* move up + zoom */
}

/* Image styling */
.product-img {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}


/* Button styling */
.product-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #2E85E4;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.product-btn:hover {
  background-color: #2E85E4;
  transform: translate(-50%, -50%) scale(1.05);
}

/* Reduce gap between top 2 images */
.row.mb-2 {
  row-gap: 1rem; 
}

/* Fade-in slide-up for cards */
.animate-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideIn 0.6s forwards;
}

.animate-card:nth-child(1) { animation-delay: 0.1s; }
.animate-card:nth-child(2) { animation-delay: 0.3s; }
.animate-card:nth-child(3) { animation-delay: 0.5s; }

/* Animation keyframes */
@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .featured-products .col-lg-5 {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .featured-products .col-lg-5,
  .featured-products .col-md-6 {
    max-width: 100%;
  }
}

@media (max-width: 992px) {
 
  .product-card {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .product-btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
  .product-img {
    max-height: 300px;
  }
}

/* ===== Featured Products Animations ===== */

/* Title Animation */
.animate-title {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Product Card Animation */
.animate-card {
  opacity: 0;
  transform: scale(0.9);
  animation: zoomFade 0.8s ease forwards;
}

@keyframes zoomFade {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Stagger effect for multiple cards */
.animate-card:nth-child(1) {
  animation-delay: 0.3s;
}
.animate-card:nth-child(2) {
  animation-delay: 0.6s;
}
.animate-card:nth-child(3) {
  animation-delay: 0.9s;
}


/* ===== Feature Card Base ===== */
.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
  height: 350px;
  cursor: pointer;
  background: #fff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card hover lift */
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(46, 133, 228, 0.25); /* blue glow */
}



.feature-card:hover .card-title,
.feature-card:hover h6,
.feature-card:hover p {
  color: #fff !important;
  position: relative;
  z-index: 2;
}


/* ===== Product image ===== */
.product-img {
  position: relative;
  z-index: 3; /* image above rectangle */
  max-width: 90%;
  transition: transform 0.4s ease;
}

.feature-card:hover .product-img {
  transform: translateY(-15px) scale(1.05); /* lift + zoom */
}

/* ===== Sliding rectangle (overlay behind image) ===== */
.overlay-rect {
  position: absolute;
  bottom: -100%; /* start hidden below card */
  left: 0;
  width: 100%;
  height: 55%;
  background:  rgba(46, 133, 228, 0.85); /* light blue rectangle */
  z-index: 1; /* behind image */
  transition: bottom 0.5s ease;
  color: #2E85E4;
  
}

.feature-card:hover .overlay-rect  {
  bottom: 0; /* slides up on hover */
}

.feature-card {
    padding: 12px !important;
}


/* ===== Responsive tweaks ===== */
@media (max-width: 768px) {
  .feature-card {
    height: 280px;
  }
  .card-title {
    font-size: 0.9rem;
    padding: 4px 8px;
  }
  .product-img {
    max-width: 100%;
    max-height: 65%;
  }
}
/* 
@media (max-width: 768px) {
  .feature-card {
    height: 250px;
  }
  .card-title {
    font-size: 0.9rem;
    padding: 5px 10px;
  }
  .product-img {
    max-width: 80%;
    max-height: 60%;
  }
  .overlay-rect {
    height: 50%;
  }
} */

/* =======================
   Testimonial Cards
======================= */
.testimonial-card {
  min-width: 400px;              /* card width */
  border-radius: 1rem;           /* rounded corners */
  background: #fff;              /* white background */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;                /* prevent shrinking in flex container */
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* =======================
   Font Awesome Icon
======================= */
.testimonial-card i.fa-solid {
  font-size: 48px;       /* large quote icon */
  color: #197fe6;        /* primary theme color */
}

/* =======================
   Blockquote Text
======================= */
blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: #555;
  margin: 0;
}

/* =======================
   Scroll Containers
======================= */
.testimonial-scroll-left,
.testimonial-scroll-right {
  overflow-x: hidden;           /* hide scrollbar */
  white-space: nowrap;
  margin-bottom: 2rem;
}

/* Inner track for smooth animation */
.scroll-track {
  display: flex;
  gap: 1.5rem;
  flex-wrap: nowrap;
}

/* =======================
   Animations
======================= */
.testimonial-scroll-left .scroll-track {
  animation: scrollLeft 25s linear infinite;
}

.testimonial-scroll-right .scroll-track {
  animation: scrollRight 25s linear infinite;
}

/* Keyframes */
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }  /* half track because cards are duplicated */
}

@keyframes scrollRight {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

/* =======================
   Pause on Hover
======================= */
.testimonial-scroll-left:hover .scroll-track,
.testimonial-scroll-right:hover .scroll-track {
  animation-play-state: paused;
}



/* ===== FAQ Section ===== */
.faq-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0,0,0,0.08);
  background-color: #fff;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 15px 20px;
  text-align: left;
  background-color: #f1f5f9;
  border: none;
  outline: none;
  font-size: 0.9rem; /* same size as answer */
  color: #2E85E4;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease, color 0.3s ease;
  font-weight: 500;
  border-bottom: 1px solid #e2e8f0;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-question.active {
  background-color: #2E85E4;
  color: #fff;
}

.faq-question.active::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
}

.faq-answer p {
  margin: 12px 0;
  color: #333;
  font-size: 0.rem; /* same size as question */
  line-height: 1.5;
}

/* Show answer when active */
.faq-item.show .faq-answer {
  max-height: 150px; /* adjust if text is longer */
  padding: 12px 20px;
  font-size: small;
}

/* Hover effect for question */
.faq-question:hover {
  background-color: #e2e8f0;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-question, .faq-answer p {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .faq-item {
    width: 100%;
    margin-bottom: 15px;
  }
  .faq-question {
    width: 100%;
    font-size: 0.92rem;
    padding: 12px 15px;
  }
  .faq-answer p {
    font-size: 0.4rem;
  }
}


/* ===== Contact Section ===== */
.contact-us {
  background: linear-gradient(135deg, #f8f9fc, #eef4ff);
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2E85E4;
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #ffc107;
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Contact Cards */
.contact-card {
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  min-height: 500px; /* Ensures both cards are the same height */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertically center content */
}

/* Form Styling */
.contact-form .form-control {
  margin-bottom: 15px;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
  transition: all 0.3s ease;
  width: 100%;
}

.contact-form .form-control:focus {
  border-color: #2E85E4;
  box-shadow: 0 0 6px rgba(46,133,228,0.3);
  outline: none;
}

.btn-submit {
  background: #2E85E4;
  color: #fff;
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: #003f82;
}

/* Contact Info */
.contact-info h5 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.contact-info h5 span {
  color: #2E85E4;
}

.contact-info p {
  margin-bottom: 12px;
  font-size: 15px;
  color: #555;
}

.contact-info strong {
  color: #2E85E4;
}

.contact-info a {
  text-decoration: none;
  color: #555;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #ffc107;
}

/* Social Icons */
.social-icons {
  margin-top: 20px;
  text-align: center; /* Center icons */
}

.social-icons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  margin: 0 5px;
  border-radius: 50%;
  background: #2E85E4;
  color: #fff;
  text-align: center;
  line-height: 36px;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: #ffc107;
  color: #000;
}



@media (max-width: 768px) {
 
  .contact-card {
    margin-bottom: 20px;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 0.9rem;
  }
  .btn-submit {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}


/* ===== Footer ===== */
footer {
  position: relative;
  color: #fff;
  overflow: hidden;
  font-family: 'Urbanist', sans-serif;
}

/* Background image and overlay */
footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: url('./assets/images/footer.png') center/cover no-repeat;
  z-index: 0;
}



/* Footer content */
footer .container-fluid {
  position: relative;
  z-index: 2;
  padding: 60px 40px;
  font-size:larger;
}


/* Section titles */
footer h5 {
  font-weight: 900;
  margin-bottom: 15px;
  color: #2E85E4;
}

/* Footer links */
footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: #2E85E4;
}


  .logo-large {
    max-width: 250px; /* adjust as needed */
    height: auto;
  }


/* Company info */
footer .col-md-3 img {
  max-width: 270px;
  margin-bottom: 10px;
}

/* Lists */
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 8px;
}

/* Social icons */
footer .d-flex a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: all 0.3s;
}

footer .d-flex a:hover {
  background: #2E85E4;
  color: #fff;
  transform: translateY(-3px);
}

/* Contact info icons */
footer p i {
  color: #2E85E4;
}


 /* Footer wrapper row */
footer .row.justify-content-center {
  display: flex;
  justify-content: center; /* Center all columns horizontally */
  gap: 30px; /* Space between columns */
  flex-wrap: wrap; /* Wrap on smaller screens */
}

/* Footer Products Links */
.footer-products {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Align links to top */
  text-align: left;
}

.footer-products h5 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-products .row {
  margin: 0;
}

.footer-products ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-products ul li {
  margin-bottom: 10px;
}

.footer-products ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-products ul li a:hover {
  color: #ffc107;
}

/* Footer Explore & Contact */
.footer-explore, .footer-contact {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Responsive */
@media (max-width: 992px) {
  footer .row.justify-content-center {
    gap: 20px;
  }

  footer .col-md-3 {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }

  .footer-products .row {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 992px) {
   footer .row {
    text-align: center;
  }
  footer .col-md-3 {
    margin-bottom: 20px;
  }
  footer .social-icons {
    justify-content: center;
  }
  footer p {
    font-size: 0.9rem;
  }
}
/* footer end*/

/* footer responsive*/
/* ===== Footer Base ===== */
footer {
  position: relative;
  color: #fff;
  overflow: hidden;
  font-family: 'Urbanist', sans-serif;
  background-color: #000; /* Fallback color */
}

footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: url('./assets/images/footer.png') center/cover no-repeat;
  z-index: 0;
  opacity: 0.6;
}

footer .container-fluid {
  position: relative;
  z-index: 2;
  padding: 60px 40px;
  font-size: larger;
}

/* Titles */
footer h5 {
  font-weight: 900;
  margin-bottom: 15px;
  color: #2E85E4;
}

/* Links */
footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
footer a:hover {
  color: #2E85E4;
}

/* Company Logo */
footer img {
  max-width: 200px;
  height: auto;
}

/* Layout Adjustments */
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer ul li {
  margin-bottom: 8px;
}

/* Social icons */
footer .d-flex a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: all 0.3s;
}
footer .d-flex a:hover {
  background: #2E85E4;
  transform: translateY(-3px);
}

/* Contact Icons */
footer p i {
  color: #2E85E4;
}

/* Responsive Breakpoints */

/* 🟡 Tablet view */
@media (max-width: 992px) {
  footer .container-fluid {
    padding: 40px 20px;
  }

  footer .row {

    align-items: center;
    text-align: center;
  }

  footer .col-lg-3,
  footer .col-md-6,
  footer .col-sm-12 {
    max-width: 100%;
    margin-bottom: 25px;
  }

  footer h5 {
    margin-top: 15px;
  }

  footer .d-flex {
    justify-content: center;
  }

  footer .text-md-start {
    text-align: center !important;
  }

  /* Product columns stack neatly */
  .footer-products .row {
    flex-direction: column;
    align-items: center;
  }
  .footer-products .col-lg-3 {
    max-width: 100%;
  }
}

/* 🔵 Mobile view */
@media (max-width: 576px) {
  footer .container-fluid {
    padding: 30px 15px;
    font-size: medium;
  }

  footer p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  footer img {
    max-width: 180px;
  }

  footer .d-flex {
    gap: 10px;
  }

  footer .row > div {
    margin-bottom: 20px;
  }

  .footer-products .row {
    display: block;
  }

  footer .border-top {
    margin-top: 20px;
  }

  footer .text-center img {
    height: 50px;
  }
}


    /*login pop up */
    /* General modal styling */
    .modal-content {
        border-radius: 12px;
        padding: 20px;
        background: #fff;
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    /* Modal header */
    .modal-header {
        border-bottom: none;
        justify-content: center;
        position: relative;
    }

    .modal-header .btn-close {
        position: absolute;
        right: 15px;
        top: 15px;
    }

    /* Modal titles */
    .modal-title {
        font-weight: 700;
        font-size: 1.5rem;
        text-align: center;
        width: 100%;
    }

    /* Form inputs */
    .modal-body .form-control {
        border-radius: 8px;
        padding: 12px;
        border: 1px solid #ced4da;
        transition: all 0.3s ease;
    }

    .modal-body .form-control:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    }

    /* Buttons */
    .modal-body .btn {
        padding: 12px;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .modal-body .btn-primary {
        background-color: #0d6efd;
        border: none;
    }

    .modal-body .btn-primary:hover {
        background-color: #0b5ed7;
    }

    .modal-body .btn-success {
        background-color: #198754;
        border: none;
    }

    .modal-body .btn-success:hover {
        background-color: #157347;
    }

    /* Footer links */
    .modal-footer {
        border-top: none;
        justify-content: center;
    }

    .modal-footer a {
        color: #0d6efd;
        text-decoration: none;
        font-weight: 500;
    }

    .modal-footer a:hover {
        text-decoration: underline;
    }

    /* Checkbox styling */
    .form-check-label {
        user-select: none;
        font-size: 0.9rem;
    }
.modal-content {
  border-radius: 12px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.modal-title {
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
}

/* hamburger */

