/* Base and Variables */
:root {
  --primary: #f27218;
  /* Orange from Logo */
  --primary-dark: #cc5b0d;
  /* Darker Orange */
  --secondary: #6B34A0;
  /* Purple from Logo */
  --accent: #f27218;
  /* Orange for Highlights */

  --dark: #0f172a;
  /* Slate 900 */
  --darker: #020617;
  /* Slate 950 */
  --light: #f8fafc;
  /* Slate 50 */
  --white: #ffffff;

  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-800: #1e293b;

  --font-body: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;

  --transition-fast: 0.2s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 30px rgba(242, 114, 24, 0.4);
  --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.04);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

/* Typography Utility */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  color: var(--dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-light {
  background-color: var(--light);
}

.bg-dark {
  background-color: var(--darker);
}

.text-white h2,
.text-white h3,
.text-white p,
.text-white {
  color: var(--white);
}

/* Layout & Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-500);
}

.section-header.align-left {
  text-align: left;
  margin-left: 0;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(242, 114, 24, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(242, 114, 24, 0.4);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 1.5rem 0;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--dark);
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a:not(.btn) {
  color: var(--gray-600);
  font-weight: 500;
  position: relative;
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active {
  color: var(--primary);
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary);
  transition: var(--transition-fast);
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  overflow: hidden;
  position: relative;
  background-color: var(--white);
}

.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.4;
  animation: float 10s infinite alternate ease-in-out;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  right: -100px;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: var(--secondary);
  bottom: 0;
  left: -50px;
  animation-delay: -5s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-30px, 30px) scale(1.1);
  }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(242, 114, 24, 0.1);
  color: var(--primary-dark);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(242, 114, 24, 0.2);
}

.hero-title {
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: var(--gray-600);
}

.hero-highlights {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-highlights span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--dark);
}

.hero-highlights i {
  color: var(--primary);
}

.image-wrapper {
  position: relative;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  transition: var(--transition-slow);
  animation: float 6s infinite alternate ease-in-out;
}

.hero-image:hover img {
  transform: scale(1.05);
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: bob 3s infinite alternate ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.card-1 {
  bottom: 30px;
  left: -40px;
}

.floating-card i {
  font-size: 2rem;
  color: var(--primary);
  background: rgba(242, 114, 24, 0.1);
  padding: 0.75rem;
  border-radius: 50%;
}

.floating-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--dark);
}

.floating-card span {
  font-size: 0.875rem;
  color: var(--gray-500);
}

@keyframes bob {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

/* What I Do Section */
.do-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.do-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.do-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transition: var(--transition-slow);
  z-index: -1;
  opacity: 0;
}

.do-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  color: var(--white);
  border-color: transparent;
}

.do-card:hover::before {
  height: 100%;
  opacity: 1;
}

.do-card:hover h3,
.do-card:hover p {
  color: var(--white);
}

.icon-box {
  width: 70px;
  height: 70px;
  background: rgba(242, 114, 24, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  font-size: 2rem;
  color: var(--primary);
  transition: var(--transition);
}

.do-card:hover .icon-box {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

/* About Section */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
}

.cert-grid::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--primary);
  opacity: 0.1;
  border-radius: 50%;
  top: -20px;
  left: -20px;
  z-index: -1;
}

.cert-grid::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--secondary);
  opacity: 0.1;
  border-radius: 50%;
  bottom: -20px;
  right: -20px;
  z-index: -1;
}

.cert-img {
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 4px solid var(--white);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: var(--gray-100);
}

.cert-img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
  z-index: 2;
  position: relative;
}

.cert-offset {
  margin-top: 3rem;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.mv-box {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.mv-box i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.mv-box h4 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.mv-box p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.service-card {
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  background: #15203b;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.highlight {
  background: linear-gradient(145deg, var(--darker), #1e254e);
  border-color: rgba(242, 114, 24, 0.3);
  box-shadow: var(--shadow-glow);
}

.service-card.highlight::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.service-card.highlight .service-icon {
  background: rgba(242, 114, 24, 0.2);
  color: var(--primary);
}

.service-card h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.service-list {
  list-style: none;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--gray-200);
  font-size: 0.95rem;
}

.service-list i {
  color: var(--primary);
  margin-top: 4px;
  font-size: 0.8rem;
}

.service-card.highlight .service-list i {
  color: var(--accent);
}

.service-desc {
  font-size: 0.95rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.service-platforms {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
}

.service-platforms span {
  color: var(--secondary);
}

/* Training Section */
.training-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.training-box {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.training-box:hover {
  box-shadow: var(--shadow-xl);
}

.training-box::after {
  content: '\f19d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  font-size: 15rem;
  color: var(--gray-100);
  opacity: 0.5;
  top: -20%;
  right: -10%;
  z-index: 0;
  transition: var(--transition-slow);
}

.training-box:nth-child(2)::after {
  content: '\f544';
}

.training-box:hover::after {
  transform: scale(1.1) rotate(5deg);
  color: rgba(242, 114, 24, 0.05);
}

.training-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.training-header i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.training-header h3 {
  margin: 0;
  font-size: 1.75rem;
}

.training-list {
  position: relative;
  z-index: 1;
  list-style: none;
}

.training-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  color: var(--gray-600);
  font-weight: 500;
}

.training-list li::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary);
  margin-right: 10px;
  transition: var(--transition);
}

.training-box:hover .training-list li::before {
  transform: translateX(5px);
}

.training-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  background: var(--light);
  padding: 2rem;
  border-radius: 16px;
}

.training-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dark);
  font-size: 1.1rem;
}

.training-features i {
  color: var(--primary);
  font-size: 1.25rem;
}

/* Why Choose Me */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.features-list {
  list-style: none;
  margin-top: 2rem;
}

.features-list li {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.f-icon {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.features-list h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.features-list p {
  margin-bottom: 0;
}

.stats-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-card h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat-card p {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0;
}

.stat-card.fill {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
}

.stat-card.fill h3,
.stat-card.fill p {
  color: var(--white);
}

/* Testimonials */
.testimo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  position: relative;
  border: 1px solid var(--gray-100);
}

.testimonial-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 3rem;
  color: var(--gray-100);
  opacity: 0.5;
}

.stars {
  color: #fbbf24;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.author {
  font-weight: 700;
  color: var(--dark);
  font-family: var(--font-heading);
}

/* Footer / Contact */
.footer {
  background: var(--darker);
  color: var(--white);
  padding-top: 4rem;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
  margin-bottom: 4rem;
  box-shadow: 0 20px 40px rgba(242, 114, 24, 0.3);
}

.cta-box h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-box .btn {
  background: var(--white);
  color: var(--primary);
}

.cta-box .btn:hover {
  background: var(--dark);
  color: var(--white);
  box-shadow: none;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-info p {
  color: var(--gray-400);
  margin-top: 1rem;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-contact p {
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact p i {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* Responsive Design */
@media (max-width: 1024px) {

  .hero-container,
  .about-container {
    gap: 2rem;
  }
}

@media (max-width: 900px) {

  .hero-container,
  .about-container,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero-highlights {
    justify-content: center;
  }

  .card-1 {
    left: 10px;
    bottom: 10px;
  }

  .training-container {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-2xl);
    transition: 0.4s ease-in-out;
    padding: 2rem;
  }

  .nav-links.active {
    right: 0;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .floating-card {
    padding: 0.75rem 1rem;
  }

  .floating-card i {
    font-size: 1.5rem;
  }

  .floating-card strong {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .cert-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cert-offset {
    margin-top: 0;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .stats-wrapper {
    grid-template-columns: 1fr;
  }

  .stat-card.fill {
    grid-column: span 1;
  }

  section {
    padding: 4rem 0;
  }
}

/* Consultation Popup Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 23, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--white);
  width: 90%;
  max-width: 500px;
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  transform: translateY(50px) scale(0.9);
  transition: var(--transition-slow);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(242, 114, 24, 0.1);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--primary);
  color: var(--white);
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-header h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.modal-header p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.modal-form .form-group {
  margin-bottom: 1.25rem;
}

.modal-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-size: 0.9rem;
}

.modal-form input,
.modal-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-800);
  transition: var(--transition);
  background: var(--light);
}

.modal-form input:focus,
.modal-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(242, 114, 24, 0.1);
  background: var(--white);
}

.modal-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

.btn-block {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* Responsive Mobile Adjustments for Popup Options */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    padding: 1.5rem;
    max-height: 85vh;
  }

  .modal-header {
    margin-bottom: 1.5rem;
  }

  .modal-header h2 {
    font-size: 1.4rem;
  }

  .modal-header p {
    font-size: 0.85rem;
  }

  .modal-form .form-group {
    margin-bottom: 1rem;
  }

  .modal-form input,
  .modal-form select {
    padding: 0.6rem 0.8rem;
    font-size: 0.95rem;
  }

  .btn-block {
    padding: 0.8rem;
    font-size: 1rem;
    margin-top: 0.5rem;
  }

  .modal-close {
    top: 1rem;
    right: 1rem;
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

/* Clients Section & Logo Marquee */
.clients {
  padding: 60px 0;
  background: var(--white);
  overflow: hidden;
}

.logo-marquee {
  position: relative;
  width: 100%;
  padding: 20px 0;
  overflow: hidden;
}

.logo-track {
  display: flex;
  width: calc(250px * 18);
  /* 9 logos * 2 sets * logo width */
  animation: scroll 40s linear infinite;
}

.logo-item {
  width: 250px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  flex-shrink: 0;
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.logo-item img:hover {
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 9));
    /* Move by one full set of logos */
  }
}

/* Pause animation on hover for better user experience */
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

/* Mobile Responsive Adjustments for Logo Marquee */
@media (max-width: 480px) {
  .logo-track {
    width: calc(150px * 18);
    animation: scroll-mobile 25s linear infinite;
  }

  .logo-item {
    width: 150px;
    height: 70px;
    padding: 0 15px;
  }

  .logo-item img {
    max-height: 45px;
  }
}

@keyframes scroll-mobile {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-150px * 9));
  }
}

/* About Us (Company Focus) Section */
.about-us {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.about-us .lead {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.expertise-block {
  margin-top: 2.5rem;
}

.expertise-block h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.expertise-block h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50%;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.expertise-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.expertise-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  color: var(--gray-700);
}

.expertise-list li i {
  color: var(--primary);
  font-size: 1.1rem;
}

.info-card {
  background: var(--light);
  padding: 3rem;
  border-radius: 30px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}

.certification-highlight {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--gray-300);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.certification-highlight i {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.certification-highlight p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dark);
}

.mission-footer {
  text-align: center;
}

.mission-footer h4 {
  font-size: 1.25rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.mission-footer p {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  font-style: italic;
}

@media (max-width: 992px) {
  .info-card {
    margin-top: 3rem;
    padding: 2rem;
  }
}
/* Strategy Call Section */
.strategy-call {
  padding: 80px 0;
  background: var(--light);
}

.strategy-box {
  background: linear-gradient(135deg, var(--darker), #1e254e);
  border-radius: 40px;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
  color: var(--white);
  box-shadow: var(--shadow-xl), 0 20px 50px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.strategy-box::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(242, 114, 24, 0.15) 0%, transparent 70%);
  z-index: 0;
}

.strategy-content {
  position: relative;
  z-index: 2;
}

.strategy-badge {
  display: inline-block;
  background: rgba(242, 114, 24, 0.2);
  color: var(--primary);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(242, 114, 24, 0.3);
}

.strategy-call h2 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.strategy-subtitle {
  color: var(--secondary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.strategy-call p {
  color: var(--gray-300);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.strategy-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.s-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--gray-100);
}

.s-feature i {
  color: var(--primary);
  font-size: 1.2rem;
}

.strategy-btn {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(242, 114, 24, 0.3);
}

.strategy-visual {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.visual-circle {
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: var(--primary);
  position: relative;
  animation: pulse 3s infinite;
}

.visual-circle::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  border: 1px solid rgba(242, 114, 24, 0.2);
  border-radius: 50%;
  animation: ripple 3s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes ripple {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

@media (max-width: 992px) {
  .strategy-box {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
    text-align: center;
    gap: 2rem;
  }
  
  .strategy-features {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto 2.5rem;
    text-align: left;
  }
  
  .strategy-call h2 {
    font-size: 2.25rem;
  }
  
  .strategy-visual {
    order: -1;
  }
  
  .visual-circle {
    width: 150px;
    height: 150px;
    font-size: 3.5rem;
  }
}
