*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family: "Open Sans", sans-serif;
}

/* Header css here */
    .navbar-top-border {
      border-top: 25px solid #222; 
    }

    /* Navbar custom styles */
    .navbar {
      background: #fff;
      padding: 10px 20px;
    }

    .navbar-nav .nav-link {
      font-weight: 500;
      color: #000 !important;
      margin: 0 8px;
      position: relative;
      transition: 0.3s;
    }

    /* Active/hover underline */
    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:hover {
      color: #00a4e4;
    }

    .navbar-nav .nav-link.active::after,
    .navbar-nav .nav-link:hover::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -5px;
      width: 100%;
      height: 2px;
      background-color: #00a4e4;
    }

    /* Logo */
    .navbar-brand img {
      height: 95px;
    }

    /* For small screens */
    @media (max-width: 991px) {
      .navbar-nav .nav-link {
        margin: 8px 0;
      }
    }
/* // Header css here */


.feature-box {
      text-align: center; 
      transition: 0.3s;
    }

    .feature-box i {
      font-size: 40px;
      color: #0d1b3e; /* Dark navy icon */
      background: #f8f9fa;
      padding: 20px;
      border-radius: 50%;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      margin-bottom: 15px;
    }

    .feature-box h5 {
      font-weight: 700;
      margin-bottom: 10px;
      color: #000;
    }

    .feature-box p {
      font-size: 15px;
      color: #6c757d;
    }

    .feature-box:hover {
      transform: translateY(-5px);
    }

    .iconbox-icon-container svg{
        box-shadow: 0 17px 30px rgba(0, 0, 0, 0.07);
        width: 100px;
        height: 100px;
        padding: 24px;
        border-radius: 20px;
        margin-bottom: 20px;
    } 

    .about-section {
      padding: 50px 0;
    }

    .about-section h2 {
      font-weight: 700;
      margin-bottom: 20px;
    }

    .about-section p {
      color: #444;
      font-size: 15px;
      line-height: 1.7;
    }

    .about-section .btn-custom {
      background: #009ed6;
      color: #fff;
      border-radius: 30px;
      padding: 12px 25px;
      font-weight: 600;
      margin-top: 20px;
      box-shadow: 3px 4px 10px rgba(0,0,0,0.2);
      transition: 0.3s;
    }

    .about-section .btn-custom:hover {
      background: #d01855;
      color: #fff;
    }

    /* Image wrapper */
    .about-images {
      position: relative;
    }

    .about-images img {
      width: 85%;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .about-images .img-top {
      position: absolute;
      bottom: -40px;
      right: 40px;
      width: 70%;
      border-radius: 10px;
    }


    /* Our product section css */
    .why-section {
      padding: 80px 0 30px;
      background: #fff;
      text-align: center;
    }

    .why-section h6 {
      text-transform: uppercase;
      font-size: 14px;
      letter-spacing: 2px;
      font-weight: 600;
      color: #6c757d;
      margin-bottom: 15px;
    }

    .why-section h2 {
      font-weight: 700;
      font-size: 28px;
      margin-bottom: 15px;
      color: #000;
    }

    .why-section p {
      font-size: 16px;
      color: #555;
      max-width: 650px;
      margin: 0 auto;
    }

     .pro-col1 {
      position: relative; 
      overflow: hidden;
      cursor: pointer;
      margin-bottom: 30px;
    }

    .pro-col1 img {
      width: 100%;
      display: block;
      border-radius: 5px;
    }

    .overlay-div {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: #0a58ca8f;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: all 0.4s ease-in-out;
      border-radius: 5px;
    }

    .overlay-div h4 {
      color: #fff;
      font-size: 30px;
      font-weight: 600;
      text-align: center;
    }

    /* Hover Effect */
    .pro-col1:hover .overlay-div {
      opacity: 1;
    }

    .pro-height-space{
        height: 300px;
    }

    .pro-sec{
        margin-top: 60px;
    }
    /* // Our product section css */



    /* Owl slider css */
    .owl-item {
        height: 300px !important;
        display: flex;
      }
      .item {
        width: 100%;
      }

      /* ✅ Navigation buttons */
      .owl-nav {
        position: absolute;
        top: 50%;
        width: 100%;
        transform: translateY(-50%);
        display: flex !important;
        justify-content: space-between;
        pointer-events: none; /* ensures only buttons are clickable */
      }
      .owl-nav button {
        pointer-events: all;
        background: #0ea0d6 !important;  /* solid black background */
        color: #fff !important;
        border: none;
        font-size: 24px !important;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex !important;
        align-items: center;
        justify-content: center;
        opacity: 0.8;
        transition: 0.3s;
      }
      .owl-nav button:hover {
        opacity: 1;
      }

      /* ✅ Dots */
      .owl-dots {
        text-align: center;
        padding-top: 15px;
        display: none;
      }
      .owl-dots button.owl-dot {
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: #ccc;
        margin: 0 3px;
      }
      .owl-dots button.owl-dot.active {
        background: #000;
      }
      .owl-carousel .owl-nav.disabled {
        display: flex;
      }
      .owl-carousel .owl-dots.disabled{
        display: none;
      }
      
      .head1 h3{
        color: #0ea0d6;
        font-weight: 700;
        font-size: 28px;
        margin-bottom: 20px;
      }
    /* // Owl slider css */


    /* Build for you section css */
    .hero-section {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      color: white;
      padding: 120px 0px;
    }

    /* Dark overlay */
    .hero-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero-section h5 {
      font-weight: 500;
      color: #fff;
    }

    .hero-section h1 {
      font-size: 3rem;
      font-weight: 700;
      color: #00a4e4; /* Blue text */
    }

    .btn-enquiry {
      background: #00a4e4;
      border: none;
      padding: 12px 30px;
      border-radius: 30px;
      font-weight: 600;
      letter-spacing: 1px;
      transition: 0.3s;
      color: #fff;
    }

    .btn-enquiry:hover {
      background: #008ec0;
      color: #fff;
    }

    @media (max-width: 768px) {
      .hero-section h1 {
        font-size: 2.2rem;
      }
    }
    /* // Build for you section css */



    /* Footer section */
    .footer {
      background: #fff;
      padding: 50px 0 0;
      color: #000;
      box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    }
    .footer h5 {
      font-weight: 600;
      margin-bottom: 20px;
      color: #007bff;
    }
    .footer a {
      color: #000;
      text-decoration: none;
      font-size: 14px;
    }
    .footer a:hover {
      color: #007bff;
      text-decoration: underline;
    }
    .footer .social-icons a {
      font-size: 20px;
      margin-right: 10px;
      display: inline-block;
      background: #00a3e0;
      color: #fff;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      text-align: center;
      line-height: 40px;
      transition: 0.3s;
    }
    .footer .social-icons a:hover {
      background: #007bff;
    }
    .footer-bottom {
      background: #00a3e0;
      color: #fff;
      text-align: center;
      padding: 15px 0;
      margin-top: 30px;
    }
    .footer img {
      width: 50%;
      margin: 10px 0;
    }

    .foot-icon img{
        width: 100%;
        height: auto;
    }

    .footer-bottom p {
        margin-bottom: 0;
    }

    .list-unstyled i{
        color: #007bff;
    }

    .list-unstyled i{
        margin-bottom: 15px;
    }

    .foot-text{
        font-size: 14px;
    }
    /* // Footer section */

    .bredcrumb-sec{
      padding: 20px 0;
      background: #111;
    }

    .bredcrumb-sec p{
      color: #fff;
      margin-bottom: 0;
    }

    a{
      text-decoration: none;
    }

    .about-point-sec{
      margin: 50px 0px;
    }

    .about-point-sec h4{
      color: #0ea0d6;
      font-weight: 700;
      font-size: 16px;
    }

    .about-point-col1{
      margin-top: 30px;
    }



    .product-card {
      border: 1px solid #ddd;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      overflow: hidden;
      height: 100%;
    }
    .product-card:hover {
      transform: translateY(-5px);
    }
    .product-card img {
      max-height: 220px;
      object-fit: contain;
      padding: 15px;
    }
    .product-info {
      background-color: #009fe3;
      color: #fff;
      text-align: center;
      padding: 20px 15px;
      height: 180px;
      position: relative;
    }
    .product-info h5 {
      font-weight: 600;
      margin-bottom: 5px;
      font-size: 16px;
      line-height: 22px;
    }
    .product-info p {
      margin: 15px 0px 15px;
    }
    .product-info .btn {
      background: #fff;
      color: #009fe3;
      border-radius: 25px;
      padding: 6px 20px;
      font-weight: 500;
      transition: 0.3s;
      position: absolute;
      bottom: 0;
      transform: translate(-50%, -50%);
      left: 50%;
    }
    .product-info .btn:hover {
      background: #007bbf;
      color: #fff;
    }

    .head-3{
      font-weight: 700;
    }

    @media (max-width: 992px) and (min-width: 767px){
      .product-info .btn{
        width: 80%;
      }
    }

    @media (max-width: 1024px) and (min-width: 991px){
      .product-info .btn{
        width: 80%;
      }
    }

    .head-4{
      font-size: 28px;
      font-weight: 600;
    }


    .warranty-table {
      border: 1px solid #00a4dc;
      border-collapse: collapse;
      width: 100%;
    }
    .warranty-table th {
      background-color: #00a4dc;
      color: #fff;
      font-weight: 600;
      text-transform: uppercase;
      padding: 12px;
      text-align: left;
    }
    .warranty-table td {
      border: 1px solid #00a4dc;
      padding: 12px;
      color: #333;
    }
    .warranty-table tr:nth-child(even) {
      background-color: #fff;
    }


    .contact-section {
      padding: 50px 0;
    }
    .contact-section h2 {
      text-align: center;
      color: #00a4dc;
      font-weight: 600;
      margin-bottom: 40px;
    }
    .contact-info p {
      margin-bottom: 20px;
      font-size: 16px;
      color: #333;
    }
    .contact-info i {
      color: #00a4dc;
      font-size: 20px;
      margin-right: 10px;
    }
    .form-control {
      margin-bottom: 15px;
    }
    .btn-submit {
      background-color: #dc3545;
      color: #fff;
      border: none;
      padding: 10px 25px;
      border-radius: 5px;
    }
    .btn-submit:hover {
      background-color: #c82333;
    }


    .pro-page1 .product-card2 {
      position: relative;
      border-radius: 0px 30px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s ease-in-out;
    }
    .pro-page1 .product-card2:hover {
      transform: translateY(-5px);
    }
    .pro-page1 .product-card2 img {
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 0px 30px;
      max-height: fit-content;
    }
    .pro-page1 .overlay-text {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(255, 255, 255, 0.9);
      padding: 12px 20px;
      border-radius: 0px 20px;
      font-weight: bold;
      color: #00a4dc;
      font-size: 16px;
      text-align: center;
      width: 90%;
      text-transform: uppercase;
    }

    .sink-pge img{
      width: 70% !important;
      display: block;
      margin: auto;
    }

    .sink-pge h4 {
      color: #009cde; /* Blue heading */
      font-weight: bold;
    }
    .sink-pge .subtitle {
      color: #555;
      margin-bottom: 15px;
    }
    .sink-pge .custom-table thead {
      background-color: #00a4dc; /* Blue background */
      color: #fff;
    }
    .sink-pge .custom-table th,
    .custom-table td {
      border: 1px solid #00a4dc; /* Blue border */
      text-align: center;
      vertical-align: middle;
    }


    .blog-card {
      border: none;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: all 0.3s ease-in-out;
    }
    .blog-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }
    .blog-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }
    .blog-content {
      padding: 20px;
    }
    .blog-meta {
      font-size: 14px;
      color: #6c757d;
      margin-bottom: 10px;
    }
    .blog-meta i {
      color: #00a3e0;
      margin-right: 5px;
    }
    .blog-title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 12px;
      color: #1a1a1a;
    }
    .blog-desc {
      font-size: 14px;
      color: #555;
      margin-bottom: 20px;
    }
    .read-more {
      display: inline-flex;
      align-items: center;
      font-weight: 600;
      color: #00a3e0;
      text-decoration: none;
      border: 2px solid #00a3e0;
      padding: 8px 18px;
      border-radius: 8px;
      transition: all 0.3s;
    }
    .read-more:hover {
      background: #00a3e0;
      color: #fff;
    }
    .read-more i {
      margin-left: 6px;
      font-size: 14px;
    } 

    .blog-card{
      margin-bottom: 30px;
    }

    .blog-image img {
      border-radius: 15px;
      width: 100%;
      height: 400px;
      object-fit: cover;
    }
    .blog-meta {
      font-size: 14px;
      color: #6c757d;
      margin: 15px 0;
    }
    .blog-meta i {
      color: #7c3aed;
      margin-right: 6px;
    }
    .blog-title {
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 15px;
      color: #1a1a1a;
    }
    .blog-content {
      font-size: 15px;
      line-height: 1.8;
    }
    .quote-box {
      background: #f1f5ff;
      border-left: 4px solid #7c3aed;
      padding: 20px;
      margin: 25px 0;
      border-radius: 10px;
      font-style: italic;
      position: relative;
    }
    .quote-box i {
      position: absolute;
      bottom: 15px;
      right: 20px;
      font-size: 22px;
      color: #7c3aed;
    }
    /* Sidebar */
    .sidebar-card {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      padding: 20px;
      margin-bottom: 25px;
    }
    .sidebar-card h5 {
      font-weight: 600;
      margin-bottom: 20px;
    }
    .search-box input {
      border-radius: 10px 0 0 10px;
      border: 1px solid #ddd;
      padding: 10px;
    }
    .search-box button {
      border-radius: 0 10px 10px 0;
      border: none;
      background: #7c3aed;
      color: #fff;
      padding: 0 15px;
    }
    .categories ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .categories ul li {
      display: flex;
      justify-content: space-between;
      padding: 8px 0;
      border-bottom: 1px solid #eee;
      font-size: 14px;
    }
    .recent-posts .post-item {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }
    .recent-posts .post-item img {
      width: 70px;
      height: 55px;
      border-radius: 8px;
      object-fit: cover;
      margin-right: 12px;
    }
    .recent-posts .post-item h6 {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 4px;
      color: #333;
    }
    .recent-posts .post-item span {
      font-size: 12px;
      color: #777;
    }

    .sidebar-card .form-control {
        margin-bottom: 0px;
    }

    #footermarquee a {
      color: #000000;
      font-size: 16px;
      margin: 5px 0px;
      text-decoration: none;
  }