/* ==========================================================================
   CSS Variables & Theme
   ========================================================================== */
:root {
  /* Colors - Modern Dark Tech Theme */
  --clr-primary: #3b82f6; /* Bright Blue */
  --clr-primary-dark: #2563eb;
  --clr-primary-light: #60a5fa;
  --clr-secondary: #0ea5e9; /* Light Blue/Cyan */
  --clr-dark: #0f172a; /* Deep Slate Blue (Bg) */
  --clr-dark-card: #1e293b; /* Lighter Slate for Cards */
  --clr-dark-hover: #334155;
  --clr-text: #64748b; /* Slate text */
  --clr-text-light: #94a3b8;
  --clr-heading: #f8fafc; /* Almost white for headings */
  --clr-white: #ffffff;
  --clr-bg-light: #f1f5f9; /* Light bg section */

  --clr-success: #10b981;
  --clr-warning: #f59e0b;
  --clr-danger: #ef4444;

  /* Gradients */
  --grad-primary: linear-gradient(
    135deg,
    var(--clr-primary),
    var(--clr-secondary)
  );
  --grad-dark: linear-gradient(135deg, #0f172a, #1e293b);
  --grad-glow: linear-gradient(90deg, #3b82f6, #8b5cf6, #3b82f6);

  /* Typography */
  --font-heading: "Noto Sans SC", "Inter", sans-serif;
  --font-body: "Inter", "Noto Sans SC", sans-serif;

  /* Shadows */
  --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-glow: 0 0 15px rgba(59, 130, 246, 0.5);
  --shadow-card: 0 15px 30px rgba(15, 23, 42, 0.8);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-round: 50%;

  /* Transitions */
  --trans-fast: 0.2s ease;
  --trans-normal: 0.3s ease;
  --trans-slow: 0.5s ease;
  --trans-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--clr-text);
  background-color: var(--clr-white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: var(--clr-primary);
  transition: var(--trans-normal);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.section {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 3rem;
}

.section-subtitle {
  display: inline-block;
  color: var(--clr-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 0.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.section-subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 40px;
  background: var(--clr-primary);
  border-radius: 2px;
}

.section-header.text-center .section-subtitle::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.section-desc {
  color: var(--clr-text);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.text-center {
  text-align: center;
}
.mt-4 {
  margin-top: 2rem;
}
.bg-light {
  background-color: var(--clr-bg-light);
}
.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--trans-normal);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--grad-primary);
  color: var(--clr-white);
  background-size: 200% auto;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
  background-position: right center;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--clr-white);
  color: var(--clr-primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--clr-white);
  color: var(--clr-primary-dark);
}

.btn-lg {
  padding: 0.875rem 2.25rem;
  font-size: 1.05rem;
}
.btn-block {
  width: 100%;
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--trans-normal);
  padding: 1rem 0;
  background: transparent;
}

.header.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-md);
}

.header.scrolled .logo,
.header.scrolled .nav-link {
  color: var(--clr-white);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.logo i {
  color: var(--clr-primary);
  font-size: 1.8rem;
}

.nav-list {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--clr-white);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-primary);
  transition: var(--trans-normal);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--clr-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--clr-dark);
  padding-top: 80px; /* Space for navbar */
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  opacity: 0.6;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.4);
  top: -100px;
  left: -100px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(14, 165, 233, 0.3);
  bottom: -50px;
  right: 10%;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: rgba(139, 92, 246, 0.3);
  top: 30%;
  left: 40%;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  color: var(--clr-white);
}

.hero .badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--clr-primary-light);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--clr-white);
}

.hero-desc {
  color: var(--clr-text-light);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
}

.hero-image {
  position: relative;
}

/* Illustration Mockup CSS */
.illustration-wrapper {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

.mockup-window {
  width: 100%;
  height: 350px;
  background: rgba(30, 41, 59, 0.7);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
}

.mockup-header {
  height: 35px;
  background: rgba(15, 23, 42, 0.8);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-header .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot.red {
  background-color: #ff5f56;
}
.dot.yellow {
  background-color: #ffbd2e;
}
.dot.green {
  background-color: #27c93f;
}

.mockup-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.skeleton-chart {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  height: 120px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

.skeleton-chart .bar {
  flex: 1;
  background: var(--grad-primary);
  border-radius: 4px 4px 0 0;
  opacity: 0.8;
}

.skeleton-lines {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.s-line {
  height: 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
}

.s-line.full {
  width: 100%;
}
.s-line.w-75 {
  width: 75%;
  background: rgba(59, 130, 246, 0.3);
}
.s-line.w-50 {
  width: 50%;
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-grid {
  position: relative;
  width: 100%;
  height: 450px;
}

.img-box {
  position: absolute;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}

.img-1 {
  width: 70%;
  height: 80%;
  top: 0;
  left: 0;
  background-image: url("https://images.unsplash.com/photo-1542744173-8e7e53415bb0?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80");
  z-index: 1;
}

.img-2 {
  width: 60%;
  height: 60%;
  bottom: 0;
  right: 0;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80");
  z-index: 2;
  border: 10px solid var(--clr-white);
}

.experience-badge {
  position: absolute;
  bottom: 20%;
  left: -20px;
  background: var(--grad-primary);
  color: var(--clr-white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.experience-badge .number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.feature-list {
  margin: 1.5rem 0;
  display: grid;
  gap: 1rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--clr-dark);
}

.feature-list i {
  color: var(--clr-success);
  font-size: 1.25rem;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--clr-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--trans-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--grad-primary);
  z-index: -1;
  transition: var(--trans-normal);
  opacity: 0.05;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59, 130, 246, 0.3);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--clr-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  transition: var(--trans-normal);
}

.service-card:hover .service-icon {
  background: var(--clr-primary);
  color: var(--clr-white);
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-weight: 600;
}

.service-link i {
  transition: var(--trans-fast);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.why-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
}

.f-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--grad-primary);
  color: var(--clr-white);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.f-info h4 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.f-info p {
  font-size: 0.95rem;
}

/* Stats Card */
.stats-card {
  background: var(--clr-dark);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.stats-card::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--grad-primary);
  border-radius: 50%;
  filter: blur(60px);
  top: -50px;
  right: -50px;
  opacity: 0.2;
}

.stat-item h3 {
  color: var(--clr-white);
  font-size: 2.5rem;
  margin-bottom: 0.25rem;
}

.stat-item h3 span {
  color: var(--clr-primary);
  font-size: 1.5rem;
}

.stat-item p {
  color: var(--clr-text-light);
  font-weight: 500;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta.bg-gradient {
  background: var(--grad-primary);
  color: var(--clr-white);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiLz4KPC9zdmc+");
  opacity: 0.5;
}

.cta-title {
  color: var(--clr-white);
  margin-bottom: 1rem;
}

.cta-desc {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.contact-info {
  background: var(--clr-dark);
  color: var(--clr-white);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.contact-info h3 {
  color: var(--clr-white);
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--clr-text-light);
  margin-bottom: 2.5rem;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
}

.info-item i {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary-light);
  flex-shrink: 0;
}

.info-item h5 {
  color: var(--clr-white);
  margin-bottom: 0.25rem;
}

.info-item p {
  color: var(--clr-text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--clr-white);
  border-radius: var(--radius-round);
}

.social-links a:hover {
  background: var(--clr-primary);
  transform: translateY(-3px);
}

.contact-form {
  padding: 3rem;
  background: var(--clr-white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--clr-dark);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--trans-fast);
  background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-primary);
  background: var(--clr-white);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-feedback {
  margin-top: 1rem;
  min-height: 1.5rem;
  font-size: 0.95rem;
}

.form-feedback.is-success {
  color: var(--clr-success);
}

.form-feedback.is-error {
  color: var(--clr-danger);
}

.contact-form button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-honeypot {
  display: none !important;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #0b1120;
  color: var(--clr-text-light);
  padding-top: 5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  color: var(--clr-white);
  font-size: 1.5rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-logo i {
  color: var(--clr-primary);
}

.brand-widget p {
  font-size: 0.95rem;
}

.footer-widget h4 {
  color: var(--clr-white);
  margin-bottom: 1.5rem;
}

.links-widget ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.links-widget a {
  color: var(--clr-text-light);
}

.links-widget a:hover {
  color: var(--clr-primary-light);
  padding-left: 5px;
}

.subscribe-form {
  display: flex;
  margin-top: 1rem;
}

.subscribe-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  color: var(--clr-white);
}

.subscribe-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
}

.subscribe-form button {
  background: var(--clr-primary);
  color: var(--clr-white);
  border: none;
  padding: 0 1.25rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  cursor: pointer;
  transition: var(--trans-fast);
}

.subscribe-form button:hover {
  background: var(--clr-primary-dark);
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.footer-policy {
  display: flex;
  gap: 1.5rem;
}

.footer-policy a {
  color: var(--clr-text-light);
}

.footer-policy a:hover {
  color: var(--clr-white);
}

/* ==========================================================================
   Animations & Reveal Classes
   ========================================================================== */
.fade-in-up,
.fade-in-left,
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
}

.fade-in-up {
  transform: translateY(30px);
}
.fade-in-left {
  transform: translateX(-30px);
}

.animate .fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}
.animate .fade-in-left {
  animation: fadeInLeft 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}
.delay-4 {
  animation-delay: 0.4s;
}
.delay-5 {
  animation-delay: 0.5s;
}
.delay-6 {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll Reveal Classes added by JS */
.is-revealed {
  animation: fadeInUp 0.8s ease forwards;
}
.reveal-left.is-revealed {
  animation: fadeInLeft 0.8s ease forwards;
  transform: translateX(-30px);
}
.reveal-right {
  transform: translateX(30px);
}
.reveal-right.is-revealed {
  animation: fadeInRight 0.8s ease forwards;
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-container,
  .about-container,
  .why-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-image {
    grid-row: 1;
    margin-bottom: 2rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }

  .d-none-sm {
    display: none !important;
  }
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--clr-dark);
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.3s ease-in-out;
  }

  .nav-menu.show {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .nav-link {
    display: block;
    padding: 1rem;
    width: 100%;
    text-align: center;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .stats-card {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
