/**
 * Theme Name: logitic Child
 * Template:   logitic
 * ...other header fields
 */
 
 /* GLOBAL */
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
}

/* SECTION SPACING */
section {
  padding: 80px 0;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 28, 44, 0.6); /* dark overlay */
}

.hero-section .elementor-widget-wrap {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 48px;
  color: #fff;
  font-weight: 700;
}

.hero-section p {
  color: #ddd;
  font-size: 16px;
}

/* BUTTON STYLE */
.elementor-button {
  background: #C9A14A;
  color: #fff;
  border-radius: 4px;
  padding: 12px 28px;
  transition: 0.3s ease;
}

.elementor-button:hover {
  background: #a88432;
  transform: translateY(-2px);
}

/* SERVICES CARDS */
.services .elementor-icon-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.services .elementor-icon-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* ICON COLOR */
.elementor-icon {
  color: #C9A14A;
}

/* ABOUT SECTION */
.about h2 {
  font-size: 32px;
  font-weight: 600;
}

/* INDUSTRIES */
.industries .elementor-widget {
  text-align: center;
}

.industries i {
  font-size: 28px;
  color: #C9A14A;
}

/* TESTIMONIAL */
.testimonial-section {
  position: relative;
  color: #fff;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

/* CLIENT LOGOS */
.clients img {
  opacity: 0.7;
  transition: 0.3s;
}

.clients img:hover {
  opacity: 1;
}

/* WHY CHOOSE US */
.why-section {
  background: #0B1C2C;
  color: #fff;
}

.why-section h2 {
  color: #fff;
}

.elementor-counter-number {
  color: #C9A14A;
  font-weight: bold;
}

/* CTA SECTION */
.cta-section {
  text-align: center;
  color: #fff;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

/* CONTACT FORM */
.contact input,
.contact textarea {
  border-radius: 4px;
  border: 1px solid #ddd;
  padding: 10px;
}

.contact button {
  background: #C9A14A;
  color: #fff;
}

/* FOOTER */
footer {
  background: #0B1C2C;
  color: #ccc;
  padding: 50px 0;
}

footer a {
  color: #C9A14A;
  text-decoration: none;
}