/* Unique wrapper to isolate the section */
.ch-hero-section {
    background-color: #020b18;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    padding: 100px 0 60px 0;
    overflow: hidden;
}

.ch-section-wrapper {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Main Layout */
.ch-main-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 100px;
}

.ch-badge {
    background: rgba(255, 122, 61, 0.15);
    color: #ff7a3d;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.ch-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin: 25px 0;
    font-weight: 800;
    /* This creates the slight glowing text effect */
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.ch-description {
    color: #a1a1a1;
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 35px;
}

.ch-cta-button {
    display: inline-block;
    background-color: #ff7a3d;
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.ch-cta-button:hover {
    background-color: #ff8c57;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 122, 61, 0.3);
}

.ch-img-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Stats Layout */
.ch-stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 50px;
}

.ch-stat-card {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.ch-stat-card:last-child {
    border-right: none;
}

.ch-stat-val {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #ff7a3d;
    margin-bottom: 5px;
}

.ch-stat-label {
    font-size: 12px;
    color: #888;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Tablet & Mobile */
@media (max-width: 992px) {
    .ch-main-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .ch-description {
        margin-left: auto;
        margin-right: auto;
    }
    .ch-stats-bar {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ch-stat-card {
        border-right: none;
    }
}

/* Container and Section */
.sa-advantages-section {
    background-color: #ffffff; /* Or match your site bg */
    padding: 80px 0;
    font-family: 'Inter', sans-serif;
}

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

.sa-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #020b18;
    margin-bottom: 50px;
}

/* Grid Layout */
.sa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card Styling */
.sa-card {
    background-color: #2c3544; /* Dark blue-grey from image */
    padding: 40px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sa-card-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 20px 0 12px 0;
}

.sa-card-text {
    color: #b0b8c4;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Icon Placeholders (Use an icon library like FontAwesome or SVGs) */
.sa-icon {
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    filter: invert(58%) sepia(54%) saturate(1874%) hue-rotate(338deg) brightness(101%) contrast(101%); 
    /* The filter above colors the icon to the orange used in your first section */
}

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

@media (max-width: 640px) {
    .sa-grid {
        grid-template-columns: 1fr;
    }
    .sa-main-title {
        font-size: 2rem;
        text-align: center;
    }
}

/* Section Container */
.fs-expertise-section {
    background-color: #020b18; /* Dark navy background */
    padding: 100px 0;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.fs-wrapper {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styling */
.fs-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.fs-top-label {
    color: #4b6382;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.fs-main-heading {
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
}

.fs-side-text {
    max-width: 300px;
    color: #8899a6;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: right;
    display:none important;
}

/* Grid System */
.fs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Styling */
.fs-card {
    background-color: #111e31; /* Slightly lighter navy for cards */
    border-radius: 0; /* Boxy aesthetic from the design */
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.fs-image-box {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.fs-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.fs-content {
    padding: 30px;
}

.fs-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.fs-card-desc {
    color: #8899a6;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

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

@media (max-width: 768px) {
    .fs-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .fs-side-text {
        text-align: left;
        margin-top: 20px;
    }
    .fs-grid {
        grid-template-columns: 1fr;
    }
    .fs-main-heading {
        font-size: 2.2rem;
    }
}

.ip-process-section {
    background-color: #020b18; /* Consistent with previous sections */
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
}

.ip-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.ip-header {
    text-align: center;
    margin-bottom: 80px;
}

.ip-badge {
    color: #ff7a3d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.ip-main-title {
    font-size: 3rem;
    font-weight: 800;
    margin-top: 10px;
}

/* Timeline Core */
.ip-timeline {
    position: relative;
}

/* The vertical line in the middle */
.ip-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
}

.ip-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    width: 100%;
}

/* Alternating logic */
.ip-step:nth-child(even) {
    flex-direction: row-reverse;
}

.ip-step-content {
    width: 45%;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s ease;
}

.ip-step:hover .ip-step-content {
    border-color: #ff7a3d;
}

.ip-step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff7a3d;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    z-index: 2;
    box-shadow: 0 0 15px rgba(255, 122, 61, 0.4);
}

.ip-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.ip-step-desc {
    color: #8899a6;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ip-timeline::before {
        left: 20px;
    }
    .ip-step, .ip-step:nth-child(even) {
        flex-direction: row;
        justify-content: flex-start;
        padding-left: 50px;
    }
    .ip-step-content {
        width: 100%;
    }
    .ip-step-number {
        left: 20px;
    }
    .ip-main-title {
        font-size: 2.2rem;
    }
}

.verticals-section {
  text-align: center;
  padding: 50px 20px;
  font-family: 'Arial', sans-serif;
  background:white;
}

.section-title {
  font-size: 24px;
  color: #1a2b4b; /* Dark navy color from image */
  margin-bottom: 30px;
  font-weight: bold;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.vertical-card {
  width: 240px;
  height: 280px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Dark overlay effect */
.vertical-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 43, 75, 0.6); /* Navy tint with 60% opacity */
  transition: background 0.3s ease;
}

.vertical-card:hover::before {
  background: rgba(26, 43, 75, 0.4); /* Lightens slightly on hover */
}

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

.card-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 1;
}

.card-content span {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
}

.faq-section {
  background-color: #050f1e; /* Deep navy */
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

details {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 15px 20px;
  transition: all 0.3s ease;
  margin-top:20px;
}

summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Custom Arrow Icon */
summary::after {
  content: '▼';
  font-size: 12px;
  transition: transform 0.3s;
}

details[open] summary::after {
  transform: rotate(180deg);
}

.faq-content {
  padding-top: 15px;
  color: #a0aec0; /* Lighter text for the answer */
  line-height: 1.6;
}

.cta-wrapper {
  padding: 60px 20px;
  background-color: #f8fafc; /* Light gray background to pop the card */
}

.cta-card {
  max-width: 1000px;
  margin: 0 auto;
  background: radial-gradient(circle, #0a1930 0%, #050f1e 100%);
  border-radius: 24px;
  padding: 80px 40px;
  text-align: center;
  color: white;
}

.cta-card h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-card p {
  color: #cbd5e0;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 18px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-primary {
  background-color: #ff7a3d; /* Vibrant orange */
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.btn-secondary {
  border: 1px solid #1e293b;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
}