*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

:root{
    --primary-color: #4120be; 
    --dark:#000;
    --light:#fff;
}


.navbar-nav .dropdown-menu { 
    position: absolute;
    height: 490px;
    overflow: scroll;
}

 .top-bar {
      background-color: var(--primary-color);
      color: #fff;
      font-size: 14px;
    }

    .top-bar a {
      color: #ffff;
      text-decoration: none;
      margin-right: 15px;
    }

    .social-icons a {
      background-color: rgba(255, 255, 255, 0.4);
      border-radius: 50%;
      padding: 6px 9px;
      margin-left: 8px;
      color: #fff;
    }

    .whatsapp-btn {
      border: 2px solid #fff;
      border-radius: 20px;
      padding: 3px 12px;
      color: #fff;
      font-weight: 500;
    }

    .navbar-brand {
      font-family: 'cursive';
      font-size: 26px;
      font-weight: bold;
    }

    .nav-link {
      color: #000 !important;
      font-weight: 500;
    }

    .navbar img{
      width: 90px; 
    }

    .nav-link.active {
      border-bottom: 2px solid var(--primary-color);
    }

    @media (max-width: 767px) {
      .topbar-section { 
        display: none;
      }
      .social-icons {
        margin-top: 10px;
      }
    }

    .section-head span{
        background-color: var(--primary-color);
    }



    .navbar .nav-item .nav-link{
      font-weight: 600;
      font-size: 18px;
      margin: 2px 8px;
    }












/* <!-- =========================== About Us section start here =============================================== --> */

    .about-section {
      padding: 60px 0;
    }
    .about-section h2 {
      font-weight: 700;
    }
    .about-section  p{
        text-align: justify;
        font-size: 18px;
    }
    .about-section .btn {
      background-color: var(--primary-color);
      border: none;
      color: var(--light);
      font-weight: 500;
    }
    .feature-box {
      text-align: center;
      padding: 20px;
    }
    .feature-box h4 {
      font-weight: 600;
    }
    .feature-box .number {
      font-size: 24px;
      font-weight: 700;
      color: var(--primary-color);
    }




    @media (max-width:768px) {
         .about-section  p{
        text-align: justify;
        font-size: 14px;
    }
    }


/* <!-- =========================== About Us section end here =============================================== --> */



 /* sub-page-banner-start */
.sub-page{
     
  background: url(../images/banner/naman-sub.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.sub-page-heading{
padding: 150px 20px;
text-align: start;
}
.sub-page-heading p{
font-size: 34px;
margin-bottom: 0px;
color: #000;
}
.sub-page-heading span a{
text-decoration: none;
color: #000;

}
.sub-page-heading span{
color: #000;
}
@media(max-width:768px){
.sub-page-heading{
padding: 80px 20px;
text-align: start;
} 
}
/* subpage-banner-end */









/* <!-- =========================== Feature section end here =============================================== --> */
.features-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    /* margin: 40px 0; */
}

.feature-box {
    flex: 1 1 calc(25% - 20px);
    background: #f8faff;
    border-radius: 12px;
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-8px);
}

.icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.feature-box h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 16px;
    color: #555;
    text-align: justify;
}



/* <!-- =========================== Feature section end here =============================================== --> */














/* <!-- =========================== What we Do section start here =============================================== --> */
.what-we-do h2 span {
    font-size: 24px;
    border-radius: 4px;
}
.service-item img {
    filter: grayscale(100%);
    transition: 0.3s;
    width: 50px;
    height: 40px;
}

.service-item .Heater{
  width:  50px;
  height: 50px;
}
.service-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}
.service-item h3 {
    font-size: 18px;
    text-transform: uppercase;
}
.service-item p {
    font-size: 18px;
    margin: 0;
}
/* <!-- =========================== What we Do section end here =============================================== --> */







/* <!-- =========================== Product section start here =============================================== --> */


    .product-card {
      border-radius: 20px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      transition: all 0.4s ease;
      position: relative;
      cursor: pointer;
    }

    .product-card:hover {
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
      transform: translateY(-8px);
    }

    .product-image {
      position: relative;
      overflow: hidden;
      height: 250px;
      background: #f7f7f7;
    }

    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform 0.6s ease;
    }

    .product-card:hover .product-image img {
      transform: scale(1.1) rotate(1deg);
    }

    .product-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: var(--primary-color);
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 20px;
      text-transform: uppercase;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

    .product-body {
      padding: 25px;
      text-align: center;
    }

    .product-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--primary-color);
      text-transform: uppercase;
      margin-bottom: 10px;
      transition: color 0.3s ease;
    }

    .product-card:hover .product-title {
      color: var(--dark);
    }

    .product-description {
      font-size: 14px;
      color: #555;
      margin-bottom: 20px;
    }

    .btn-view {
      border: none;
      background: var(--primary-color);
      color: #fff;
      padding: 10px 25px;
      border-radius: 50px;
      font-weight: 600;
      text-transform: uppercase;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(217, 35, 46, 0.4);
    }

    .btn-view:hover {
      background: var(--dark);
      box-shadow: 0 6px 16px rgba(217, 35, 46, 0.5);
      transform: scale(1.05);
    }





/* <!-- =========================== Product section end here =============================================== --> */







/* <!-- =========================== Product section start here =============================================== --> */

 .contact-box {
      border-radius: 20px;
      background-color: white;
      padding: 30px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .contact-box .contact-mess{
      font-size: 20px;
    }
    .icon-box {
      background-color: var(--primary-color);
      color: white;
      font-size: 24px;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 15px;
      margin-right: 15px;
    }
    .form-control,
    .form-select {
      border-radius: 10px;
      height: 50px;
    }
    .form-control::placeholder {
      font-size: 14px;
    }
 
    .btn-danger {
      border-radius: 10px;
      font-weight: 600;
      height: 50px;
    }
    iframe {
      border-radius: 20px;
      width: 100%;
      height: 300px;
      border: none;
    }
    .contact-box .text-primary {
  color: var(--primary-color) !important;
}

.contact-box a{
    text-decoration: none;
    color: var(--dark);
}

.contact-box .input-start {
  position: relative;
}

.contact-box .input-start .inp-control {
  padding: 1rem 0.75rem;
  height: calc(3.5rem + 2px);
  line-height: 1.25;

}

.contact-box .inp-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
 
}
.captchasep1 .captcha-codes-sec {
  display: flex
;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  border-top: 1px solid #ced4da;
  border-right: 1px solid #ced4da;
  border-bottom: 1px solid #ced4da;
  background: url(../image/card-image/capt-img.jpeg);
}
.captchasep1 .captcha-codes-sec button {
  font-style: italic;
  font-size: 22px;
  outline: none;
  background: transparent;
  color: var(--light);
  height: 100%;
  border: none;
}
.captchasep1 .captcha-codes-sec button i{
    color: var(--light);
}
.captchasep1{
  display: flex; 
}
.captchasep1 .captcha-codes-sec p {
  margin-bottom: 0;
  letter-spacing: 9px;
  font-style: italic;
  font-size: 22px;
  padding: 10px;
  height: 100%;
}
.bg-danger22 {
  background-color: var(--primary-color) !important;
  padding: 10px ;
}

.contact-box .btn{
    background-color: var(--primary-color);
    color: var(--light);
}
  
 .modal-body .btn{
  margin-top: 10px;
    background-color: var(--dark);
    color: var(--light);
}
 .modal-body .btn:hover{
    background-color: var(--primary-color);
    color: var(--light);
}

.contact-box .input-start .inp-control {
    padding: 1rem 0.75rem;
    height: calc(3.5rem + 2px);
    line-height: 1.25;
}




@media (max-width:768px) {
    .captchasep1{
  display: flex;
  flex-wrap: wrap;
}
}





/* <!-- =========================== Product section end here =============================================== --> */


 /* .info-card {
      border: 1px solid #ddd;
      padding: 20px;
      border-radius: 10px;
      background-color: #f9f9f9;
      text-align: center;
      margin-bottom: 20px;
    }
    .info-card i {
      font-size: 24px;
      margin-bottom: 10px;
      color: #333;
    }
    .btn-black {
      background-color: #000;
      color: #fff;
      border: none;
    } */


.info-card {
      border: 1px solid #ddd;
      padding: 20px;
      border-radius: 10px;
      background-color: #fff;
      text-align: center;
      margin-bottom: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .info-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    .info-card i {
      font-size: 30px;
      margin-bottom: 10px;
      color: #0d6efd;
    }


    .info-card h3{
      font-size: 16px;
      font-weight: 700;
    }
   

.why-section , .process-section{
    background-color: #4220be2a;
}
.why-section  .btn-black {
      background-color: #000;
      color: #fff;
      border: none;
    }
.why-section  .btn-black:hover {
      background-color: var(--primary-color);
      color: #fff;
      border: none;
    }

    .why-section .why-left-section p{
     
        text-align: justify;
        font-size: 18px;
   
    }

/* <!-- =========================== Process section Start here =============================================== --> */

 
 .step-icon {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      border: 2px solid var(--primary-color);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
      font-size: 36px;
      color: var(--primary-color);
      position: relative;
    }

    .step-number {
      position: absolute;
      top: -40px;
      font-size: 48px;
      font-weight: bold;
      color: #999;
    }

    .step-title {
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 10px;
    }

    .step-desc {
      color: #555;
      font-size: 17px;
    }

    .arrow {
      font-size: 32px;
      color: #888;
    }

    @media (max-width: 767.98px) {
      .arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
      }
    }


/* <!-- =========================== Process section end here =============================================== --> */







/* <!-- =========================== enquiry section start here =============================================== --> */
/* enquire page css start */
.enquiry-detail {
    margin-bottom: 30px;
}

.enquiry-detail h2 {
    font-size: 30px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 19px;
}
 .enquiry-detail p {
        text-align: justify;
        font-size: 18px;
    }
.enquiry-page-post img {
    width: 100%;
}

.enquiry-page-para  .enquiry-paragrapgh p{
  font-size: 18px;
}

@media(max-width: 768px) {

    .enquiry-detail p {
        text-align: justify;
        font-size: 15px;
    }
    .enquiry-page-para  .enquiry-paragrapgh p{
  font-size: 15px;
}


    .enquiry-detail h2 {
  font-size: 22px;
        margin-bottom: 10px;
    }

    .enquiry-detail h1 {
  font-size: 26px;
        margin-bottom: 10px; 
    }
    .enquiry-detail h3 {
  font-size: 19px; 
    }

}

.why-choose-btn a {
    border: 1px solid var(--primary-color);
    background-color: var(--dark);
    color: #fff;
    padding: 20px;
    border-radius: 40px;
    align-items: center;
    text-decoration: none;
}

.why-choose-btn a:hover {
    background-color: var(--primary-color);
    color: #fff;
    transition: .4s ease-in-out;
}

.why-choose-btn a i {
    background-color: var(--primary-color);
    color: #fff;
    padding: 6px 8px;
    border-radius: 50%;
    font-size: 19px;
}

.why-choose-btn a:hover i {
    background-color: #fff;
    color: var(--primary-color);
}

/* enquire page css  end*/

/* services css start */

.service-section {
    background-color: var(--black);
}
/* 
.service-head { 
} */

.service-para {
    color: #fff;
    text-align: center;
    font-size: 18px;
}


.service-card{
    margin-bottom: 20px;
    border: 2px solid gainsboro;
}

.service-card a {
    color: #fff;
}


.service-box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.overlay {
    position: absolute;
    /* top: 0; */
    height: 0%;
    opacity: 0;
    width: 100%;
    background-color: #4220be44;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease-in-out;
}

.service-box:hover .overlay {
    height: 100%;
    opacity: 1;
}

.service-box:hover .overlay h4 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.service-box img {
    width: 100%;
}

.service-box-detail {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 12px;
    background-color: #fff;
}

.service-box-detail h4:hover {
    color: var(--primary-color);
    transition: 0.5s ease-in-out;
}

.service-box-detail a {
    text-decoration: none;
    color: var(--dark);
    font-size: 20px;
    font-weight: 600;
}

.service-box-detail a i {
    padding-right: 2px;
    font-size: 18px;
    font-weight: 600;
}



.mobile-related{
    display: none !important;
}

@media screen and (max-width:1200px) {
    .service-box-detail a {
        font-size: 18px;
    }
}

@media(max-width: 991px) {
    .service-card {
        margin-bottom: 15px !important;
    }
}

@media(max-width: 767px) {
    .service-section {
        padding: 20px 0px !important;
    }

    .service-para {
        font-size: 17px;
    }

    .mobile-related{
    display: block !important;
}
.mobile-none{
    display: none !important;
}

}

/* service css end */



/* <!-- =========================== enquiry section end here =============================================== --> */






/* <!-- =========================== Blog section start  here =============================================== --> */
/* blog-section-start */
.blog-section{
    padding: 50px 0px;
}
.blog-card{
    /* border: 1px solid #000; */
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.blog-card .blog-banner img{
    width: 100%;
}
.blog-card .blog-content{
    padding: 12px 0px 30px 20px;
   background-color: #4220be44;
}
.blog-card .blog-content .date{
 font-size: 13px;
 color: rgb(100, 99, 99);
 margin-bottom: 20px;
}
.blog-card .blog-content h3{
    font-size: 22px; 
}
.blog-card .blog-content a{
  background-color: var(--dark);
  color: var(--light);
  text-decoration: none;
  padding: 5px 8px;
}
.blog-card .blog-content p{
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0px !important;
}
/* blog-details-start */
    /* related blog-style-start */
    .related-blog {
      box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
      padding: 5px;
      border-bottom: 1px solid #000;
      margin-bottom: 15px;
  }

  .related-blog a {
      text-decoration: none;


  }

  .related-blog .realted-img {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;

  }

  .related-blog .realted-img img {
      height: 100%;
      width: 100%;
  }

  .related-blog .related-blog-content {
      padding: 5px 5px 5px 0px;
  }

  .related-blog .related-blog-content h2 {
      font-size: 16px;
      color: #000;
  }

  .related-blog .related-blog-content p {
      color: #000;
  }

  /* related blog-style-end */


  .blog-detail {
      padding: 50px 0px;
  }


  .blog-image-banner .blog-date p {
      margin-bottom: 0px;
      color: #fff;
  }

  .blog-content-para p {
      text-align: justify;
      font-size: 18px;
  }
/* blog-details-end */

/* responsive section start */
@media(max-width: 768px){
 .blog-detail {
      padding: 30px 0px;
  }
 .blog-detail h2 {
  
    font-size: 22px;
  }
 .blog-detail h1 {
  
    font-size: 25px;
  }
    .blog-content-para p {
      text-align: justify;
      font-size: 15px;
  }
}
/* responsive section end */






/* blog-section-end */
/* <!-- =========================== Blog section end  here =============================================== --> */









/* <!-- =========================== Counter section start here =============================================== --> */

.counter-section h3 {
    font-size: 2rem;
}
.contact-bar a:hover {
    background: #f8f8f8;
}
 
.contact-bar{
    background-color: var(--primary-color);
}

.counter-section h3 .counter-charcter{
    color: red;
}
 
/* COUNTER SECTION */
.counter-section {
    background: #f8f8f8;
}
.counter-title {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.counters {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.counter-item h3 {
    font-size: 28px;
    color: #000;
    font-weight: bold;
}
.counter-item h3 span {
    color: var(--primary-color);
    font-size: 24px;
}
.counter-item p {
    font-size: 14px;
    margin-top: 5px;
}

/* CONTACT BAR */
.contact-bar {
    background: var(--primary-color);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    flex-wrap: wrap;
}
.contact-bar p {
    margin: 0;
    font-weight: bold;
    font-size: 21px;
}
.contact-btn {
    background: #fff;
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}
.contact-btn:hover {
    background: #f2f2f2;
}



/* <!-- =========================== Counter section end here =============================================== --> */















/* <!-- =========================== Footer section start here =============================================== --> */
 .footer {
    background: #111;
    color: #ddd; 
  }
  .footer-col {
    position: relative;
  }

  .footer-col img{
     width: 120px; 
  }

  /* Heading with underline animation */
  .footer-heading {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    color: #fff;
  }
  .footer-heading::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
  }
  .footer-heading:hover::after {
    width: 100%;
  }

  /* Links */
  .footer-links a {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 0.5rem;
    position: relative;
  }
  .footer-links a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
  }
  .footer-links a:hover {
    color: #fff;
  }
  .footer-links a:hover::after {
    width: 100%;
  }

  /* Contact lines */
  .footer-contact {
    color: #bbb;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
  }
  .footer-contact:hover {
    color: #fff;
  }

  /* Social icons */
 .footer .social-icons a {
    color: #bbb;
    font-size: 1.5rem;
    margin-left: 1rem;
    transition: color 0.3s, transform 0.3s;
  }
  .social-icons a:first-child {
    margin-left: 0;
  }
 .footer .social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
  }

  /* Divider */
  .footer hr {
    border-color: #333;
  }
  .footer .trade a{
    color: var(--light);
    text-decoration: none;
  }

  /* Responsive */
  @media (max-width: 767px) {
    .footer-links a, .footer-contact {
      margin-bottom: 0.75rem;
    }
  }


/* <!-- =========================== Footer section end here =============================================== --> */







/* our values   */
.values-section {
      background-color: #f9f6f1;
      padding: 60px 20px;
      border-radius: 12px;
    }

    .value-card {
      background-color: #f1ece6;
      padding: 20px;
      border-radius: 10px;
      transition: 0.3s;
      height: 100%;
    }

    .value-card.active {
      background-color: #a59484;
      color: #fff;
    }

    .value-card h5 {
      font-weight: 600;
      margin-bottom: 10px;
    }

    .value-card p {
      margin: 0;
      font-size: 14px;
    }

    .section-title {
      font-weight: 700;
      margin-bottom: 40px;
    }
/* our values   */

























/* submit form section start here */
.submit-form {
  padding: 50px 0;
}
.submit-form .submit-head {
  text-align: center;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 50px 10px;
}
.submit-form .submit-head i {
  color: #87BD48;
  font-size: 100px;
  border: 10px solid #87BD48;
  border-radius: 50%;
  padding: 15px 22px;
}
.submit-form .submit-head h2 {
  color: #155391;
  margin: 13px 0 0;
}
.submit-form .submit-head p {
  margin-bottom: 28px;
}
.submit-form .submit-head a {
  background: #15537E;
  color: #fff;
  padding: 10px 20px;
}


/* submit form section end here */
