/* ==========================
   HERO BANNER
========================== */

.hero-banner {
  position: relative;
  min-height: 100vh;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  background-image: url("hero-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Dark Overlay */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: #000613;
  z-index: 1;
  opacity: 0.7;
}

/* Content */

.hero-content {
  position: relative;
  z-index: 2;

  width: min(1200px, 90%);
  margin: 0 auto;

  display: flex;
  justify-content: center;
  text-align: center;
}

.hero-text {
  max-width: 680px;
}

/* Heading */

.hero-text h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 54px;
  color: #ffffff;
  margin-bottom: 20px;
}

/* Description */

.hero-text p {
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 660px;
}

/* Button Area */

.hero-btn-wrapper {
  position: relative;
  text-align: center;
  transition: all 0.4s ease;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: var(--e-global-color-ba62a22);
  padding: 6px 5px 6px 24px;
  box-shadow: 0px 0px 0px 6px rgba(0, 114, 57, 0.30196078431372547);
  border-radius: 50px 50px 50px 50px;
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0 0 0;
  border: 1px solid transparent;
  transition: 0.6s all;
}

.hero-btn-wrapper:hover {
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(213.00000000000003, 98, 42, 0.68);
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: var(--e-global-color-317f163);
  transform: translatex(10px);
  transition: 0.6s all;
}

.hero-btn-wrapper:hover .title {
  color: #150d4b;
}

.hero-btn-wrapper:hover .icon.style-color {
  color: #fff;
}

.hero-btn-wrapper:hover .icon.style-color {
  background: #d5622a;
}

.hero-btn-wrapper .icon-box.icon-box-header {
  margin-left: 15px;
  margin-right: unset;
}

.hero-btn-wrapper .icon.style-color {
  color: var(--e-global-color-ce7412a);
  background-color: #ffffff;
  border-radius: 50px 50px 50px 50px;
  margin: 2px 0px 0px 8px;
  padding: 8px 8px 8px 8px;
  display: flex;
}

.hero-btn-wrapper i.jki.jki-right-arrow-light {
  font-size: 20px;
}

.hero-btn-wrapper .title {
  padding: 0px 0px 0px 0px;
  color: #ffffff;
  font-family: "Mulish", Sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 22px;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 991px) {
  .hero-banner {
    min-height: 80vh;
    padding: 130px 0 50px;
  }

  .hero-text {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-content {
    width: 92%;
  }
  .hero-text h1 {
    font-size: 40px;
  }
  .hero-text p {
    max-width: 100%;
  }

  .hero-btn {
    padding: 0.65rem 0.65rem 0.65rem 1.5rem;
  }

  .btn-icon {
    width: 48px;
    height: 48px;
  }
}

/* announcement section start */
/*==============================
CONTACT CTA
==============================*/

.contact-cta {
  padding: 0 0 80px 0;
  background: #f7f7f7;
}

.contact-cta .container {
  background: #eef5f1;
  border: 1px solid #d5e4dc;
  border-radius: 32px;
  padding: 60px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Left */

.contact-cta__content {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  flex: 1;
}

/* Icon */

.contact-cta__icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #007a3d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text */

.contact-cta__text {
  max-width: 760px;
}

.contact-cta__label {
  display: inline-block;
  margin-bottom: 8px;
  color: #007a3d;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 14px;
}

.contact-cta__text h3 {
  margin: 0 0 15px;
  color: #15171c;
  font-weight: 900;
  line-height: 1.15;
}

.contact-cta__text p {
  margin: 0;
  color: #59687a;
  line-height: 1.6;
  max-width: 640px;
  font-size: 18px;
}

/* Right Button */

.contact-cta__button {
  flex-shrink: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 26px;

  padding: 12px 12px 12px 36px;

  background: #007a3d;
  color: #fff;

  border-radius: 100px;
  text-decoration: none;

  transition: 0.35s ease;
}

.cta-btn span:first-child {
  font-weight: 600;
}

.cta-btn__icon {
  width: 60px;
  height: 60px;

  border-radius: 50%;
  background: #fff;
  color: #007a3d;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.35s ease;
}

.cta-btn:hover {
  transform: translateY(-4px);
}

.cta-btn:hover .cta-btn__icon {
  transform: translateX(5px);
}

/*==============================
Responsive
==============================*/

@media (max-width: 1200px) {
  .contact-cta .container {
    padding: 60px;
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .contact-cta .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-cta__button {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .contact-cta {
    padding: 0 0 50px 0;
  }

  .contact-cta .container {
    padding: 40px 25px;
    border-radius: 24px;
    align-items: center;
  }

  .contact-cta__content {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .contact-cta__icon {
    width: 70px;
    height: 70px;
  }

  .cta-btn {
    width: 100%;
    justify-content: space-between;
  }

  .contact-cta__text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-cta__text h3,
  .contact-cta__text p {
    text-align: center;
  }
}
/* announcement section end */

/* capabilites section start */
.capabilities {
  padding: 90px 0;
  background: #f7f7f7;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.capabilities-intro {
  max-width: 800px;
  margin: 0 auto 70px;
  text-align: center;
}

.section-label {
  display: inline-block;
  margin-bottom: 10px;

  color: #d46d2e;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-description {
  color: #6f7682;
  line-height: 1.9;
}

.section-description strong {
  color: #222;
  font-weight: 700;
}

.capabilities-heading {
  text-align: center;
  margin-bottom: 60px;
}

.capabilities-heading h2 {
  margin: 0;
  color: #1d1d1d;
  font-weight: 900;
  line-height: 1.2;
}

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

.capability-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 20px;

  padding: 32px;

  transition: all 0.35s ease;
}

.capability-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-icon {
  width: 64px;
  height: 64px;

  border-radius: 50%;

  background: #d5622a;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 24px;
}

.card-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: invert(1);
}

.capability-card h3 {
  margin: 0 0 16px;
  color: #222;
  font-weight: 800;
  line-height: 1.2;
}

.capability-card p {
  margin: 0;
  color: #606671;
  line-height: 1.8;
}

@media (max-width: 991px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .capabilities {
    padding: 50px 0;
  }

  .capabilities-heading {
    margin-bottom: 30px;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
  }

  .capabilities-intro {
    margin-bottom: 60px;
  }
}
/* capabilities section end */

/* stats section start */
.stats-section {
  padding: 50px 0;
  background: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: 0.6fr 0.85fr 0.7fr 1.2fr;
  align-items: center;
}

.stats-grid .first {
  padding-left: 0;
}

.stats-grid .right {
  padding-right: 0;
}

.stat-item {
  padding: 0 24px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 45px;
  background: #d8d8d8;
  transform: translateY(-50%);
}

.stat-item h3 {
  margin: 0 0 10px;
  font-size: 2.25rem;
  /* 36px */
  font-weight: 800;
  line-height: 1.1;
  color: #171717;
}

.stat-item h3 span {
  color: #e06f2d;
  font-size: 1.25rem;
  /* 20px */
  font-weight: 700;
}

.stat-item p {
  margin: 0;
  font-size: 0.95rem;
  /* 15px */
  font-weight: 400;
  line-height: 1.6;
  color: #8a8f98;
}

/* Large text item */
.stat-item:last-child h3 {
  font-size: 2.1rem;
  white-space: nowrap;
}

.stat-item:last-child h3 span {
  font-size: inherit;
  color: #e06f2d;
}

/* Tablet */
@media (max-width: 991px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .stat-item::after {
    display: none;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .stat-item:last-child h3 {
    font-size: 1.8rem;
    white-space: normal;
  }
}
/* stats section end */

/* accuqtision section start */
.acquisition-section {
  padding: 100px 0;
  background: #f8f8f8;
}

.acquisition-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  overflow: hidden;

  border-radius: 24px;
  background: #0c0636;
}

.acquisition-image {
  height: 100%;
}

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

.acquisition-content {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 60px 70px;
  color: #fff;
}

.section-tag {
  display: inline-block;
  margin-bottom: 10px;

  color: #d9732f;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.acquisition-content h2 {
  margin: 0 0 24px;

  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;

  max-width: 500px;
}

.acquisition-content p {
  margin: 0;

  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);

  max-width: 520px;
}

/* Hover Effect */

.acquisition-card {
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

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

/* Responsive */

@media (max-width: 991px) {
  .acquisition-card {
    grid-template-columns: 1fr;
  }

  .acquisition-image {
    min-height: 350px;
  }

  .acquisition-content {
    padding: 50px 40px;
  }
}

@media (max-width: 767px) {
  .acquisition-section {
    padding: 50px 0;
  }

  .acquisition-image {
    min-height: 280px;
  }

  .acquisition-content {
    padding: 40px 24px;
  }
  .acquisition-content .section-tag,
  .acquisition-content h2,
  .acquisition-content p {
    text-align: center;
  }
}
/* accuqtision section end */

/* gallery section start */
.page-template-page-project_ocean
  .elementor-location-footer
  .elementor-element-da08ef5 {
  margin-top: 0 !important;
  padding: 170px 0 70px 0 !important;
}

.facility-gallery {
  padding: 90px 0 100px 0;
  background: #ffffff;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

/* Heading */

.gallery-heading {
  margin-bottom: 30px;
}

.gallery-heading h2 {
  margin: 0 0 10px;
  font-weight: 800;
  line-height: 1.2;
  color: #181818;
}

.gallery-heading p {
  margin: 0;
  color: #8a8f98;
  line-height: 1.7;
}

/* Gallery Grid */

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

/* Gallery Card */

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: #fff;

  aspect-ratio: 1.35 / 1;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

  transition: transform 0.6s ease;
}

/* Bottom Accent Line */

.gallery-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 4px;
  background: transparent;
}

/* Hover Effects */

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Responsive */

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:last-child {
    grid-column: span 2;
  }

  .page-template-page-project_ocean
    .elementor-location-footer
    .elementor-element-da08ef5 {
    padding: 60px 0 70px 0 !important;
  }
}

@media (max-width: 767px) {
  .facility-gallery {
    padding: 40px 0 50px;
  }

  .facility-gallery h2,
  .facility-gallery p {
    text-align: center;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:last-child {
    grid-column: auto;
  }

  .page-template-page-project_ocean
    .elementor-location-footer
    .elementor-element-da08ef5 {
    margin-top: 0 !important;
    padding: 30px 20px 50px 20px !important;
  }
}
/* gallery section end */
