:root {
  --primary-color: #ef6c00;
  --primary-dark: #cc5c00;
  --secondary-color: #021a36;
  --text-color: #333;
  --text-light: #666;
  --white: #fff;
  --bg-light: #f8f9fa;
  --border-color: #eee;
  --font-main: "Outfit", sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

.text-accent {
  color: var(--primary-color);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  border: none;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: var(--white);
  color: var(--secondary-color);
  /* background: transparent; */
  /* color: var(--white); */
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--secondary-color);
}

/* Header */
.header {
  background: var(--white);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.flex-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-bold {
  font-size: 24px;
  font-weight: 800;
  color: var(--secondary-color);
  letter-spacing: 1px;
}

.logo-thin {
  font-weight: 300;
}

.logo-tagline {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--primary-color);
  letter-spacing: 2px;
  margin-top: -5px;
}

.nav ul {
  display: flex;
  gap: 20px;
}

.nav ul li a {
  font-weight: 500;
  font-size: 15px;
}

.nav ul li a:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  min-height: 820px;
  background: linear-gradient(90deg, #02142d 0%, #041b3d 45%, #03152f 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 7%;
}

/* Background Image */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("img/2.png") no-repeat center center;
  background-size: cover;
  opacity: 1;
  z-index: 1;
}

/* Optional Overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(90deg, rgba(2, 10, 25, 0.95) 0%, rgba(2, 10, 25, 0.75) 35%, rgba(2, 10, 25, 0.2) 70%, rgba(2, 10, 25, 0.05) 100%); */
  z-index: 2;
}

/* Hero Section */
.hero-- {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #052c5c 100%);
  background-image: url("2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 500px;
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 3;
  color: #fff;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-divider {
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

.btn-top-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  border: 1px solid var(--white);
}

.video-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.video-link i {
  font-size: 24px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-item i {
  font-size: 24px;
  color: var(--primary-color);
}

.stat-text {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 20px;
  font-weight: 700;
}

.stat-label {
  font-size: 12px;
  opacity: 0.8;
}

.hero-image img {
  width: 100%;
  max-width: 600px;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.3));
}

/* Services Section */
.services {
  padding: 100px 0;
  background: var(--bg-light);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.section-title p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
}

.service-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 22px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-light);
  font-size: 15px;
}

/* Benefits Section */
.benefits {
  padding: 100px 0;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.benefit-card {
  padding: 30px;
  background: var(--bg-light);
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.benefit-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: rgba(239, 108, 0, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  background: var(--primary-color);
  color: var(--white);
}

.benefit-card h3 {
  font-size: 16px;
  color: var(--secondary-color);
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Industries Section */
.industries {
  padding: 100px 0;
  background: var(--white);
}

.industries-flex {
  display: flex;
  align-items: center;
  gap: 60px;
}

.industries-title {
  flex: 1;
}

.industries-title h2 {
  font-size: 36px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.industries-title p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.btn-green {
  background: #10b981;
  color: var(--white);
  border: none;
  font-size: 14px;
  padding: 10px 20px;
}

.btn-green:hover {
  background: #059669;
  transform: translateY(-2px);
}

.industries-grid {
  flex: 1.5;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.industry-item {
  background: var(--bg-light);
  padding: 20px 10px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.industry-item:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: scale(1.05);
}

.industry-item i {
  font-size: 28px;
  color: #10b981;
}

.industry-item span {
  font-size: 12px;
  font-weight: 500;
  color: var(--secondary-color);
}

/* Why Choose Section */
.why-choose {
  padding: 100px 0;
  background: var(--bg-light);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content h2 {
  font-size: 36px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.why-content p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.why-list {
  margin-bottom: 30px;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
}

.why-list li i {
  color: #10b981;
}

.btn-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--secondary-color);
  border-bottom: 2px solid var(--primary-color);
  width: fit-content;
  padding-bottom: 5px;
}

.why-image {
  position: relative;
}

.why-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.why-stat-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--white);
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 4px solid #10b981;
}

.icon-circle {
  width: 50px;
  height: 50px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  font-size: 20px;
}

.why-stat-text {
  display: flex;
  flex-direction: column;
}

.why-stat-text .num {
  font-size: 24px;
  font-weight: 800;
  color: var(--secondary-color);
}

.why-stat-text .label {
  font-size: 13px;
  color: var(--text-light);
}

/* Modules Section */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.module-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.module-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--secondary-color);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.module-item:hover .module-icon {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-5px);
}

.module-item span {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-color);
}

/* Process Section */
.process {
  padding: 100px 0;
  background: var(--white);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 40px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: #e0e0e0;
  z-index: 1;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-num {
  width: 60px;
  height: 60px;
  background: #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 25px;
  border: 5px solid var(--white);
  transition: var(--transition);
}

.process-step h3.active {
  color: var(--primary-color);
}

.step-num.active {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 0 0 5px rgba(239, 108, 0, 0.2);
}

.process-step h3 {
  font-size: 16px;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: 700;
}

.process-step p {
  font-size: 13px;
  color: var(--text-light);
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: var(--white);
}

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

.faq-item {
  background: var(--bg-light);
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid transparent;
}

.faq-item.active {
  background: var(--white);
  border-color: var(--primary-color);
  box-shadow: var(--shadow);
}

.faq-header {
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-header h3 {
  font-size: 18px;
  color: var(--secondary-color);
  font-weight: 600;
}

.faq-icon {
  width: 30px;
  height: 30px;
  background: rgba(239, 108, 0, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}

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

.faq-body {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-body {
  padding: 0 30px 25px;
  max-height: 1000px;
  transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-body p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
}

/* CTA Section */
.cta-section {
  padding: 60px 0;
  background: var(--white);
}

.cta-box {
  background: linear-gradient(135deg, #e53935 0%, #d32f2f 100%), url("https://www.transparenttextures.com/patterns/world-map.png");
  background-blend-mode: overlay;
  padding: 60px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  gap: 40px;
}

.cta-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 16px;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.btn-white {
  background: var(--white);
  color: #d32f2f;
}

.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: #d32f2f;
}

/* Trusted By */
.trusted-by {
  padding: 60px 0;
  background: var(--bg-light);
}

.logo-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.logo-item img {
  height: 30px;
  filter: grayscale(1);
  opacity: 0.6;
  transition: var(--transition);
}

.logo-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* Footer */
.footer {
  background: var(--secondary-color);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .logo-tagline {
  color: var(--white);
  opacity: 0.6;
}

.footer-desc {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.8;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-links a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.social-links a:hover {
  background: var(--primary-color);
}

.footer-links h3,
.footer-contact h3 {
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after,
.footer-contact h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  font-size: 14px;
  opacity: 0.7;
}

.footer-links ul li a:hover {
  opacity: 1;
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact p {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: 0.6;
}

.footer-legal {
  display: flex;
  gap: 15px;
}

/* WhatsApp */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--white);
  padding: 10px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  z-index: 1000;
}

.whatsapp-icon {
  width: 40px;
  height: 40px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
/* Layout Overhauls for a two-column balance */
.cta-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 50px; /* Adjust padding based on your existing design */
  border-radius: 12px;
}

@media (min-width: 992px) {
  .cta-box {
    flex-direction: row;
  }
  .cta-content {
    flex: 1;
    max-width: 45%;
  }
  .cta-form-wrapper {
    flex: 1;
    max-width: 50%;
    width: 100%;
  }
}

/* Trust Badges under Text */
.cta-trust-badges {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}
.cta-trust-badges i {
  margin-right: 5px;
}

/* Form Elements Styling */
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cta-form-row {
  display: flex;
  gap: 15px;
}

.cta-form-row input,
.cta-form-group input,
.cta-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgb(255, 255, 255); /* Glassmorphism background */
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  color: #000000;
  font-size: 15px;
  outline: none;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

/* Placeholder Color alignment */
.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgb(40, 40, 40);
}

/* Active focus states */
/*.cta-form input:focus,*/
/*.cta-form textarea:focus {*/
/*  background: rgba(255, 255, 255, 0.2);*/
/*  border-color: #ffffff;*/
/*  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);*/
/*}*/

.cta-form textarea {
  height: 90px;
  resize: none;
}

/* Ensuring the submit button behaves like your previous btn-white class */
.cta-form .btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  width: auto;
  min-width: 180px;
  padding: 14px 28px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

/* Mobile Responsiveness adjustments */
@media (max-width: 576px) {
  .cta-form-row {
    flex-direction: column;
    gap: 15px;
  }
  .cta-form .btn-white {
    width: 100%; /* Full width button on small mobile phones */
  }
}

/* Base Responsive */
@media (max-width: 1200px) {
  .container {
    padding: 0 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .industries-flex {
    flex-direction: column;
    text-align: center;
  }
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .why-stat-card {
    right: 0;
  }
  .cta-box {
    flex-direction: column;
    text-align: center;
  }
  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .process-timeline::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-divider {
    margin: 0 auto 20px;
  }
  .hero-btns {
    justify-content: center;
    flex-direction: column;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-image {
    order: -1;
  }
  .nav {
    display: none;
  }
  .hero-content h1 {
    font-size: 32px;
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .process-timeline {
    grid-template-columns: 1fr;
  }
}
