/* =========================
   HERO SECTION
========================= */
.hero-section {
  position: relative;
  width: 100%;
  height: 620px;
  background: url('https://ctcglobaldev.wpengine.com/wp-content/uploads/2026/02/hero-banner-bg.jpg')
    center center / cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

/* =========================
   GRADIENT OVERLAY
========================= */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgb(4 44 113) 0%,
    rgb(13 54 124 / 30%) 35%,
    rgb(13 54 124 / 0%) 55%,
    rgb(13 54 124 / 0%) 75%,
    rgba(13, 54, 124, 0) 100%
  );
  z-index: 1;
}

.hero-content p {
  color: #fff;
  font-size: 20px;
  text-align: left !important;
}

/* =========================
   CONTENT ABOVE OVERLAY
========================= */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: left !important;
}

.hero-title {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 25px;
}

.hero-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 520px;
  text-align: left;
}

/* =========================
   BUTTON
========================= */
.btn-hero {
  background-color: #f37021;
  color: #fff;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-hero:hover {
  background-color: #d95d14;
  color: #fff;
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .hero-section {
    height: 500px;
    text-align: center;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-text {
    font-size: 1rem;
    text-align: left;
  }
  .hero-content p {
    color: #fff;
    font-size: 18px;
    text-align: left !important;
  }
}

/* ===============================
   PRODUCTS SECTION
================================ */
.gridvista-products {
  background: #f5f5f5;
}

.section-title {
  font-weight: 700;
  color: #113154;
  margin-bottom: 20px;
}

.section-desc {
  color: #6c757d;
  font-size: 18px;
  line-height: 1.6;
}

.section-line {
  width: 80px;
  height: 4px;
  background: #f37021;
  margin-bottom: 20px;
}

/* ===============================
   PRODUCT CARD
================================ */
.product-card {
  position: relative;
  background: #156596;
  color: #fff;
  padding: 35px 25px 120px;
  height: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
  color: white;
}

.product-card p {
  font-size: 16px;
  margin-bottom: 20px;
  color: white;
  text-align: left;
  line-height: 24px;
}

/* PLAY BUTTON */
.play-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #f37021;
  color: #fff;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  text-decoration: none;
}

.play-icon:hover {
  background: #d95d14;
  color: #fff;
}

/* PRODUCT IMAGE */
.product-img {
  position: absolute;
  bottom: -40px;
  right: 0;
  max-width: 90%;
}

/* ================================== */
/* WHAT MAKES US DIFFERENT SECTION */
/* ================================== */

.difference-section {
  background: #f4f6f8;
  padding: 100px 0;
  border-top: 1px solid #ddd;
  float: left;
  width: 100%;
}

/* Header */

.section-header {
  max-width: 850px;
  margin: 0 auto 80px;
}

.accent-line {
  display: block;
  width: 70px;
  height: 5px;
  background: #f37021;
  margin: 0 auto 20px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 20px;
}

.section-subtext {
  font-size: 1.15rem;
  color: #6c757d;
  line-height: 1.7;
}

/* Timeline */

.timeline-wrapper {
  position: relative;
}

.timeline-line {
  position: absolute;
  top: 41px;
  left: 15%;
  right: 15%;
  height: 12px;
  background: linear-gradient(
    90deg,
    #153a5b 0%,
    #1a5f8f 40%,
    #1ca0c7 75%,
    #b9d9e8 100%
  );
  z-index: 1;
}

.timeline-items {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  gap: 40px;
}

/* Individual Item */

.timeline-item {
  width: 32%;
  text-align: center;
}

.timeline-item h4 {
  font-size: 1.4rem;
  margin-top: 30px;
  color: #1a5f8f;
  font-weight: 700;
}

.timeline-item p {
  font-size: 18px;
  color: #6c757d;
  line-height: 1.6;
  margin-top: 15px;
}

/* Icon Circles */

.icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
}

.icon-circle.solid {
  background: #153a5b;
  color: #ffffff;
}

.icon-circle.outlined {
  background: #ffffff;
  border: 3px solid #153a5b;
  color: #66a83f;
}

/* Responsive */

@media (max-width: 992px) {
  .timeline-line {
    display: none;
  }

  .timeline-items {
    flex-direction: column;
    gap: 25px;
  }

  .timeline-item {
    width: 100%;
  }
}

/* =================================== */
/* CASE STUDY TABS SECTION */
/* =================================== */

.case-study-section {
  padding: 100px 0;
  background: #ffffff;
  float: left;
  width: 100%;
}

.case-tabs {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 0;
  margin: 50px 0 60px;
  border-bottom: 1px solid #ddd;
}

.case-tabs li {
  cursor: pointer;
  padding-bottom: 15px;
  font-weight: 700;
  color: #1e3a5f;
  position: relative;
  font-size: 20px;
}

.case-tabs li.active {
  color: #1a5f8f;
}

.case-tabs li.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: #1ca0c7;
}

/* Content */

.case-content {
  display: none;
}

.case-content.active {
  display: block;
}

.case-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #1e3a5f;
  font-weight: 600;
}

.case-text p {
  font-size: 1.05rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: left;
}

.vista-sec {
  padding: 100px 0;
  float: left;
  width: 100%;
}
/* Orange Button */

.btn-orange {
  background: #f37021;
  color: #fff;
  padding: 11px 30px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}
.adison-case-img {
  padding-right: 35px;
}
.btn-orange:hover {
  background: #d95d14;
  color: #fff;
}

/* Responsive */

@media (max-width: 992px) {
  .case-tabs {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .adison-case-img {
    padding-right: 0px;
  }
  .case-tabs li {
    padding-bottom: 10px;
  }

  .case-text {
    margin-top: 30px;
  }
}

/* ================================= */
/* CLIENT LOGO SLIDER */
/* ================================= */

.logo-slider-section {
  padding: 80px 0;
  background: #ffffff;
  border-top: 1px solid #ddd;
  float: left;
  width: 100%;
}
.logo-slider-section .owl-stage {
  display: flex;
  align-items: center;
}
.logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-item img {
  max-height: 100px;
  width: auto;
  /* filter: grayscale(100%);
  opacity: 0.7; */
  transition: all 0.3s ease;
}

/* .logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
} */

/* ===================================== */
/* CTC GLOBAL UPDATES SECTION */
/* ===================================== */

.updates-section {
  background: #f4f6f8;
  padding: 100px 0;
  float: left;
  width: 100%;
}

/* Grid Layout */

.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */

.update-card {
  background: #15669a;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: 0.3s ease;
}

.update-card:hover {
  transform: translateY(-5px);
}

/* Image */

.update-image {
  position: relative;
  overflow: hidden;
}

.update-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Image Label */

.image-label {
  position: absolute;
  bottom: 20px;
  left: 0px;
  background: #777777;
  color: #fff;
  padding: 8px 18px;
  font-size: 1rem;
}

/* Content */

.update-content {
  padding: 20px 35px;
  color: #ffffff;
}

.update-content h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.update-content p {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 1;
  color: white;
  text-align: left;
}

.btn-hero {
  margin-top: 25px;
}
.hero-title {
  margin-bottom: 35px;
}

/* Responsive */

@media (max-width: 992px) {
  .updates-grid {
    grid-template-columns: 1fr;
  }
  .hero-section {
    height: 495px;
  }
  .update-image img {
    height: auto;
  }
  .commom-sp {
    padding: 60px 0;
  }
  .icon-circle {
    width: 75px;
    height: 75px;
  }

  .case-tabs {
    margin: 10px 0 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
  }

  .section-header {
    margin: 0 auto 40px;
  }
  .case-tabs li.active::after {
    display: none;
  }
  .case-tabs li {
    color: #1a5f8f;
    border: 1px solid #1a5f8f;
    border-radius: 50px;
    padding: 10px 10px;
    width: 300px;
    text-align: center;
  }
  .case-tabs li.active {
    color: #ffffff !important;
    background: #1a5f8f;
    border: 1px solid #1a5f8f;
    border-radius: 50px;
    padding: 10px 10px;
  }

  .btn-hero {
    margin-top: 15px;
  }
  .hero-title {
    margin-bottom: 25px;
  }
}

@media (max-width: 576px) {
  .commom-sp {
    padding: 40px 0;
  }
  .vista-sec {
    padding: 40px 0 60px 0;
  }
  .update-content h3 {
    margin-bottom: 10px;
  }

  .hero-content p {
    max-width: 232px;
  }

  .hero-title {
    font-size: 1.8rem;
  }
  .hero-content {
    padding: 10px 25px;
  }
  .hero-section {
    position: relative;
    width: 100%;
    height: 510px;
    background: url('https://ctcglobal.com/wp-content/uploads/2026/02/bg-mobile-home.jpg')
      center center / cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
  }

  /* .hero-section::before {
    background: none;
  } */

  .hero-section::before {
    background: linear-gradient(
      90deg,
      #042c71 0%,
      rgba(13, 54, 124, 60%) 35%,
      rgba(13, 54, 124, 20%) 100%,
      rgba(13, 54, 124, 0%) 75%,
      rgba(13, 54, 124, 0) 100%
    );
  }

  .btn-hero {
    margin-top: 10px;
  }
  .hero-title {
    margin-bottom: 15px;
  }
}

/*=============== New CSS 9-03-2026 =========*/

.hero-section {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.hero-home-slider-sec {
  float: left;
  width: 100%;
}

.footer-newsletter {
  background-color: #4a4949;
  padding: 60px 0;
}

.tr-top-wrap {
  gap: 70px;
  align-items: center;
  justify-content: center;
}

.tr-top-wrap input[type='text'] {
  width: 600px;
  background-color: #ebf0f2;
  height: 38px;
}

.tr-top-wrap .search-sec .btn {
  background: none;
  color: #fff;
  font-size: 15px;
  padding: 5px 34px !important;
  border: 1px solid #fff !important;
  border-radius: 7px !important;
  text-transform: none;
  width: auto !important;
  margin-left: 50px;
}

.tr-top-wrap .search-sec .btn:hover {
  background: #f85f1c;
  color: #fff;
  border-color: #f85f1c !important;
}

.footer-middle {
  background-color: #333333;
}

.footer-middle-line {
  overflow: hidden;
  position: relative;
}

.footer-middle-line:before {
  content: '';
  background-color: #646363;
  width: 1px;
  position: absolute;
  left: 37.8%;
  z-index: 1;
  height: 100%;
  top: 0;
  bottom: 0;
}

.footer-middle-line:after {
  content: '';
  background-color: #646363;
  width: 1px;
  position: absolute;
  left: 65.7%;
  z-index: 1;
  height: 100%;
  top: 0;
  bottom: 0;
}

.footer-col h3 {
  color: #fff;
  padding: 30px 0;
  font-weight: 400;
}

.footer-1 h3 {
  border-bottom: 1px solid #646363;
}

.footer-2 h3 {
  border-bottom: 1px solid #646363;
  padding-left: 40px;
}

.footer-margin-none {
  margin: 0;
}

.footer-padding-none {
  padding: 0;
}

.ftr-menu {
  margin: 40px 0 0 0;
  padding: 0;
  list-style: none;
}

.ftr-menu li {
  margin-bottom: 15px;
}

.ftr-menu li a {
  color: #c0c0c0;
  text-transform: uppercase;
  font-size: 15px;
}

.ftr-menu li a:hover {
  color: #f85f1c;
}

.ftr-menu-1 {
  display: flex;
  flex-wrap: wrap;
}

.ftr-menu-1 li {
  width: 50%;
}

.ftr-menu-2 {
  padding-left: 40px;
}

.social-media-sec {
  margin: 30px 0;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
}

.footer-3 {
  padding-left: 30px;
}

.footer-3 p {
  font-size: 15px;
  color: #fff;
}

.btn-newsletter {
  background-color: #f85f1c;
  border-radius: 11px;
  color: #fff;
  font-size: 20px;
  margin-top: 16px;
  padding: 4px 22px;
}

.btn-newsletter:hover {
  background-color: #fff;
  color: #f85f1c;
}

.social-media-sec ul li a {
  line-height: 34px;
}

@media (max-width: 1199px) {
  .tr-top-wrap input[type='text'] {
    width: 450px;
  }
}

@media (max-width: 991px) {
  .tr-top-wrap input[type='text'] {
    width: 300px;
  }

  .tr-top-wrap {
    gap: 40px;
  }

  .tr-top-wrap .search-sec .btn {
    margin-left: 30px;
  }

  .footer-middle-line:after {
    left: 65%;
  }

  .ftr-menu {
    margin: 30px 0 0 0;
  }

  .footer-2 h3,
  .ftr-menu-2 {
    padding-left: 20px;
  }

  .ftr-menu-1 li {
    width: 100%;
  }

  .ftr-menu li {
    margin-bottom: 8px;
  }
}

@media (max-width: 767px) {
  .footer-middle-line:before,
  .footer-middle-line:after {
    display: none;
  }

  .footer-newsletter {
    padding: 30px 0;
  }

  .tr-top-wrap {
    display: block !important;
    text-align: center;
    margin-top: 0;
  }

  .tr-top-wrap img {
    margin-bottom: 30px;
  }

  .tr-top-wrap .search-sec .btn {
    margin-left: 0;
  }

  .footer-2 h3,
  .ftr-menu-2 {
    padding-left: 0;
  }

  .footer-col h3 {
    padding: 20px 0;
  }

  .ftr-menu li {
    margin-bottom: 12px;
  }

  .footer-3 {
    padding-left: 0;
    padding-bottom: 40px;
  }

  .footer-3 h3 {
    border-bottom: 1px solid #646363;
    margin-bottom: 25px;
  }

  .footer-3 p {
    text-align: left !important;
  }

  .social-media-sec {
    margin: 20px 0 10px;
  }

  .ftrlogo {
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {
  .tr-top-wrap input[type='text'] {
    width: 100%;
  }

  .tr-top-wrap img {
    margin-bottom: 25px;
  }

  .search-sec {
    display: block;
    display: -webkit-block;
    display: -moz-block;
    display: -ms-block;
  }

  .tr-top-wrap .search-sec .btn {
    margin-left: 0;
    width: 100% !important;
    margin-top: 12px;
    padding: 6px 10px !important;
    font-size: 18px !important;
  }

  .btn-newsletter {
    font-size: 18px;
    margin-top: 14px;
  }

  .copyrt {
    font-size: 13px !important;
    margin: 0;
  }

  .footer-bottom-sec {
    padding: 10px 0;
    text-align: center;
  }

  .ftrlogo {
    margin-bottom: 10px;
  }
}

/*=============== New About us page CSS =========*/

.new-about-hero-sec {
  float: left;
  width: 100%;
  position: relative;
}

.new-about-hero-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    270deg,
    rgb(4 44 113) 0%,
    rgb(13 54 124 / 30%) 35%,
    rgb(13 54 124 / 0%) 55%,
    rgb(13 54 124 / 0%) 75%,
    rgba(13, 54, 124, 0) 100%
  );
  z-index: 1;
}

.new-about-hero-sec .homebanner-caption-area {
  z-index: 1;
}

.new-about-hero-sec .caption-wrapper {
  background: none !important;
  padding: 0;
  width: 550px;
}
.new-about-hero-sec .caption-wrapper h1:after {
  display: none !important;
}

.new-about-hero-sec .homebanner-caption-area h1 {
  font-size: 3rem;
  text-transform: none;
  margin: 0;
  line-height: normal;
  position: relative;
  padding-bottom: 0;
  text-align: left;
  font-weight: 600;
}

.new-about-counting-sec .counter-wrapper {
  width: 100%;
  position: relative;
  left: 0;
  top: 0;
}

.middle-heading {
  padding-top: 25px;
  padding-bottom: 0;
  color: #113154;
  font-size: 2rem;
  font-weight: 700;
  font-family: TradeGothicNextLTPro-Rg;
  position: relative;
}

.board-sec .nwsec-ttl-1,
.about-our-history-sec .sec-ttl-2 {
  font-size: 2rem;
  font-weight: 700;
}

.middle-heading:after {
  content: '';
  height: 4px;
  width: 80px;
  position: absolute;
  left: 50%;
  bottom: auto;
  transform: translate(-50%, 0);
  top: 0;
  background: #f36f21;
}
section.new-about-counting-sec {
  padding: 0 0 50px;
  float: left;
  width: 100%;
}
.new-about-counting-sec .cont-no {
  color: #07446d;
}

.new-about-counting-sec .count-desc {
  color: #000;
  margin-top: 10px;
  font-weight: bold;
  font-size: 22px !important;
  padding: 0 15%;
  line-height: normal;
}

.new-about-counting-sec .counter-blocks {
  border-right: 3px solid #d0d7dc;
}

.about-our-history-sec {
  background: #113154;
}

.about-our-history-sec .history-col-1 {
  width: 40%;
  padding-left: 3px !important;
  padding-right: 30px !important;
  padding-top: 20px;
}

.about-our-history-sec .history-col-2 {
  width: 63%;
  padding-right: 20px;
  padding-left: 40px;
}

.about-our-history-sec .hist-imgwrap img {
  max-width: 100%;
}

.about-our-history-sec #sync2 .item {
  text-align: left;
}

.about-our-history-sec .history-subheading {
  margin: 0 0 40px;
}

.board-sec {
  float: left;
  width: 100%;
  background-color: #113154;
  padding: 75px 0 30px;
}

.board-directors h4 {
  font-weight: bold;
  margin-top: 15px;
  color: #fff;
}
.board-sec .nwsec-ttl-1 {
  font-weight: bold;
}

.board-sec .nwsec-ttl-1:after {
  display: none !important;
}
.global-manufacturing-sec {
  float: left;
  width: 100%;
  padding: 75px 0 0;
}

.team-main img {
  border-radius: 4px;
}

.team-main h3 {
  font-weight: 600;
  font-size: 2rem;
  color: #000;
}

.team-main h6 {
  margin-bottom: 15px;
  color: #005da6;
  font-size: 20px;
}

.team-thumb .item {
  cursor: pointer;
}

.team-thumb .item img {
  width: 100%;
  object-fit: cover;
  border-radius: 0;
  filter: grayscale(100%);
}

.team-thumb .owl-item.current img {
  filter: grayscale(0%);
}

.team-thumb .owl-item.current .item {
  opacity: 1;
}

.team-thumnnail-right {
  padding-left: calc(33.33% + 82px);
  margin-top: -133px;
  position: relative;
  z-index: 2;
}

.team-details-new {
  padding-left: 60px;
}

.team-thumb {
  background-color: #fff;
}

.team-details-scroll {
  max-height: 300px;
  overflow: auto;
  padding-top: 20px;
  font-size: 14px;
}

.team-details-scroll p {
  font-size: 18px;
  line-height: 27px;
}

.prtnr-blocks {
  padding: 4px 15px;
}
.new-about-counting-sec .cont-no {
  font-size: 75px;
}
@media (max-width: 1400px) {
  .team-details-scroll {
    max-height: 240px;
  }
  .team-thumnnail-right {
    margin-top: -120px;
  }
}
@media (max-width: 1199px) {
  .new-about-hero-sec .caption-wrapper {
    width: 480px;
  }
  .new-about-hero-sec .homebanner-caption-area h1 {
    font-size: 2.2rem;
  }
  .new-about-counting-sec .cont-no {
    font-size: 55px;
  }
  .new-about-counting-sec .count-desc {
    font-size: 18px !important;
    padding: 0;
  }
  .our-history-sec {
    padding: 60px 0;
  }
  .about-our-history-sec .history-subheading {
    margin: 0 0 20px;
  }
  .team-thumnnail-right {
    margin-top: -98px;
  }
  .team-details-scroll {
    max-height: 220px;
  }
  .board-sec {
    padding: 75px 0 10px;
  }
}

@media (max-width: 991px) {
  .new-about-hero-sec .caption-wrapper {
    width: 340px;
  }
  .new-about-hero-sec .homebanner-caption-area h1 {
    font-size: 2rem;
  }
  .new-about-hero-sec .bnrhm-img {
    background-position: bottom !important;
  }
  .middle-heading {
    padding-top: 20px;
    font-size: 32px;
  }

  .board-sec .nwsec-ttl-1,
  .about-our-history-sec .sec-ttl-2 {
    font-size: 32px;
  }

  .what-wedo-sec,
  .meet-section {
    padding: 60px 0;
  }
  .our-history-sec {
    padding: 40px 0;
  }
  .board-sec {
    padding: 60px 0 10px;
  }
  .team-thumnnail-right {
    margin-top: -10px;
    padding-left: 0;
  }
  .team-details-new {
    padding-left: 10px;
  }
  .board-directors h4 {
    font-size: 19px;
  }
  .team-details-scroll {
    max-height: 190px;
    padding-top: 0;
  }
  .team-main h3 {
    font-size: 28px;
  }
  .team-main h6 {
    font-size: 18px;
  }

  .about-our-history-sec .history-row {
    flex-direction: column;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
  }

  .about-our-history-sec .history-col-1 {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0px !important;
    padding-top: 20px;
  }

  .about-our-history-sec .history-col-1 {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0px !important;
    padding-top: 20px;
  }
  .about-our-history-sec .history-col-2 {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .new-about-hero-sec .caption-wrapper {
    width: 240px;
  }
  .new-about-hero-sec .homebanner-caption-area h1 {
    font-size: 1.8rem;
  }
  .what-wedo-sec,
  .meet-section {
    padding: 50px 0;
  }
  .middle-heading {
    padding-top: 20px;
    font-size: 30px;
    margin-bottom: 0 !important;
  }

  .board-sec .nwsec-ttl-1,
  .about-our-history-sec .sec-ttl-2 {
    font-size: 30px;
  }

  .new-about-counting-sec .counter-wrapper {
    flex-direction: row;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
  }
  .new-about-counting-sec .counter-blocks {
    width: 25%;
  }
  .new-about-counting-sec .cont-no {
    font-size: 45px;
  }
  .new-about-counting-sec .count-desc {
    font-size: 18px !important;
    padding: 0;
  }
  .about-our-history-sec .search-sec {
    display: block;
    display: -webkit-block;
    display: -moz-block;
    display: -ms-block;
  }
  .about-our-history-sec .history-col-1 {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0px !important;
    padding-top: 20px;
  }
  .about-our-history-sec .history-col-2 {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-top: 30px;
  }
  .about-our-history-sec #sync2 .item span {
    font-size: 15px;
  }

  .team-details-new {
    padding-left: 4px;
    padding-top: 20px;
  }
  .team-details-scroll {
    max-height: max-content;
    padding-top: 0;
  }
  .team-details-scroll p {
    line-height: 26px;
    text-align: left !important;
  }
  .new-about-counting-sec .counter-blocks {
    border-right: 0px solid #d0d7dc;
  }
}

@media (max-width: 575px) {
  .new-about-hero-sec .homebanner-caption-area {
    position: absolute;
    top: 0;
    bottom: 0;
  }
  .new-about-hero-sec .homebanner-caption-area h1 {
    font-size: 1.2rem;
  }
  .new-about-hero-sec .caption-wrapper {
    width: 210px;
  }
  .new-about-hero-sec::before {
    background: linear-gradient(
      270deg,
      #042c71 0%,
      rgba(13, 54, 124, 60%) 45%,
      rgba(13, 54, 124, 0%) 95%,
      rgba(13, 54, 124, 0%) 75%,
      rgba(13, 54, 124, 0) 100%
    );
  }
  .middle-heading {
    font-size: 26px;
  }
  .board-sec .nwsec-ttl-1,
  .about-our-history-sec .sec-ttl-2 {
    font-size: 26px;
  }
  .new-about-counting-sec .counter-blocks {
    width: 50%;
    padding: 0 15px;
  }
  .new-about-counting-sec .count-desc {
    margin-top: 5px;
    font-size: 16px !important;
    padding: 0;
  }
  .new-about-counting-sec .cont-no {
    font-size: 40px;
  }
  section.new-about-counting-sec {
    padding: 0 0 30px;
  }
  .what-wedo-sec {
    padding: 50px 0 20px;
  }
  .about-our-history-sec .history-col-1 {
    padding-top: 0;
  }
  .about-our-history-sec .history-col-2 {
    margin-top: 10px;
  }

  .our-history-sec {
    padding: 40px 0 10px !important;
  }
  .team-main h3 {
    font-size: 25px;
  }
  .team-main h6 {
    font-size: 16px;
  }
  .board-sec {
    padding: 40px 0 10px;
  }
  .global-manufacturing-sec {
    padding: 40px 0 0;
  }
}

/*=============== End of New CSS 9-03-2026 =========*/
