:root{
    --primary-color:#bb0909;
    --second-color:#0a19c7;
    --nav-bg:#a70000;
    --footer-bg:#540000;
}

body{
    /* font-family:"Jost",sans-serif */
    font-family: "Tinos", serif;
    /* font-family: "Poppins", sans-serif; */
    font-weight: 400;
}

.title{
    font-size: 30px;
    font-weight: 600;
}
.title-color{
    color: var(--primary-color);
}
section{
    padding: 60px 0;
}
.carousel-item img { width: 100%; height: 500px; object-fit: cover; }
.gallery img { width: 100%; height: 200px; object-fit: cover; margin-bottom: 15px; }
.testimonial-item { display: flex; padding: 20px; border-radius: 8px; background: #f8f9fa; box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); }
.testimonial-item img {width: 40px; border-radius: 50%; margin-right: 5px; }
.testimonial-text { flex: 1;}
#testimonial-slide img {width: 80%; }
.stars { color: #ffcc00; }
.footer { background: var(--footer-bg); color: white; padding: 60px 0; }
.footer a { color: #bbb; text-decoration: none; transition: color 0.3s; }
.footer a:hover { color: #fff; }
.footer .social-icons a { margin: 0 10px; font-size: 22px; transition: color 0.3s; }
.footer .social-icons a:hover { color: #007bff; }
.footer .contact-info p { margin-bottom: 5px; }
.footer-bottom{
    background-color: var(--primary-color);
    padding: 20px 0;
    background-color: #440000;
    color: #fff;
}

.contact-content h2 { font-size: 28px; margin-bottom: 15px; }
.contact-content p { font-size: 16px; color: #555; }
.form-container { padding: 20px; background: #ffffff; border-radius: 8px; }
.form-group { position: relative; margin-bottom: 20px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    font-size: 16px;
    transition: all 0.3s;
}
.form-group label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
    color: #777;
    background: white;
    padding: 0 5px;
}
.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:not([value=""]) + label {
    left: 10px;
    top: 0;
    font-size: 12px;
    color: #0e141b;
}
.form-group input:focus,
.form-group textarea:focus{
    border-color: #1676d6;
}

#about .about-img img{
    width: 600px;
    height: 450px;

}

.img-shine {
    position: relative;
    overflow: hidden;
    display: inline-block;
}
.img-shine img {
    transition: transform 0.5s ease-in-out;
    width: 100%;
    display: block;
}
.img-shine:hover img {
    transform: scale(1.1);
}
.img-shine::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: left 0.5s ease-in-out;
}
.img-shine:hover::before {
    left: 0;
}
.img-shine::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 60%);
    transform: skewX(-25deg);
    transition: left 0.5s ease-in-out;
}
.img-shine:hover::after {
    left: 100%;
}

#services img{
    width: 320px;
    height: 280px;
}

/* brand offer */
.brand-card {
    border-radius: 3px;
    overflow: hidden;
    transition: 0.3s;
    background-color: #f7f6f6;
    border: none;


}
.brand-card:hover {
    transform: translateY(-5px);
}
.brand-logo {
    width: 50%;
    height: 90px;
    margin: 10px auto 2px;
    display: block;
    /* padding: 10px; */
}

i
.see-chart {
    color: rgb(5, 48, 123);
    text-decoration: underline;
    cursor: pointer;
    display: block;
 text-decoration: none;
}

.navbar{
background-color: var(--nav-bg) !important;
color: #fff;
}
 .offcanvas{
background-color: var(--nav-bg) !important;
color: #fff;
}
.offcanvas-body {
    padding-top: 0;
}
.navbar .nav-link{
color: #fff;
}
.navbar .nav-link.active{
    border-bottom: 1px solid #fff;
    color: #fff;
}

#helo_slider img{
height: 600px;

}
.logo{
width: 120px;
/* background-color: #fff;
border-radius: 50%; */
}
.cursor-pointer{
    cursor: pointer;
}
/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 5px 10px;
    border-radius: 50%;
    font-size: 24px;
    z-index: 999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }

  .whatsapp-btn:hover {
    transform: scale(1.1);
    color: white;
    text-decoration: none;
  }
  
  /*Mobile Menu*/
       .bottom-nav {
          position: fixed;
          bottom: 0;
          left: 0;
          width: 100%;
          height: 50px;
          background-color: #ffffff;
          border-top: 1px solid #ddd;
          display: none;
          justify-content: space-around;
          align-items: center;
          z-index: 1000;
        }
      
        .bottom-nav .nav-item {
          display: flex;
          flex-direction: column;
          align-items: center;
          font-size: 14px;
          color: #666;
          text-decoration: none;
          line-height: 15px;
        }
      
        .bottom-nav .nav-item i {
          font-size: 20px;
          margin-bottom: 2px;
        }
      
        .bottom-nav .nav-item.active,
        .bottom-nav .nav-item:hover {
          color: #25D366;
        }
.about-banner, .product-banner{
    width: 840px !important;
    height: 450px !important;
    text-align: center;
    padding-bottom: 20px;
}
.banch-card{
    line-height: 20px;
}
@media only screen and (max-width: 600px) {
p{
    font-size: 14px;
    /* text-align: justify; */
}
.about-banner{
    width: 840px !important;
    height: 240px !important;
    text-align: center;
    padding-bottom: 20px;
}
 .product-banner{
    width: 840px !important;
    height: 200px !important;
    text-align: center;
    padding-bottom: 20px;
}
#helo_slider img{
height: 200px
}
#about .about-img img{
    height: 250px;
}
section{
    padding: 20px 0;
}
#helo_slider{
    padding-top: 18px;
}
#about{
    text-align: justify;
    font-size: 14px;
}
.navbar-toggler{
    background: #fff;
    padding: 2px;
    border-radius: 3px;
}
.brand-logo {
    width: 60%;
    height: 50px;}
.bottom-nav {
    display: flex;
}  
.whatsapp-btn{
     bottom: 60px;
}
}
