/* Enhanced Typography with Inter Font */
body {
    font-family: 'Inter', 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #374151;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #1f2937;
}

.hero-title, .section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.subtitle, .section-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #6b7280;
}

.btn-modern {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.025em;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.card-title, .contact-method-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.card-text, .contact-method-card p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

/* 404 Error Page Styles - Fully Mobile Responsive */
.error-404-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    overflow-x: hidden;
}

.error-404-content {
    max-width: 600px;
    width: 90%;
    padding: 40px 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.error-404-number {
    font-size: 80px;
    font-weight: 900;
    color: #ed1c24;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(237, 28, 36, 0.2);
    font-family: 'Inter', sans-serif;
}

.error-404-title {
    font-size: 32px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.error-404-message {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

.error-404-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.error-404-actions .btn {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.025em;
}

.error-404-actions .btn-primary {
    background-color: #ed1c24;
    color: #fff;
    border: 2px solid #ed1c24;
}

.error-404-actions .btn-primary:hover {
    background-color: #c91620;
    border-color: #c91620;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 28, 36, 0.3);
}

.error-404-actions .btn-outline {
    background-color: transparent;
    color: #ed1c24;
    border: 2px solid #ed1c24;
}

.error-404-actions .btn-outline:hover {
    background-color: #ed1c24;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 28, 36, 0.3);
}

.error-404-search {
    max-width: 400px;
    margin: 20px auto 0;
    width: 100%;
}

.error-404-search h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.error-404-search .search-form {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.error-404-search .search-field {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.error-404-search .search-field:focus {
    outline: none;
    border-color: #ed1c24;
}

.error-404-search .search-submit {
    padding: 10px 20px;
    background-color: #ed1c24;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.error-404-search .search-submit:hover {
    background-color: #c91620;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 28, 36, 0.3);
}

/* Responsive Design - Fully Mobile */
@media (max-width: 768px) {
    .error-404-section {
        min-height: 100vh;
        padding: 15px 0;
        align-items: flex-start;
        padding-top: 60px;
    }
    
    .error-404-content {
        width: 95%;
        padding: 30px 20px;
        min-height: auto;
        justify-content: flex-start;
        margin-top: 20px;
    }
    
    .error-404-number {
        font-size: 50px;
        margin-bottom: 15px;
    }
    
    .error-404-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .error-404-message {
        font-size: 14px;
        margin-bottom: 25px;
        line-height: 1.4;
    }
    
    .error-404-actions {
        gap: 15px;
        margin-bottom: 30px;
        flex-direction: column;
        align-items: center;
    }
    
    .error-404-actions .btn {
        width: 100%;
        max-width: 250px;
        padding: 15px 25px;
        font-size: 14px;
    }
    
    .error-404-search {
        width: 100%;
        margin: 0 auto;
    }
    
    .error-404-search h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .error-404-search .search-field {
        padding: 15px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    .error-404-search .search-submit {
        padding: 15px 25px;
        font-size: 14px;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .error-404-section {
        min-height: 100vh;
        padding: 10px 0;
        align-items: flex-start;
        padding-top: 40px;
    }
    
    .error-404-content {
        width: 95%;
        padding: 25px 15px;
        min-height: auto;
        justify-content: flex-start;
        margin-top: 10px;
    }
    
    .error-404-number {
        font-size: 40px;
        margin-bottom: 12px;
    }
    
    .error-404-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .error-404-message {
        font-size: 13px;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .error-404-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .error-404-actions .btn {
        width: 100%;
        max-width: 200px;
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .error-404-search {
        width: 100%;
        margin: 0 auto;
    }
    
    .error-404-search h3 {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .error-404-search .search-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .error-404-search .search-field {
        padding: 12px;
        font-size: 13px;
        border-radius: 8px;
    }
    
    .error-404-search .search-submit {
        width: 100%;
        padding: 12px;
        font-size: 13px;
        border-radius: 8px;
    }
}

@media (max-width: 360px) {
    .error-404-section {
        padding-top: 30px;
    }
    
    .error-404-content {
        width: 98%;
        padding: 20px 12px;
    }
    
    .error-404-number {
        font-size: 35px;
    }
    
    .error-404-title {
        font-size: 18px;
    }
    
    .error-404-message {
        font-size: 12px;
    }
    
    .error-404-actions .btn {
        max-width: 180px;
        padding: 10px 15px;
        font-size: 12px;
    }
}

.page_template h1, .page_template h2, .page_template h3, .page_template h4, .page_template h5, .page_template h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.page_template p p1{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1rem;
    
}
.page_template p1{
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Banner Typography */
.innerbanner .main-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Content Section Typography */
.page-content h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.25rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.page-content h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.75rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.page-content h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #374151;
    margin-bottom: 0.75rem;
}

.page-content p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.25rem;
}

.page-content ul, .page-content ol {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.6;
}

.page-content li {
    margin-bottom: 0.5rem;
}

/* Button Typography */
.btn, .button, input[type="submit"] {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.025em;
}

/* Form Typography */
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Navigation Typography */
.navbar-nav li a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* Footer Typography */
.footer {
    font-family: 'Inter', sans-serif;
}

.footer h3, .footer h4, .footer h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.footer p, .footer li {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Specific Page Template Typography Enhancements */

/* Products Page Typography */
.products-page-section h2, .products-page-section h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #1f2937;
}

.product-card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #1f2937;
}

.product-card-category {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #6b7280;
}

.category-filter-section .filter-pill {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* Awards Page Typography */
.awards-section h2, .awards-section h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #1f2937;
}

.award-item h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #1f2937;
}

.award-item p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.6;
}

/* Certifications Page Typography */
.certifications-section h2, .certifications-section h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #1f2937;
}

.certification-item h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #1f2937;
}

.certification-item p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.6;
}

/* Quality Assurance Page Typography */
.quality-section h2, .quality-section h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #1f2937;
}

.quality-feature h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #1f2937;
}

.quality-feature p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.6;
}

/* Sustainability Page Typography */
.sustainability-section h2, .sustainability-section h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #1f2937;
}

.sustainability-item h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #1f2937;
}

.sustainability-item p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.6;
}

/* Who We Are Page Typography */
.about-section h2, .about-section h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #1f2937;
}

.team-member h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #1f2937;
}

.team-member p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.6;
}

.company-values h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #1f2937;
}

.company-values p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.6;
}

/* General Content Wrapper Typography */
.content-wrapper h1, .content-wrapper h2, .content-wrapper h3, .content-wrapper h4, .content-wrapper h5, .content-wrapper h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.content-wrapper p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.content-wrapper ul li, .content-wrapper ol li {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Table Typography */
table {
    font-family: 'Inter', sans-serif;
}

table th {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #1f2937;
}

table td {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #4b5563;
}

/* Quote and Blockquote Typography */
blockquote {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: italic;
    color: #4b5563;
    line-height: 1.7;
}

.quote {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #374151;
    line-height: 1.6;
}

/* Breadcrumb Typography */
.breadcrumb {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #6b7280;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #374151;
}

/* Meta Information Typography */
.meta-info {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #6b7280;
}

/* Call to Action Typography */
.cta-section h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #1f2937;
}

.cta-section p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.6;
}

.untamedpg .wrap-text h2 {
  text-transform: lowercase;
}
.untamed_introduction {
  max-width: 865px;
  margin: 0 auto;
}
.untamed_introduction h4 {
  font-size: 26px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
  font-family: "Kanit", sans-serif;
  line-height: 31px;
}
.page-about-content.untamed_introduction p {
  margin: 0px 20px 50px;
}

.yellowband {
  background: url(../images/yellow-band.html) repeat-x center top; /*background-clip: contain;*/
  min-height: 160px;
  margin-bottom: 50px;
}
.yellowband h3 {
  font-size: 41px;
  line-height: 52px;
  color: #000;
  font-family: "Kanit", sans-serif;
  font-weight: 700;
  z-index: 10;
  margin: 50px auto;
  text-align: center;
}
.untamed_athletes {
  padding: 50px 0;
}
.untamed_athletes .utrw {
  padding-bottom: 70px;
}
/*.untamed_athletes .utrw:nth-child(2) .clm1, 
.untamed_athletes .utrw:nth-child(4) .clm1 { float: right; }*/
.untamed_athletes .utrw:nth-child(even) .clm1 {
  float: right;
}
.untamed_athletes .description {
  padding-left: 30px;
  color: #666666;
  font-size: 17px;
  line-height: 30px;
  font-family: "Kanit", sans-serif;
  font-weight: 600;
}
.untamed_athletes .hdname {
  padding: 30px 0;
  text-transform: uppercase;
  margin-top: 50px;
}
.untamed_athletes .hdname h3 {
  font-size: 50px;
  font-family: "LeagueGothic-Regular", sans-serif;
  color: #000;
  border-bottom: 1px solid #000;
  line-height: 0; /*text-align:left; display: block;*/
}
.untamed_athletes .hdname h3 span {
  background: #fff;
  display: inline;
  padding-right: 20px;
}
.untamed_athletes .followtxt {
  font-family: "LeagueGothic-Regular", sans-serif;
  color: #ff6f00;
  font-size: 20px;
  text-transform: uppercase;
  padding: 10px 0;
}
.untamed_athletes .followicon {
  font-family: "Kanit", sans-serif;
  color: #000;
  font-size: 17px;
  font-weight: 700;
  background: url(../images/follow-icon.html) no-repeat 0 5px;
  padding: 0 0 20px 0px;
}
.untamed_athletes .followicon a {
  color: #000;
  padding-left: 30px;
}
.untamed_athletes .followicon a:hover {
  color: #ff6f00;
}
.untamed_athletes .clm2 .imagediv {
  position: relative;
  text-align: center;
}
.untamed_athletes .clm2 .imagediv img {
  margin-right: 0px; /*z-index: 100; position: relative; */
}
/*.untamed_athletes .clm2 .imagediv:before { width: 513px; height: 458px; position: absolute; content: ''; display: block; 
    background: url(../images/untamed-mask.png) no-repeat 0 0 / cover; opacity: .7; }*/
.untamed_athletes .clm2 .imagediv:after {
  width: 117px;
  height: 117px;
  position: absolute;
  content: "";
  display: block;
  background: url(../images/orange-dots.html) no-repeat 0 0 / cover;
  bottom: 35px;
  right: 30px;
}

.carousel-control-prev-icon {
  background: url(../images/icon-previous.png) no-repeat top center;
  height: 32px;
  width: 32px;
}
.carousel-control-next-icon {
  background: url(../images/icon-next.png) no-repeat top center;
  height: 32px;
  width: 32px;
}

/**
 * Change animation duration
 */
.animated {
  -webkit-animation-duration: 3.8s;
  animation-duration: 3.8s;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

/* minimal slider for home page  start   */
#minimal-bootstrap-carousel {
  margin-top: 0px;
  position: relative;
}

#minimal-bootstrap-carousel .carousel-caption {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 0;
  text-align: right;
  text-shadow: none;
}

#minimal-bootstrap-carousel .carousel-caption .container {
  display: table;
  width: 100%;
  height: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (max-width: 1199px) {
  #minimal-bootstrap-carousel .carousel-caption .container {
    max-width: 960px;
  }
}

@media (max-width: 991px) {
  #minimal-bootstrap-carousel .carousel-caption .container {
    max-width: 720px;
  }
}

#minimal-bootstrap-carousel .carousel-caption .container .box {
  display: table-cell;
  text-align: left;
}

#minimal-bootstrap-carousel .carousel-caption .container .box.valign-top {
  vertical-align: top;
}

#minimal-bootstrap-carousel .carousel-caption .container .box.valign-bottom {
  vertical-align: bottom;
}

#minimal-bootstrap-carousel .carousel-caption .container .box.valign-middle {
  vertical-align: middle;
}

#minimal-bootstrap-carousel .carousel-caption .container .box .content {
  display: block;
}

#minimal-bootstrap-carousel [class*="carousel-control"] {
  background: none;
  width: 40px;
  height: 40px;
  font-size: 22px;
  line-height: 38px;
  color: #fff;
  background-color: transparent;
  visibility: visible !important;
  opacity: 1;
  border: 1px solid #fff;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  top: 50% !important;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 99;
  border-radius: 5px;
  opacity: 0.5;
  position: absolute;
  text-align: center;
}

@media (max-width: 667px) {
  #minimal-bootstrap-carousel [class*="carousel-control"] {
    width: 30px;
    height: 30px;
    font-size: 15px;
    line-height: 30px;
  }
}

@media (max-width: 480px) {
  #minimal-bootstrap-carousel [class*="carousel-control"] {
    width: 40px;
    height: 40px;
    font-size: 17px;
    line-height: 40px;
    background: rgba(255, 255, 255, 0.4);
    color: #000;
    border-radius: 5px;
  }
}

#minimal-bootstrap-carousel .carousel-control-prev {
  left: 1%;
}

#minimal-bootstrap-carousel .carousel-control-next {
  right: 1%;
}

#minimal-bootstrap-carousel [class*="carousel-control"]:hover {
  opacity: 1;
  background: #2093d1;
  border-color: #fff;
}

/* fixing slider height */
#minimal-bootstrap-carousel.slider-home-one .carousel-inner .carousel-item {
  min-height: 751px;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: #e8f4fa;
}

.slider-content-style .content {
  text-align: center;
  position: relative;
  z-index: 999;
}

.slider-content-style .content h3,
.slider-content-style .content h2,
.slider-content-style .content p {
  margin: 0;
}

.slider-content-style .content h3 {
  color: #062f77;
  font-size: 37px;
  line-height: 1.3em;
  font-weight: 800;
  /* font-family: 'Josefin Sans'; */
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
  font-family: "Montserrat-semibold";
}
.slider-content-style .content h3 b {
  font-size: 43px;
  font-family: "Montserrat-Bold";
  font-weight: normal;
}

.slider-content-style .content p {
  /* font-family: 'Josefin Sans'; */
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  letter-spacing: 0.15em;
  margin-top: 20px;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.slider-content-style .content a.thm-btn {
  background: #062f77;
  vertical-align: middle;
  color: #222222;
  font-size: 18px;
  letter-spacing: 0.1em;
  /* font-family: 'Josefin Sans'; */
  font-weight: 600;
  padding: 10px 17px;
  margin-top: 27px;
  transition: all 0.4s ease;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.slider-content-style .content a.thm-btn:hover {
  background: #fff;
}

/* minimal slider for home page end */

/* animation start  */
#minimal-bootstrap-carousel.slider-home-one .content {
  position: absolute;
  top: 300px;
}
#minimal-bootstrap-carousel.slider-home-one .carousel-inner {
  height: 740px;
}
#minimal-bootstrap-carousel.slider-home-one .carousel-inner .carousel-item {
  animation-duration: 5s;
  animation-name: homebandmove;
  /* animation-iteration-count: 2;
    animation-direction: alternate; */
}

@keyframes homebandmove {
  from {
    bottom: -100px;
  }
  to {
    bottom: 0px;
  }
}

@keyframes fadeInDown {
  from {
    top: 10px;
  }
  to {
    top: 0px;
  }
}

.countsec {
  background: #e8f4fa;
  padding: 30px 0;
}
.countsec.temp2 {
  background: #2093d1;
}

.testimonialsec {
  background: url(../images/blue-band.png) no-repeat center 0px / cover;
}
.testimonialsec .carousel-control-prev {
  right: -85px !important;
  left: auto;
  top: 10px;
}
.testimonialsec .carousel-control-next {
  width: 40px;
  bottom: auto;
  right: -42px;
}
.testimonialsec .carousel-indicators {
  left: 46%;
  bottom: -40px !important;
}

.testimonialsec.temp2 {
  background: #fff;
}
.testimonialsec.temp2 .customertsm .carousel-indicators li {
  border-color: #cdcdcd;
}
.testimonialsec.temp2 .customertsm .carousel-indicators li.active {
  background: #e5e5e5;
}
.testimonialsec.temp2 .customertsm .tsmbox {
  background: #fff url(../images/first.html) no-repeat left 0 !important;
  box-shadow: none;
  border: 2px solid #cea160;
}


section.inner-body h4 {
  font-size: 18px;
  font-family: "Kanit", sans-serif;
}

section.inner-body h5 {
  font-size: 16px;
  color: #3d3d3d;
  margin: 30px 0;
  text-transform: uppercase;
  font-family: "Kanit", sans-serif;
  font-weight: 600;
}

.verticalcustomtab {
  text-decoration: none;
}
.verticalcustomtab .nav-tabs {
  float: left;
  width: 30%;
}
.verticalcustomtab .tab-content {
  float: left;
  width: 70%;
}
.verticalcustomtab .nav-tabs > li {
  float: none;
}

/* easy responsive tab.css file  */
ul.resp-tabs-list {
  margin: 0px;
  padding: 0px;
}

.resp-tabs-list li {
  font-weight: 500;
  font-size: 16px;
  padding: 13px 15px;
  margin: 0 1px 0 0;
  list-style: none;
  cursor: pointer;
  float: left;
  border-bottom: 1px solid #cad6e0;
  color: #636363;
}

.resp-tabs-container {
  padding: 0px;
  clear: left;
}

h2.resp-accordion {
  cursor: pointer;
  padding: 5px;
  display: none;
}

.resp-tab-content {
  display: none;
  padding: 15px;
}

.resp-tab-active {
  border-bottom: none;
  padding: 12px 14px 14px 14px !important;
  color: #000;
}

.resp-tab-active {
  border-bottom: none;
}

.resp-content-active,
.relativesp-accordion-active {
  display: block;
}

.resp-tab-content {
  border: 1px solid #c1c1c1;
  border-top-color: #008486;
}

h2.resp-accordion {
  font-size: 16px;
  border: 1px solid #c1c1c1;
  border-top: 0px solid #c1c1c1;
  margin: 0px;
  padding: 10px 15px;
}

h2.resp-tab-active {
  border-bottom: 0px solid #c1c1c1 !important;
  margin-bottom: 0px !important;
  padding: 10px 15px !important;
}

h2.resp-tab-title:last-child {
  border-bottom: 12px solid #c1c1c1 !important;
  background: blue;
}

/*-----------Vertical tabs-----------*/
.resp-vtabs ul.resp-tabs-list {
  float: left;
  width: 42%;
}

.resp-vtabs .resp-tabs-list li {
  display: block;
  padding: 10px 5px 10px 35px !important;
  margin: 0 0 1px 0;
  cursor: pointer;
  float: none;
}

.resp-vtabs .resp-tabs-container {
  padding: 0px;
  float: left;
  width: 56%;
  min-height: 290px;
  border-radius: 0px;
  clear: none;
}

.resp-vtabs .resp-tab-content {
  border: none;
  word-wrap: break-word;
}

.resp-vtabs li.resp-tab-active {
  position: relative;
  z-index: 1;
  color: #000;
  background: #ccc;
  
}
/* .resp-vtabs li:hover {
  position: relative;
  z-index: 1;
  color: #000;
  background: #ccc;
} */
.resp-arrow {
  width: 0;
  height: 0;
  float: right;
  margin-top: 3px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 12px solid #999;
}

h2.resp-tab-active span.resp-arrow {
  border: none;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 12px solid #999;
}

/*-----------Accordion styles-----------*/
h2.resp-tab-active {
  background: #dbdbdb; /* !important;*/
}

.resp-easy-accordion h2.resp-accordion {
  display: block;
}

.resp-easy-accordion .resp-tab-content {
  border: 1px solid #c1c1c1;
}

.resp-easy-accordion .resp-tab-content:last-child {
  border-bottom: 1px solid #c1c1c1; /* !important;*/
}

.resp-jfit {
  width: 100%;
  margin: 0px;
}

.resp-tab-content-active {
  display: block;
}

h2.resp-accordion:first-child {
  border-top: 1px solid #c1c1c1; /* !important;*/
}
/* easy responsive tab.css file end */

ul.resp-tabs-list.hor_1 {
  background: #ccc !important;
  float: left !important;
  width: 100% !important;
}

.tbsection_main .resp-tabs-list li {
  background: #ccc !important;
  position: relative;
}

.tbsection_main .resp-tabs-list li.resp-tab-active {
  background: #008486 !important;
  color: #fff;
}

.resp-tab-content ul {
  padding-left: 10px;
}

.tbsection_main .htab_content.resp-tab-content {
  border-color: #fff;
  padding: 30px 20px;
}

.tbsection_main .htab_content.resp-tab-content.vtabsec {
  padding-left: 0;
}

.tbsection_main .resp-tabs-list li.resp-tab-active::after {
  /* content:  "▼"; font-size:14px; transform: rotate(-180deg); */

  position: absolute;
  bottom: -8px;
  left: 45%;
  content: " "; /*width: 0; height: 0; */

  border-left: 7px solid transparent;

  border-right: 7px solid transparent;

  border-top: 9px solid #008486;
}

.tbsection_main .resp-vtabs .resp-tabs-list li.resp-tab-active::after {
  border-bottom: 7px solid transparent;
  border-top: 7px solid transparent;
  border-right: 10px solid #fff;
  position: absolute;
  bottom: 15px;
  right: -1px;
  content: " ";
}

.resp-vtabs ul.resp-tabs-list {
  padding-left: 0;
  margin-top: 10px !important;
}

.resp-vtabs li.resp-tab-item {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  font-size: 19px;
}

.tbsection_main .vtab_content {
  padding: 5px 0px 25px 30px;
}

#ChildVerticalTab_1 {
  min-height: 350px;
}
.resp-vtabs li.resp-tab-active::after {
  position: absolute;
  right: 0px;
  top: 5px;
  content: " ";
  height: 30px;
  width: 30px;
  background: url(../images/arrow-green.png) no-repeat 5px 10px !important;
}

/* Home our product */
.ourproduct {
  padding: 50px 0;
  background: #2e368f;
}
.ourproduct h5 {
  color: #fff;
  font-family: "Kanit", sans-serif;
  font-weight: 700;
}
.ourproduct h3 {
  color: #fff;
  font-family: "Kanit", sans-serif;
  font-weight: 700;
}

.ourproduct .resp-vtabs li.resp-tab-item {
  border: 2px solid #676dae !important;
  padding: 25px 20px 5px 25px !important;
  color: #fff !important;
  font-size: 16px;
  font-weight: 400;
  border-radius: 10px;
  margin-bottom: 15px;
}
.ourproduct .resp-vtabs li.resp-tab-item p {
  margin-bottom: 20px;
}
.ourproduct .resp-vtabs li.resp-tab-item p a {
  font-size: 0;
}
.ourproduct .resp-vtabs li.resp-tab-item.resp-tab-active p a {
  font-size: inherit;
}
.ourproduct .resp-vtabs li.resp-tab-item strong {
  font-size: 19px;
  font-weight: 500 !important;
  font-family: "Kanit";
}
.ourproduct .resp-vtabs li.resp-tab-item a {
  color: #39b44a;
  font-weight: 500;
}
.ourproduct .resp-vtabs li.resp-tab-item.resp-tab-active {
  background: #fff !important;
  color: #191919 !important;
  border-color: #fff !important;
  border-left: 5px solid #39b44a !important;
  padding: 25px 20px 1px 22px !important;
}
.ourproduct .resp-vtabs li.resp-tab-active::after {
  background: none !important;
}
.prodtbimg {
  -webkit-animation-name: prdInLeft;
  animation-name: prdInLeft;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  /* animation-fill-mode: both;
  -webkit-animation-fill-mode: both; */
}
@-webkit-keyframes prdInLeft {
  from {
    -webkit-transform: translate3d(-6%, 0, 0);
    transform: translate3d(-6%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(-6%, 0, 0);
    transform: translate3d(-6%, 0, 0);
  }
}
@keyframes prdInLeft {
  from {
    -webkit-transform: translate3d(-6%, 0, 0);
    transform: translate3d(-6%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.readyproject {
  padding: 50px 0;
}
.readyproject .readybbox {
  padding: 40px 30px 30px 30px;
  color: #fff;
  font-size: 20px;
}
.readyproject .txt {
  padding: 0px 10px 0 50px;
}
.readyproject h2 {
  color: #fff;

  margin-bottom: 20px;
}
.readyproject a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 25px;
  border-radius: 25px;
  background: #119123;
  border: 1px solid transparent;
  margin-top: 55px;
}
.readyproject a:hover {
  border: 1px solid #fff;
}

.innerbandimage {
  text-decoration: none;
  position: relative;
}
.innerbandimage img {
  margin-bottom: -220px;
  /* -webkit-animation-name: zoomIn;
  animation-name: zoomIn; */
  -webkit-animation-name: inbandInDown;
  animation-name: inbandInDown;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
  animation-delay: 0s;
}

@-webkit-keyframes inbandInDown {
  from {
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes inbandInDown {
  from {
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.firstrow,
.secondrow {
  font-size: 20px;
}

.breadcrumb {
  padding:0px;
  background-color: transparent;
  text-align: left;
  list-style: none;
  font-size: 15px;
  font-family: "Kanit";
  font-weight: 400;
}
.breadcrumb a {
  color: #131313 !important;
  text-decoration: none !important;
  margin: 0 0px;
}
.breadcrumb a:hover {
  color: #000000;
  text-decoration: underline;
}
.inner-introduction {
  max-width: 870px;
  margin: 0 auto;
  padding: 0px 0 30px 0;
  text-align: center;
  font-size: 17px;
}
.wwdbox {
  display: table;
  width: 100%;
  border-bottom: 1px solid #d5e1ed;
  padding: 20px 0px 0px 0px;
  line-height: 21px;
  min-height: 210px;
}
.wwdclm:last-child .wwdbox {
  border: 1px solid transparent;
}
.wwdbox .icon {
  display: table-cell;
  width: 50px;
}
.wwdbox .icon img {
  width: 30px;
}
.wwdbox .txt {
  width: auto;
}
.wwdbox .txt h4 {
  font-size: 22px;
  color: #323232;
  padding-bottom: 15px;
  letter-spacing: 0;
}
.secondrow {
  padding-bottom: 30px;
}
.secondrow .imageright {
  padding-top: 20px;
}
.bullettxt {
  max-width: 490px;
  font-size: 19px;
  padding: 20px 0;
}
.bullettxt ul {
  margin-bottom: 20px !important;
}
.bullettxt h4 {
  font-size: 22px !important;
  color: #444 !important;
  padding-bottom: 19px !important;
  letter-spacing: 0 !important;
}
.ourtechnology {
  background: #f6f8fa;
  padding: 30px 0;
}
.ourtechnology .intro {
  text-align: center;
  max-width: 950px;
  font-size: 19px;
  margin: 20px auto 30px auto;
  color: #555656;
}
.ourtechnology h4 {
  letter-spacing: 0 !important;
  margin: 15px auto;
}
.ourtechnology .otbox {
  min-height: 257px;
  padding-bottom: 20px;
}
.ourtechnology .otbox .icon {
  margin-bottom: 15px;
}
.ourtechnology .otbox .txt {
  max-width: 346px;
  font-size: 16px;
}
.readyproject .readybbox.innerpg {
  font-size: 18px;
  min-height: 270px;
}
.readyproject .readybbox.innerpg h2 {
  font-size: 21px;
}
.readyproject .readybbox.innerpg a {
  margin-top: 5px !important;
}

.customerbox {
  padding: 30px;
  border: 1px solid #e7e7e7;
  border-left: 5px solid #f05a28;
  min-height: 270px;
  box-shadow: 1px 2px 5px 1px rgba(0, 0, 0, 0.2);
}
.customerbox .text {
  padding: 0px;
}
.customerbox .profile {
  display: table;
  width: 100%;
}
.customerbox h2 {
  color: #434343;
  font-size: 22px;
}
.customerbox .profile .picture {
  display: table-cell;
  width: 60px;
  vertical-align: top;
}
.customerbox .profile .namedetails {
  display: table-cell;
  width: auto;
  vertical-align: bottom;
  padding: 0 0 0 20px;
}
.customerbox .profile .namedetails p {
  margin-bottom: 0;
  padding-bottom: 0;
  color: #4e4e4e;
}
.customerbox .profile .namedetails strong {
  font-family: "Kanit";
  font-weight: 500;
}

.ourtechnology.valurite {
  text-decoration: none;
}
.ourtechnology.valurite .firstrw,
.ourtechnology.valurite .secondrw,
.ourtechnology.valurite .thirdrw {
  padding-bottom: 40px;
  padding-top: 40px;
}
.ourtechnology.valurite .txt {
  max-width: 426px;
}

.ourtechnology.valurite .vrtbox {
  display: table;
  width: 100%;
  margin-bottom: 15px;
}
.ourtechnology.valurite .vrtbox .icon {
  display: table-cell;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 1px 2px 5px 1px rgba(0, 0, 0, 0.2);
  vertical-align: middle;
  float: left;
  padding: 10px;
  margin-top: 5px;
}
.ourtechnology.valurite .vrtbox .txt {
  display: table-cell;
  width: auto;
  vertical-align: top;
  padding-left: 25px;
}
.ourtechnology.valurite .vrtbox h4 {
  margin: 0;
  padding-bottom: 5px;
  font-size: 20px;
}
.careers .crclm .crbox {
  max-width: 250px;
  margin: 0 auto;
  text-align: center;
}
.careers .crclm .crbox .icon {
  width: 215px;
  height: 190px;
  margin: 20px auto;
  padding-top: 20px;
  background: #fff;
  vertical-align: middle;
  box-shadow: 1px 2px 6px 1px rgba(0, 0, 0, 0.2);
}
.open-position {
  text-align: center;
  padding: 30px 0;
}
.open-position .opbox {
  padding: 15px 15px;
  background-color: #f6f8fa;
  display: table;
  margin: 10px auto;
  max-width: 920px;
  width: 100%;
}
.open-position .opbox .title {
  float: left;
}
.open-position .opbox .txt {
  width: auto;
  float: left;
  padding: 0 20px 0 30px;
}
.open-position .opbox .link {
  width: auto;
  float: right;
}
.open-position .opbox .link a {
  text-decoration: none !important;
}
.open-position .opbox .link a:hover {
  text-decoration: none !important;
  color: #2e368f;
}

.readybbox.innerpg.careers {
  background: #2e368f;
  max-width: 830px;
  margin: 20px auto;
  text-align: center;
}
.readybbox.innerpg.careers .txt {
  text-align: center;
  padding: 5px 30px;
}

.contactmainbx {
  box-shadow: 1px 2px 6px 1px rgba(0, 0, 0, 0.2);
  border: 1px solid #f5f5f5;
  display: table;
  width: 100%;
}
.contactmainbx .ctclm1 {
  width: 50%;
  float: none;
  background: #fff;
  display: table-cell;
  vertical-align: top;
  padding: 49px;
}
.contactmainbx .ctclm2 {
  width: 50%;
  float: none;
  background: #f6f8fa;
  display: table-cell;
  vertical-align: top;
  padding: 49px;
}
.contactfirstrow h4 {
  letter-spacing: 0 !important;
  font-size: 20px !important;
  font-family: "Kanit";
  font-weight: 600;
  margin-bottom: 10px;
}
.contactbox .footer-right ul {
  margin-top: 10px !important;
}
.contact-map {
  background: #f6f8fa;
}
.contact-map p {
  padding: 0;
  margin: 0;
}

.teamclm {
  margin-top: 20px;
}
.teambox {
  background: #fff;
  max-width: 277px;
}
.teambox figure {
  margin: 0;
  padding: 0;
}
.teambox figure img {
  max-width: 277px;
  width: 100%;
  /* height: 100%;
  min-height: 267px; */
}
.teambox .txt {
  padding: 15px 20px;
  font-size: 18px;
  line-height: 21px;
  min-height: 85px;
}
.teambox .txt h4 {
  font-size: 22px;
  color: #323232;
  padding: 0 0 5px 0;
  margin: 0;
  letter-spacing: 0;
}

.page-id-177 .otbox h4 {
  display: none;
}

.desktop {
  display: block;
}
.mobile {
  display: none;
}

/*  dev 2 */
/* product page start */
.innerbanner {
  height: 260px;
}
.innerbanner_text {
  position: relative;
}

.product-details {
  padding: 35px 0 140px;
}
.product-details .breadcrumb {
  padding-top: 0;
  font-size: 13px;
  color: #7c7c7c;
  font-family: "Kanit", sans-serif;
  font-weight: 400;
  margin-bottom: 70px;
  padding-bottom: 0;
}
.product-details .breadcrumb a {
  color: #2f3880 !important;
  font-size: 13px;
}
.product-details .breadcrumb i {
  margin: 0 1px 0 4px;
}
.product-details h2 {
  font-family: "Kanit", sans-serif;
  font-weight: 700;
  color: #2b357d;
  font-size: 38px;
  line-height: 45px;
  margin-bottom: 30px;
}
.product-details p {
  color: #333333;
  font-size: 16px;
  line-height: 26px;
}
.top-content {
  margin-bottom: 38px;
}
.product-right img {
  margin-left: auto;
}
.product-details h4 {
  font-family: "Kanit", sans-serif;
  font-weight: 600;
  color: #2b357d;
  font-size: 18px;
  margin-bottom: 22px;
}
.pat-box {
  /* width: 100px;
  height: 100px; */
  width: 90px;
  height: 90px;
  background: #ed1c24;
  border-radius: 9px;
  margin-bottom: 15px;
}
.pat-img {
  /* transform: translate(18px, 16px); */
  transform: translate(0px, 16px);
}
.col-md-3:first-child .pat-img {
  /* transform: translate(15px, 30px); */
  transform: translate(0px, 20px);
}
.col-md-3:nth-child(3) .pat-img {
  transform: translate(15px, 20px); 
}
.pat-img img {
  max-width: 100px;
  max-height: 74px;
}
.patterns-section p {
  margin-bottom: 0;
}
.patterns-section {
  margin-bottom: 70px;
}
.availables-section h4::after {
  content: "";
  width: 40%;
  height: 1px;
  background: #b2b2b2;
  position: absolute;
  top: 13px;
  margin-left: 6px;
}
.availables-section h4 {
  position: relative;
  overflow-x: hidden;
  margin-bottom: 50px;
}
.flexer {
  display: flex;
}
.av-box {
  align-items: center;
  margin-bottom: 25px;
}
.av-box img {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  margin-right: 18px;
}
.av-box p {
  font-family: "Kanit", sans-serif;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 0;
}
.product-left {
  max-width: 600px;
}
.other-products {
  background: #f8f4ee;
  padding: 60px 0 70px;
}
.other-products h3 {
  color: #ed1c24;
  font-family: "Kanit", sans-serif;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 35px;
  text-align: center;
}
.other-products .col-md-2 {
  width: 19.666667%;
}
.justify-content-center {
  display: flex;
  justify-content: center;
}
.oproduct-box img {
  border-radius: 6px;
  width: 200px;
  height: 171px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.oproduct-box p {
  font-weight: 500;
  color: #333333;
  font-size: 16px;
  margin-bottom: 0;
}
/* .custom-col-3 {
  max-width: 215px;
} */
.other-products .slick-next:before,
.other-products .slick-prev:before {
  display: none;
}
.other-products .slick-next {
  background: url(../images/arrow-testimonial.png) no-repeat center;
  transform: rotate(180deg);
  bottom: -45px;
  right: 5px;
  position: absolute;
}
.other-products .slick-prev {
  background: url(../images/arrow-testimonial.png) no-repeat center;
  bottom: -45px;
  left: 5px;
  position: absolute;
}
.other-products .slick-prev,
.other-products .slick-next {
  width: 35px;
  height: 35px;
  border: transparent;
  color: transparent;
}
.other-products .slick-prev:hover,
.other-products .slick-prev:focus {
  background: url(../images/arrow-testimonial.png) no-repeat center;
  opacity: 0.8;
  transition: 0.2s linear;
}
.other-products .slick-next:hover,
.other-products .slick-next:focus {
  background: url(../images/arrow-testimonial.png) no-repeat center;
  transform: rotate(180deg);
}

/* ========================================
   FLIPKART-STYLE PRODUCTS PAGE
   ======================================== */

/* Products Page Section */
.products-page-section {
    padding: 40px 0 60px;
    background: #f1f3f6;
}

.intro-section {
    margin-bottom: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

/* Category Filter Section - Flipkart Style */
.category-filter-section {
    margin-bottom: 15px; /* Reduced from 30px */
}

.category-filter-wrapper {
    background: #fff;
    padding: 15px; /* Reduced from 20px */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.filter-title {
    font-size: 18px; /* Reduced from 20px */
    font-weight: 700;
    color: #212121;
    margin-bottom: 10px; /* Reduced from 20px */
    font-family: "Kanit", sans-serif;
    padding-bottom: 8px; /* Reduced from 15px */
    border-bottom: 2px solid #f1f3f6;
}

.category-tabs-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.category-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-filter-tabs li {
    flex: 0 0 auto;
}

.category-filter-tabs li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: #212121;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-filter-tabs li a:hover {
    border-color: #2874f0;
    color: #2874f0;
    background: #f7faff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(40,116,240,0.15);
}

.category-filter-tabs li.active a {
    background: #2874f0;
    border-color: #2874f0;
    color: #fff;
    box-shadow: 0 4px 12px rgba(40,116,240,0.3);
}

.category-icon {
    font-size: 18px;
}

.category-name {
    font-weight: 600;
}

.category-count {
    font-size: 12px;
    opacity: 0.8;
}

/* Products Display Section */
.products-display-section {
    margin-top: 20px;
}

.products-header {
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.products-count {
    font-size: 16px;
    font-weight: 600;
    color: #212121;
    margin: 0;
    font-family: "Kanit", sans-serif;
}

/* Product Grid Container - Card Style */
.product-grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    min-height: 400px;
}

/* Product Card - Modern Design */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e0e0e0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Popular Tag */
.popular-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff6b6b;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
    letter-spacing: 0.5px;
}

/* Product Link */
.product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Product Image Wrapper */
.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: #f8f9fa;
}

.product-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

/* Price Tag */
.price-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Add to Cart Button */
.add-to-cart-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,123,255,0.3);
}

.add-to-cart-btn:hover {
    background: #0056b3;
    transform: scale(1.1);
}

/* Product Content */
.product-content {
    padding: 15px;
}

/* Product Title */
.product-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.product-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #007bff;
}

/* Star Rating */
.star-rating {
    margin-bottom: 12px;
    color: #ffc107;
    font-size: 14px;
}

.star-rating i {
    margin-right: 2px;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.action-btn {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.action-btn:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.action-btn.wishlist-btn:hover {
    background: #ffebee;
    border-color: #f8bbd9;
    color: #e91e63;
}

.action-btn.view-btn:hover {
    background: #e3f2fd;
    border-color: #90caf9;
    color: #2196f3;
}

/* Responsive Design for Product Cards */
@media (max-width: 1200px) {
    .product-grid-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
}

@media (max-width: 992px) {
    .product-grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 15px;
    }
    
    .product-card {
        border-radius: 10px;
    }
    
    .price-tag {
        font-size: 13px;
        padding: 5px 10px;
    }
    
    .add-to-cart-btn {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 768px) {
    .product-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 12px;
    }
    
    .product-card {
        border-radius: 8px;
    }
    
    .product-content {
        padding: 12px;
    }
    
    .product-title {
        font-size: 15px;
    }
    
    .price-tag {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .add-to-cart-btn {
        width: 34px;
        height: 34px;
    }
    
    .action-btn {
        padding: 6px 10px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .product-grid-container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 10px;
    }
    
    .product-card {
        border-radius: 12px;
    }
    
    .popular-tag {
        font-size: 10px;
        padding: 3px 10px;
    }
    
    .product-image-wrapper {
        padding-top: 70%;
    }
    
    .product-content {
        padding: 15px;
    }
    
    .product-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .star-rating {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .price-tag {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .add-to-cart-btn {
        width: 40px;
        height: 40px;
    }
    
    .action-btn {
        padding: 8px 12px;
        font-size: 14px;
    }
}

/* Individual Product Card - Flipkart Style */
.product-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-4px);
    border-color: #2874f0;
}

.product-card-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: #f8f8f8;
}

.product-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #212121;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: "Kanit", sans-serif;
}

.product-card-category {
    font-size: 12px;
    color: #878787;
    margin-bottom: 8px;
}

.product-card-link {
    display: inline-block;
    margin-top: auto;
    padding: 8px 16px;
    background: #2874f0;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-card-link:hover {
    background: #1c5bbf;
    color: #fff;
    text-decoration: none;
}

/* Loading, Error, and Empty States */
.loading-spinner,
.no-products-found,
.error-message {
    text-align: center;
    padding: 60px 20px;
    color: #878787;
    grid-column: 1 / -1;
}

.loading-spinner i,
.no-products-found i,
.error-message i {
    color: #2874f0;
    margin-bottom: 20px;
}

.loading-spinner p,
.no-products-found p,
.error-message p {
    font-size: 16px;
    margin-top: 15px;
    color: #212121;
}

/* Pagination - Flipkart Style */
.pagination-wrapper {
    background: #fff;
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    text-align: center;
}

.flipkart-pagination {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.flipkart-pagination li {
    display: inline-block;
}

.flipkart-pagination li a,
.flipkart-pagination li span {
    display: inline-block;
    padding: 8px 14px;
    min-width: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #212121;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
}

.flipkart-pagination li a:hover {
    background: #f7faff;
    border-color: #2874f0;
    color: #2874f0;
}

.flipkart-pagination li.active a,
.flipkart-pagination li.active span {
    background: #2874f0;
    border-color: #2874f0;
    color: #fff;
    font-weight: 700;
}

.flipkart-pagination li.disabled a,
.flipkart-pagination li.disabled span {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Responsive Design - Mobile First */
@media (max-width: 1200px) {
    .product-grid-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }
}

@media (max-width: 992px) {
    .product-grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .category-filter-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .filter-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .products-page-section {
        padding: 20px 0 40px;
    }
    
    .product-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 15px;
    }
    
    .intro-section {
        padding: 20px;
    }
    
    .category-filter-wrapper {
        padding: 15px;
    }
    
    .category-filter-tabs li a {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .products-header {
        padding: 12px 15px;
    }
    
    .products-count {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .product-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px;
    }
    
    .product-card-content {
        padding: 12px;
    }
    
    .product-card-title {
        font-size: 13px;
    }
    
    .product-card-link {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .category-filter-tabs li a {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .category-icon {
        font-size: 16px;
    }
    
    .flipkart-pagination li a,
    .flipkart-pagination li span {
        padding: 6px 10px;
        min-width: 35px;
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .product-grid-container {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .filter-title {
        font-size: 16px;
    }
}
.top-content ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 20px;
}

.top-content ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}
.top-content ul li::before {
  position: absolute;
  left: 0;
  top: 5px;
  content: "";
  background: url(../images/tick-icon.png) no-repeat center;
  width: 17px;
  height: 12px;
}

/* product page end */

/* quality page start*/
.qms-bg {
  background: #f8f4ee;
  position: relative;
}

.qms-cover {
  background: #f8f4ee url(../images/qm-bg.png) no-repeat 94% 138%;
  padding: 68px 0;
}
.blue-bx {
  background: #2b357d;
  color: #fff;
  padding: 18px 28px 30px;
  margin-bottom: 30px;
  border-radius: 10px;
}
.stp-bx {
  margin-top: 60px;
}
.blue-bx h4 {
  margin: 15px 0 13px;
  font-size: 16px;
  font-weight: 700;
}
.blue-bx p {
  font-size: 15px;
  opacity: 0.7;
}
.qms-right {
  margin: 80px 0px 0 30px;
}
.qms-right h3,
.qa-bg h3,
.qc-top h3 {
  font-weight: 600;
  margin-bottom: 22px;
  font-size: 23px;
  color: #2b357d;
}
.qms-right p {
  color: #333;
  font-size: 16px;
  opacity: 0.9;
  line-height: 26px;
}
.qa-bg {
  padding: 80px 0;
}
.qa-top,
.qc-top {
  text-align: center;
  max-width: 948px;
  margin: 0 auto;
  margin-bottom: 45px;
}
.qa-bg p {
  color: #333333;
  font-size: 16px;
  margin-bottom: 0;
  opacity: 0.9;
  line-height: 26px;
}
.qa-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #ec6618;
  border-radius: 4px;
  position: relative;
}
.qa-box img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
}
.qa-content {
  margin-left: 30px;
}
.qa-box {
  padding: 0 0 28px 50px;
}
.qa-content h5 {
  color: #333333;
  font-size: 16px;
  font-weight: 500;
}
.qcontrol-bg {
  padding: 65px 0 90px;
}
.qc-top h3 {
  color: #fff;
}
.qc-top p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 0;
  line-height: 26px;
}
.qcontrol-box {
  padding: 0 70px;
}
.custom-col-qc {
  background: #ffffff;
  text-align: center;
  padding: 48px 30px 40px;
  margin: 0 15px 20px;
  border-radius: 10px;
  box-shadow: 0px 6px 16px #00000094;
}
.qc-content p {
  margin-bottom: 0;
  font-size: 18px;
}
.qc-box img {
  margin: 0 auto;
  margin-bottom: 30px;
}
/* quality page end*/
/* contact page */
.contact-form h2 {
  margin-bottom: 40px;
}
.contact-form .formfield .col-sm-6:first-child {
  padding: 0 20px 0 0;
}
.contact-form .formfield .col-sm-6:last-child {
  padding: 0 0px 0 20px;
}
.contact-form .formfield .col-sm-12 {
  padding: 0;
}
.contact-form textarea {
  border-radius: 0;
  resize: none;
  height: 60px;
  font-size: 15px;
}
.contact-form input[type="submit"] {
  /* margin-left: 0 !important; */
  margin-top: 10px !important;
  text-transform: capitalize !important;
}

.address ul{
  list-style: none;
  padding-left: 0;
}
.address ul li{
  padding-left: 40px;
  margin-bottom: 30px;
  line-height: 26px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 10px;
}
.comp-address{
  background: url(../images/location.png) no-repeat left top/ 30px;
}
.phone-ic{
  background: url(../images/phone.png) no-repeat left top/ 30px;
}
.mail-ic{
  background: url(../images/mail.png) no-repeat left top/ 30px;
}
.clock-ic{
  background: url(../images/clock.png) no-repeat left 5px/ 20px;
}
.mail-ic a{
  color: #333;
  transition: .2s linear;
}
.mail-ic a:hover{
text-decoration: underline;
transition: .2s linear;
}
.social-media{ text-align: left; }
.social-media ul{
  padding-left: 0;
  list-style: none;
  display: flex;
  margin-top: 15px;
}
.social-media ul li{
  flex-shrink: 0;
}
.social-media ul li a{
  color: #fff;
  width: 40px;
  height: 40px;
  background: #231f20;
  display: block;
  margin-right: 12px;
  border-radius: 50px;
  align-items: center;
  text-align: center;
  line-height: 39px;
  transition: .2s linear;
  border: 1px solid transparent;
}
.social-media ul li a:hover{
  background: #fff;
  color: #231f20;
  transition: .2s linear;
  border: 1px solid #231f20;
}

 




/* custom media start */

@media screen and (max-width: 1200px) {
  .success_story .sbox .txt {
    padding: 250px 0px 0px 0px;
  }
  .teambox .txt {
    padding: 10px 15px;
    font-size: 18px;
  }
}

@media screen and (max-width: 1199px) {
  /* dev 2 */
  .oproduct-box img {
    max-height: 150px;
  }
  .qa-box {
    padding: 0 0 28px 15px;
  }
  /* dev 2 */
}

@media screen and (max-width: 991px) {
  .container {
    width: 100%;
  }
  .success_story .sbox .txt {
    padding: 220px 0px 0px 0px;
  }
  .success_story .sbox {
    padding: 20px;
  }
  .readyproject .txt {
    padding: 0px 10px 0 0px;
  }
  .readyproject a {
    margin-top: 0;
  }

  .bullettxt {
    max-width: inherit;
  }
  .breadcrumb {
    padding-bottom: 20px;
    margin: 0;
  }
  /* dev 2 */
  .other-products .col-md-2 {
    width: unset;
  }

  .custom-col-3 {
    max-width: 100%;
  }
  .product-details {
    padding-bottom: 75px;
  }
  .qms-cover {
    background-position: 50% 138%;
  }
  .qa-content {
    margin-left: 20px;
  }
  .qa-box {
    padding-left: 0;
  }
  .custom-col-qc {
    max-width: 220px;
    flex-shrink: 0;
    padding: 35px 20px 35px;
    margin: 0 10px;
  }
  .qcontrol-box .flexer {
    justify-content: center;
  }
  .qc-content p {
    font-size: 16px;
  }
  .qms-right {
    margin: 20px 0 0;
  }
  
  .contact-form .formfield .col-sm-6:first-child {
    padding: 0;
  }
  .contact-form .formfield .col-sm-6:last-child {
    padding: 0;
  }
  
  /* dev 2 */
}

@media screen and (max-width: 768px) {
  ul.resp-tabs-list {
    display: none;
  }

  h2.resp-accordion {
    display: block;
    background: #fff !important;
  }

  .resp-vtabs .resp-tab-content {
    border: 1px solid #c1c1c1;
  }

  .resp-vtabs .resp-tabs-container {
    border: none;
    float: none;
    width: 100%;
    min-height: 100px;
    clear: none;
  }

  .resp-accordion-closed {
    display: none !important;
  }

  .resp-vtabs .resp-tab-content:last-child {
    border-bottom: 1px solid #c1c1c1 !important;
  }
  section.whatwe_believe.whatwedo .resp-vtabs .resp-tab-content {
    padding: 10px 10px;
    font-size: 16px;
    line-height: 25px;
  }
}

@media screen and (max-width: 767px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }

  .success_story .sclm .sbox {
    min-height: inherit;
    margin: 20px auto;
    background-size: cover !important;
  }
  .success_story .sbox .txt {
    padding: 250px 0px 0px 0px;
  }
  .readyproject h2 {
    font-size: 25px;
  }
  .readyproject .readybbox {
    font-size: 16px;
  }

  .open-position .opbox .title {
    display: block;
    float: left;
    width: 100%;
    text-align: left;
  }
  .open-position .opbox .txt {
    width: auto;
    padding: 10px 0;
    text-align: left;
  }
  .readybbox {
    margin-top: 20px;
  }
  .ourtechnology .otbox .txt {
    max-width: inherit;
  }
  .innerbandimage {
    text-align: center;
  }
  .innerbandimage img {
    margin-bottom: 0px;
    max-width: 356px;
    width: 100%;
  }
  .firstrow,
  .secondrow {
    font-size: 16px;
  }
  .ourtechnology .tmrw {
    max-width: 600px;
    margin: 0 auto;
  }
  .teambox .txt {
    font-size: 16px;
  }
  .teambox .txt h4 {
    font-size: 18px;
  }
  /* dev 2 */
  .innerbanner {
    height: 220px !important;
  }
  
  .product-details .breadcrumb {
    margin-bottom: 30px;
  }
  .product-details h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 24px;
  }
  .pat-box {
    margin: 0 auto;
    margin-bottom: 15px;
  }
  .patterns-section p {
    text-align: center;
    margin-bottom: 20px;
  }
  .product-right img {
    margin: 0 auto;
    margin-bottom: 50px;
  }
  .patterns-section {
    margin-bottom: 35px;
  }
  .av-box {
    margin-bottom: 30px;
    justify-content: center;
  }
  .av-box img {
    margin-right: 0;
  }
  .av-box p {
    margin-left: 20px;
    margin-bottom: 10px;
  }
  .product-details {
    padding: 35px 0 40px;
  }
  .oproduct-box {
    text-align: center;
  }
  .oproduct-box img {
    margin: 0 auto;
    margin-bottom: 10px;
  }
  .oproduct-box {
    margin-bottom: 20px;
  }
  .availables-section h4::after {
    width: 100%;
  }
  .other-products {
    padding-bottom: 50px;
  }
  .other-products .slick-prev {
    bottom: -22px;
    left: 15px;
  }
  .other-products .slick-next {
    bottom: -22px;
    right: 15px;
  }
  .qms-cover {
    padding: 20px 0;
  }
  .stp-bx {
    text-align: center;
  }
  .blue-bx img {
    margin: 0 auto;
  }
  .qms-cover {
    background-position: 50% 108%;
  }
  .qa-bg,
  .qcontrol-bg {
    padding: 40px 0;
  }
  .qcontrol-box .flexer {
    display: block;
  }
  .custom-col-qc {
    max-width: 100%;
    margin: 0 auto;
  }
  /* dev 2 */
}

@media screen and (max-width: 640px) {
  .home h3,
  section.inner-body h3 {
    font-size: 22px;
    line-height: 29px;
  }
  .careers .crclm {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .teamclm {
    width: 100% !important;
  }
  .ourtechnology .tmrw {
    max-width: 277px;
  }
}
@media screen and (max-width: 400px) {
  .open-position .opbox .txt {
    width: 100%;
  }
}

/* ========================================
   FLIPKART STYLE - SINGLE PRODUCT PAGE
   ======================================== */

/* Breadcrumb Navigation */
.flipkart-breadcrumb {
    background: #fff;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb-link {
    color: #2874f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #1e5bc6;
    text-decoration: underline;
}

.breadcrumb-sep {
    color: #878787;
    font-size: 12px;
}

.breadcrumb-current {
    color: #212121;
    font-weight: 500;
}

/* Product Detail Section */
.flipkart-product-detail {
    background: #fff;
    padding: 24px 0;
}

/* Image Gallery */
.flipkart-image-gallery {
    position: sticky;
    top: 20px;
}

.main-image-container {
    width: 100%;
    height: 400px;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.main-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.main-product-image:hover {
    transform: scale(1.05);
}

.no-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #878787;
    font-size: 14px;
}

.no-image-placeholder i {
    font-size: 48px;
    margin-bottom: 8px;
}

.thumbnail-gallery {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 0;
}

.thumbnail-item {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail-item:hover,
.thumbnail-item.active {
    border-color: #2874f0;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Information */
.flipkart-product-info {
    padding-left: 24px;
}

.product-title {
    font-size: 24px;
    font-weight: 500;
    color: #212121;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.product-categories {
    margin-bottom: 16px;
}

.category-tag {
    display: inline-block;
    background: #f0f0f0;
    color: #212121;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 8px;
    margin-bottom: 4px;
}

.product-description {
    color: #212121;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.product-description p {
    margin: 0 0 12px 0;
}

.product-description p:last-child {
    margin-bottom: 0;
}

/* Specifications */
.flipkart-specifications {
    margin-bottom: 32px;
}

.spec-title {
    font-size: 18px;
    font-weight: 500;
    color: #212121;
    margin: 0 0 16px 0;
}

.spec-table {
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.spec-row {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    flex: 0 0 40%;
    padding: 12px 16px;
    background: #fafafa;
    font-weight: 500;
    color: #212121;
    font-size: 14px;
    border-right: 1px solid #f0f0f0;
}

.spec-value {
    flex: 1;
    padding: 12px 16px;
    color: #212121;
    font-size: 14px;
    background: #fff;
}

/* Action Buttons */
.product-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #ff6161;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 140px;
}

.btn-primary:hover {
    background: #e55555;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #fff;
    color: #2874f0;
    text-decoration: none;
    border: 1px solid #2874f0;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 140px;
}

.btn-secondary:hover {
    background: #f7f8fd;
    color: #2874f0;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Related Products */
.flipkart-related-products {
    background: #f1f3f6;
    padding: 32px 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.section-title {
    font-size: 20px;
    font-weight: 500;
    color: #212121;
    margin: 0;
}

.view-all-link {
    color: #2874f0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.view-all-link:hover {
    text-decoration: underline;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.related-product-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.related-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-link:hover {
    text-decoration: none;
    color: inherit;
}

.related-product-card .product-image {
    width: 100%;
    height: 200px;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.related-product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-product-card:hover .product-image img {
    transform: scale(1.05);
}

.related-product-card .no-image {
    color: #ccc;
    font-size: 48px;
}

.related-product-card .product-info {
    padding: 16px;
}

.product-category {
    display: block;
    font-size: 12px;
    color: #878787;
    margin-bottom: 4px;
    text-transform: uppercase;
    font-weight: 500;
}

.product-name {
    font-size: 14px;
    font-weight: 500;
    color: #212121;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Inquiry Section */
.flipkart-inquiry-section {
    background: #fff;
    padding: 40px 0;
}

.inquiry-card {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

.inquiry-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: #f8f9fa;
    border-bottom: 1px solid #f0f0f0;
}

.inquiry-icon {
    width: 60px;
    height: 60px;
    background: #2874f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.inquiry-text h3 {
    font-size: 20px;
    font-weight: 500;
    color: #212121;
    margin: 0 0 4px 0;
}

.inquiry-text p {
    font-size: 14px;
    color: #878787;
    margin: 0;
}

.inquiry-form {
    padding: 24px;
}

/* Form Styling */
.inquiry-form input[type="text"],
.inquiry-form input[type="email"],
.inquiry-form input[type="tel"],
.inquiry-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-bottom: 16px;
    font-family: inherit;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: #2874f0;
    box-shadow: 0 0 0 2px rgba(40,116,240,0.1);
}

.inquiry-form input[type="submit"] {
    background: #ff6161;
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.inquiry-form input[type="submit"]:hover {
    background: #e55555;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .related-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .flipkart-product-info {
        padding-left: 0;
        margin-top: 24px;
    }
    
    .flipkart-image-gallery {
        position: static;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .flipkart-product-detail {
        padding: 16px 0;
    }
    
    .main-image-container {
        height: 300px;
    }
    
    .product-title {
        font-size: 20px;
    }
    
    .spec-row {
        flex-direction: column;
    }
    
    .spec-label {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .inquiry-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .breadcrumb-nav {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .related-product-card .product-image {
        height: 150px;
    }
    
    .related-product-card .product-info {
        padding: 12px;
    }
    
    .main-image-container {
        height: 250px;
    }
    
    .thumbnail-item {
        width: 50px;
        height: 50px;
    }
    
    .inquiry-card {
        margin: 0 16px;
    }
    
    .inquiry-header,
    .inquiry-form {
        padding: 16px;
    }
    
    .inquiry-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* ========================================
   ENHANCED PRODUCT DETAILS SECTIONS
   ======================================== */

/* Common Section Styling */
.section-title {
    font-size: 18px;
    font-weight: 500;
    color: #212121;
    margin: 0 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
}

.product-highlights,
.product-features,
.product-benefits,
.product-usage,
.product-certifications,
.product-additional-info {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.product-additional-info:last-child {
    border-bottom: none;
}

/* Product Highlights */
.highlights-content {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid #2874f0;
}

.highlights-content p {
    margin: 0 0 8px 0;
    color: #212121;
    font-size: 14px;
    line-height: 1.6;
}

.highlights-content p:last-child {
    margin-bottom: 0;
}

/* Key Features */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    color: #28a745;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-item span {
    color: #212121;
    font-size: 14px;
    line-height: 1.5;
}

/* Product Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.benefit-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 8px;
}

.benefit-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.benefit-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #212121;
    margin: 0 0 8px 0;
}

.benefit-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Usage Instructions */
.usage-content {
    background: #fff8e1;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
}

.usage-content p {
    margin: 0 0 12px 0;
    color: #212121;
    font-size: 14px;
    line-height: 1.6;
}

.usage-content p:last-child {
    margin-bottom: 0;
}

.usage-content ol,
.usage-content ul {
    margin: 12px 0;
    padding-left: 20px;
}

.usage-content li {
    margin-bottom: 8px;
    color: #212121;
    font-size: 14px;
    line-height: 1.5;
}

/* Certifications */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.certification-item {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.certification-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.cert-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 8px;
}

.cert-logo img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}

/* Site Logo Styling */
.site-logo {
    display: inline-block;
    line-height: 0;
}

.site-logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Header logo container adjustments */
.navbar-header {
    display: flex;
    align-items: center;
}

/* Logo hover effect */
.site-logo:hover img {
    transform: scale(1.05);
}

/* Fixed Header Scroll State */
.navbar-static-top.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 5px 0;
}

/* Logo adjustments for fixed header */
.navbar-static-top.fixed .site-logo img {
    max-height: 45px !important;
    width: auto !important;
    transition: all 0.3s ease;
}

/* Header container adjustments for fixed state */
.navbar-static-top.fixed .container {
    max-width: 100%;
    padding: 0 15px;
}

/* Navigation adjustments for fixed header */
.navbar-static-top.fixed .navbar-nav > li > a {
    padding: 15px 10px;
    font-size: 14px;
}

/* Mobile menu toggle adjustments for fixed header */
.navbar-static-top.fixed .mobile-menu-toggle {
    margin-top: 5px;
}

/* Add body padding to prevent content jump when header becomes fixed */
body.fixed-header-active {
    padding-top: 80px;
}

.cert-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #212121;
    margin: 0 0 8px 0;
}

.cert-info p {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Additional Information Sections */
.additional-text-section,
.additional-image-text-section {
    margin-bottom: 24px;
}

.section-content {
    color: #212121;
    font-size: 14px;
    line-height: 1.6;
}

.section-content p {
    margin: 0 0 12px 0;
}

.section-content p:last-child {
    margin-bottom: 0;
}

.image-text-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    align-items: start;
}

.section-image {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-text {
    color: #212121;
    font-size: 14px;
    line-height: 1.6;
}

.section-text p {
    margin: 0 0 12px 0;
}

.section-text p:last-child {
    margin-bottom: 0;
}

/* Enhanced Thumbnail Gallery */
.thumbnail-gallery {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 0;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

.thumbnail-gallery::-webkit-scrollbar {
    height: 4px;
}

.thumbnail-gallery::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 2px;
}

.thumbnail-gallery::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}

.thumbnail-gallery::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Responsive Design for Enhanced Sections */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .image-text-content {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .section-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .benefit-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-logo {
        width: 60px;
        height: 60px;
    }
    
    .cert-logo img {
        max-width: 40px;
        max-height: 40px;
    }
    
    .section-title {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .product-highlights,
    .product-features,
    .product-benefits,
    .product-usage,
    .product-certifications,
    .product-additional-info {
        margin-bottom: 24px;
        padding-bottom: 16px;
    }
    
    .highlights-content,
    .usage-content {
        padding: 12px;
    }
    
    .benefit-card {
        padding: 16px;
    }
    
    .certification-item {
        padding: 12px;
    }
    
    .feature-item {
        padding: 8px 0;
    }
}

/* ============================================
   CUSTOMER SATISFACTION CONTACT PAGE STYLES
   ============================================ */

.customer-contact-section {
    padding: 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.customer-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 183, 77, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Hero Section */
.contact-hero {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 40px;
}

.satisfaction-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #10B981;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Methods Grid */
.contact-methods-grid {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.contact-method-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10B981 0%, #059669 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-method-card:hover::before {
    transform: scaleX(1);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10B981;
    transition: all 0.3s ease;
}

.contact-method-card:hover .method-icon {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    transform: scale(1.1);
}

.contact-method-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.contact-method-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
}

.contact-details {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #f1f5f9;
    transform: translateX(4px);
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-value {
    color: #374151;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #10B981;
    text-decoration: none;
}

.availability {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #10B981;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.address-list {
    margin-bottom: 20px;
}

.address-item {
    margin-bottom: 20px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
}

.address-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.address-text {
    color: #6b7280;
    line-height: 1.5;
}

.business-hours {
    color: #10B981;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    padding: 12px;
    background: #f0fdf4;
    border-radius: 12px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.social-item {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.social-item:hover {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-4px);
    border-color: #10B981;
}

.community-stats {
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Premium Form Section */
.premium-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    z-index: 1;
}

.form-intro {
    padding-right: 40px;
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.form-intro h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.2;
}

.form-intro p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 30px;
}

.benefits-list {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #374151;
    font-weight: 500;
}

.benefit-icon {
    font-size: 1.2rem;
    color: #10B981;
}

.premium-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.premium-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10B981 0%, #059669 100%);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.form-header p {
    color: #6b7280;
    font-size: 1rem;
}

.form-container .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-container .wpcf7-form-control-wrap {
    position: relative;
    width: 100%;
}

.form-container input[type="text"],
.form-container input[type="email"],
.form-container input[type="tel"],
.form-container textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    background: #f9fafb;
    transition: all 0.3s ease;
    font-family: inherit;
    color: #374151;
}

.form-container input[type="text"]:focus,
.form-container input[type="email"]:focus,
.form-container input[type="tel"]:focus,
.form-container textarea:focus {
    outline: none;
    border-color: #10B981;
    background: white;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    transform: translateY(-1px);
}

.form-container textarea {
    min-height: 120px;
    resize: vertical;
}

.form-container input[type="submit"] {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.form-container input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.form-container input[type="submit"]:active {
    transform: translateY(0);
}

.form-footer {
    margin-top: 20px;
    text-align: center;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    color: #6b7280;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Contact Report Form Styles */
#crs-contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

#crs-contact-form .form-group {
    margin-bottom: 20px;
}

#crs-contact-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
    font-family: "Inter", sans-serif;
}

#crs-contact-form input[type="text"],
#crs-contact-form input[type="email"],
#crs-contact-form input[type="tel"],
#crs-contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    transition: all 0.3s ease;
    background: #fafafa;
}

#crs-contact-form input[type="text"]:focus,
#crs-contact-form input[type="email"]:focus,
#crs-contact-form input[type="tel"]:focus,
#crs-contact-form textarea:focus {
    outline: none;
    border-color: #2d8a2d;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(45, 138, 45, 0.1);
}

#crs-contact-form input[type="tel"]:invalid {
    border-color: #dc3545;
    background: #fff5f5;
}

#crs-contact-form input[type="tel"].phone-error {
    border-color: #dc3545;
    background: #fff5f5;
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

#crs-contact-form .form-text.text-muted {
    font-size: 13px;
    color: #6c757d;
    margin-top: 5px;
    font-family: "Inter", sans-serif;
}

#crs-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

#crs-contact-form button[type="submit"] {
    background: #2d8a2d;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#crs-contact-form button[type="submit"]:hover {
    background: #236b23;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 138, 45, 0.3);
}

#crs-contact-form button[type="submit"]:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Alert styles for contact form */
.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-family: "Inter", sans-serif;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Mobile responsive for contact form */
@media (max-width: 768px) {
    #crs-contact-form {
        padding: 20px;
    }
    
    #crs-contact-form input[type="text"],
    #crs-contact-form input[type="email"],
    #crs-contact-form input[type="tel"],
    #crs-contact-form textarea {
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    #crs-contact-form button[type="submit"] {
        width: 100%;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    #crs-contact-form {
        padding: 15px;
    }
    
    #crs-contact-form .form-group {
        margin-bottom: 15px;
    }
    
    #crs-contact-form label {
        font-size: 14px;
    }
    
    #crs-contact-form input[type="text"],
    #crs-contact-form input[type="email"],
    #crs-contact-form input[type="tel"],
    #crs-contact-form textarea {
        padding: 10px 12px;
    }
    
    #crs-contact-form textarea {
        min-height: 100px;
    }
}
.map {
    margin: 40px 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
}

.map iframe {
    width: 100%;
    height: 450px;
    border: none;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map:hover iframe {
    filter: grayscale(0%);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .customer-contact-section {
        padding: 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .satisfaction-stats {
        gap: 40px;
    }
    
    .form-intro {
        padding-right: 20px;
    }
    
    .form-intro h2 {
        font-size: 2.2rem;
    }
    
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.4rem;
    }
    
    .satisfaction-stats {
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .contact-method-card {
        padding: 30px 25px;
    }
    
    .method-icon {
        width: 70px;
        height: 70px;
    }
    
    .form-intro {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .form-intro h2 {
        font-size: 2rem;
    }
    
    .premium-form-wrapper {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .satisfaction-stats {
        gap: 20px;
        margin-top: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .contact-methods-grid {
        padding: 40px 0;
    }
    
    .contact-method-card {
        padding: 25px 20px;
        border-radius: 20px;
        margin-bottom: 20px;
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-method-card h3 {
        font-size: 1.3rem;
    }
    
    .social-grid {
        grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
        gap: 12px;
    }
    
    .social-item {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .premium-form-section {
        padding: 60px 0;
    }
    
    .form-intro h2 {
        font-size: 1.8rem;
    }
    
    .premium-form-wrapper {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .satisfaction-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 0;
    }
    
    .contact-method-card {
        padding: 20px 15px;
        border-radius: 16px;
    }
    
    .method-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-method-card h3 {
        font-size: 1.2rem;
    }
    
    .social-item {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .form-intro h2 {
        font-size: 1.5rem;
    }
    
    .premium-form-wrapper {
        padding: 20px 15px;
        border-radius: 16px;
    }
    
    .map iframe {
        height: 300px;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .contact-method-card {
        padding: 15px 12px;
    }
    
    .contact-method-card h3 {
        font-size: 1.1rem;
    }
    
    .method-icon {
        width: 45px;
        height: 45px;
    }
    
    .form-intro h2 {
        font-size: 1.3rem;
    }
    
    .premium-form-wrapper {
        padding: 15px 12px;
    }
    
    .form-container input[type="text"],
    .form-container input[type="email"],
    .form-container input[type="tel"],
    .form-container textarea {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .form-container input[type="submit"] {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .map iframe {
        height: 250px;
    }
}

/* Form Inputs - Mobile Friendly */
.inquiry-form input[type="text"],
.inquiry-form input[type="email"],
.inquiry-form input[type="tel"],
.inquiry-form textarea {
    min-height: 48px;
    font-size: 16px;
}

.inquiry-form input[type="submit"] {
    min-height: 48px;
    min-width: 200px;
    padding: 12px 32px;
}

/* Mobile Form Adjustments */
@media (max-width: 768px) {
    .inquiry-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .inquiry-icon {
        margin-bottom: 15px;
    }
    
    .inquiry-form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .inquiry-card {
        border-radius: 0;
        margin: 0 -15px;
        width: calc(100% + 30px);
    }
}

/* Global Responsive Styles */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  position: relative;
}

/* Ensure all images are responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Responsive tables */
table {
  width: 100%;
  overflow-x: auto;
  display: block;
  white-space: nowrap;
}

/* Responsive videos */
iframe, embed, object, video {
  max-width: 100%;
  height: auto;
}

/* Responsive typography */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  
  h1 { font-size: 28px !important; }
  h2 { font-size: 24px !important; }
  h3 { font-size: 20px !important; }
  h4 { font-size: 18px !important; }
  h5 { font-size: 16px !important; }
  h6 { font-size: 14px !important; }
}

@media (max-width: 480px) {
  body {
    font-size: 13px;
  }
  
  h1 { font-size: 24px !important; }
  h2 { font-size: 20px !important; }
  h3 { font-size: 18px !important; }
  h4 { font-size: 16px !important; }
  h5 { font-size: 14px !important; }
  h6 { font-size: 13px !important; }
}

/* Touch-friendly spacing */
@media (max-width: 768px) {
  .row {
    margin: 0 -5px;
  }
  
  [class*="col-"] {
    padding: 0 5px;
  }
  
  /* Increase touch targets */
  a, button, input, select, textarea {
    min-height: 44px;
  }
  
  /* Better spacing for mobile */
  .section, .container-fluid > .row {
    padding: 30px 0;
  }
}

.scroll-to-top:hover {
    background: #607B8F;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.scroll-to-top i {
    font-size: 20px;
    margin: 0;
}

/* Show scroll-to-top button */
.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-to-top i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .scroll-to-top i {
        font-size: 16px;
    }
}
