/* Growth Hero Section Styles */
.growth-hero {
  background-color: #050b15; /* Deep dark blue background */
  padding: 100px 0 0 0;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.growth-badge {
  display: inline-block;
  padding: 5px 15px;
  border: 1px solid #ff6a28;
  color: #ff6a28;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 30px;
  font-family: 'Inter', sans-serif;
}

.growth-title {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-family: 'Kanit', sans-serif;
}

.highlight-orange {
  color: #ff6a28;
}

.growth-description {
  font-size: 18px;
  color: #a0aec0;
  max-width: 550px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Buttons */
.growth-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.btn-orange {
  background-color: #ff6a28;
  color: white;
  padding: 16px 35px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  transition: 0.3s;
}

.btn-orange:hover {
  background-color: #e55a1d;
  color: white;
}

.btn-video {
  color: #64748b;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
}

.play-icon {
  width: 35px;
  height: 35px;
  border: 1px solid #ff6a28;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6a28;
}

/* Image container with rounded corners like the screenshot */
.growth-image-container img {
  border-radius: 20px;
  box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

/* Stats Strip Styles */
.stats-strip {
  background-color: #ffffff;
  padding: 60px 0;
  margin-top: 80px;
}

.stat-item .stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #050b15;
  margin-bottom: 5px;
  font-family: 'Kanit', sans-serif;
}

.stat-item .stat-number.text-orange {
  color: #ff6a28;
}

.stat-label {
  color: #64748b;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-right { margin-top: 50px; }
  .growth-actions { flex-direction: column; align-items: flex-start; }
  .stats-strip { margin-top: 50px; }
  .stat-item { margin-bottom: 30px; }
}



/* 2nd section */

:root {
  --bg-dark: #0a111e;
  --card-bg: #112236;
  --accent-orange: #e65100;
  --text-muted: #94a3b8;
  --text-light: #ffffff;
}

.unified-systems {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
}

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

/* Header Logic */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 40px;
}

.header-left h2 {
  font-size: 2.5rem;
  letter-spacing: -1px;
  line-height: 1.1;
  margin: 0;
}

.accent-line {
  width: 60px;
  height: 4px;
  background: var(--accent-orange);
  margin-top: 15px;
}

.header-right p {
  max-width: 500px;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.card {
  background: var(--card-bg);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.card-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  background-color: #1a2a3a; /* Placeholder */
}

/* Add your actual image paths here */
.img-1 { background-image: url('../../digital_growth/images/digital-image-1.webp'); }
.img-2 { background-image: url('../../digital_growth/images/digital-image-2.webp'); }
.img-3 { background-image: url('../../digital_growth/images/digital-image-3.webp'); }
.img-4 { background-image: url('../../digital_growth/images/digital-image-4.webp'); }
.img-5 { background-image: url('../../digital_growth/images/digital-image-5.webp'); }
.img-6 { background-image: url('../../digital_growth/images/digital-image-6.webp'); }

.card-content {
  padding: 30px;
}

.card-content h3 {
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.card-content p {
  color: var(--text-muted);
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .section-header { flex-direction: column; }
  .bento-grid { grid-template-columns: 1fr; }
}


/* 3rd section */

:root {
  --bg-deep: #050a14;
  --card-dark: #0c1a2b;
  --card-side: #63728a; /* Muted slate from image */
  --accent-orange: #d97706;
  --accent-blue: #3b82f6;
  --text-white: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.7);
}

.capabilities-section {
  background-color: var(--text-white); /* Adjust if your section is dark */
  padding: 100px 0;
  font-family: 'Inter', sans-serif;
}

.capabilities-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.capabilities-header h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: #1a1a1a;
  margin: 0;
}

.sub-label {
  letter-spacing: 4px;
  font-size: 0.8rem;
  color: var(--accent-orange);
  font-weight: 600;
}

/* Grid Layout */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 20px;
}

/* Hero Card takes 2 columns and 3 small card heights */
.hero-card {
  grid-column: span 2;
  grid-row: span 3;
  position: relative;
  min-height: 500px;
  background: url('your-hero-image.jpg') center/cover;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent-orange);
}

/* Side and Bottom Cards */
.card {
  padding: 30px;
  color: var(--text-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.side-card {
  background-color: var(--card-side);
  border-left: 5px solid transparent;
}

.orange-border { border-left-color: var(--accent-orange); }
.blue-border { 
  border-left-color: var(--accent-blue);
  outline: 2px solid var(--accent-blue); /* Highlights the specific card from image */
}

.bottom-card {
  background-color: var(--card-dark);
  min-height: 250px;
}

/* Typography Inside Cards */
.card h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
  .capabilities-header h2{
    font-size: 1rem;
  }
  .hero-card {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 400px;
  }
}

/* 4th section */

:root {
  --bg-navy: #050a14;
  --accent-orange: #f97316;
  --text-white: #ffffff;
  --text-gray: #94a3b8;
}

.roadmap-section {
  background-color: var(--bg-navy);
  color: var(--text-white);
  padding: 100px 20px;
  font-family: 'Inter', sans-serif;
}

.roadmap-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 80px;
  letter-spacing: -1px;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 100px; /* Large gap between columns */
}

.phase-item {
  position: relative;
  padding-left: 40px;
  margin-bottom: 80px;
}

/* Vertical Line for the left column */
.timeline-line {
  position: relative;
}

.timeline-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 80px; /* Match the margin of the last item */
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* Orange Dots */
.phase-item::before {
  content: "";
  position: absolute;
  left: -4px; /* Center the 8px dot on the 1px line */
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--accent-orange);
  border-radius: 50%;
  z-index: 2;
}

/* Right column dots (no line, just dots) */
.roadmap-col:last-child .phase-item::before {
  left: -40px; /* Adjust based on your column gap */
}

.phase-label {
  display: block;
  color: var(--accent-orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.phase-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.phase-item p {
  color: var(--text-gray);
  line-height: 1.6;
  max-width: 400px;
}

/* Responsive */
@media (max-width: 768px) {
  .roadmap-grid {
    grid-template-columns: 1fr;
  }
  .roadmap-col:last-child .phase-item::before {
    left: -4px;
  }
}

/* 5th section */

:root {
  --bg-white: #ffffff;
  --card-navy: #28334a;
  --text-dark: #1a1a1a;
  --text-dim: #94a3b8;
  --icon-bg: #1e293b;
}

.sector-specialization {
  background-color: var(--bg-white);
  padding: 100px 20px;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 60px;
  letter-spacing: -1px;
  color: var(--text-dark);
}

.sector-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  /* flex-wrap: wrap; */
}

.sector-card {
  background-color: var(--card-navy);
  border-radius: 12px;
  width: 280px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
}

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

.card-header {
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  min-height: 120px;
}

.icon-box {
  background: var(--icon-bg);
  padding: 8px;
  border-radius: 6px;
  color: #fff;
}

.text-group h3 {
  color: #fff;
  font-size: 1.1rem;
  margin: 0 0 5px 0;
}

.text-group p {
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}

.card-footer-image {
  height: 180px;
  background-size: cover;
  background-position: center;
  margin: 0 15px 15px 15px; /* Creates the inset effect */
  border-radius: 8px;
}

/* Image Placeholders */
.fin-img { background-image: url('../images/digital-sector-1.webp'); }
.health-img { background-image: url('../images/digital-sector-2.webp'); }
.saas-img { background-image: url('../images/digital-sector-3.webp'); }
.factory-img { background-image: url('../images/digital-sector-4.webp'); }

@media (max-width: 1200px) {
  .sector-grid { gap: 15px; }
  .sector-card { width: 240px; }
}


/* 6th section */

:root {
  --bg-dark-navy: #050a14;
  --text-white: #ffffff;
  --text-muted: #94a3b8;
  --divider-color: rgba(255, 255, 255, 0.1);
}

.faq-section {
  background-color: var(--bg-dark-navy);
  color: var(--text-white);
  padding: 100px 20px;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

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

.faq-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 80px;
  letter-spacing: -0.5px;
}

.faq-list {
  text-align: left;
}

.faq-item {
  margin-bottom: 40px;
}

.faq-question {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.faq-divider {
  border: 0;
  height: 1px;
  background-color: var(--divider-color);
}

/* Optional: Hover effect for interactivity */
.faq-item:hover .faq-question {
  color: #f97316; /* Orange accent from previous sections */
  transition: color 0.3s ease;
}


/* 7th section */

:root {
  --cta-orange: #d96c34; /* The specific burnt orange from the image */
  --cta-dark: #0a111e;   /* Deep navy for the button */
  --text-white: #ffffff;
}

.cta-section {
  padding: 80px 20px;
  background-color: var(--text-white); /* Adjust to match your page background */
}

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

.cta-banner {
  background-color: var(--cta-orange);
  border-radius: 24px; /* Noticeably large rounded corners */
  padding: 80px 40px;
  text-align: center;
  color: var(--text-white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-title {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
  font-family: 'Inter', sans-serif;
}

.cta-description {
  font-size: 1.1rem;
  line-height: 1.5;
  max-width: 650px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background-color: var(--cta-dark);
  color: var(--text-white);
  text-decoration: none;
  padding: 18px 45px;
  border-radius: 8px; /* Slightly rounded button edges */
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.cta-button:hover {
  background-color: #16253d;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-banner {
    padding: 60px 20px;
  }
  .cta-title {
    font-size: 1.8rem;
  }
  .sector-grid{
    flex-wrap:wrap !important;
  }
}