/* ===== 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;
}

/* 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 */
}



/* Responsive - stack columns on small screens */
@media (max-width: 992px) {
  .dropdown-menu {
    flex-direction: column;
    min-width: 100%;
  }
  .products-grid {
    flex-direction: column;
  }
}


/* 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 */
  }
}


/* Mobile Menu Toggle (hidden on desktop) */
.menu-toggle {
  display: none;
}


.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }

  .section-header h2 {
    font-weight: bold;
    font-size: 28px;
    margin: 20px 0;
    color: #2E85E4;
  }

  .section-header .line {
    border: 0;
    height: 2px;
    background: #ccc;
    width: 80px;
    margin: 0 auto;
  }

  /* Optional: make it responsive */
  @media (max-width: 768px) {
    .section-header h2 {
      font-size: 22px;
    }
    .section-header .line {
      width: 60px;
    }
  }

/* 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);
}


.about-section {
  position: relative;
  padding: 100px 0;
  color: #000; /* black text */
  overflow: hidden;
  background: none; /* remove opacity from main section */
}

/* Background image with lower opacity */
.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('') center/cover no-repeat;
  opacity: 0.17; /* 13% opacity for background only */
  z-index: 0;
}

/* Keep content above background */
.about-section .container {
  position: relative;
  z-index: 1;
}

/* Section Heading */
.section-heading h2 {
  font-weight: 700;
  font-size: 2.5rem;
  color: #2E85E4;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

/* Image styling */
.about-section img {
  width: 100%;
  max-width: 550px;
  border-radius: 10px;
  transition: transform 0.4s ease;
  z-index: 1;
  position: relative;
}

.about-section img:hover {
  transform: scale(1.03);
}

/* Text styling */
.about-text {
  color: #2E85E4; /* black text */
}

.about-text h5 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #000; /* black text for clarity */
  margin-bottom: 1.2rem;
}

/* Button styling */
.about-text .btn {
  background-color: #2E85E4;
  border: none;
  border-radius: 6px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-text .btn:hover {
  background-color: #1B5EA8;
  transform: translateY(-2px);
}




/* ===== Product Page ===== */
.product-page .filters {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.product-page .filters h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.product-page .filter-group {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.product-page .filter-group label {
  font-weight: 500;
  margin-bottom: 5px;
  color: #333;
}

.product-page .filter-group select {
  padding: 8px 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.product-page .apply-btn {
  margin-top: 10px;
  background-color: #007bff;
  color: #2E85E4;
  padding: 10px 20px;
  font-weight: 500;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-page .apply-btn:hover {
  background-color: #007bff;
  transform: translateY(-2px);
}


/* ===== Product Grid Card Styling ===== */
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #2E85E4;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: rgba(46, 133, 228, 0.85); /* subtle blue glow */
}

/* Product Image */
.product-card img {

  max-height: 70%;
  transition: transform 0.4s ease;
  z-index: 3;
}

.product-card:hover img {
  transform: translateY(-15px) scale(1.05);
}

/* Overlay rectangle (optional) */
.product-card::after {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 55%;
  background: rgba(46, 133, 228, 0.85); /* subtle overlay */
  z-index: 1;
  transition: bottom 0.5s ease;
  border-radius: 12px;
}

.product-card:hover::after {
  bottom: 0;
}

/* Product Name Button */
.product-name-btn {
  margin-top: 15px;
  padding: 8px 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2E85E4;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #2E85E4;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
  text-decoration: none;
}

.product-name-btn:hover {
  background: #2E85E4;
  color: #2E85E4;
  border-color: #1B5EA8;
}

/* Documents overlay */
.doc-icons {
  position: absolute;
  bottom: 60px; /* above the button */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 5;
}

.product-card:hover .doc-icons {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(-5px);
}

/* Font Awesome icons */
.doc-icon {
  font-size: 1.4rem;   /* adjust size as needed */
  color: #fff;          /* white color */
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.doc-icon:hover {
  transform: translateY(-3px) scale(1.2);
  color: #2E85E4;       /* optional hover shade for feedback */
}

/* Optional: add a subtle glow on hover for better visibility on image */
.doc-icon:hover {
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}



/* ===== Responsive tweaks ===== */
@media (max-width: 992px) {
  .product-card img {
    max-width: 75%;
    max-height: 65%;
  }
}

@media (max-width: 768px) {
  .product-card {
    padding: 10px;
    margin-bottom: 20px;
  }
  .product-card img {
    max-width: 80%;
    max-height: 60%;
  }
  .product-name-btn {
    font-size: 0.85rem;
    padding: 6px 10px;
  }
}





/* Pagination Styles */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pagination {
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 0;
}


.pagination .page-link {
  display: block;
  padding: 8px 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  color: #0A2540;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.pagination .page-link:hover {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}

.pagination .page-link.active {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
  pointer-events: none;
}




/* ===== 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 bottom */
footer .border-top {
  border-color: rgba(255,255,255,0.3) !important;
}

footer .small {
  font-size: 67;
}

/* Responsive */
@media (max-width: 768px) {
  footer .container-fluid {
    padding: 40px 20px;
  }

  footer .col-md-3 {
    margin-bottom: 30px;
    text-align: center;
  }

  footer .d-flex {
    justify-content: center;
  }
}

.toggle-section {
  transition: all 0.3s ease;
}

/*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;
}

/* css for download icon */
.product-card-top {
    position: relative;
    overflow: hidden;
}
/* 
.action-btn {
    opacity: 0;
    transition: 0.3s ease;
    cursor: pointer;
    position: absolute;
}
.action-btn.active {
    opacity: 1;
} */

.action-btn {
    opacity: 0;
    /* visibility: hidden;    */
    display: none;
    pointer-events: none;
    transition: opacity 0.3s ease;
    position: absolute;
    cursor: pointer;
}

.action-btn.active {
    opacity: 1;
    /* visibility: visible; */
    display: block;
    pointer-events: auto; /* enables click */
}


/* Center bottom icon */
.download-btn {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}






  


