:root {
	--primary-blue: #0d2d45;
	--dark-pink: #ff6961;
	--background-light: #fdf8ef;
}

/* ===== Global layout ===== */
section {
	padding: 80px 0;
}
.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}
h1,
h2,
h3,
h4 {
	font-weight: 700;
	margin-bottom: 15px;
}
p {
	color: #333;
	line-height: 1.7;
	margin-bottom: 15px;
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Buttons */
.btn-primary {
	display: inline-block;
	background: var(--dark-pink);
	color: #fff;
	padding: 12px 32px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: 0.3s;
}
.btn-primary:hover {
	background: #ff4c4c;
}

/* HERO CONTAINER */
.hero-section {
	position: relative;
	background: linear-gradient(120deg, var(--primary-blue) 0%, #134567 60%);
	color: #fff;
	overflow: hidden;
	padding: 160px 20px 140px;
	text-align: center;
}

/* Subtle animated gradient overlay */
.hero-section::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
			circle at 20% 40%,
			rgba(255, 255, 255, 0.08),
			transparent 70%
		),
		radial-gradient(
			circle at 80% 60%,
			rgba(255, 255, 255, 0.05),
			transparent 70%
		);
	animation: float-bg 10s infinite alternate ease-in-out;
	z-index: 1;
}

@keyframes float-bg {
	0% {
		transform: translateY(0);
		opacity: 1;
	}
	100% {
		transform: translateY(-20px);
		opacity: 0.9;
	}
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Headline */
.hero-content h1 {
	font-size: 2.9rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 25px;
	color: #fff;
}

/* Tagline */
.hero-content p:first-of-type {
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--dark-pink);
	margin-bottom: 30px;
	letter-spacing: 0.3px;
}

/* Main description */
.hero-content .hero-subtext {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #f3f5f7;
	margin-bottom: 35px;
}

/* “Who we serve” section */
.hero-content .who-we-serve {
	font-size: 0.95rem;
	color: #e7eaed;
	background: rgba(255, 255, 255, 0.08);
	display: inline-block;
	padding: 12px 25px;
	border-radius: 50px;
	margin-bottom: 40px;
}

/* Button */
.hero-content .btn-primary {
	display: inline-block;
	background: var(--dark-pink);
	color: #fff;
	padding: 14px 36px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}
.hero-content .btn-primary:hover {
	background: #ff5050;
	transform: translateY(-3px);
}

/* Floating subtle shape accents */
.hero-accent {
	position: absolute;
	background: rgba(255, 255, 255, 0.07);
	border-radius: 50%;
	animation: float 8s ease-in-out infinite alternate;
	z-index: 0;
}
.hero-accent.one {
	width: 140px;
	height: 140px;
	top: 20%;
	left: 10%;
	animation-delay: 0s;
}
.hero-accent.two {
	width: 200px;
	height: 200px;
	bottom: 15%;
	right: 8%;
	animation-delay: 2s;
}

@keyframes float {
	0% {
		transform: translateY(0px);
		opacity: 0.6;
	}
	100% {
		transform: translateY(-25px);
		opacity: 0.9;
	}
}

/* Responsive */
@media (max-width: 768px) {
	.hero-section {
		padding: 120px 20px 100px;
	}
	.hero-content h1 {
		font-size: 2.1rem;
	}
	.hero-content p:first-of-type {
		font-size: 1.05rem;
	}
	.hero-content .hero-subtext {
		font-size: 0.95rem;
	}
}






/* Steps Section */
.step-card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  padding: 40px 25px 30px;
  text-align: center;
  transition: 0.3s ease;
  border-top: 5px solid var(--dark-pink);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 22px rgba(0,0,0,0.08);
}

/* Number Badge */
.step-badge {
  background: var(--primary-blue);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 20px;
}

/* Title & Description */
.step-title {
  font-size: 1.2rem;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 12px;
}
.step-desc {
  color: #333;
  line-height: 1.7;
  font-size: 0.96rem;
}

/* Grid Layout */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}




/* ========== TYPICAL USE CASES SECTION ========== */
.usecases-section {
  background: #fff;
  padding: 80px 20px;
}

.usecases-head {
  text-align: center;
  margin-bottom: 50px;
}

.usecases-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.usecases-subtitle {
  color: #555;
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

.usecases-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 850px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.usecases-list li {
  background: var(--background-light);
  border-radius: 10px;
  padding: 20px 25px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: 0.3s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

.usecases-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.usecase-icon {
  font-size: 1.5rem;
  color: var(--dark-pink);
  flex-shrink: 0;
}

.usecase-text {
  color: #333;
  line-height: 1.8;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .usecases-section {
    padding: 60px 15px;
  }
  .usecases-list li {
    padding: 18px 20px;
  }
}











/* ========================
   WHY FIRMS PARTNER WITH US
   ======================== */
.partner-section {
  background: #fff;
  padding: 90px 20px;
}

.partner-head {
  text-align: center;
  margin-bottom: 60px;
}

.partner-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.partner-subtitle {
  color: #555;
  font-size: 1rem;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.partner-points {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.partner-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--background-light);
  border-radius: 12px;
  padding: 25px 30px;
  transition: 0.3s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

.partner-item:nth-child(even) {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.partner-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.partner-number {
  background: var(--dark-pink);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.partner-content h3 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.partner-content p {
  color: #333;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .partner-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .partner-number {
    margin-bottom: 10px;
  }
}












/* =========================
   COMPLIANCE NOTE SECTION
   ========================= */
.compliance-section {
  background: var(--background-light);
  padding: 80px 20px;
}

.compliance-box {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  background: #fff;
  border-left: 6px solid var(--dark-pink);
  border-radius: 12px;
  padding: 35px 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 0 auto;
  transition: 0.3s ease;
}

.compliance-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.compliance-icon {
  font-size: 2.5rem;
  color: var(--dark-pink);
  flex-shrink: 0;
  margin-top: 5px;
}

.compliance-content {
  color: #333;
  line-height: 1.8;
  flex: 1;
}

.compliance-title {
  color: var(--primary-blue);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.compliance-content p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.compliance-important {
  background: rgba(255, 105, 97, 0.08);

  padding: 12px 15px;
  border-radius: 6px;
  font-size: 0.96rem;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .compliance-box {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }
  .compliance-icon {
    margin-bottom: 15px;
  }
  .compliance-content {
    text-align: left;
  }
}









/* ==========================
   FAQ ACCORDION SECTION
   ========================== */
.faq-section {
  background: var(--background-light);
  padding: 90px 20px;
}

.faq-head {
  text-align: center;
  margin-bottom: 60px;
}

.faq-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.faq-subtitle {
  color: #555;
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

.faq-accordion {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: #fff;
  border: none;
  outline: none;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.faq-question:hover {
  background: rgba(13,45,69,0.05);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--dark-pink);
  transition: 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: all 0.4s ease;
  padding: 0 25px;
}

.faq-answer p {
  color: #333;
  font-size: 0.97rem;
  line-height: 1.7;
  margin: 15px 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: 5px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary-blue);
}







/* =======================
   CALL TO ACTION SECTION
   ======================= */
.cta-section {
  background: var(--primary-blue);
  color: #fff;
  padding: 90px 20px;
  text-align: center;
}

.cta-head {
  margin-bottom: 60px;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.cta-subtitle {
  font-size: 1rem;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

.cta-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  max-width: 950px;
  margin: 0 auto;
}

.cta-card {
  background: #fff;
  color: #333;
  border-radius: 12px;
  padding: 35px 30px 40px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.cta-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.cta-card h3 {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.cta-card p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 25px;
}

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

.cta-btn {
  padding: 10px 20px;
  border-radius: 6px;
  border: 2px solid var(--primary-blue);
  background: transparent;
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: var(--primary-blue);
  color: #fff;
}

.cta-btn.primary {
  background: var(--dark-pink);
  border-color: var(--dark-pink);
  color: #fff;
}

.cta-btn.primary:hover {
  background: #e45a55;
  border-color: #e45a55;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-card {
    padding: 25px 20px;
  }
  .cta-btn {
    width: 100%;
    text-align: center;
  }
}









.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  position: relative;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.modal-box h2 {
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.form-grid {
  display: grid;
  gap: 15px;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.form-submit {
  background: var(--dark-pink);
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.form-submit:hover {
  background: #e45a55;
}

.privacy-note {
  font-size: 0.85rem;
  color: #555;
  margin-top: 10px;
  text-align: center;
}
/* ===== Two-Column Form Rows ===== */
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.form-row input,
.form-row textarea {
  width: 100%;
}

/* Make single-column layout on mobile */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}










/* ========== Our Approach Section ========== */
.approach-section {
  background-color: var(--background-light);
  padding: 80px 0;
}

.approach-header {
  text-align: center;
  margin-bottom: 60px;
}

.approach-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.approach-title span {
  color: var(--dark-pink);
  font-weight: 600;
}

.approach-subtext {
  font-size: 1rem;
  color: #444;
  max-width: 600px;
  margin: 0 auto;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.approach-step {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-blue);
}

.approach-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.step-number {
  position: absolute;
  top: -18px;
  left: 20px;
  background-color: var(--dark-pink);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.step-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-top: 10px;
  margin-bottom: 10px;
}

.step-text {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.approach-footer {
  text-align: center;
  margin-top: 50px;
  font-size: 1rem;
  color: #333;
}

.approach-footer strong {
  color: var(--dark-pink);
}

/* Responsive */
@media (max-width: 768px) {
  .approach-title {
    font-size: 1.7rem;
  }
  .approach-step {
    padding: 25px 20px;
  }
  .step-heading {
    font-size: 1.1rem;
  }
}
