/* GTCS HERO SECTION */


/* Dark contrast overlay */
.gtcs-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.65) 40%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

/* Content at bottom */
.gtcs-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0px 0 192px;
}

.gtcs-hero-text {
  /* max-width: 850px; */
  color: #ffffff;
}

.gtcs-hero-text h1 {
  font-size: 52px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fafdf4;
}

.gtcs-hero-text h3 {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 25px;
  color: #f4b400;
}

.gtcs-hero-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #f1f1f1;
  margin-bottom: 12px;
  /* max-width: 800px; */
}

/* Buttons */
.gtcs-hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.gtcs-btn {
  display: inline-block;
  padding: 13px 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.gtcs-btn-primary {
  background: #f4b400;
  color: #111;
}

.gtcs-btn-primary:hover {
  background: #ffffff;
  color: #111;
}

.gtcs-btn-outline {
  border: 1px solid #ffffff;
  color: #ffffff;
}

.gtcs-btn-outline:hover {
  background: #ffffff;
  color: #111;
}

/* Mobile */
@media (max-width: 767px) {
  .gtcs-hero-section {
    min-height: 700px;
    background-position: center;
  }

  .gtcs-hero-content {
    padding: 60px 20px 45px;
  }

  .gtcs-hero-text h1 {
    font-size: 34px;
  }

  .gtcs-hero-text h3 {
    font-size: 20px;
  }

  .gtcs-hero-text p {
    font-size: 14px;
    line-height: 1.7;
  }

  .gtcs-hero-buttons {
    flex-wrap: wrap;
  }

  .gtcs-btn {
    padding: 11px 22px;
  }
}

/* for tab */
/* Product Tabs */
.product-tabs {
  margin-bottom: 40px;
}

.tab-btn {
  background: transparent;
  border: 1px solid #ddd;
  padding: 12px 35px;
  margin: 0 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
  background: #1d2d50;
  color: #fff;
  border-color: #1d2d50;
}

/* Hide Tabs */
.tab-content {
  display: none;
}

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

/* Smaller Images */
.services-img {
  width: 85%;
  margin: 0 auto;
  overflow: hidden;
}

.services-img img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

/* Mobile */
@media (max-width: 767px) {
  .tab-btn {
    padding: 10px 20px;
    font-size: 14px;
    margin-bottom: 10px;
  }

  .services-img {
    width: 90%;
  }

  .services-img img {
    height: 190px;
  }
}
/* new added */

.global-energy-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.global-energy-section .container {
  position: relative;
  z-index: 2;
}

.global-energy-subtitle {
  margin-bottom: 15px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

.global-energy-title {
  margin: 0;
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .global-energy-section {
    padding: 70px 20px;
  }

  .global-energy-title {
    font-size: 30px;
  }

  .global-energy-subtitle {
    font-size: 16px;
  }
}
/* new added 3 image  */
.experience-section {
  padding: 100px 0;
  background: #ffffff;
}

.experience-wrapper {
  position: relative;
  min-height: 630px;
}

/* Center Image */
.experience-image {
  width: 420px;
  height: 630px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

/* Left Box */
.experience-box {
  position: absolute;
  top: 20px;
  left: 111px;
  width: 450px;
  height: 180px;
  padding: 25px 20px;
  background: #ffffff;
  border: 3px solid #df382e;
  z-index: 2;
}

.experience-box span {
  display: block;
  color: #df382e;
  font-size: 36px;
  line-height: 1;
  font-family: cursive;
}

.experience-box h2 {
  margin: 5px 0 0;
  text-align: center;
  color: #111111;
  font-size: 60px;
  line-height: 1;
  /* font-family: Georgia, serif; */
}

/* Right Box */
.partner-box {
  position: absolute;
  right: 98px;
  top: 160px;
  width: 470px;
  min-height: 350px;
  padding: 35px 40px;
  background: #df382e;
  z-index: 2;
}

.partner-box h2 {
  margin: 0 0 25px;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.3;
  /* font-family: Georgia, serif; */
}

.partner-box p {
  margin-bottom: 25px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.7;
}

.partner-btn {
  display: inline-block;
  padding: 15px 25px;
  color: #ffffff;
  background: #111111;
  text-decoration: none;
  transition: 0.3s ease;
}

.partner-btn:hover {
  color: #ffffff;
  background: #000000;
}

/* Responsive */
@media (max-width: 991px) {
  .experience-wrapper {
    min-height: auto;
  }

  .experience-image {
    width: 100%;
    height: 500px;
  }

  .experience-box,
  .partner-box {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 90%;
    margin: -60px auto 0;
  }

  .partner-box {
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .experience-section {
    padding: 60px 15px;
  }

  .experience-image {
    height: 420px;
  }

  .experience-box {
    height: auto;
    padding: 20px 15px;
  }

  .experience-box span {
    font-size: 28px;
  }

  .experience-box h2 {
    font-size: 35px;
  }

  .partner-box {
    padding: 30px 25px;
  }

  .partner-box h2 {
    font-size: 32px;
  }
}
/* our team  */
.team-section {
    padding: 25px 0 50px;
    background: #fff;
}

.team-intro {
    /* max-width: 900px; */
    /* margin: 0 auto 25px; */
    text-align: left;
  padding-bottom: 28px;
}

.team-intro p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #111;
}

.team-row {
    margin-left: -10px;
    margin-right: -10px;
}

.team-row > div {
    padding-left: 10px;
    padding-right: 10px;
}

.team-card {
    text-align: center;
    height: 100%;
}

.team-img {
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.team-img img {
    width: 84%;
    /* height: 100%; */
    object-fit: cover;
    display: block;
}

.team-card h4 {
    margin: 0 0 0px;
    font-size: 22px;
    font-weight: 700;
    color: #111;
}

.team-card .designation {
    font-size: 16px;
    /* font-style: italic; */
    margin-bottom: 14px;
    color: #111;
}

.team-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #111;
    text-align: justify;
}


/* Tablet */
@media (max-width: 991px) {

    .team-img {
        /* height: 300px; */
    }

    .team-card {
        margin-bottom: 40px;
    }

}


/* Mobile */
@media (max-width: 575px) {

    .team-section {
        padding: 20px 15px 40px;
    }

    .team-intro p {
        font-size: 14px;
    }

    .team-img {
        /* height: 350px; */
    }

    .team-card p {
        font-size: 14px;
        line-height: 1.6;
    }

}