/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-blue: #21409a;
  --blood-orange: #f26522;
  --light-orange: #f7941d;
  --orange-overlay: rgba(246, 171, 59, 0.9);
  --dark-blue: #1a2f7a;
  --light-color: #f8f9fa;
  --card: #ffffff;
  --dark-color: #333;
  --gray-color: #6c757d;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --shadow-card:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-glow: 0 0 25px rgba(246, 171, 59, 0.986);
  --constr-dark: #243344;
  --constr-blue-glass: rgba(36, 51, 68, 0.85);
  --constr-white: #ffffff;
  --petrol-faint-blue: #b9cfe7;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f5f7fa;
  color: var(--dark-color);
  line-height: 1.6;
  overflow-x: hidden;
  font-family: "Open Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== PRELOADER BACKGROUND ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #c4ae78, #d2a557);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* ===== LOGO ANIMATION ===== */
.logo-wrapper {
  text-align: center;
}

.logo {
  width: 120px;
  animation: logoAnim 2s ease-in-out infinite alternate;
}

/* Floating + Fade Animation */
@keyframes logoAnim {
  0% {
    transform: scale(0.9) translateY(0px);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.05) translateY(-10px);
    opacity: 1;
  }
}

/* Header and Navigation */
header {
  background-color: white;
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  padding: 5px 0;
  background-color: rgba(255, 255, 255, 0.98);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  transition: var(--transition);
}
.header-container .logo img {
  width: 100px;
  height: auto;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  text-decoration: none;
  color: var(--dark-color);
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
}

nav ul li a:hover {
  color: var(--blood-orange);
}

nav ul li a.active {
  color: var(--blood-orange);
}

nav ul li a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--light-orange);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-blue);
  cursor: pointer;
}

/* Page content */
.page-content {
  padding-top: 100px;
  min-height: calc(100vh - 100px);
}

.page-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding: 80px 10px;
  text-align: center;
}

.page-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.page-header p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  font-family: "Open Sans", sans-serif;
}

/* construction header */
.section {
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.section.animate {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  color: var(--primary-blue);
  font-size: 32px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--light-orange);
}

.section-title p {
  color: var(--gray-color);
  max-width: 700px;
  margin: 0 auto;
  font-family: "Open Sans", sans-serif;
}

/* Home page */
.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(33, 64, 154, 0.6), rgba(33, 64, 154, 0.6));
  z-index: 2;
  pointer-events: none;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateY(-100%);
  transition:
    transform 1.2s cubic-bezier(0.77, 0, 0.175, 1),
    opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  transform: translateY(0);
  z-index: 2;
}

.carousel-slide:not(.active) {
  transform: translateY(100%);
}

.carousel-slide.exit {
  transform: translateY(-100%);
  opacity: 0;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
  align-items: start;
  padding: 0;
  max-width: 900px;
  margin: 0;
  animation: contentFadeIn 1s ease-out 0.5s both;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.hero-content .tagline {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--light-orange);
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 2rem;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: #ff6b35;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid #ff6b35;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  margin-left: 15px;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ff6b35;
}

/* Carousel Controls - Positioned to the right */
.carousel-controls {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.carousel-indicators {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.carousel-indicator {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.carousel-indicator::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: white;
  transition: left 5s linear;
}

.carousel-indicator.active {
  background: white;
  border-color: white;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.carousel-indicator.active::before {
  left: 100%;
}

.carousel-indicator:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.2);
}

/* Animations */
@keyframes contentFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    transform: translateY(0%);
    opacity: 0;
  }
  to {
    transform: translateY(-100%);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 1;
  }
  to {
    transform: translateY(0%);
    opacity: 0;
  }
}

/* Progress Indicator (Optional) */
.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.progress {
  height: 100%;
  background: #ff6b35;
  width: 0%;
  transition: width 5s linear;
}

/* About section */

.about-title {
  /* text-align: center; */
  margin-bottom: 40px;
}

.about-title h2 {
  color: var(--primary-blue);
  font-size: 32px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.about-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--light-orange);
}

.about-title p {
  color: var(--gray-color);
  max-width: 700px;
  margin: 0 auto;
  font-family: "Open Sans", sans-serif;
}

.about-details {
  /* display: grid;
  grid-template-columns: 1fr 1fr; */
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
}

#about-us {
  /* width: 300px; */
  flex: 4;
}

.about-image {
  width: 600px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.about-text h3 {
  color: var(--primary-blue);
  margin-bottom: 20px;
  font-size: 28px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.about-text h3.mission {
  margin-top: 30px;
}

.about-text p {
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.value-item {
  background-color: white;
  padding: 25px 20px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  border-top: 4px solid var(--primary-blue);
}

.value-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.value-item:hover {
  transform: translateY(-5px);
  border-top-color: var(--light-orange);
}

.value-item i {
  font-size: 36px;
  color: var(--light-orange);
  margin-bottom: 15px;
}

.value-item h4 {
  color: var(--primary-blue);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

/* corecombs */

.corecombs {
  display: flex;
  list-style: none;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  padding: 0;
}
.corecombs-cell {
  -webkit-box-flex: 0;
  flex: 0 1 180px;
  max-width: 180px;
  height: 99px;
  margin: 40px 5px 10px;
  position: relative;
  padding: 0.5em;
  text-align: center;
  z-index: 1;
}

.corecombs-cell_title {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  word-break: break-word;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
  -webkit-transition: opacity 350ms;
  transition: opacity 350ms;
}

.corecombs-core {
  font-size: 2em;
  font-weight: 900;
  color: white;
}

.corecombs-cell_image {
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
}

.corecombs-cell::before,
.corecombs-cell::after {
  content: "";
}
.corecombs-cell::before,
.corecombs-cell::after,
.corecombs-cell_image {
  top: -50%;
  left: 0;
  width: 100%;
  height: 200%;
  display: block;
  position: absolute;
  -webkit-clip-path: polygon(
    50% 0%,
    100% 25%,
    100% 75%,
    50% 100%,
    0% 75%,
    0% 25%
  );
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: -1;
}
.corecombs-cell::before {
  background: var(--blood-orange);
  -webkit-transform: scale(1.055);
  transform: scale(1.055);
}
.corecombs-cell::after {
  background: #111111;
  opacity: 0.7;
  /* -webkit-transition: opacity 350ms; */
  transition: opacity 350ms;
}
.corecombs-cell:hover .corecombs-cell_title {
  opacity: 0;
}
.corecombs-cell:hover .corecombs-cell_image {
  filter: grayscale(0%);
}
.corecombs-cell:hover::before {
  background: var(--primary-blue);
}

.corecombs-cell:hover::after {
  opacity: 0;
}
.corecombs_placeholder {
  display: none;
  opacity: 0;
  width: 180px;
  margin: 0 12.5px;
}

/* Services preview */
.services-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  position: relative;
  background-color: white;
  border-radius: 0 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
  border-top: 4px solid transparent;
  border-bottom: 4px solid var(--light-orange);
}

.service-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-10px);
  border-top-color: var(--light-orange);
}

.service-card .service-img {
  height: 200px;
  overflow: hidden;
}
.service-details .service-img {
  height: 550px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Icon styling */
.img-icon {
  position: absolute;
  top: 200px;
  right: 25px;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid white;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); */
  z-index: 10;
}

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

.service-content {
  padding: 25px;
  padding-top: 40px;
}

.service-content h3 {
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
}
.service-content p {
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #555;
}

.service-content .btn {
  margin-top: 15px;
  padding: 10px 25px;
}

.background-container {
  position: relative;
  width: 100%;
  min-height: 550px;
}

.background-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(rgba(33, 64, 154, 0.9), rgba(33, 64, 154, 0.9)),
    url("https://images.unsplash.com/photo-1542744173-8e7e53415bb0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  background-size: cover;
  background-repeat: no-repeat;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}

#stats-content {
  position: relative;
  z-index: 10;
  padding: 30px 40px 90px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#stats-content h2 {
  color: var(--blood-orange);
}

#stats-content .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  position: relative;
  align-items: end;
}

.stat-card {
  margin-top: 50px;
}

/* Assigning different heights to each card */
.stat-card:nth-child(1) {
  height: 220px;
}

.stat-card:nth-child(2) {
  height: 270px;
}

.stat-card:nth-child(3) {
  height: 190px;
}

.stat-card:nth-child(4) {
  height: 250px;
}

.stat-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  border: 2px solid white;
  color: white;
}

.stat-card:nth-child(1) .stat-icon {
  background: linear-gradient(135deg, #2e5bff, #2e5bff);
}

.stat-card:nth-child(2) .stat-icon {
  background: linear-gradient(135deg, #00c48c, #00c48c);
}

.stat-card:nth-child(3) .stat-icon {
  background: linear-gradient(135deg, #ff8a00, #ff8a00);
}

.stat-card:nth-child(4) .stat-icon {
  background: linear-gradient(135deg, #ff2e63, #ff2e63);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--blood-orange);
  line-height: 1;
}

.stat-card .stat-title {
  font-size: 1.1rem;
  color: var(--light-color);
  font-weight: 600;
}

.stat-card .stat-description {
  color: var(--light-color);
  font-size: 0.9rem;
  margin-top: 10px;
  line-height: 1.5;
}

/* Testimonials */
.testimonials {
  background-color: #f0f4f8;
  background-image: url("/images/whitepattern.png");
}

#testimonials {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: center;
}

.sub-container {
  margin-left: -20px;
}

#testimonials .side-img {
  height: 500px;
  margin-left: 0;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-item {
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  display: none;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  border-left: 5px solid var(--light-orange);
}

.testimonial-item.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
}

.testimonial-author {
  color: var(--primary-blue);
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.testimonial-controls button {
  background-color: var(--primary-blue);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-controls button:hover {
  background-color: var(--dark-blue);
}

/* Partners */
.partners {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.partner-logo {
  height: 250px;
  width: 300px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.partner-logo.animate {
  opacity: 1;
  transform: translateY(0);
}

.partner-logo:hover {
  transform: translateY(-5px);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.partner-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* Call to action */
.cta {
  color: white;
  text-align: center;
  padding: 80px 0;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.cta.animate {
  opacity: 1;
  transform: translateY(0);
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.cta p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
  font-family: "Open Sans", sans-serif;
}

/* Service pages */
.service-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.service-details.animate {
  opacity: 1;
  transform: translateY(0);
}

.service-details:nth-child(even) .service-img {
  order: 2;
}

.service-details:nth-child(even) .service-description {
  order: 1;
}

.service-description h3 {
  color: var(--primary-blue);
  margin-bottom: 20px;
  font-size: 28px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.service-description p {
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  margin-top: 20px;
}

.service-list li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  font-family: "Open Sans", sans-serif;
}

.service-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--light-orange);
  position: absolute;
  left: 0;
  font-size: 18px;
}

/* Contact page */
.contact-bg {
  background-color: #fff;
  padding: 120px 20px;
  display: flex;
  justify-content: center;
}
.contact-container {
  position: relative;
  width: 1100px;
  max-width: 100%;
  display: flex;
  align-items: center;
}

.contact-card {
  width: 400px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #fff;
  gap: 0;
}

/* Image section */
.card-image img {
  width: 80%;
  height: auto;
  object-fit: cover;
}

.info-card {
  position: absolute;
  left: 0;
  width: 40%;
  color: #ffffff;
  z-index: 2;
}
/* Contact info container */
.contact-info {
  background-color: var(--blood-orange);
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 20px;
}

/* Each item */
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateX(-20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.contact-item.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Icon styling */
.contact-icon {
  background: linear-gradient(rgba(33, 64, 154, 0.6), rgba(33, 64, 154, 0.6));
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

/* Text */
.contact-details h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.contact-details p {
  margin: 4px 0 0;
  font-size: 14px;
}

/* Contact form */
.form-card {
  margin-left: auto;
  width: 65%;
  background: linear-gradient(rgba(33, 64, 154, 0.6), rgba(33, 64, 154, 0.6));
  z-index: 1;
  padding: 50px 40px 50px 80px;
}

.form-header {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--light-orange);
  box-shadow: 0 0 0 2px rgba(247, 148, 29, 0.2);
}

/* Footer */
footer {
  background-color: var(--primary-blue);
  color: white;
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 10px;
}

.footer-logo .btn {
  padding: 12px 25px;
}

.footer-logo .call {
  margin-top: 20px;
}

.footer-links h3,
.footer-services h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.footer-links ul,
.footer-services ul {
  list-style: none;
}

.footer-links li,
.footer-services li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-services a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
  font-family: "Open Sans", sans-serif;
}

.footer-links a:hover,
.footer-services a:hover {
  color: var(--light-orange);
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ccc;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
}

/* Humanist 521 BT font simulation */
@font-face {
  font-family: "Humanist 521 BT";
  src: local("Humanist 521 BT Roman"), local("Humanist521BT-Roman");
  font-weight: normal;
  font-style: normal;
}

/* Fallback styling for Humanist font */
.humanist-font {
  font-family:
    "Humanist 521 BT", "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode",
    "Lucida Sans", Tahoma, sans-serif;
  letter-spacing: 0.5px;
}

/* PETROLEUM DIVISION */

.product-details {
  margin-bottom: 60px;
}

/* Products Grid */
.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.products-grid .product-card {
  width: 350px;
  position: relative;
  background-color: var(--card);
  overflow: hidden;
  border-radius: 0.75rem;
  padding: 2rem;
  transition: all 0.5s ease;
  cursor: pointer;
  box-shadow: var(--dark-blue);
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card:hover {
  transform: translateY(-0.5rem);
}

.product-card:hover h2 {
  color: var(--blood-orange);
}

.product-glow {
  position: absolute;
  inset: 0;
  border-radius: 0.75rem;
  opacity: 0;
  transition: opacity 0.5s ease;
  box-shadow: var(--shadow-glow);
}

.product-card:hover .product-glow {
  opacity: 1;
}

.product-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--blood-orange);
}
.product-card h2 {
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}
.product-card p {
  color: var(--gray-color);
  font-size: 0.875rem;
  line-height: 1.75;
}

.product-line {
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 5px;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary-blue),
    transparent
  );
  transition: opacity 0.5s ease;
}

.product-card:hover .product-line {
  opacity: 2;
  background: linear-gradient(
    to right,
    transparent,
    var(--blood-orange),
    transparent
  );
}

/* Service Offered Section */
.service-offered {
  margin-bottom: 150px;
}
.servicecomb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  margin: 0 auto;
  padding: 0;
  transform: translateY(80px);
}
.servicecomb-cell {
  -webkit-box-flex: 0;
  flex: 0 1 250px;
  max-width: 250px;
  height: 137.5px;
  margin: 65.4761904762px 12.5px 25px;
  position: relative;
  padding: 0.5em;
  text-align: center;
  z-index: 1;
  box-shadow: var(--shadow-glow);
}
.servicecomb-cell_title {
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  word-break: break-word;
  color: var(--light-color);
  font-weight: 600;
  font-size: 1.5em;
  -webkit-transition: opacity 350ms;
  transition: opacity 350ms;
}
.servicecomb-cell_title > small {
  font-weight: 300;
  margin-top: 0.25em;
}
.servicecomb-cell_image {
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
}

.servicecomb-cell::before,
.servicecomb-cell::after {
  content: "";
}
.servicecomb-cell::before,
.servicecomb-cell::after,
.servicecomb-cell_image {
  top: -50%;
  left: 0;
  width: 100%;
  height: 200%;
  display: block;
  position: absolute;
  -webkit-clip-path: polygon(
    50% 0%,
    100% 25%,
    100% 75%,
    50% 100%,
    0% 75%,
    0% 25%
  );
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: -1;
}
.servicecomb-cell::before {
  background: var(--dark-blue);
  -webkit-transform: scale(1.055);
  transform: scale(1.055);
}
.servicecomb-cell::after {
  background: var(--orange-overlay);
  /* background: var(--dark-color); */
  opacity: 0.7;
  -webkit-transition: opacity 350ms;
  transition: opacity 350ms;
}
.servicecomb-cell:hover .servicecomb-cell_title {
  opacity: 0;
}
.servicecomb-cell:hover .servicecomb-cell_image {
  filter: grayscale(0%);
}
.servicecomb-cell:hover::before {
  background: var(--blood-orange);
}
.servicecomb-cell:hover::after {
  opacity: 0;
}
.servicecomb_placeholder {
  display: none;
  opacity: 0;
  width: 250px;
  margin: 0 12.5px;
}

/* Images Between Petroleum Page */
.spilled {
  position: absolute;
  /* top: 200px; */
  right: 25px;
  transform: translateY(-50%);
  width: 400px;
  height: 300px;
  z-index: 10;
}

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

/* 
Services Division */
.lebang-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}
.lebang-card {
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 40px 30px;
  position: relative;
  justify-items: center;
}

.lebang-card .lebang-icon {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  padding: 10px 21px;
}

.lebang-card .lebang-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lebang-card .constr-desc {
  width: 100%;
  display: inline-block;
  margin-top: 25px;
  padding: 10px 21px;
  background: var(--blood-orange);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}
.lebang-card .constr-desc h2 {
  font-size: 1.1rem;
}

.lebang-card .lebang-line {
  position: absolute;
  /* bottom: 0; */
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 3px;
  background: linear-gradient(
    to right,
    transparent,
    var(--blood-orange),
    transparent
  );
  transition: opacity 0.5s ease;
}

/* // lebang cleaning services */

.cleaning-about-section {
  width: 100%;
  margin-bottom: 30px;
}

.cleaning-about-container {
  display: flex;
  min-height: 500px;
}

.cleaning-about-image {
  width: 50%;
  position: relative;
  top: -60px;
}

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

.cleaning-about-content {
  width: 50%;
  background: #0d47a1;
  color: #ffffff;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.title-block {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.title-block img {
  width: 60px;
  height: 60px;
}

.title-block h3 {
  font-size: 28px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.title-block .light {
  color: #ffffff;
}

.title-block .highlight {
  color: var(--blood-orange);
  font-weight: 600;
}

.cleaning-about-content .subtitle {
  font-size: 22px;
  color: #e3f2fd;
  margin-top: 5px;
}

.cleaning-about-content .description {
  font-family: "Open Sans", sans-serif;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .cleaning-about-container {
    flex-direction: column;
  }

  .cleaning-about-image,
  .cleaning-about-content {
    width: 100%;
  }

  .cleaning-about-content {
    padding: 40px 20px;
  }
}

/* cleaning services */

.cleaning-packages {
  padding: 80px 20px;
  background:
    linear-gradient(rgba(33, 64, 154, 0.7), rgba(33, 64, 154, 0.7)),
    url("../images/cleaning-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  text-align: center;
  margin-bottom: 60px;
}

.cleaning-packages .container {
  max-width: 1200px;
  margin: auto;
}

.cleaning-packages .section-header {
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
}

.cleaning-packages .section-header img {
  width: 80px;
  margin-bottom: 15px;
}

.cleaning-packages .section-header h2 {
  font-size: 36px;
  font-weight: 300;
}

.cleaning-packages .section-header h2 span {
  color: var(--blood-orange);
  font-weight: 600;
}

.cleaning-packages .section-header p {
  font-size: 22px;
  color: #ddd;
  margin-top: 10px;
}

.cleaning-packages .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 25px;
  text-align: center;
}

.number {
  font-size: 48px;
  color: #2a65a1;
  font-weight: 300;
}

.card h3 {
  font-size: 22px;
  margin: 10px 0;
  color: #111111;
}

.card h3 span {
  color: var(--blood-orange);
}

.card p {
  font-size: 18px;
  color: #666;
}

.card.bottom .card-content {
  order: 1;
}

.card.bottom img {
  order: 2;
}

@media (max-width: 1000px) {
  .cleaning-packages .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cleaning-packages .cards {
    grid-template-columns: 1fr;
  }
}

/* // cleaning products */
.cleaning-products-section-title {
  padding: 70px 20px 40px;
  text-align: center;
}

/* Container */
.cleaning-products-container {
  max-width: 1200px;
  margin: auto;
}

/* Title */
.cleaning-products-main-title {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 15px;
}

/* Highlighted text */
.cleaning-products-highlight {
  color: var(--blood-orange);
  font-weight: 700;
}

/* Subtitle */
.cleaning-products-subtitle {
  font-size: 22px;
  color: #666666;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .cleaning-products-main-title {
    font-size: 28px;
  }

  .cleaning-products-subtitle {
    font-size: 18px;
  }
}

.cleaning-products-section {
  padding: 80px 20px;
}

.cleaning-products-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.cleaning-products-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  border: 2px solid transparent;
  transform: translateY(-8px);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border 0.3s ease;
}

.cleaning-products-card img {
  width: 90px;
  height: auto;
  margin-bottom: 20px;
  display: inline-block;
  will-change: transform;
}

.cleaning-products-card:hover img {
  animation: cp-shake-horizontal 3s linear infinite;
}

.cleaning-products-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.cleaning-products-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Hover effect */
.cleaning-products-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--blood-orange);
}

/* Responsive */
@media (max-width: 992px) {
  .cleaning-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .cleaning-products-grid {
    grid-template-columns: 1fr;
  }
}

/* //construction styling */
.elementor-section {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  padding: 100px 0;
  width: 100%;
}

.elementor-container {
  display: flex;
  max-width: 1140px;
  width: 100%;
  gap: 80px;
  align-items: center;
}

.elementor-column {
  flex: 1;
  position: relative;
}
.image-wrapper {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.image-wrapper::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 100%;
  height: 100%;
  background-color: var(--orange-overlay);
  z-index: -1;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
  display: block;
  max-width: 100%;
  height: auto;
  position: relative;
}

.cz_title {
  position: relative;
  margin-bottom: 15px;
}

.cz_title_shape {
  position: absolute;
  top: -40px;
  font-family: "Courier New", Courier, monospace;
  left: -5px;
  font-size: 100px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.05);
  line-height: 1;
  z-index: 0;
  text-transform: uppercase;
  pointer-events: none;
}

.cz_title_content {
  position: relative;
  z-index: 2;
}

.cz_title_content h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 800;
  color: var(--orange-overlay);
}

.headline-text h3 {
  font-size: 30px;
  color: var(--dark-color);
  margin: 10px 0 25px 0;
  line-height: 1.2;
  font-weight: 700;
}

.description-text p {
  font-size: 18px;
  color: var(--gray-color);
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .elementor-container {
    flex-direction: column-reverse;
    padding: 0 30px;
    text-align: center;
  }
  .image-wrapper::before {
    top: -20px;
    left: -20px;
  }
  .cz_title_shape {
    left: 50%;
    transform: translateX(-50%);
    font-size: 50px;
  }
}

/* contruction our projects */
.constr-proj {
  margin-bottom: 50px;
}
.constr-proj-header-wrapper {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.constr-proj_title {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.constr-proj_title_shape {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: "Courier New", Courier, monospace;
  transform: translate(-50%, -50%);
  font-size: 80px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
  z-index: 1;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

.constr-proj_title_content {
  position: relative;
  z-index: 2;
}

.constr-proj_title_content h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--light-orange);
  text-transform: uppercase;
}

.constr-proj-header h3 {
  font-size: 38px;
  font-weight: 700;
  color: var(--constr-proj-dark);
  margin: 10px 0 0 0;
}

.constr-proj-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.constr-proj-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.constr-proj-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background-color: #eee;
}

.constr-proj-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.constr-proj-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(244, 192, 59, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  opacity: 0;
  transition: all 0.4s ease;
  box-sizing: border-box;
  color: var(--light-color);
}

.constr-proj-item:hover .constr-proj-overlay {
  opacity: 1;
}

.constr-proj-item:hover img {
  transform: scale(1.15);
}

.constr-proj-icon {
  font-size: 24px;
  margin-bottom: 15px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.constr-proj-item:hover .constr-proj-icon {
  transform: translateY(0);
}

.constr-proj-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}

.constr-proj-category {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.8;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .constr-proj-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .constr-proj_title_shape {
    font-size: 60px;
  }
}

@media (max-width: 600px) {
  .constr-proj-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .constr-proj-title {
    font-size: 14px;
  }
  .constr-proj-header h3 {
    font-size: 28px;
  }
}

/* Contruction Services */
.constr-feat {
  position: relative;
  padding: 100px 0 200px 0;
  background:
    linear-gradient(
      to bottom,
      rgba(244, 192, 59, 0.96),
      rgba(230, 163, 46, 0.92)
    ),
    url("https://kifaru.infi-saas.com/media/lebang/dv2amvenpq8xlxqdf0vo.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.constr-feat-header {
  text-align: center;
  color: var(--constr-white);
  padding: 0 20px;
}

.constr-feat-header img {
  filter: brightness(0) invert(1);
}

.constr-feat-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 10px 0;
}

.constr-feat-container {
  max-width: 1200px;
  margin: -140px auto 100px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 30px;
  position: relative;
  z-index: 10;
}

@keyframes float-A {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}
@keyframes float-B {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.constr-feat-card {
  height: 380px;
  perspective: 1000px;
  position: relative;
}

@media (min-width: 1025px) {
  .slot-1 {
    animation: float-A 5.2s ease-in-out infinite;
  }
  .slot-2 {
    animation: float-B 6.8s ease-in-out infinite;
    animation-delay: 0.4s;
  }
  .slot-3 {
    animation: float-A 6.1s ease-in-out infinite;
    animation-delay: 1.1s;
  }
  .slot-4 {
    animation: float-B 5.6s ease-in-out infinite;
    animation-delay: 0.3s;
  }
  .slot-5 {
    animation: float-A 6.4s ease-in-out infinite;
    animation-delay: 0.9s;
  }
  .slot-6 {
    animation: float-B 4.9s ease-in-out infinite;
    animation-delay: 1.6s;
  }
  .constr-feat-card:hover {
    animation-play-state: paused;
  }
}

.constr-feat-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.constr-feat-card:hover .constr-feat-inner {
  transform: rotateX(180deg);
}

.constr-feat-front,
.constr-feat-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.constr-feat-front {
  background-size: cover;
  background-position: center;
}

.floating-label-card {
  position: absolute;
  bottom: -25px;
  left: 8%;
  width: 84%;
  background-color: var(--constr-blue-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  text-align: center;
  z-index: 20;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  pointer-events: none;
  transition: all 0.4s ease;
}

.constr-feat-card:hover .floating-label-card {
  opacity: 0;
  transform: scale(0.85) translateY(-20px);
}

.floating-label-card h3 {
  margin: 0;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.floating-label-card i {
  color: var(--orange-overlay);
  font-size: 13px;
}

.constr-feat-back {
  background-color: var(--constr-white);
  transform: rotateX(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  text-align: center;
}

.constr-feat-back h3 {
  color: var(--constr-dark);
  font-size: 1.3rem;
  margin-bottom: 15px;
  border-bottom: 3px solid var(--orange-overlay);
  padding-bottom: 5px;
}
.constr-feat-back p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Card Images */
.feat-img-1 {
  background-image: url("https://kifaru.infi-saas.com/media/lebang/u3wsqxwzio8onw8wyhuk.jpg");
}
.feat-img-2 {
  background-image: url("https://kifaru.infi-saas.com/media/lebang/d5c5ecbhnvl5fumgb6bv.jpg");
}
.feat-img-3 {
  background-image: url("https://kifaru.infi-saas.com/media/lebang/naefbf6vofy44peq9plx.jpg");
}
.feat-img-4 {
  background-image: url("https://kifaru.infi-saas.com/media/lebang/s9rxmdqnzqhpfa90hqat.jpg");
}
.feat-img-5 {
  background-image: url("https://kifaru.infi-saas.com/media/lebang/y6zoiirqshdcyou0nnd8.jpg");
}
.feat-img-6 {
  background-image: url("https://kifaru.infi-saas.com/media/lebang/dv2amvenpq8xlxqdf0vo.jpg");
}

/* Responsive */
@media (max-width: 1024px) {
  .constr-feat-container {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -100px;
    gap: 80px 30px;
  }
}
@media (max-width: 768px) {
  .constr-feat-container {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 90px 0;
  }
  .constr-feat-card {
    height: 350px;
  }
}

/* Petroleum Division */
.petrol-div-about-section {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: -120px auto 0 auto;
  gap: 50px;
  position: relative;
  align-items: center;
  z-index: 10;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Content Column */
.petrol-div-about-content-col {
  width: 100%;
  text-align: center;
  padding-top: 60px;
}

.petrol-div-about-badge {
  color: var(--dark-blue);
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 12px;
  display: block;
}

.petrol-div-about-title {
  color: var(--dark-color);
  font-size: clamp(2rem, 7vw, 3rem);
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.petrol-div-about-description {
  color: var(--gray-color);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1rem;
}

/* Image Layout Container */
.petrol-div-about-image-col {
  width: 100%;
  max-width: 600px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 15px;
  position: relative;
  padding: 0px 20px 30px 0;
  align-items: center;
}

/* The Faint Blue Card Background */
.petrol-div-about-image-col::before {
  content: "";
  position: absolute;
  top: 11%;
  right: 0;
  bottom: 0;
  left: 20%;
  right: -15%;
  background-color: var(--petrol-faint-blue);
  z-index: -1;
}

.petrol-div-about-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: block;
}

.petrol-div-about-img-large {
  grid-row: span 2;
}

.petrol-div-about-img-stack {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* --- RESPONSIVE BREAKPOINTS --- */

/* Desktop (Side by Side) */
@media (min-width: 992px) {
  .petrol-div-about-section {
    flex-direction: row;
    padding: 60px 20px;
    gap: 80px;
  }

  .petrol-div-about-content-col {
    flex: 1;
    text-align: left;
  }

  .petrol-div-about-image-col {
    flex: 1.2;
    padding: 40px 40px 40px 0;
    gap: 25px;
  }

  .petrol-div-about-img-stack {
    gap: 25px;
  }
}

/* Tablet Adjustments */
@media (min-width: 768px) and (max-width: 991px) {
  .petrol-div-about-section {
    max-width: 850px;
    display: block;
    margin: 40px auto;
    padding: 60px 20px;
  }
  .petrol-div-about-image-col {
    padding: 40px 30px 40px 0;
  }
  .petrol-div-about-image-col::before {
    right: -25%;
  }
}

@media (max-width: 767px) {
  .petrol-div-about-content-col {
    padding-top: 0px;
  }
  .petrol-div-about-section {
    flex-direction: row;
    display: block;
    padding: 60px 20px;
    gap: 80px;
    margin: 40px auto;
  }
  .petrol-div-about-image-col::before {
    right: -5%;
  }
}
