/* ===== 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 {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar-nav .nav-item {
  display: flex !important; /* force horizontal layout */
}

.navbar-nav .nav-link {
  display: block !important;
}


/* Logo */
.logo img {
  max-height: 60px;
  width: auto;
}

/* Navbar Links */
.navbar-nav {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap; /* keep horizontal */
}

.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%;
}

/* 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;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  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;
}

.products-grid.products-grid.products-grid {
  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 */
}



@media (max-width: 992px) {
  .header {
    flex-wrap: wrap; /* allow vertical stacking */
  }

  .navbar-nav {
    flex-direction: column;
    gap: 10px;
    display: none;
    width: 100%; /* make full width */
    background: #fff; /* optional: visible background */
    padding: 10px 0;
  }

  .navbar-nav.show {
    display: flex;
  }

  .nav-item.dropdown .dropdown-menu {
    position: relative; /* make dropdown push content down */
    top: 0;
    left: 0;
    box-shadow: none;
    padding: 10px 0;
    min-width: 100%;
    display: none; /* hide initially */
  }

  .nav-item.dropdown.active .dropdown-menu {
    display: flex;
    flex-direction: column; /* vertical links */
    gap: 5px;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
    color: #2E85E4;
  }

  .header-buttons {
    display: none; /* hide buttons on mobile */
  }
}





/* Header Buttons */
.header-buttons {
  display: flex;
  gap: 10px;
}



.header-rect-btn:hover {
  background: #003f82;
}

/* Mobile Menu Toggle (hidden on desktop) */
.menu-toggle {
  display: none;
}


/* Mobile Menu */
@media (max-width: 992px) {
  .navbar-nav {
    flex-direction: column;
    gap: 10px;
    display: none;
  }
  .navbar-nav.show {
    display: flex;
  }
  .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
    color: #2E85E4;
  }
  .header-buttons {
    display: none; /* hide buttons on mobile */
  }
}




.bg-image-section {
  background-image: url('/assets/images/pic1.jpg'); /* replace with your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px; /* adjust height */
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

/* 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);
}



/* 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: 450px;
  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%;
  }
}




/* 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; /* small but not too small */
  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;
  margin-bottom: 15px;
  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; /* stack text above image */
    text-align: center;
  }

  section.py-5 .text-start {
    text-align: center;
    margin-bottom: 30px;
  }

  .about-img {
    max-width: 100%;
    margin-bottom: 20px;
  }

  section.py-5 h2 {
    font-size: 2rem;
  }

  section.py-5 h3 {
    font-size: 1.5rem;
  }

  section.py-5 p {
    font-size: 1rem;
  }
}


/* ===== Latest Innovation Section ===== */
section.py-5.bg-light {
  padding: 80px 20px;
  background: #f8f9fc;
}

section.py-5.bg-light h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #222;
}

/* ===== 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 */
}

/* ===== Card Title Styling ===== */
.card-title {
  position: absolute;
  top: 15px;
  left: 15px;
  font-weight: 600;
  color: #2E85E4;
  background: rgba(255, 255, 255, 0.95);
  padding: 5px 12px;
  border-radius: 6px;
  z-index: 3;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.feature-card:hover .card-title {
  color: #1B5EA8; /* slightly darker on hover */
}

/* ===== Product Image ===== */
.product-img {
  position: relative;
  z-index: 3; /* image above rectangle */
  max-width: 70%;
  max-height: 70%;
  transition: transform 0.4s ease;
}

.feature-card:hover .product-img {
  transform: translateY(-15px) scale(1.05); /* lift + zoom */
}

/* ===== Sliding Rectangle Overlay ===== */
.overlay-rect {
  position: absolute;
  bottom: -100%; /* hidden initially */
  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;
}

.feature-card:hover .overlay-rect {
  bottom: 0; /* slides up on hover */
}

/* ===== Responsive tweaks ===== */
@media (max-width: 992px) {
  .feature-card {
    height: 300px;
  }
  .card-title {
    font-size: 0.95rem;
    padding: 4px 10px;
  }
  .product-img {
    max-width: 75%;
    max-height: 65%;
  }
}

@media (max-width: 768px) {
  .feature-card {
    height: 250px;
    margin-bottom: 25px;
  }
  .card-title {
    font-size: 0.85rem;
    padding: 3px 8px;
  }
  .product-img {
    max-width: 80%;
    max-height: 60%;
  }
}




/* ===== 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;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-card {
    min-height: auto;
    margin-bottom: 25px;
  }
}



/* ===== 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;
  }
}




