*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

:root{
    --primary-color:#07374d ;
    --secondary-color: #ec5017 ;
    --dark: #000 ;
    --light: #fff ;
}

    


    body {
      font-family: Arial, sans-serif;
      background-color: #f3f4f6;
    }

 /* headig  */
 .heading{
  text-align: center;
 }
.section-heading {
 
  padding: 20px 10px 0px 20px;
  position: relative;
  font-family: 'Segoe UI', sans-serif;
}

.small-title {
  font-size: 0.85rem;
  color: #999;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 5px;
  position: relative;
  padding-right: 60px;
}

.small-title::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 40px;
  height: 2px;
  background-color: #ff6600; /* Orange underline */
  transform: translateY(-50%);
}

.section-heading .main-title {
  font-size: 24px;
  font-weight: 700;
  color: #1c1c1c;
  margin: 0;
}

.section-heading{
  text-align: center;
}



 /* headig  */

 /* navbar section start here */
 .topbar {
      background-color: var(--primary-color); /* Yellow */
      color: var(--light);
      padding: 5px 20px;
      font-size: 14px;
    }
    .topbar a{
      color: var(--light);
      text-decoration: none;
    }

    .topbar i {
      margin-right: 6px;
      color: var(--secondary-color);
    }
    .right-panel{
      top: 0 !important;
      position: sticky !important;
    }

    /* Main Navbar */
    .navbar-main {
      /* background-color: #0a0f2c;  */
      background-color: var(--secondary-color);
      z-index: 99999 !important;
    }

    .navbar .navbar-brand .classic-logo{
        width: 110px;
      
    }

    .navbar-nav .nav-link {
      color: white;
      font-weight: 500;
    }

    .navbar-nav .nav-link:hover {
      color: var(--primary-color);
    }

    .get-quote-btn {
      background-color: var(--primary-color);
      color: var(--light);
      font-weight: bold;
      text-decoration: none;
      border: none;
      padding: 6px 14px;
      border-radius: 4px;
    }

    .navbar-toggler {
      border: none;
      font-size: 1.2rem;
      color: white;
    }
    
    .navbar-toggler {
      background: var(--primary-color) !important;
    }
    
    .dropdown-item:focus, .dropdown-item:hover {
      color: var(--light) !important;
      background-color: var(--secondary-color) !important;
    }
    
    /* Hover dropdown styles */
    .nav-item.dropdown:hover .dropdown-menu {
      display: block;
    }
    
    .nav-item.dropdown .dropdown-menu {
      display: none;
    }
    
    @media (max-width: 600px) {
      .navbar .nav-item .dropdown-menu .dropdown-item {
        font-size: 13px;
      }
    }
 /* navbar section end here */


    
     .about-section {
      display: flex;
      flex-wrap: wrap;
      min-height: 80vh;
    }

    .about-left {
      background-color: var(--primary-color);
      color: var(--light);
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      text-orientation: mixed;
      display: flex;
      justify-content: center;
      align-items: center;
     
      font-weight: bold;
      min-height: 100%;
    }
    .about-left h1{
         font-size: 34px;
    }
   
    .about-center {
       background: linear-gradient(#ffffffd7,#ffffffce),url(../image/img/logo/classic-inkjet-solution-logo.png);
      background-position: center;
      background-repeat: no-repeat;
      background-size: calc(100% - 100px);
       padding: 40px 17px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .about-center  p {
      font-size: 1rem;
      color: #000;
      margin: 0 auto;
      max-width: 590px;
    }
    .home-center h3{
         margin: 0 auto;
      max-width: 590px;
    }
    .home-center h2{
         margin: 0 auto;
      max-width: 590px;
    }
    .home-center h1{
         margin: 0 auto;
      max-width: 590px;
    }
     .home-center ul{
         margin: 0 auto;
      max-width: 590px;
    }

    .about-right {
      background-color: var(--secondary-color);
    }

    

    @media (max-width: 767px) {
      .about-left {
        writing-mode: horizontal-tb;
        transform: rotate(0deg);
        font-size: 1.5rem;
        padding: 1rem;
      }

      .about-section {
        flex-direction: column;
      }

      .about-center {
        padding: 30px 20px;
      }

      .top-image {
        height: 250px;
      }
    }
    .swot-grid {
      max-width: 1000px;
      margin: 60px auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 40px;
      position: relative;
    }

    .swot-card {
      padding: 30px;
      border-radius: 15px;
      text-align: left;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      font-size: 14px;
    
    }
    

    .swot-title {
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 10px;
    }

    .center-circle {
      width: 160px;
      height: 160px;
      background-color: white;
      border-radius: 50%;
      border: 10px solid transparent;
      background-image: linear-gradient(white, white),
        linear-gradient(to right, #fff3cd, #cfe2ff, #d1e7dd, #f8d7da);
      background-origin: border-box;
      background-clip: content-box, border-box;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      text-align: center;
      position: absolute;
      top: 50%;
      left: 50%;
      z-index: 9999;
      transform: translate(-50%, -50%);
      box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }
    .swot-card {
  padding: 30px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer; 
}
.swot-card.bg-warning-subtle:hover {
  background-color: #fff0a6;
}

.swot-card.bg-primary-subtle:hover {
  background-color: #d0e3ff;
}

.swot-card.bg-success-subtle:hover {
  background-color: #c8efd4;
}

.swot-card.bg-danger-subtle:hover {
  background-color: #f9c5c5;
}

.swot-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
 .swot-card{
    background-color: var(--primary-color);
     color: var(--light);
 }
 .swot-card:nth-child(2){
    background-color: var(--secondary-color) !important;
 }
 .swot-card:nth-child(3){
    background-color: var(--secondary-color) !important;
 
 }
 .swot-card:nth-child(4){
    background-color: var(--primary-color) !important;
 }

    @media (max-width: 768px) {
      .swot-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
      }

      .center-circle {
        position: static;
        transform: none;
        margin: 30px auto;
      }
    }



    .why-choose-us {
  padding: 60px 0;
}

.sub-title {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.main-title {
  font-weight: 700;
  font-size: 32px;
  color: #111;
}

.icon-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid #07374d;
  border-radius: 5px;
  transition: all 0.3s;
}

.icon-box i {
  font-size: 20px;
  color: var(--primary-color);
}
.icon-box h3{
  font-size: 16px;
  padding-top: 3px;
  text-align: center;
  
}
.icon-box{
  display: flex;
  align-items: center;
  justify-content: start;
}

.icon-box:hover {
  background-color: #f56c57;
  color: var(--light);
  cursor: pointer;
}

.experience-box {
  position: absolute;
  bottom: 5px;
  left: 0;
  background-color: var(--secondary-color);
  color: white;
  padding: 25px 20px;
  text-align: center;
}

.experience-box .year {
  font-size: 36px;
  margin: 0;
  font-weight: bold;
}

.experience-box p {
  margin: 0;
  font-size: 14px;
}


.why-choose-us .continuous-img{
  border-radius: 10px;
}.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-content {
  padding: 20px;
}

.product-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.product-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 18px;
  font-weight: 600;
  color: #2d6cdf;
}

.rating {
  color: #ffc107;
  font-size: 16px;
}






/* product section start here */
.plain-corugated {
  border-radius: 12px;
  padding: 20px;
  margin: 10px 0px;
  background-color: var(--primary-color);
  transition: all 0.4s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
}

 
 .plain-child{
  background-color: var(--secondary-color);
 }

/* Hover effects */
.plain-corugated:hover  {
 
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Image */
.plain-corugated-image img {
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.plain-corugated:hover .plain-corugated-image img {
  transform: scale(1.05);
}

/* Title section */
.plain-corugated-text h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-top: 12px;
}
.plain-corugated-text h2 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-top: 12px;
}
 

.plain-line {
  width: 60px;
  height: 3px;
  background-color: var(--primary);
  transition: background-color 0.4s;
}

.plain-corugated:hover .plain-line {
  background-color: var(--secondary);
}

/* About text */
.plain-corugated-about {
 
  text-align: center;
}

.plain-corugated-about p {
  text-align: justify;
  color: #444;
  font-size: 15px;
  margin: 0;
}

/* Arrow icon button */
.plain-corugated-about a {
  position: absolute;
  bottom: 10%;
  left: 40%;
 padding: 5px;
 font-size: 18px;
 opacity: 0;
  background-color:var(--dark);
  border-radius: 7px;
text-decoration: none;
color: var(--light);
text-align: center;
  /* margin-top: 10px; */
  transition: transform 0.4s ease-in-out;
}
.plain-corugated:hover .plain-corugated-about a{
  opacity: 1;
  bottom: 50%;
  transition: all 0.6s ease-in-out;
}

/* .plain-corugated-about i.fa-arrow-right {
  font-size: 18px;
  background-color: var(--white);
  border-radius: 50%;
  color: var(--primary);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
  border: 1px solid var(--primary);
} */

.plain-corugated-about a:hover i.fa-arrow-right {
  background-color: var(--secondary);
  color: var(--white);
  transform: translateX(6px);
  border-color: var(--secondary);
}

/* Optional responsiveness */
@media (max-width: 576px) {
  .plain-corugated {
    padding: 15px;
  }

  .plain-corugated-text h1 {
    font-size: 20px;
  }
  .about-left h1{
    font-size: 23px;
}
.experience-box {
    position: absolute;
    bottom: 5px;
    left: 6px;
    background-color: var(--secondary-color);
    color: white;
    padding: 2px 8px;
    text-align: center;
}
}

/* product section end here */




/* gallery section start here */
    .gallery-image {
      position: relative;
      display: block;
      overflow: hidden;
      border-radius: 8px;
    }

    .gallery-image img {
      transition: transform 0.3s ease;
    }

    .gallery-image:hover img {
      transform: scale(1.05);
    }

    .gallery-image .overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.5);
      color: var(--light);
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      font-size: 1.5rem;
      transition: opacity 0.3s ease;
    }

    .gallery-image:hover .overlay {
      opacity: 1;
    } 



/* gallery section end here */









/* contact us  */
 .contact-wrapper {
      position: relative;
      
      width: 100%;
      margin: auto;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 20px;
      padding: 20px;
    }

    .contact-card {
      background-color: var(--secondary-color);
      color: white;
      padding: 10px 10px;
      border-radius: 8px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  
 
    }

    
    
    .contact-card3{
      background-color: var(--primary-color);
            color: white;
      padding: 10px 20px;
      border-radius: 8px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
      width: 280px;
    }
      .contact-card{
  
      transform: translate(40px,70px);
      /* margin-top: 30px; */
      }
      .contact-card3{
            transform: translate(-40px,70px);


      }

    .contact-card h2,
    .contact-card3 h2 {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .info {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 5px;
      font-size: 14px;
      line-height: 1;
    }

    .info i {
      font-size: 16px;
      margin-top: 4px;
    }

    .contact-form-box {
      background: #fff;
      flex: 1;
      padding: 60px 40px;
      /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
      border-radius: 8px;
      box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
      max-width: 500px;
    }

    .contact-form-box h2 {
      color: #07374d;
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 8px;
    }
    .contact-form-box h1 {
      color: #07374d;
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .contact-form-box p {
      color: #aaa;
      font-size: 14px;
      margin-bottom: 25px;
    }

    .contact-form-box input,
    .contact-form-box textarea {
      width: 100%;
      padding: 12px 16px;
      margin-bottom: 1px;
      border: none;
      background-color: #f7f7f7;
      border-radius: 8px;
      font-size: 14px;
      outline: none;
      resize: none;
    }

    .contact-form-box button {
      background-color: var(--primary-color);
      color: #fff;
      border: none;
      padding: 8px 15px;
      border-radius: 10px;
      font-size: 14px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .contact-form-box button:hover {
      background-color: var(--secondary-color);
    }

    /* Responsive adjustments */
    @media screen and (max-width: 1024px) {
      .contact-wrapper {
        flex-direction: column;
        align-items: center;
      }

      .contact-card,
      .contact-card3,
      .contact-form-box {
        width: 90%;
        max-width: 500px;
      }
    }

    @media screen and (max-width: 500px) {
      .contact-form-box {
        padding: 30px 20px;
      }

      .contact-card,
      .contact-card3 {
        padding: 30px 20px;
      }
        .contact-card{
      transform: translateX(0px);
      margin-top: 0px;


      }
      .contact-card3{
      transform: translateX(0px);
      margin-top: 0px;


      }
      .contact-card .map{
      max-width: 240px;
    }

      .contact-form-box input,
      .contact-form-box textarea {
        font-size: 13px;
      }

      .contact-form-box h2 {
        font-size: 20px;
      }

      .contact-card h2,
      .contact-card3 h2 {
        font-size: 18px;
      }
      .contact-form-box {
        max-width: 300px;
      }
    }
/* contact us  */








/*  */

.contact .text-primary {
  color: var(--secondary-color) !important;
}

.contact .input-start {
  position: relative;
}

.contact .input-start .inp-control {
  padding: 1rem 0.75rem;
  height: calc(3.5rem + 2px);
  line-height: 1.25;

}

.contact .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/img/card-image/capt-img.html);
}
.captchasep1 .captcha-codes-sec button {
  font-style: italic;
  font-size: 18px;
  outline: none;
  background: transparent;
  height: 100%;
  border: none;
}
.captchasep1{
  display: flex;
}
.captchasep1 .captcha-codes-sec p {
  margin-bottom: 0;
  letter-spacing: 5px;
  font-style: italic;
  font-size: 15px;
  padding: 7px;
  height: 100%;
}

 



.bg-danger22 {
  background-color: var(--primary-color) !important;
  padding: 8px ;
}

.contact-us-page .contact-us-page-addrs {
  padding: 10px;
  /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
}

 
.contact-us-page .contact-us-page-addrs h1 ,.contact-us-page .contact-us-page-addrs h2 , .contact-us-page .contact-us-page-addrs h3{
 color: var(--secondary);
  font-weight: bold;
  border-bottom: 1px solid #bbb1b1;
  padding: 10px 0;
  font-size: 24px;
}

.contact-us-page .contact-us-page-addrs .cont-adrs-head {
  display: flex;
  align-items: center;
  padding: 10px;
  margin-bottom: 20px;
}


.contact-us-page .contact-us-page-addrs .cont-adrs-head .cont-adrs-head-icon i {
  font-size: 60px;
  margin-right: 20px;
  color: var(--primary-color);
}

.contact-us-page .contact-us-page-addrs .cont-adrs-head .cont-adrs-head-icon i.fa-phone {
  font-size: 50px;
  margin-right: 25px;
}

.contact-us-page .contact-us-page-addrs .cont-adrs-head .cont-adrs-head-title p {
  font-weight: 600;
  font-size: 18px;
}

@media (max-width: 576px) {
  .contact-form-box {
    padding: 10px 15px;
    margin-left: 14px;
  }
  
  .contact-form-box .inp-control {
    width: 100% !important;
    font-size: 14px;
    padding: 10px;
  }
  
  .contact-form-box textarea.inp-control {
    height: 80px !important;
  }
  
  .captchasep1 {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px;
  }
  
  .captcha-codes-sec {
    justify-content: center !important;
    margin-top: 8px !important;
    width: 100% !important;
    padding: 8px 12px !important;
  }
  
  #captchCode {
    margin: 0 auto 8px auto !important;
  }
  
  #RefreshCaptcha {
    align-self: center !important;
  }
  
  .captchasep1 input#codeToenter {
    width: 100% !important;
    box-sizing: border-box;
  }
  
  .btn.btn-primary.msg {
    width: 100% !important;
    font-size: 16px;
    padding: 12px;
    margin-top: 10px;
  }
   .contact-card{
      transform: translateX(0px);
      margin-top: 30px;
      }
    
}


/*  */










/* our blog section start here */
.blog-card {
  width: 100%;
  border: 1px solid gainsboro;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Segoe UI', sans-serif;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.blog-image img {
  width: 100%;
  display: block;
}

.blog-content {
  padding: 6px 20px;
}

.blog-title {
  font-size: 19px;
  margin-bottom: 7px;
  color: #2c3e50;
}

.blog-description {
  font-size: 16px;
  color: #333;
  white-space: nowrap;
  width: 100%;
 
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-section .blog-card .blog-content p{
  padding-bottom: 0px !important;
  margin-bottom: 3px !important;
}
.blog-meta {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 10px;
}

.read-more {
  font-size: 0.9rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.read-more:hover {
  color: var(--secondary-color);
}
/* our blog section end here */






/* footer section start here */
 footer {
      background-color: var(--primary-color);
      color: #ccc;
      padding: 60px 0 30px;
    }
    .footer-title {
      font-size: 20px;
      font-weight: bold;
      color: #fff;
    }
    .footer-link {
      display: block;
      color: #aaa;
      margin-bottom: 8px;
      font-size: 14px;
      text-decoration: none;
    }
   .ser .footer-link .list-inline-item a:hover{
      color: var(--secondary-color);
    }
    .footer-link h3{
      color: var(--secondary-color);
    }
    .social-icons a {
  font-size: 22px;  
      color: #bbb;
      margin: 0 10px;
      transition: color 0.3s ease;
    }
    .social-icons a:hover {
      color: var(--secondary-color);
    

    }
    .copyright {
      border-top: 1px solid #333;
      margin-top: 30px;
      padding-top: 20px;
      font-size: 14px;
      text-align: center;
      color: #fff;
    }
/* footer section end here */



/* vastu start */
.ser {
  background: linear-gradient(#000000e3, #000000da), url('../images/floor-plan-banner.html');
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding: 50px 0;
  text-align: center;
}
.contact-card3 a{
  color: var(--light);
  text-decoration: none;
}
.ser .vastu-head {
  background: #ffffffa2;
  padding: 10px;
}

.ser .footer-logo .classic-logo{
  width: 180px;
}

 
.ser .footer-link .list-inline-item a{
 text-decoration: none;
  color: var(--light);

}
.ser .footer-link .mymation2 a i{
 text-decoration: none;
  color: var(--light);
  margin: 3px 8px;
  font-size: 22px;

}

.footer-copyright a{
  color: var(--secondary-color);
  text-decoration: none;
}

/* vastu end */








/* 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 h1{
    font-size: 26px;
  }

  .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;
  }
}
/* responsive section end */







.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;
}






/* related product section start here */
.product-img {
      max-width: 100px;
      border-radius: 8px;
    }
    .right-panel {
      background: #f4f4f4;
      padding: 20px;
      border-radius: 12px;
      margin-top: 20px;
    }
    .add-all {
      width: 100%;
      margin-top: 20px;
    }
    .enquiry-form {
      margin-top: 60px;
      background-color: #f8f9fa;
      padding: 30px;
      border-radius: 12px;
    }
    .related-product{
      background-color: #fff;
      border-radius: 5px;
      border: 1px solid gainsboro;
      padding: 4px;
    }
    
/* related product section end here */




/* enquiry-section start here */
.enquiry-section{
  margin: 30px;
}
.enquiry-section .product-detail h1{
  font-size: 24px;
}
.enquiry-section .product-detail h2{
  font-size: 20px;
}
.enquiry-section .product-detail h3{
  font-size: 18px;
}

.enquiry-section .product-detail p,
.enquiry-section .product-detail ul li{
	    font-size: 17px;
}

.related-product a   {
    text-decoration: none;
    font-size: 14px;
    margin-top: 0px;
    padding: 5px;
    background-color: var(--primary-color);
    color: var(--light);
}
 
.related-product p{
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px !important;
}



@media (max-width:768px) {
  .enquiry-section{
  margin: 30px 5px;
}
.related-product a   {
    text-decoration: none;
    font-size: 13px;
    padding: 3px;
    background-color: var(--secondary-color);
    color: var(--light);
    border-radius: 5px;
}
 
  
}

@media (min-width:768px) and (max-width:1024px){
 
 .right-panel {
       
      margin-top: 0px;
    }
    .captchasep1  {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100% !important;
 
}

 .contact-form-box input, .contact-form-box textarea {
   margin-top: 15px;
}
}
/* enquiry-section end here */




/* sub-page-banner-start */
.sub-page{
     
  background: url(../image/img/banner/sub-banner.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: #fff;
}
.sub-page-heading span a{
text-decoration: none;
color: #fff;

}
.sub-page-heading span{
color: #fff;
}
@media(max-width:768px){
.sub-page-heading{
padding: 80px 20px;
text-align: start;
} 
}
/* subpage-banner-end */






















.j3-series .specifications h2,
  .j3-series .specifications h3 {
    color: var(--secondary-color);
    font-weight: bold;
  }

  .j3-series .specifications table {
    width: 100%;
    border-collapse: collapse; 
    font-size: 14px;
  }

  .j3-series .specifications th,
  .j3-series .specifications td {
    padding: 10px 16px;
    border: 1px solid #ddd;
    text-align: left;
  }

  .j3-series .specifications th {
    background-color: var(--secondary-color);
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
  }

  .j3-series .specifications tr:nth-child(even) {
    background-color: #f9f9f9;
  }

  .j3-series .specifications tr:hover {
    background-color: var(--primary-color );
    color: var(--light);
  }

  @media screen and (max-width: 768px) {
    .j3-series .specifications table {
      font-size: 13px;
    }
  }



  /* sitemap-section */

        .sitemap-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .sitemap-title {
            color: #2b2a28;
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            font-weight: 700;
            letter-spacing: -0.5px;
        }
        
        .sitemap-card {
            background-color: white;
            border: 2px solid #ec5017;
            border-radius: 8px;
            padding: 10px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            display: block;
            color: #2b2a28;
        }
        
        .sitemap-card:hover {
            background-color: #ec5017;
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(213, 158, 6, 0.3);
            text-decoration: none;
        }
        
        .card-label {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .card-description {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .sitemap-card:hover .card-description {
            opacity: 1;
        }
        
        .category-section {
            margin-bottom: 40px;
        }
        
        .category-header {
            color: #ec5017;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ec5017;
        }
        
        .main-links {
            margin-bottom: 50px;
        }
        
        @media (max-width: 768px) {
            .sitemap-title {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }
            
            .category-header {
                font-size: 1.2rem;
                margin-bottom: 15px;
            }
            
            .sitemap-card {
                padding: 15px;
            }
            
            .card-label {
                font-size: 1rem;
            }
        }
        
        /* Go to Top Button */
.go-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.go-to-top:hover {
    background-color: #000;
    transform: translateY(-5px);
}

.go-to-top.show {
    display: flex;
}

.go-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .go-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}



/* Floating Wrapper */
.floating-contact {
    position: fixed;
    left: 0;
    top: 75%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Button Base */
.float-btn {
    position: relative;
    display: flex;
    align-items: center;
    width: 52px;
    height: 52px;
    border-radius: 0 30px 30px 0;
    text-decoration: none;
    overflow: hidden;
    transition: width 0.35s ease;
}

/* Icons */
.float-btn img {
    width: 40px;
    height: 40px;
    /* margin: 0 auto; */
}

/* Text Slide */
.float-text {
    position: absolute;
    left: -220px;
    white-space: nowrap;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    transition: left 0.35s ease;
}

/* Hover Effect */
.float-btn:hover {
    width: 240px;
}

.float-btn:hover .float-text {
    left: 32px;
}

/* Call Button */
.call-btn {
    background: #324e3d;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25D366;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .float-btn:hover {
        width: 200px;
    }
}