/* General */
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

/* Navbar */
.main-navbar {
  width: 100%;
  height: 70px;
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: 0.3s;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.08);
}

.nav-logo {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.nav-menu li {
  list-style: none;
  margin-left: 30px;
}

.nav-menu li a {
  color: #000;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
}

.nav-menu li a:hover {
  color: #01A3D4;
}

/* Mobile Toggle Button */
.mobile-toggle {
  width: 30px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  height: 3px;
  background: #01A3D4;
  margin: 5px 0;
  transition: 0.3s;
}

/* Sidebar Menu */
.sidebar {
  width: 250px;
  height: 100%;
  background: white;
  position: fixed;
  top: 0;
  right: -250px;
  z-index: 1000;
  transition: 0.4s ease;
  padding: 20px;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-btn {
  font-size: 30px;
  cursor: pointer;
  color: #01A3D4;
}

.sidebar-menu {
  margin-top: 20px;
}

.sidebar-menu li {
  list-style: none;
  margin: 20px 0;
}

.sidebar-menu li a {
  color: #000;
  font-size: 18px;
  text-decoration: none;
  font-weight: 500;
}

.sidebar-menu li a:hover {
  color: #01A3D4;
}

/* Overlay Effect */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  z-index: 999;
}

/* Responsive Logo Size */
@media(max-width: 768px) {
  .nav-logo {
    height: 45px;
  }
}



/* Slider Image */
.slider-img {
  height: 90vh;
  object-fit: cover;
}

/* Blue Overlay with Opacity */
.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #005068e7;
  opacity: 0.55;
  z-index: 1;
}

/* Caption Styling */
.custom-caption {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 2;
}

.custom-caption h1 {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 3px 8px rgb(0, 0, 0);
}

.custom-caption p {
  font-size: 20px;
  margin-top: 10px;
  color: #f1f1f1;
  text-shadow: 0 3px 8px rgb(0, 0, 0);
}

/* Enquiry Button */
.enquiry-btn {
  background: #fff;
  color: #01A3D4;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 20px;
  transition: 0.3s;
}

.enquiry-btn:hover {
  background: #01A3D4;
  color: #fff;
}

/* Responsive Text */
@media(max-width: 768px) {
  .custom-caption h1 {
    font-size: 30px;
  }
  .custom-caption p {
    font-size: 16px;
  }
  .slider-img {
    height: 60vh;
  }
}

/* Control Icons Visibility */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(100%);
}



.about-section {
  position: relative;
}

.about-title {
  font-size: 32px;
  font-weight: 600;
  color: #01A3D4;
  margin-bottom: 20px;
}

.about-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.7;
}

.about-btn {
  background: #01A3D4;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.about-btn:hover {
  background: #0289b3;
  color: #fff;
}

/* Image Styling */
.about-img {
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
}

/* Decorative SVG */
.about-svg {
  width: 200px;
  position: absolute;
  left: -30px;
  bottom: -40px;
  z-index: 1;
  opacity: 0.25;
}

/* Responsive */
@media(max-width: 768px) {
  .about-title {
    font-size: 26px;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .about-btn {
    display: block;
    margin: 0 auto;
  }

  .about-svg {
    width: 150px;
    left: -20px;
    bottom: -20px;
  }
}




/* Section Background */
.why-choose-section {
  background: #f8f9fc;
}

.why-title {
  font-size: 32px;
  font-weight: 600;
  color: #01A3D4;
}

.why-subtitle {
  color: #555;
  font-size: 16px;
}

/* Boxes */
.why-box {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.why-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* Icon Circle */
.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  background: rgba(1, 163, 212, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon i {
  font-size: 30px;
  color: #01A3D4;
}

.why-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.why-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Hover Color Accent BG */
.why-box::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: #01A3D4;
  top: 100%;
  left: -10%;
  border-radius: 50%;
  transition: 0.4s;
  z-index: -1;
}

.why-box:hover::after {
  top: -10%;
}

.why-box:hover h4,
.why-box:hover p,
.why-box:hover .why-icon i {
  color: #fff;
}

.why-box:hover .why-icon {
  background: rgba(255,255,255,0.25);
}



/* Products Section */
.products-section {
  background: #01A3D4;
  color: #fff;
}

.products-title {
  font-size: 32px;
  font-weight: 600;
}

.products-subtitle {
  font-size: 16px;
  opacity: 0.9;
}

/* Product Card */
.product-card {
  width: 100%;
  height: 230px;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  padding: 5px;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.4s ease;
}

/* Hover */
.product-card:hover img {
  transform: scale(1.09);
}

/* Responsive */
@media (max-width: 576px) {
  .product-card {
    height: 180px;
  }
}



.faq-section {
    background: #ffffff;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #01A3D4;
}

.section-subtitle {
    font-size: 16px;
    color: #555;
}

.faq-card {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0px 3px 15px rgba(0,0,0,0.08);
}

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    padding: 15px;
    display: flex;
    align-items: center;
    color: #333;
    transition: 0.3s;
}

.faq-btn:hover {
    color: #01A3D4;
}

.icon {
    color: #01A3D4;
    margin-right: 10px;
    font-size: 20px;
}

.card-body {
    background: #f9f9f9;
    border-top: 1px solid #eee;
    padding: 15px 20px;
    border-radius: 0 0 12px 12px;
    font-size: 15px;
    color: #444;
}



.footer-section {
    background: #01A3D4;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.footer-logo-img {
    max-width: 170px;
}

.footer-text {
    font-size: 15px;
    line-height: 1.7;
    color: #e8faff;
}

.footer-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.footer-links li {
    list-style: none;
    margin-bottom: 8px;
}

.footer-links li a {
    color: #e8faff;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #fff;
    padding-left: 3px;
}

.footer-contact li {
    list-style: none;
    font-size: 15px;
    margin-bottom: 10px;
    color: #e8faff;
}

.footer-contact i {
    margin-right: 8px;
    color: #ffffff;
}

.footer-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 33px;
    color: #ffffff;
    margin-right: 8px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #ffffff;
    color: #01A3D4;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.4);
}

copyright {
    font-size: 14px;
}



.inner-banner {
    position: relative;
    width: 100%;
    min-height: 300px;
    background: url('../images/slider/sl4.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 80px 0;
}

/* Overlay with custom color opacity */
.inner-banner::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #005068a4; /* overlay */
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Breadcrumb Custom Styling */
.custom-breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.custom-breadcrumb .breadcrumb-item a {
    color: #d9f5ff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.custom-breadcrumb .breadcrumb-item a:hover {
    color: #ffffff;
}

.custom-breadcrumb .breadcrumb-item.active {
    color: #ffffff;
    font-weight: 600;
}

/* Responsive */
@media(max-width: 768px) {
    .banner-content h1 {
        font-size: 30px;
    }
}







.about-page-section {
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.about-title {
    font-size: 34px;
    font-weight: 700;
    color: #01A3D4;
    margin-bottom: 15px;
}

.about-text {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #005068;
}

/* Services List */
.about-services {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.about-services li {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #333;
}

.about-services li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #01A3D4;
    font-weight: 700;
}

/* Image + SVG Decoration */
.about-img-box {
    position: relative;
}

.about-img-box img {
    border-radius: 12px;
    width: 100%;
}

.svg-shape {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 120px;
    height: 120px;
    background: #01A3D4;
    border-radius: 50%;
    opacity: 0.15;
}

/* Responsive */
@media (max-width: 768px) {
    .about-title {
        font-size: 28px;
    }
    .about-img-box {
        margin-bottom: 20px;
    }
}

.products-page-section {
    background: #e7f7fd;
    font-family: 'Poppins', sans-serif;
}

.products-title {
    font-size: 32px;
    font-weight: 700;
    color: #01A3D4;
}

.products-subtitle {
    font-size: 15px;
    color: #666;
}

/* New Product Box Style */
.product-box {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    cursor: pointer;
    position: relative;
}

.product-box:hover {
    transform: translateY(-7px);
    box-shadow: 0px 10px 28px rgba(0,0,0,0.15);
}

.product-img-wrap {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.product-box:hover .product-img-wrap img {
    transform: scale(1.1);
}

/* Product Info */
.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

/* CTA Button */
.product-btn {
    background: #01A3D4;
    padding: 10px 20px;
    border-radius: 8px;
    color: #fff;
    display: inline-block;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
}

.product-btn i {
    margin-right: 6px;
}

.product-btn:hover {
    background: #0087b2;
}



.contact-section h2 {
  font-weight: 700;
}

.contact-card {
  background: #ffffff;
  border-radius: 12px;
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.icon-box {
  font-size: 40px;
  color: #007bff;
}

.contact-form {
  background: #fff;
  border-radius: 12px;
}

.map-container {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}



/* Floating WhatsApp Button */
.float-whatsapp {
    position: fixed;
    bottom: 25px;
    left: 20px;
    z-index: 999;
    background: #25d366;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    animation: bounce 1.8s infinite;
}

.float-whatsapp img {
    width: 32px;
    height: 32px;
}

/* Floating Call Button */
.float-call {
    position: fixed;
    bottom: 25px;
    right: 20px;
    z-index: 999;
    background: #007bff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    animation: bounce 1.8s infinite;
}

.float-call img {
    width: 32px;
    height: 32px;
}

/* Bounce Animation */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .float-whatsapp, .float-call {
        width: 50px;
        height: 50px;
    }

    .float-whatsapp img,
    .float-call img {
        width: 26px;
        height: 26px;
    }
}
