/* ==============
 ========= CSS Documentation =========

 * Theme Name: Star Tech & Engineering Ltd.
 * Version: 1.0
 * Description: Star Tech & Engineering Ltd.
 * Author: Startech
 * Author url: https://www.startech.com.bd/


 01. Reponsive
     1.1 --> Header
    =========================
============== */

/* ==== 
 --------- (1.1)Responsive styles Start ---------
 ==== */
@media only screen and (max-width: 1399.98px) {
}
@media only screen and (max-width: 1299.98px) {
  header.header-area {
    padding: 10px 0;
  }
  .desktop-menu {
    display: none;
  }
  .mobile-menu {
    display: block;
  }

  #nav-toggler {
    width: 22px;
    height: 15px;
    background: rgba(255, 255, 255, 0);
    display: block;
  }

  #nav-toggler span:after,
  #nav-toggler span:before {
    content: "";
    position: absolute;
    left: 0;
    top: -7px;
  }

  #nav-toggler span:after {
    top: 7px;
  }

  #nav-toggler span {
    position: relative;
    display: block;
  }

  #nav-toggler span,
  #nav-toggler span:after,
  #nav-toggler span:before {
    width: 100%;
    height: 2px;
    background-color: var(--st-primary-color);
    transition: all 0.3s;
    backface-visibility: hidden;
    border-radius: 2px;
  }

  /* on activation */
  #nav-toggler.close span {
    background-color: transparent;
  }
  #nav-toggler.close span:before {
    transform: rotate(45deg) translate(6px, 5px);
  }
  #nav-toggler.close span:after {
    transform: rotate(-45deg) translate(5px, -4px);
  }
  .main-nav {
    position: absolute;
    left: 0;
    top: 2px;
  }

  .main-nav .nav.open .overlay {
    content: "";
    position: fixed;
    left: 0;
    top: 61px;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 999;
    display: block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }

  .main-nav .nav ul li {
    border-bottom: 1px solid #e8e8e8;
    margin: 0;
    height: auto;
  }

  .main-nav .nav .drop-menu-2 li {
    position: relative;
    left: 0;
    top: 0;
  }

  .main-nav .nav li a {
    padding: 8px 20px; /* Level 1 Padding */
    margin: 0;
    line-height: normal;
    font-size: 15px;
    display: block;
  }

  /* Level 2 */
  .main-nav .nav .drop-menu-1 li a {
    padding-left: 35px; /* Level 2 Indent */
    margin: 0;
    color: #333;
    line-height: normal;
    font-size: 14px;
    font-weight: 500;
  }

  /* Level 3 */
  .main-nav .nav .drop-menu-2 li a {
    padding-left: 50px; /* Level 3 Indent */
    margin: 0;
    font-size: 14px;
    color: #555;
  }

  /* Level 4 */
  .main-nav .nav .drop-menu-3 li a {
    padding-left: 65px; /* Level 4 Indent */
    margin: 0;
    font-size: 13.5px;
    color: #666;
  }

  .main-nav .nav .toggle + a {
    display: none;
  }
  .main-nav .nav ul li:before {
    display: none;
  }
  .main-nav .nav {
    visibility: hidden;
  }
  .nav .drop-down li.drop-open > a:before {
    display: none;
  }

  .main-nav .nav .drop-menu-1 li {
    display: block;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
    padding: 0;
  }
  
  .main-nav .nav .drop-down a:hover {
    background: none;
    color: var(--st-primary-color);
  }
  
  .main-nav .nav .drop-menu-2 li {
    display: block;
    padding: 0;
    border-bottom: 1px solid #e1e1e1;
    background-color: #f1f3f5;
  }
  
  .main-nav .nav .drop-menu-3 li {
      background-color: #e9ecef;
      border-bottom: 1px solid #ddd;
  }

  .main-nav .nav ul ul {
    box-shadow: none;
  }

  .main-nav .nav .drop-menu-2 li a.active {
    color: var(--st-primary-color);
  }

  .main-nav .nav .drop-menu-2 li:hover {
    color: var(--st-primary-color);
  }

  .main-nav .nav.open {
    visibility: visible;
  }

  .main-nav .nav .responsive-menu {
    width: 100%;
    position: fixed;
    left: -100%;
    top: 61px;
    height: calc(100vh - 36px);
    overflow: auto;
    background: white;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: 99999;
  }

  .main-nav .nav.open .responsive-menu {
    left: 0;
  }
  .main-nav .nav:before {
    display: none;
  }

  .main-nav .nav ul li {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  .main-nav .nav ul li > ul {
    display: none !important;
  }

  .main-nav .nav ul li.open > ul {
    display: block !important;
    height: auto;
    opacity: 1;
    visibility: visible;
  }

  .main-nav .nav .drop-menu-1 a {
    display: block;
  }

  .main-nav .nav li a:hover {
    background: none;
    color: var(--st-primary-color);
  }

  .main-nav .nav ul ul {
    float: none;
    position: static;
  }

  /* Fisrt Tier Dropdown*/
  .main-nav .nav ul ul li {
    display: block;
    width: 100%;
  }
  .main-nav .nav ul ul ul li {
    position: static;
  }

  .main-nav .nav li.drop-open > a:after {
    content: "\e145";
    float: right;
    font-size: 20px;
    font-family: "Material Symbols Outlined";
  }

  .main-nav .nav li.open > a:after {
    content: "\e931";
    margin-top: -10px;
    font-size: 22px;
  }

  .drop-menu-1 li a:only-child:after {
    content: " ";
  }
  .main-nav .nav ul li.drop-open.c-1:after {
    display: none;
  }
  .service-card {
    grid-template-columns: repeat(1, 1fr);
}
.solution-industry-section .row.no-pad .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
}
.search-icon.seacrh-bar-action.mobile {
    position: absolute;
    right: 40px;
    color: var(--st-primary-color);
    top: 6px;
    display: block;
}
}

@media (min-width: 992px) and (max-width: 1280px) {
}

@media (min-width: 768px) and (max-width: 991px) {
}
@media only screen and (max-width: 991.98px) {
  .single-service-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
}

.benefit-item {
    padding: 16px 20px;
}

.benefit-icon {
    margin-bottom: 7px;
}

.benefit-icon span {
    width: 40px;
    height: 40px;
    font-size: 40px;
}

.benefit-item h5 {
    font-size: 18px;
    line-height: 24px;
}

.benefit-item p {
    font-size: 14px;
}

.service-card .service-content {
    padding: 20px;
}

.solution-industry-info {
    padding: 20px;
}
  .links-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
    .who-we-wrap {
    grid-template-columns: 1fr;
    gap: 15px;
  }
    .who-we-content {
    padding: 20px;
  }

  .who-we-content .short-text, .industry-module-content .short-text {
    margin-top: 10px;
    margin-bottom: 24px;
  }
  .news-list {
    grid-template-columns: 1fr;
  }
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-info {
    padding-right: 0;
  }
  .contact-header h1 {
    font-size: 28px;
    line-height: 1.3;
  }
  .contact-details {
      margin-top: 30px;
      gap: 30px;
  }
  .contact-form-container {
    padding: 30px;
  }
  .award-item {
    margin: 0;
    margin-bottom: 20px;
}

.award-date {
    display: none;
}

.awards-timeline::before {
    display: none;
}

.awards-timeline {
    padding: 0;
    margin-top: 20px;
}
}
@media only screen and (min-width: 992px) {
}
@media only screen and (max-width: 767.98px) {
  :root {
    --st-font-size: 14px;
    --st-section--padding: 40px 0;
    --st-section--padding--top: 40px;
    --st-section--padding--bottom: 40px;
  }

  h1 {
    font-size: 30px;
    margin: 0 0 10px;
  }

  h2 {
    font-size: var(--fontSize-40, 24px);
  }

  h3 {
    font-size: var(--fontSize-32, 24px);
  }

  h4 {
    font-size: var(--fontSize-27, 20px);
  }

  h5 {
    font-size: var(--fontSize-24, 18px);
  }
  h5 {
    font-size: var(--fontSize-20, 16px);
  }

  .section-title {
    margin-bottom: 20px;
    justify-content: center;
    text-align: center;
  }

  .section-title .view-all {
    display: none;
  }
  .btn {
    padding: 9px 15px;
    line-height: 15px;
    height: auto;
    font-size: 14px;
  }

  .section-gap-top {
    padding-top: 20px;
  }
  .section-gap-bottom {
    padding-bottom: 20px;
  }



  .cat-items-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }


  .industry-module-wrap {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  
  .solutions-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }

  .soultion-partners-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .benefits-grid {
    gap: 15px;
    grid-template-columns: repeat(1, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }

  .service-card {
    grid-template-columns: repeat(1, 1fr);
  }
  .service-benefits-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
  .single-service-benefits-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }

  .strengths-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .award-right .award-content, .award-left .award-content {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .partners-brands-wrap {
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-content {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .footer-links {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  section.hero-slider {
    margin: 15px 0;
  }
  .hero-text {
    width: 80%;
  }

  .hero-image img {
    object-fit: cover;
  }

  .hero-text h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .link-card {
    padding: 15px;
    gap: 10px;
    border-radius: 5px;
  }

  .link-card h3 {
    font-size: 18px;
  }

  .btn-link {
    font-size: 14px;
    line-height: 20px;
  }

  .btn-link span {
    font-size: 20px;
  }

  .brands {
    padding: 20px 0;
    margin-top: 30px;
  }

  .menu-left {
    padding: 10px 20px;
  }

  .menu-left li a, .submenu li a {
    padding: 10px 0;
    gap: 10px;
    font-size: 14px;
  }

  .solution-module {
    gap: 15px;
  }

  .solution-module .menu-right {
    padding: 20px;
  }

  .brands-track {
    gap: 20px;
  }

  .submenu-content h2 {
    font-size: 20px;
    padding-bottom: 9px;
  }

  .submenu-column li {
    margin-bottom: 10px;
  }

  .submenu-columns {
    margin-top: 20px;
  }

  .explore-btn {
    margin-top: 20px;
    padding: 5px 13px !important;
  }

.share-links.social-links {
    margin-bottom: 24px;
}

  .industry-module-wrap .btn-link {
    display: none;
  }

  .industry-module-content .short-text {
    margin-bottom: 0;
  }

  .industry-item {
    padding: 12px 18px;
    gap: 10px;
  }

  .cta-area {
    padding: 30px 0;
  }

  .cta-section-content .btn-group .btn-border {
    width: 220px;
    justify-content: center;
  }
  .partners-wrap .slick-slide > div {
    margin-bottom: 25px;
  }

  .partner-area-wrap {
    padding: 25px 0;
  }
  .partners-wrap .slick-slide > div {
    margin-bottom: 25px;
  }

  .partner-area-wrap {
    padding: 25px 0;
  }

  .news-item {
    padding: 0;
  }

  .news-list .news-item .news-content .news-meta {
    padding: 10px 0;
    font-size: 13px;
    line-height: 18px;
  }

  .news-list .news-item .news-content .news-title {
    margin-bottom: 20px;
    margin-top: 10px;
  }

  .news-content {
    padding-bottom: 15px;
  }
  .newsletter-section {
    padding: 30px 0;
  }

  .newsletter-content {
    gap: 10px;
    padding: 20px;
    justify-content: center;
  }

  .footer-top-area {
    padding: 35px 0;
  }
  
  /* Responsive Compare Page */
  .comparison-wrapper {
      margin-top: 20px;
  }
  .table-responsive {
      overflow-x: auto !important;
      -webkit-overflow-scrolling: touch;
  }
  .comparison-table {
      width: max-content !important; /* Force scroll */
      min-width: 100%;
      border-collapse: separate; 
      border-spacing: 0;
  }
  .comparison-table .td-value {
      min-width: 220px;
      max-width: 220px; /* Fixed width for consistency */
      white-space: normal;
  }
  
  /* Sticky First Column */
  .comparison-table .td-label, 
  .comparison-table tr > td:first-child {
      position: sticky !important;
      position: -webkit-sticky !important;
      left: 0;
      background: #f9f9f9;
      z-index: 20;
      border-right: 1px solid #ddd;
      min-width: 140px;
      max-width: 140px;
      font-weight: 600;
      box-shadow: 2px 0 5px rgba(0,0,0,0.05); /* Shadow for depth */
  }
  
  /* Section Header needs to stay on top or scroll? 
     Usually section header allows colspan. If strictly sticky, it might need attention.
     For now, let it scroll normally but ensure z-index doesn't conflict. 
  */
  .comparison-table .section-header td {
      z-index: 15; /* Be below the sticky labels if they overlap, but usually won't */
      position: static; 
  }

  .comparison-table td {
      vertical-align: top;
      padding: 12px;
      background: #fff; /* Ensure values have bg */
  }
  
  /* Reset bg for sticky */
  .comparison-table .td-label, 
  .comparison-table tr > td:first-child {
      background: #f8f9fa !important;
  }

  .comparison-table .image-wrapper img {
      max-width: 100%; 
      height: auto;
  }
  
  .comparison-table .price-new {
      display: block;
      font-weight: 600;
      color: var(--st-primary-color);
  }


  .contact-item:not(:last-child)::after {
    display: none;
  }

  .social-media {
    justify-content: flex-start;
  }

  .footer-column h3 {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .footer-column ul {
    gap: 5px;
  }

  .footer-column ul li a {
    font-size: 14px;
  }
  .solution-hero-text {
    padding: 30px 0px;
  }

  .solution-hero-text h1 {
    font-size: 24px;
  }

  .solution-hero-text p {
    margin-bottom: 28px;
    font-size: 18px;
    margin-top: 15px;
  }

  .section-header-two h2 {
    font-size: 18px;
  }

  .section-header-two p {
    font-size: 16px;
    margin-top: 10px;
  }

  .benefit-image h3 {
    font-size: 20px;
    text-align: center;
    bottom: 20px;
    left: 20px;
  }
  .service-benefit-content {
    padding: 20px;
  }

  .service-benefit-content .benefit-number {
    position: initial;
    font-size: 25px;
    margin-bottom: 10px;
  }

  .service-benefit-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .service-benefit-content p {
    font-size: 16px;
    line-height: 24px;
  }
  .solution-card-content {
    padding: 0;
  }

  .solution-card-content p {
    margin: 10px 0;
  }
  .solution-industry-list {
    gap: 10px;
    text-align: center;
  }

  .solution-industry-info.service-benefits {
    padding: 20px 0;
  }
  .solution-slider{
    width: 100%;
  }
  .page-breadcrumb {
    margin-top: 20px;
  }
  .breadcrumb {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .product-overview-area {
    margin-top: 30px;
  }
  .product-overview-area {
    margin-top: 30px;
  }
  .call-for-price {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .single-accordinian {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .submenu-column ul {
    grid-template-columns: 1fr;
  }
  .partners-wrap .slick-arrow {
    display: none !important;
}
.solution-hero-section .solution-bg {
    display: none;
}
.solution-slider.owl-carousel .owl-nav {
    display: none;
}
  .contact-form-container {
    padding: 24px;
  }
  #contactForm .btn-group {
    flex-direction: column;
    gap: 15px;
  }
  #contactForm .btn {
      width: 100%;
      margin: 0;
  }
  .contact-header p {
      font-size: 16px;
  }
  .contact-item h3 {
      font-size: 18px;
  }
  .contact-value {
      font-size: 20px;
  }
  .about-hero-text .btn-group {
    justify-content: center;
    flex-direction: column;
}

.about-hero-img {
    margin-top: 30px;
}

.iso-info {
    text-align: center;
}

.iso-certificate.text-right {
    text-align: center;
}
div#review {
    margin-top: 30px;
}
.technical-review-wrap {
    padding: 30px 0;
}
.child-list a {
    font-size: 13px;
    padding: 5px 10px;
}

.child-list {
    margin-bottom: 16px;
}
.with-filter .show-sort {
    display: none;
}
}

/* ==== 
 --------- (1.1)Responsive styles End ---------
 ==== */
