     /* Custom styles */
        .navbar {
            background-color: #0f3cc9; /* White Background */
            padding: 0.8rem 1rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: #0f3cc9; /* Royal Blue */
            text-transform: uppercase;
        }
        .navbar-brand:hover {
            color: #0f3cc9; /* Slightly darker royal blue */
        }
        .navbar-nav .nav-link {
            color: #fff; /* Royal Blue */
            font-size: 1rem;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease, background-color 0.3s ease;
        }
        .navbar-nav .nav-link:hover {
            color: white;
            background-color: #0f3cc9; /* Royal Blue */
            border-radius: 5px;
        }
        .navbar-toggler-icon {
            color:white;
            background-image:none;
            background-color:none;
            border:none;
        }
        .dropdown-menu {
            background-color: white; /* White background */
            border: 1px solid #e0e0e0;
            border-radius: 5px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .dropdown-menu .dropdown-item {
            color: #002366; /* Royal Blue */
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        .dropdown-menu .dropdown-item:hover {
            background-color: #002366; /* Royal Blue */
            color: white;
        }
        .btn-custom {
            background-color: #ffff; /* Royal Blue */
            color: #002366;
            font-weight: bold;
            border-radius: 5px;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        .btn-custom:hover {
            background-color: #0047ab; /* Slightly darker royal blue */
            color: white;
        }
        
.slider {
            position: relative;
            width: 100%;
           
            overflow: hidden;
        
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .slides {
            display: flex;
            width: 100%;
            animation: slide-animation 8s infinite;
        }

        .slides img {
            width: 100%;
            object-fit: cover;
        }

        @keyframes slide-animation {
            0%, 20% { transform: translateX(0); }
            25%, 45% { transform: translateX(-100%); }
            50%, 70% { transform: translateX(-200%); }
            75%, 100% { transform: translateX(-300%); }
        }

        .controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
        }

        .controls button {
            background: rgba(0, 0, 0, 0.5);
            border: none;
            color: white;
            padding: 10px 20px;
            cursor: pointer;
            border-radius: 50%;
            outline: none;
            transition: background 0.3s ease;
        }

        .controls button:hover {
            background: rgba(0, 0, 0, 0.7);
        }
        
        
               .logo-container {
            text-align: center;
            padding: 1rem 0;
            background-color: white;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .logo-container img {
            max-width: 150px;
            height: auto;
        }

        .section-header {
            text-align: center;
            font-size: 1.8rem;
            font-weight: bold;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .product-card {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .product-card img {
            width: 100%;
            height: 400p;
            display: block;
        }

        .product-card:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .product-card .card-overlay {
            position: absolute;
            bottom: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 0.5rem;
            text-align: center;
        }
        
        .textt {
            color:white;
        }

.linkk {
    color:white;
}
.bg-blue {
    background-color:#0f3cc9;
}
        @media (max-width: 768px) {
            .section-header {
                font-size: 1.5rem;
            }
        }
        
        /* General Footer Styles */
.footer {
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  font-family: 'Arial', sans-serif;
  color: #003366; /* Royal Blue */
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.footer-section {
  flex: 1 1 250px;
  text-align: left;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-description {
  font-size: 14px;
  margin: 10px 0 20px;
  color: #555;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #003366;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.footer-links a i {
  margin-right: 8px;
}

.footer-links a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.footer-contact li i {
  margin-right: 8px;
  color: #003366;
}

.footer-form {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.footer-form input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
  font-size: 14px;
}

.footer-form button {
  padding: 10px 20px;
  border: none;
  background-color: #003366;
  color: #ffffff;
  font-size: 14px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.footer-form button:hover {
  background-color: #0056b3;
}

.footer-social {
  margin-top: 20px;
}

.footer-social a {
  font-size: 18px;
  color: #003366;
  margin-right: 15px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #0056b3;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  color: #003366;
  border-top: 1px solid #f0f0f0;
  padding-top: 10px;
}

/*Side fixed iocns Start*/

#hxb-enquiry-forms .fixed-icons {
    position: fixed;
    left: 10px;
    bottom: 10%;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

#hxb-enquiry-forms .fixed-icons a {
    margin: 5px 0;
    color: #fff;
    padding: 10px 10px;
    line-height: 0px !important;
    border-radius: 10px;
    text-align: center;
    font-size: 26px;
    transition: background-color 0.3s ease;
    border: 2px solid #fff;
}  

#hxb-enquiry-forms .fixed-icons .phone-icon {
    background-color: #1321a6;
}
#hxb-enquiry-forms .fixed-icons .whatsapp-icon {
    background-color: #27d648;
}
#hxb-enquiry-forms .fixed-icons .mail-icon {
    background-color: #d90000;
}

#hxb-enquiry-forms .fixed-icons a:hover {
    background-color: #000;
}

/* Popup Form Styles */
#hxb-enquiry-forms .popup-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

#hxb-enquiry-forms .form-content {
    background-color: #00000094;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    position: relative;
    margin: 0 10px;
    width: 100%;
}

#hxb-enquiry-forms .form-content h2 {
    color: #fff;
}

#hxb-enquiry-forms .close-btn {
    position: absolute;
    top: 0px;
    right: 10px;
    cursor: pointer;
    font-size: 40px;
    color: #fff;
}

#hxb-enquiry-forms .popup-form form input,
#hxb-enquiry-forms .popup-form form textarea {
    width: 100%;
    padding: 10px;
    margin: 6px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#hxb-enquiry-forms .popup-form form button {
    width: 100%;
    padding: 10px;
    background-color: #61c467;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    font-size: 18px;
    transition: background-color 0.4s ease;
}

#hxb-enquiry-forms .popup-form form button:hover {
    background-color: #48914d;
}

/*Side fixed iocns ends*/

.image-overlay {
    position: relative;
    width: 100%;
  
    max-width: 100%;
}

.image-overlay img {
    width: 100%;
   /* Ye height set kar raha hai */
    height: auto;   /* Ye pehle wale height ko override kar raha hai */
    display: block;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: black;
}

.overlay-text span {
    display: block;
    font-size: 16px;
    font-weight: normal;
}

.blog {
    background-image: url("../image/blog/blogbanner.png");
    height: 500px;
}




