
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body,html{
  font-family: 'Poppins', sans-serif;
  overflow-x:hidden ;
}
 :root {
  --light-yellow: #FEFFC4;
  --accent-yellow: #FFD500;
  --white: #FFFFFF;
  --text-dark: #1F1B2E;
  --bg-light: #63a1de;
}


h1, h2, h3, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}



.header-top {
  background-color: var(--bg-light);
  font-size: 0.9rem;
  color: var(--white);
}

.header-top a {
  color: var(--white);
  text-decoration: none;
}

.header-top .social-link {
  color: var(--white);
  margin-left: 15px;
  transition: 0.3s;
}

.header-top .social-link:hover {
  color: var(--white);

}

#logo {
  height: 55px;
  transition: 0.3s;
}


.navbar-nav {
  display: flex;
  justify-content: center;
  flex: 1;
}

.navbar{
  /*margin: 0 80px 0 50px;*/
  padding: 12px;
  height: 90px;
  display:flex;
  align-items: center;
  justify-content: space-between;
}
#mainNav{
  margin: 0;
  padding: 0 20px;
}
.navbar-nav .nav-link {
  color: black;
  font-weight: 500;
  padding: 0.8rem 1rem ;
  position: relative;
  transition: color 0.3s ease; 
    line-height: normal;  position: relative; 
  display: flex;
  font-family:  'Poppins', sans-serif;
  align-items: center; 
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: red;
}

.navbar-nav {
    display: flex;
    flex-wrap: nowrap; 
    justify-content: center; 
    align-items: center; 
}
.navbar-nav .nav-item {
    white-space: nowrap; 
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 0.3em; 
    vertical-align: middle; 
}

.navbar-nav .nav-link .product-icon {
    margin-left: 5px;
    font-size: 20px; 
    vertical-align: middle; 
    color: #0077b6;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-yellow);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
   width: calc(100% - 12px); 
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;       
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-yellow);
  transition: width 0.3s ease;
}


.dropdown-menu {
  border-radius: 8px;
  border: none;
  background: #ffffff;
  padding: 0.5rem 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.dropdown-item {
  color: #1F1B2E;
  padding: 10px 20px;
  font-weight: 500;
}

.dropdown-toggle::after {
  display: none !important;
}

.dropdown-item:hover {
  background: #F4EEFF;
  color: #0077b6;
}


.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0.3rem;
  display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}


.arrow-right {
  float: right;
  font-size: 0.75rem;
  color: #888;
}

/* ---------------------- Offcanvas ---------------------- */
.offcanvas {
  background: #ffffff;
  width: 280px;
  border-left: 3px solid #1e90ff1a;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
  overflow-y: auto;
  z-index: 1050;

  /* animation */
  transform: translateX(100%);
  opacity: 0;
  animation: offcanvas-slide-in 0.5s ease forwards;
}


@keyframes offcanvas-slide-in {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ---------------------- Header ---------------------- */
.offcanvas-header {
  border-bottom: 1px solid #e6eef6;
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: flex-end;
}

.custom-close-btn {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #1e3a8a;
  transition: all 0.3s ease;
}
.custom-close-btn:hover {
  color: #0077ff;
  transform: rotate(90deg);
}

/* ---------------------- Body ---------------------- */
.offcanvas-body {
  padding: 1.5rem 1rem;
}

.offcanvas-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Links */
.offcanvas-nav li a {
  display: block;
  text-decoration: none;
  color: #1e293b;
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}


.offcanvas-nav li a:hover {
  background: #f3f7fd;
  color: #0077ff;
  transform: translateX(4px);
}

/* Dropdown */
.offcanvas-nav .dropdown-toggle {
  position: relative;
}
.offcanvas-nav .plus-icon {
  float: right;
  font-weight: 600;
  font-size: 22px;
  color: #0077ff;
  align-items: center;
  transition: transform 0.3s ease;
}
.offcanvas-nav .dropdown-toggle[aria-expanded="true"] .plus-icon {
  transform: rotate(45deg);
  color: #0077ff;
}

/* Submenu */
.offcanvas-nav ul.collapse {
  background: #f9fbff;
  border-left: 2px solid #0077ff33;
  margin: 6px 0 8px 15px;
  padding-left: 10px;
  border-radius: 6px;
}
.offcanvas-nav ul.collapse a {
  font-size: 0.9rem;
  padding: 8px 10px;
  color: #334155;
}
.offcanvas-nav ul.collapse a:hover {
  background: #e8f0ff;
  color: #0077ff;
}

/* ---------------------- Social Icons ---------------------- */
.offcanvas .social-icons {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  gap: 20px;
  border-radius: 50%;
}

.offcanvas .social-icons a {
  color: #0077ff;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.offcanvas .social-icons a:hover {
  color: #1e3a8a;
  
  transform: scale(1.40);
}

/* ---------------------- Navbar Toggler ---------------------- */
.navbar-toggler {
  border: none;
  background: #0077ff;
  color: #fff;
  font-size: 1.3rem;
  border-radius: 6px;
  padding: 8px 12px;
  transition: all 0.3s ease;
}
.navbar-toggler:hover {
  background: #1e3a8a;
  transform: scale(1.05);
}

/* ---------------------- Scrollbar ---------------------- */
.offcanvas::-webkit-scrollbar {
  width: 6px;
}
.offcanvas::-webkit-scrollbar-thumb {
  background: #0077ff44;
  border-radius: 10px;
}
.offcanvas::-webkit-scrollbar-thumb:hover {
  background: #0077ff;
}

/* ---------------------- Responsive ---------------------- 
@media (max-width: 768px) {
  .offcanvas {
    width: 100%;
    max-width: 100%;
    border-left: none;
    border-top: 3px solid #0077ff1a;
    animation: offcanvas-slide-up 0.5s ease forwards;
  }

  
  @keyframes offcanvas-slide-up {
    from {
      transform: translateY(100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .offcanvas-header {
    justify-content: space-between;
  }

  .offcanvas-nav li a {
    font-size: 1.05rem;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .offcanvas-nav li a {
    font-size: 1rem;
    padding: 10px 15px;
  }
  .offcanvas .social-icons a {
    font-size: 1.2rem;
  }
}*/
/*-------------------------------button----------------------------------------------*/

.navbar .btn-enquire {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;           
    margin-left: auto;      
    margin-right: 10px;     
}

.navbar .brochure-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 20px;      
}

.navbar .btn-enquire button,
.navbar .brochure-btn a {
    border-radius: 50px;      
    padding: 10px 25px;
    border: none;
}
   
/*-- navbar-button----*/


.navbar .brochure-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 20px;      
}

.navbar .btn-enquire button,
.navbar .brochure-btn a {
    border-radius: 50px;      
    padding: 10px 25px;
    border: none;
    background-color: red; 
    color: #fff;
    font-weight: 500;
    white-space: nowrap;       
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s;
}

.navbar .btn-enquire button:hover,
.navbar .brochure-btn a:hover {
  background-color: #dbeafe;  
    color: #1e3a8a;
    
    
}

/* -------- Dialog Box -------- */
#dialog {
  width: 650px;
  max-width: 95%;
  border: none;
  border-radius: 15px;
  padding: 2rem;
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: dialogPop 0.5s ease forwards;
}

/* Opening animation */
@keyframes dialogPop {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Close button */
#dialog .x {
  color: #ff4b4b;
  font-size: 1.3rem;
  transition: color 0.3s ease, transform 0.2s;
}
#dialog .x:hover {
  color: #1e90ff;
  transform: rotate(90deg);
}

/* -------- Title -------- */
#dialog h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #1e90ff;
  text-transform: uppercase;
  border-bottom: 3px solid #ffcc00;
  display: inline-block;
  padding-bottom: 0.3rem;
}

/* -------- Form Fields -------- */
#dialog .form-floating label {
  color: #555;
  font-weight: 500;
}

#dialog .form-control, 
#dialog .form-select, 
#dialog textarea {
  border: 1px solid #d6e9ff;
  border-radius: 8px;
  box-shadow: none;
  transition: all 0.3s ease;
  background-color: #f8fbff;
}

#dialog .form-control:focus, 
#dialog .form-select:focus, 
#dialog textarea:focus {
  border-color: #1e90ff;
  box-shadow: 0 0 8px rgba(30,144,255,0.2);
  background-color: #ffffff;
}

/* asterisk color */
.text-danger {
  color: #ff4b4b !important;
}

/* -------- Submit Button -------- */
#dialog .btn-outline-success {
  background: linear-gradient(135deg, #1e90ff, #00b4ff);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  padding: 0.6rem 2.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(30,144,255,0.3);
}
#dialog .btn-outline-success:hover {
  background: linear-gradient(135deg, #ffcc00, #ff5757);
  color: #fff;
  box-shadow: 0 6px 18px rgba(255, 87, 87, 0.3);
  transform: translateY(-2px);
}


#dialog .row {
  row-gap: 1rem;
}


/*===============================offcanvas form=========================*/

#enquireModal .modal-content {
  border: none;
  border-radius: 15px;
  padding: 2rem;
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: dialogPop 0.5s ease forwards;
}


@keyframes dialogPop {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}


#enquireModal .modal-header {
  border-bottom: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0;
}

#enquireModal .modal-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #1e90ff;
  text-transform: uppercase;
  border-bottom: 3px solid #ffcc00;
  display: inline-block;
  padding-bottom: 0.3rem;
}

/* ---------- Close Button ---------- 
#enquireModal .btn-close {
  color: #ff4b4b;
  font-size: 1.3rem;
  opacity: 1;
  transition: color 0.3s ease, transform 0.2s;
}
#enquireModal .btn-close:hover {
  color: #1e90ff;
  transform: rotate(90deg);
}*/
/* Custom close button for Enquire Modal */
#enquireModal .custom-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #ff4b4b;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.2s ease;
}

#enquireModal .custom-close:hover {
  color: #1e90ff;
  transform: rotate(90deg);
}

#enquireModal .custom-close:focus {
  outline: none;
  box-shadow: none;
}


/* ---------- Form Fields ---------- */
#enquireModal .form-control,
#enquireModal .form-select,
#enquireModal textarea {
  border: 1px solid #d6e9ff;
  border-radius: 8px;
  box-shadow: none;
  transition: all 0.3s ease;
  background-color: #f8fbff;
  font-size: 0.95rem;
}

#enquireModal .form-control:focus,
#enquireModal .form-select:focus,
#enquireModal textarea:focus {
  border-color: #1e90ff;
  box-shadow: 0 0 8px rgba(30,144,255,0.2);
  background-color: #ffffff;
}


#enquireModal .row {
  row-gap: 1rem;
}

/* ---------- Submit Button ---------- */
#enquireModal .btn-success {
  background: linear-gradient(135deg, #1e90ff, #00b4ff);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  padding: 0.6rem 2.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(30,144,255,0.3);
}

#enquireModal .btn-success:hover {
  background:red;
  color: #fff;
  box-shadow: 0 6px 18px rgba(255, 87, 87, 0.3);
  transform: translateY(-2px);
}

/* ---------- Responsive ---------- *
@media (max-width: 768px) {
  #enquireModal .modal-content {
    padding: 1.5rem;
  }
  #enquireModal .modal-title {
    font-size: 1.3rem;
  }
}



@media (max-width: 768px) {
  #dialog {
    padding: 1.5rem;
  }
  #dialog h2 {
    font-size: 1.3rem;
  }
}


@media (max-width: 992px) {
  .brochure-btn {
    display: none;
  }
  .navbar-nav .nav-link {
    padding: 0.6rem 0.8rem;
  }
}

@media (max-width: 768px) {
  .header-main {
    text-align: center;
  }
  .header-main img {
    margin-bottom: 10px;
  }
  .brochure-btn {
    width: 100%;
  }
}
*/

/* ---------- HERO CAROUSEL ---------- */
#heroCarousel {
    position: relative;
   
  }

  #heroCarousel .carousel-item {
    height: 70vh;
    background-size: cover;
    background-position: center;
    position: relative;
  }

  #heroCarousel .carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,rgba(1, 6, 31, 0.9),    rgba(248, 248, 192, 0.4) );
    z-index: 1;
  }

  #heroCarousel .carousel-caption {
    z-index: 2;
    position: absolute;
    text-align: center;
    white-space: nowrap;
    top: 50%;
    left: 50%;
    width:100%;
    transform: translate(-50%, -50%);
    color: var(--white);
  }

  /*
  #heroCarousel .carousel-caption h1 {
    font-size: 3rem;
    color: var(--white);
    white-space: nowrap;    
    display: inline-block;  
    margin-bottom: 15px;
  }
  */

  #heroCarousel .carousel-caption h1 {
    font-size: 3rem;
    color: var(--white);
    display: inline-block;
    margin-bottom: 15px;
    white-space: normal; 
}


  #heroCarousel .carousel-caption p {
    font-size: 1.6rem;
    color: #fff;
    max-width: 700px;
    margin: 10px auto 25px;
  }

  #heroCarousel .carousel-control-prev-icon,
  #heroCarousel .carousel-control-next-icon {
    filter: invert(100%);
  }

  .carousel-control-prev-icon,
.carousel-control-next-icon {
  display: none;
}


.carousel-control-prev,
.carousel-control-next {
  opacity: 1 !important;
  width: auto;   
}


.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;                
  transform: translateY(-50%);
  width: auto;             
  height: auto;
  opacity: 1 !important;   
}

.carousel-control-prev {
  left: 50px;   
}

.carousel-control-next {
  right: 50px;  
}



.control-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);   
  color: #1a237e;                
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 22px;
  transition: all 0.3s ease;

}


.control-circle:hover {
  background-color:#dbf2f8;
  color: #1a237e;
  border: 3px solid var(--white);
}

.btn-read {
  position: relative;
  display: inline-block;
  padding: 0.6rem 1.5rem;
  margin-top: 20px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  border-radius: 50px;
  overflow: hidden;
  transition: color 0.3s ease;
  z-index: 1;
}

.btn-read::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #fff; 
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: 0;
}


.btn-read:hover {
  color: #000;
}

.btn-read:hover::before {
  width: 300%;
  height: 300%;
}


.btn-read span {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.btn-read:hover span {
  transform: scale(1.05);
}
/*
#heroCarousel .carousel-caption {
    left: 10%; 
    right: auto;
    text-align: left; 
    transform: translateY(-50%); 
    white-space: normal; 
    max-width: 600px; 
}*/

/*==================about section=======================*/
/* 
.about {
  padding: 4rem 0;
  background: var(--white);
  text-align: center;
}

.about h2 {
  color: #0d47a1;
  margin-bottom: 1rem;
  font-size: 2rem;
  position: relative;
  display: inline-block;
}


.about h2:after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: red;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}


.about p {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 1rem auto 0;
}


[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
}
 */


/* ================= Products Section ================= */
/*
.services {
  background-color: rgba(218, 243, 247, 0.2);
    padding: 80px 0 0 20px;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 em {
    font-style: normal;
    font-weight: 700;
    font-size: 2rem;
    color: #000; 
    display: inline-block;
    margin-bottom: 10px;
    position: relative;
}

.section-heading h2 em::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: red;
    margin: 8px auto 0;
    border-radius: 3px;
}

.section-heading h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #0d47a1;
}

.service-item.cards {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    text-align: center;
    background: var(--white);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  border-top: 5px solid white;
  transition: 0.3s;
}

.service-item.cards:hover {
    transform: translateY(-10px);
     border-top: 5px solid rgb(245, 245, 116);
     border: 0.5px solid #1e88e5;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}


.service-item.cards img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.service-item.cards:hover img {
    transform: scale(1.05);
}


.down-content h4 {
  text-align: center;
    font-size: 0.5rem;
    font-weight: 600;
    color: #000; 
    margin-bottom: 20px;
}

.filled-button.subcat_li {
    display: inline-block;
    background: #42a5f5;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0); 
}

.filled-button.subcat_li:hover {
    background: #42a5f5;
    color: #fff;
    box-shadow: 0 0 15px 4px rgba(66, 165, 245, 0.7), 0 0 30px 6px rgba(66, 165, 245, 0.5);
    transform: scale(1.05);
}

.image-subtext {
    font-size: 0.85rem;
    color: #fff;
    margin-bottom: 10px;
    font-style: italic;
  }


@media (min-width: 992px) {
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}


@media (max-width: 991px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
*/
.service-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}


.service-item .down-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background-color: #007bff; 
  color: #fff;
  transform: translateY(90%);
  opacity: 0;
  transition: all 0.5s ease;
  text-align: center;
}

.service-item h4 {
  margin-bottom: 10px;
  color: #fff;
}


.service-item:hover img {
  transform: scale(1.05) /*translateY(-150px);
  transition: transform 0.5s ease;*/
}



.service-item:hover .down-content {
  transform: translateY(0);
  opacity: 1;
}


.services {
  background-color: rgba(218, 243, 247, 0.2);
  padding: 80px 0 0 0;
}


.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 em {
  font-style: normal;
  font-weight: 700;
  font-size: 2rem;
  color: #000;
  display: inline-block;
  margin-bottom: 10px;
  position: relative;
}

.section-heading h2 em::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: red;
  margin: 8px auto 0;
  border-radius: 3px;
}

.section-heading h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #0d47a1;
}


  .service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .service-item.cards {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 340px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }

  .service-item.cards img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
  }

  .service-item.cards h4 {
    margin: 20px 0;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
  }

 
  .down-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1565c0; 
    color: #fff;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s ease;
    padding: 20px 10px;
    border-radius: 0 0 15px 15px;
  }


  .service-item.cards:hover .down-content {
    opacity: 1;
    transform: translateY(0);
  }

  .service-item.cards:hover {
    transform: translateY(-10px);
    border-top: 5px solid rgb(245, 245, 116);
    border: 0.5px solid #1e88e5;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }

  .filled-button.subcat_li {
  display: inline-block;
  background: #fff;
  color: #1565c0;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, transform 0.3s ease;
  margin-top: 10px;
  z-index: 1;
}


.filled-button.subcat_li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 0%;

  background: linear-gradient(45deg, darkblue, mediumblue);

/* background: linear-gradient(to right, deepskyblue, blue); */



  
  /* background-color:red; */
  transition: all 0.5s ease;
  border-radius: 50px;
  z-index: -1;
  opacity: 0.9;
}


.filled-button.subcat_li:hover {
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 15px 4px rgba(255, 255, 255, 0.2);
}


.filled-button.subcat_li:hover::before {
  width: 250%;
  height: 250%;
  top: -75%;
  left: -75%;
}


  .image-subtext {
    font-size: 0.85rem;
    color: #fff;
    margin-bottom: 10px;
    font-style: italic;
  }

  @media (max-width: 992px) {

    .service-item.cards {
      width: 100%;
    }
  }

  @media (max-width: 768px) {
    .service-item.cards {
      width: 100%;
    }
  }

  @media (max-width: 576px) {
    .service-item.cards {
      width: 90%;
      margin-left: 20px;
    }
    .section-heading h2 em{
      font-size: 1.5rem;
      line-height: 40px;
    }
  }



  /*--==================  footer =========================--*/
.footer {
  position: relative;
  background-color: #fff;
  color: #333;
  overflow: hidden;
  padding-top: 100px;
  /*padding-bottom: 40px;*/
  font-family: "Poppins", sans-serif;
}

/* Background wave image */
.footer-bg {
  position: absolute;
  bottom: 20px; 
  left: 0;
  width: 100%;
  height: auto;
  opacity: 1;
  z-index: 0;
}
.footer-bg img {
  width: 100%;
  height: auto;
  transform: translateY(-20px);
}

/* Footer Columns */
.footer-col {
  position: relative;
  z-index: 2;
}

.footer h4 {
  color: #004aad;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer h4::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #004aad;
  margin-top: 6px;
  transition: width 0.4s ease;
}

.footer-col:hover h4::after {
  width: 70px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.4rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  /*color: #004aad;*/
  color: red;
  padding-left: 6px;
}
.footer-links a.multi-line {
  display: inline-block;
  width: auto; 
  white-space: normal; 
  line-height: 1.5rem;
}

/* Contact Info */
.footer p {
  font-size: 0.9rem;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* Social Icons */
.footer-socials {
  list-style: none;
  display: flex;
  padding: 0;
  margin-top: 15px;
}

.footer-socials li {
  margin-right: 15px;
}

.footer-socials a {
  color: #004aad;
  font-size: 18px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  text-decoration: none;
  border: 1px solid #004aad;
  border-radius: 50%;
}

.footer-socials a:hover {
  transform: scale(1.1);
  background-color: red;
  border: 2px solid #fff;
  color: #fff;
  box-shadow: 0 5px 12px rgba(0, 74, 173, 0.3);
}

/* Bottom Section */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}


.footer-logo {
  position: relative;
  top: -25px;
  z-index: 3;
}

.footer-logo img {
  width: 120px;
  height: auto;
  display: inline-block;
}

/* Footer bottom bar 63a1de*/
.footer-bottom p {
  background-color: #002b6f;
  font-size: 0.9rem;
  color: #fff;
  margin: -20px 0 0 0; 
  padding: 10px 0;
  width: 100%;
  display: block;
  position: relative;
  bottom: 0;
  left: 0;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}


/* Go To Top Button */
#toTopBtn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: #004aad;
  color: #fff;
  border: none;
  border-radius: 20%;
  width: 45px;
  height: 45px;
  margin-bottom: 6px;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0, 74, 173, 0.3);
  display: none;
}

#toTopBtn:hover {
  transform: translateY(-4px);
  background-color: #002b6f;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  font-size: 26px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.4s ease;
}

.whatsapp-float:hover {
  background-color: #1da851;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}


@media (max-width: 768px) {
  .footer {
    padding-top: 60px;
  }
  .footer h4 {
    font-size: 1.1rem;
  }
  .footer-bottom p {
    font-size: 0.85rem;
  }

  .whatsapp-float {
    right: 25px;
    bottom: 25px;
  }

  #toTopBtn {
    right: 90px;
    bottom: 25px;
  }
}
