/* ===== Business Segments CSS ===== */

/* Reuse some site variables if you have them; otherwise define here */
html,body{
    color: #333;
}

:root{
  --brand:#e26b07;
  --navy:#1a365d;
  --muted:#4a5568;
  --card-bg: #ffffff;
}

/* Basic container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 103vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
  margin-top: -120px; /* header overlap if used */
}
.hero-bg { position:absolute; top:0; left:0; width:100%; height:100%; object-fit:cover; object-position:center; z-index:1; }
.hero-overlay { position:absolute; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.45); z-index:2; }
.hero-content { position:relative; z-index:3; color:#fff; max-width:900px; padding: 0 20px; }
.hero h1 { font-size: clamp(2rem,5vw,3rem); margin-bottom:0.25em; }
.hero h3 { font-size: clamp(1rem,2.5vw,1.25rem); margin-bottom:0.75em; color: #fff; }
.hero-lead { color: rgba(255,255,255,0.9); font-size:1rem; margin-top:0.5rem; }

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
  text-decoration: none;
  padding: 0.75em 1.5em;
  border-radius: 4px;
  font-weight: bold;
  margin-top: 0.5rem;
}

.btn-primary {
  background: #e26b07;
  color: #fff;
  margin-right: 1em;
}

.btn-secondary {
  border: 2px solid #fff;
  color:  #fff;
  background: transparent;
}

/* Section spacing */
section { padding: 4.5rem 0; }

/* Two-column grid */
.grid.two-col { display:grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.col { padding: 0.5rem; }

/* What we do */
.what-we-do h2 { color: var(--navy); font-size: 1.75rem; margin-bottom: 0.5rem; }
.what-we-do p { color: var(--muted); line-height:1.7; margin-bottom:1rem; }
.benefits-list { list-style: none; padding: 0; margin: 0; }
.benefits-list li { margin-bottom: 0.8rem; color: var(--muted); }

/* Card */
.card { background: var(--card-bg); border-radius: 12px; padding: 1.5rem; box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.card.highlight { border-left: 6px solid var(--brand); }

/* Partners carousel */
.partners { background: #f7f8fb; }
.partners h2 { color: var(--navy); margin-bottom: 0.25rem; }
.partners .subtitle { color: var(--muted); margin-bottom: 1.25rem; }

/* Carousel wrapper (viewport) */
.partners-carousel-wrap {
  width:100%;
  overflow:hidden;
  position:relative;
  padding: 1rem 0;
}

/* Carousel track */
.partners-carousel {
  display:flex;
  gap: 2.5rem;
  align-items:center;
  width: max-content;
  animation: scrollLeft 18s linear infinite;
}

/* Individual partner tile */
.partner { width:160px; height:80px; display:flex; align-items:center; justify-content:center; background: #fff; border-radius:8px; padding:10px; box-shadow: 0 6px 18px rgba(0,0,0,0.06); flex: 0 0 auto; }
.partner img { max-width:100%; max-height:60px; object-fit:contain; filter: saturate(0.95); }

/* animation for scrolling left */
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* because we doubled logos for loop */
}

/* End banner */
.end-banner { background: linear-gradient(90deg, rgba(226,107,7,0.08), rgba(226,107,7,0.02)); text-align:center; padding:3.5rem 0; }
.end-banner h2 { color: var(--navy); margin-bottom:0.5rem; }
.end-banner p { color: var(--muted); margin-bottom:1rem; }

/* Buttons */
.btn { display:inline-block; padding:0.8rem 1.4rem; border-radius:8px; text-decoration:none; font-weight:700; cursor:pointer; }
.btn-primary { background:var(--brand); color:#fff; border:none; }
.btn-primary:hover { transform:translateY(-2px); }

/* Reveal animations (basic) */
.reveal-left, .reveal-right { opacity:0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal-left.active, .reveal-right.active { opacity:1; transform: translateY(0); }

/* Responsive */
@media (max-width: 992px) {
  .grid.two-col { grid-template-columns: 1fr; }
  .hero { height: 60vh; margin-top: -100px; }
  .partner { width:120px; height:70px; }
}

/* ===== CONTACT US SECTION ===== */
.contact-us {
  background: #fff;
  padding: 80px 20px;
  color: #1a365d;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a365d;
  margin-bottom: 10px;
}

.contact-subtitle {
  text-align: center;
  color: #4a5568;
  max-width: 650px;
  margin: 0 auto 60px;
}

/* GRID LAYOUT */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

/* FORM CONTAINER */
.contact-form-wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.contact-form label {
  display: block;
  font-weight: 600;
  color: #1a365d;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #e26b07;
  outline: none;
}

.contact-form .btn-primary {
  background: linear-gradient(135deg, #e26b07, #f43f5e);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
  background: linear-gradient(135deg, #cf5f06, #e11d48);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* CONTACT INFO BOX */
.contact-info-wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.icon-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #cf5f06;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  margin-right: 15px;
}

.info-item h4 {
  font-weight: 700;
  margin: 0;
  color: #1a365d;
}

.info-item p {
  margin: 5px 0 0;
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper,
  .contact-info-wrapper {
    margin-bottom: 40px;
  }
}