/* ===== CSS Variables for Professional Theme ===== */
:root {
  --primary: #0a0f29; /* Midnight Navy */
  --secondary: #000000;
  --accent: #d4af37; /* Royal Gold */
  --white: #ffffff;
  --neutral: #f5f5f5; /* Soft White */
  --text: #1f2937;
  --text-light: #6b7280;
  --bg-accent: #f5f5f5; /* Soft White */

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s ease;
  --border-radius: 8px;
}

/* ===== Base Styling ===== */
html {
  scroll-padding-top: 80px;
}

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

body {
  font-family: "Poppins", sans-serif;
  background-color: #f5f5f5; /* Soft White */
  color: #000;
  line-height: 1.6;
  overflow-x: hidden;

  padding-top: 80px; /* keep hero clear of fixed navbar */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== Reusable Utility Classes ===== */
.container {
  width: 100%;
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: #000000;
  transition: color 0.3s ease;
}

a:hover {
  color: #d4af37; /* Royal Gold hover */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.btn {
  display: inline-block;
  /* padding: 0.8rem 1.8rem; */
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: "Poppins", sans-serif;
}

.btn-primary,
.btn-accent {
  /* background-color: #d4af37; */ /* Royal Gold */
  color: #0a0f29; /* Midnight Navy text */
  border: none;
}

.btn-outline {
  border: 2px solid #d4af37; /* Royal Gold */
  color: #d4af37;
  background: transparent;
}

.btn-outline:hover {
  background-color: #d4af37; /* Royal Gold */
  color: #0a0f29; /* Midnight Navy text */
}

.btn:hover {
  transform: translateY(-2px);
}

/* ////////////////////////////////////////////////////////////////////////// */
/* Hero Section */
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  padding-top: 40px; /* visual breathing room under navbar */
  background: linear-gradient(
    135deg,
    #0a0f29 0%,
    #1a2342 100%
  ); /* Midnight Navy gradient */
}

/* Hero Badge */
.hero-badge {
  margin-bottom: 2rem;
  animation: slideInLeft 1s ease 0.5s both;
  will-change: transform, opacity; /* Smooth animation */
}

.badge-text {
  background: linear-gradient(
    45deg,
    #d4af37,
    #f4d03f
  ); /* Royal Gold gradient */
  color: #0a0f29; /* Midnight Navy text */
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); /* Royal Gold shadow */
  animation: pulse 2s infinite;
  will-change: transform; /* Smooth animation */
}

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

/* Hero Title */

.hero-title {
  display: flex;
  flex-direction: column;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 1.5px;
  animation: slideInLeft 1s ease 0.7s both;
  will-change: transform, opacity;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .title-line {
    font-size: 2rem;
  }

  .title-highlight {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .title-line {
    font-size: 1.6rem;
  }

  .title-highlight {
    font-size: 2.2rem;
  }
}

.title-line {
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.title-highlight {
  background: linear-gradient(
    45deg,
    #d4af37,
    #f4d03f,
    #d4af37
  ); /* Royal Gold gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 4.2rem;
}

@keyframes glow {
  from {
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  }
  to {
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.8),
      0 0 60px rgba(255, 215, 0, 0.3);
  }
}

.highlight {
  color: #d4af37; /* Royal Gold */
  font-weight: 600;
}

.typing-text::after {
  content: "|";
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.btn-glow {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    45deg,
    #d4af37,
    #f4d03f
  ); /* Royal Gold gradient */
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #0a0f29; /* Midnight Navy text */
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4); /* Royal Gold shadow */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, box-shadow;
}

.btn-glow::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.3),
    transparent
  );
  transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-glow:hover::before {
  left: 100%;
}

.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6); /* Royal Gold shadow */
}

.btn-outline-glow {
  background: transparent;
  border: 2px solid rgba(128, 124, 124, 0.3);
  color: rgb(255, 243, 243);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, box-shadow, background;
}

.btn-outline-glow:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-glow i,
.btn-outline-glow i {
  margin-left: 0.5rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.btn-glow:hover i,
.btn-outline-glow:hover i {
  transform: translateX(5px);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: slideInRight 1s ease 0.5s both;
  will-change: transform, opacity;
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.hero-image img {
  width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: floatImage 6s ease-in-out infinite;
  will-change: transform; /* Smooth animation */
  border: 1px solid #d4af37; /* Royal Gold */
  border-radius: 10px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.167);
  backdrop-filter: blur(10px);
}

@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.2) 0%,
    /* Royal Gold */ transparent 70%
  );
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
  z-index: 1;
  will-change: transform, opacity; /* Smooth animation */
}

@keyframes glowPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.8;
  }
}
/* Floating Cards */

/* Animation Keyframes */

/* Services Preview Section */
.services-preview {
  background-color: #f5f5f5; /* Soft White */
  position: relative;
  overflow: hidden;
}

.services-preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="services-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="white" opacity="0.15"/><circle cx="75" cy="75" r="2" fill="white" opacity="0.15"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.15"/><circle cx="10" cy="60" r="1" fill="white" opacity="0.15"/><circle cx="90" cy="40" r="1" fill="white" opacity="0.15"/><circle cx="30" cy="90" r="1.5" fill="white" opacity="0.15"/><circle cx="70" cy="30" r="1.5" fill="white" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23services-pattern)"/></svg>');
  opacity: 0.4;
  animation: servicesPatternMove 25s linear infinite;
  z-index: 1;
}

@keyframes servicesPatternMove {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  33% {
    transform: translateX(-15px) translateY(-8px) rotate(120deg);
  }
  66% {
    transform: translateX(-8px) translateY(-15px) rotate(240deg);
  }
  100% {
    transform: translateX(0) translateY(0) rotate(360deg);
  }
}

/* Section Header */

.section-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.section-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  gap: 1rem;
}

.decoration-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #d4af37,
    transparent
  ); /* Royal Gold */
}

.decoration-dot {
  width: 8px;
  height: 8px;
  background: #d4af37; /* Royal Gold */
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* MAIN SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px; /* space between cards */
  margin: 40px 0;
  width: 100%; /* use container width for max sizing */
  box-sizing: border-box;
}

/* INDIVIDUAL CARDS */
.service-card {
  background: #fbf6eb; /* your cream color */
  border: 1px solid #d8ae47; /* your golden border */
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

/* CONTENT */
.service-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-content p {
  font-size: 14px;
  margin-bottom: 12px;
}

/* FEATURES */
.service-features {
  margin-bottom: 14px;
}

.service-features li {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
}

.service-features li i {
  color: #d8ae47;
}

/* STATS */
.service-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
}

.stat-value {
  font-size: 16px;
  font-weight: 700;
  color: #d8ae47;
}

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

/* BUTTON */
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.btn-text:hover i {
  transform: translateX(4px);
}

/* GLOW */
.card-glow {
  height: 6px;
  width: 40px;
  background: rgba(216, 174, 71, 0.15);
  border-radius: 5px;
  margin-top: 10px;
}

/* ---------- RESPONSIVE ---------- */

/* Tablet - 2 cards per row */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile - 1 card per row */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    
  }
}
/* @media (max-width: 395px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* min-height: 1000%; 
    position: absolute;
    
  }
  
  
}  */
/* Services CTA */

.services-cta {
  background: #1a2342;
  padding: 1.5rem;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

/* .services-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
} */

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

.cta-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-buttons .btn-glow {
  background: linear-gradient(
    45deg,
    #d4af37,
    #f4d03f
  ); /* Royal Gold gradient */
  border: none;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4); /* Royal Gold shadow */
}

.cta-buttons .btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6); /* Royal Gold shadow */
}

.cta-buttons .btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.cta-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}
/* Floating Elements CTA */

/* Responsive Design for Services  */

/* LARGE DESKTOP / LAPTOP */

/* SMALLER TABLET / LARGE PHONE */

/* Hide decorative floating elements if they clutter */

/* PHONES / VERY SMALL SCREENS */

/* Testimonials Section */
.testimonials {
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  background: #000;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonials-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><rect x="10" y="10" width="8" height="8" fill="white" opacity="0.08" rx="2"/><rect x="80" y="80" width="8" height="8" fill="white" opacity="0.08" rx="2"/><rect x="50" y="20" width="6" height="6" fill="white" opacity="0.08" rx="1"/><rect x="20" y="70" width="6" height="6" fill="white" opacity="0.08" rx="1"/><rect x="85" y="30" width="4" height="4" fill="white" opacity="0.08" rx="1"/><rect x="30" y="85" width="4" height="4" fill="white" opacity="0.08" rx="1"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonials-pattern)"/></svg>');
  opacity: 0.3;
  animation: testimonialsPatternMove 30s linear infinite;
  z-index: 1;
}

@keyframes testimonialsPatternMove {
  0% {
    transform: translateX(0) translateY(0) scale(1);
  }
  25% {
    transform: translateX(-10px) translateY(-5px) scale(1.05);
  }
  50% {
    transform: translateX(-5px) translateY(-10px) scale(1.1);
  }
  75% {
    transform: translateX(-15px) translateY(-3px) scale(1.05);
  }
  100% {
    transform: translateX(0) translateY(0) scale(1);
  }
}

.testimonials .section-header {
  position: relative;
  z-index: 3;
  margin-bottom: 2rem;
}

.testimonials .section-title {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.testimonials .section-subtitle {
  color: rgba(212, 175, 55, 0.9); /* Royal Gold */
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
  width: 100%; /* span full container width so content aligns with other sections */
  margin: 0 auto;
  box-sizing: border-box;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial {
  flex: 0 0 100%;
  padding: 0 1.5rem;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: none;
}

.testimonial.active {
  opacity: 1;
  display: block;
  animation: fadeIn 0.5s ease;
}

.testimonial-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.quote-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    #d4af37,
    #f4d03f
  ); /* Royal Gold gradient */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0f29; /* Midnight Navy text */
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3); /* Royal Gold shadow */
}

.stars {
  color: #d4af37; /* Royal Gold */
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  display: flex;
  gap: 0.2rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.client-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-details h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.client-details p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.company-logo {
  margin-left: auto;
  width: 100px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.company-logo:hover {
  opacity: 1;
}

.company-logo img {
  max-width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  position: relative;
  z-index: 3;
}

.slider-controls button {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-controls button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.dots {
  display: flex;
  margin: 0 1.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--white);
  transform: scale(1.2);
}

.testimonial-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 3;
  flex-wrap: wrap;
}

.testimonial-stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 150px;
  transition: transform 0.3s ease;
}

.testimonial-stat:hover {
  transform: translateY(-5px);
}

.testimonial-stat .number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #d4af37; /* Royal Gold */
  margin-bottom: 0.5rem;
}

.testimonial-stat .label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Animation Keyframes */

/* Responsive Design for Testimonials */

/* About Preview Section */
.about-preview {
  background-color: #f5f5f5; /* Soft White */
  position: relative;
  overflow: hidden;
}

.about-preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-preview-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><polygon points="50,10 60,30 80,30 65,45 70,65 50,55 30,65 35,45 20,30 40,30" fill="white" opacity="0.06"/><polygon points="20,20 25,30 35,30 28,37 30,47 20,42 10,47 12,37 5,30 15,30" fill="white" opacity="0.06"/><polygon points="80,80 85,90 95,90 88,97 90,107 80,102 70,107 72,97 65,90 75,90" fill="white" opacity="0.06"/></pattern></defs><rect width="100" height="100" fill="url(%23about-preview-pattern)"/></svg>');
  opacity: 0.4;
  animation: aboutPreviewPatternMove 35s linear infinite;
  z-index: 1;
}

@keyframes aboutPreviewPatternMove {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  20% {
    transform: translateX(-12px) translateY(-6px) rotate(72deg);
  }
  40% {
    transform: translateX(-6px) translateY(-12px) rotate(144deg);
  }
  60% {
    transform: translateX(-18px) translateY(-4px) rotate(216deg);
  }
  80% {
    transform: translateX(-4px) translateY(-18px) rotate(288deg);
  }
  100% {
    transform: translateX(0) translateY(0) rotate(360deg);
  }
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;

    gap: 2rem;
  }

  .about-image {
    order: 1;
  }
}

.about-image img {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
  text-align: left;
}

.about-text h2::after {
  margin: 1rem 0;
}

.about-features {
  margin: 2rem 0;
}

.about-features li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}

.about-features i {
  color: #d4af37; /* Royal Gold */
  margin-right: 0.8rem;
  font-size: 1.2rem;
}
/* CTA Section */
.cta {
  background: linear-gradient(
    135deg,
    #0a0f29 0%,
    #1a2342 100%
  ); /* Midnight Navy gradient */
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="3" fill="white" opacity="0.1"/><circle cx="80" cy="80" r="3" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="2" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="2" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="2" fill="white" opacity="0.1"/><circle cx="30" cy="90" r="2.5" fill="white" opacity="0.1"/><circle cx="70" cy="30" r="2.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
  opacity: 0.3;
  animation: ctaPatternMove 40s linear infinite;
  z-index: 1;
}

@keyframes ctaPatternMove {
  0% {
    transform: translateX(0) translateY(0) scale(1);
  }
  16% {
    transform: translateX(-8px) translateY(-4px) scale(1.02);
  }
  32% {
    transform: translateX(-4px) translateY(-8px) scale(1.04);
  }
  48% {
    transform: translateX(-12px) translateY(-2px) scale(1.02);
  }
  64% {
    transform: translateX(-2px) translateY(-12px) scale(1.06);
  }
  80% {
    transform: translateX(-10px) translateY(-6px) scale(1.03);
  }
  100% {
    transform: translateX(0) translateY(0) scale(1);
  }
}

.cta h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  position: relative;
  z-index: 2;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}
/* Blog Preview Section */
.round {
  padding: 1.5rem 0 1rem;
}
.blog-preview {
  background-color: #f5f5f5; /* Soft White */
  position: relative;
  overflow: hidden;
  padding-bottom: 1rem;
}

.blog-preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="blog-preview-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><rect x="15" y="15" width="10" height="10" fill="white" opacity="0.08" rx="2"/><rect x="75" y="75" width="10" height="10" fill="white" opacity="0.08" rx="2"/><rect x="45" y="25" width="8" height="8" fill="white" opacity="0.08" rx="1"/><rect x="25" y="65" width="8" height="8" fill="white" opacity="0.08" rx="1"/><rect x="85" y="35" width="6" height="6" fill="white" opacity="0.08" rx="1"/><rect x="35" y="85" width="6" height="6" fill="white" opacity="0.08" rx="1"/></pattern></defs><rect width="100" height="100" fill="url(%23blog-preview-pattern)"/></svg>');
  opacity: 0.4;
  animation: blogPreviewPatternMove 45s linear infinite;
  z-index: 1;
}

@keyframes blogPreviewPatternMove {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  14% {
    transform: translateX(-6px) translateY(-3px) rotate(50deg);
  }
  28% {
    transform: translateX(-3px) translateY(-6px) rotate(100deg);
  }
  42% {
    transform: translateX(-9px) translateY(-1px) rotate(150deg);
  }
  56% {
    transform: translateX(-1px) translateY(-9px) rotate(200deg);
  }
  70% {
    transform: translateX(-7px) translateY(-4px) rotate(250deg);
  }
  84% {
    transform: translateX(-4px) translateY(-7px) rotate(300deg);
  }
  100% {
    transform: translateX(0) translateY(0) rotate(360deg);
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(
    3,
    1fr
  ); /* fixed 3 columns on desktop for 3-up / 3-down layout */
  gap: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .blog-content {
    min-height: 200px;
  }
}

@media (max-width: 576px) {
  .blog-content {
    min-height: 180px;
  }
}

.blog-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.blog-image {
  position: relative;
  height: 40%;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #d4af37; /* Royal Gold */
  color: #0a0f29; /* Midnight Navy text */
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-content {
  padding: 1.5rem;
  color: #000000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  min-height: 240px;
  gap: 0.75rem;
}
.blog-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: black;
}

.blog-content .btn.btn-text {
  margin-top: auto;
  align-self: flex-start;
  padding: 0.6rem 1rem;
}

.blog-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: black;
}

.blog-content p {
  margin-bottom: 0.5rem;
}

.blog-date {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Contact Section */
.contact {
  background-color: #f5f5f5; /* Soft White */
  position: relative;
  overflow: hidden;
  padding-top: 0.75rem; /* reduce space above contact so calendar sits closer to blog */
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M10,10 L20,10 L20,20 L10,20 Z" fill="white" opacity="0.05"/><path d="M80,80 L90,80 L90,90 L80,90 Z" fill="white" opacity="0.05"/><path d="M45,25 L55,25 L55,35 L45,35 Z" fill="white" opacity="0.05"/><path d="M25,65 L35,65 L35,75 L25,75 Z" fill="white" opacity="0.05"/><path d="M85,35 L95,35 L95,45 L85,45 Z" fill="white" opacity="0.05"/><path d="M35,85 L45,85 L45,95 L35,95 Z" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
  opacity: 0.3;
  animation: contactPatternMove 50s linear infinite;
  z-index: 1;
}

@keyframes contactPatternMove {
  0% {
    transform: translateX(0) translateY(0) scale(1);
  }
  12% {
    transform: translateX(-5px) translateY(-2px) scale(1.01);
  }
  24% {
    transform: translateX(-2px) translateY(-5px) scale(1.02);
  }
  36% {
    transform: translateX(-8px) translateY(-1px) scale(1.01);
  }
  48% {
    transform: translateX(-1px) translateY(-8px) scale(1.03);
  }
  60% {
    transform: translateX(-6px) translateY(-3px) scale(1.02);
  }
  72% {
    transform: translateX(-3px) translateY(-6px) scale(1.01);
  }
  84% {
    transform: translateX(-9px) translateY(-2px) scale(1.03);
  }
  100% {
    transform: translateX(0) translateY(0) scale(1);
  }
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-form {
  background-color: var(--bg-accent);
  padding: 2rem;
  border-radius: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Figtree", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4af37; /* Royal Gold */
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-info {
  padding: 1rem;
}

.info-card {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-icon {
  width: 50px;
  height: 50px;
  background-color: #d4af37; /* Royal Gold */
  color: #0a0f29; /* Midnight Navy text */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-content h3 {
  margin-bottom: 0.5rem;
  color: #d4af37; /* Royal Gold */
}

.contact-social {
  margin-top: 3rem;
}

.contact-social h3 {
  margin-bottom: 1rem;
  color: #d4af37; /* Royal Gold */
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #d4af37; /* Royal Gold */
  color: #0a0f29; /* Midnight Navy text */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: #f4d03f; /* Lighter Gold */
  color: #0a0f29; /* Midnight Navy text */
}
/* Live Chat */
.live-chat {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
}

.whatsapp-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.chat-btn {
  background-color: #25d366; /* WhatsApp Green */
  color: white;
  border: none;
  padding: 15px 18px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease-in-out;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-btn:hover {
  transform: scale(1.1);
  background-color: #20b954;
}
.chat-btn i {
  margin: 0;
  padding: 0;
  font-size: 24px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width:450px) {
  /* Live Chat */
.live-chat {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
}

.whatsapp-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.chat-btn {
  background-color: #25d366; /* WhatsApp Green */
  color: white;
  border: none;
  padding: 15px 18px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease-in-out;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-btn:hover {
  transform: scale(1.1);
  background-color: #20b954;
}
.chat-btn i {
  margin: 0;
  padding: 0;
  font-size: 24px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
}
  

/* Responsive Styles */

/* === Package Grid === */
.packages-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  padding-bottom: 2rem;
}

/* Tablet (2 columns) */
@media (max-width: 992px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (1 column) */
@media (max-width: 600px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

/* === Package Card === */
.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1.5rem;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.package-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.package-card .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #d4af37; /* Royal Gold */
  margin-bottom: 1.5rem;
}

.plan-discount {
  background: #f9f9f9;
  border: 1px dashed #d4af37; /* Royal Gold */
  border-radius: 10px;
  padding: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 1.5rem;
  color: #444;
}

.plan-discount strong {
  color: #d4af37; /* Royal Gold */
}

.package-card.popular {
  border: 2px solid #d4af37; /* Royal Gold */
  transform: scale(1.05);
  z-index: 2;
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #d4af37; /* Royal Gold */
  color: #0a0f29; /* Midnight Navy text */
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.features {
  margin-bottom: 2rem;
  text-align: left;
}

.features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.features li i {
  color: #d4af37; /* Royal Gold */
  margin-right: 0.6rem;
}

.package-card a {
  display: inline-block;
  margin-top: auto;
  width: 100%;
  max-width: 200px;
}
.package-card a.btn {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
}

.why-choose-us {
  padding: 2rem 0;
  background-color: #f5f5f5; /* Soft White */
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.why-benefits h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--secondary);
}

.benefit-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.benefit-item i {
  font-size: 2rem;
  color: #d4af37; /* Royal Gold */
  margin-bottom: 1rem;
}

.benefit-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.benefit-item p {
  color: var(--text-light);
  line-height: 1.6;
}

.why-details h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
  width: 100%;
}

.why-details p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: #40404028;
  backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #d4af37; /* Royal Gold */
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

.services-cta {
  background: linear-gradient(
    135deg,
    #0a0f29 0%,
    #1a2342 100%
  ); /* Midnight Navy gradient */
  color: var(--white);
  text-align: center;
}


.services-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.services-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.faq-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--secondary);
}

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

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: var(--white);
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: var(--bg-accent);
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--bg-accent);
}

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

.faq-answer p {
  padding: 1.5rem;
  margin: 0;
  color: var(--text-light);
  line-height: 1.6;
}
/* Hero Button Styling */
.page-hero .btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  /* box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3); */
  transition: all 0.3s ease;
}

.page-hero .btn-primary:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 8px 25px rgba(26, 115, 232, 0.4); */
}

/* About Page Styles */
.about-hero {
  background: linear-gradient(
    135deg,
    #0a0f29 0%,
    #1a2342 100%
  ); /* Midnight Navy gradient */
  color: var(--white);
  padding: 8rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 60px;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><polygon points="15,5 25,15 15,25 5,15" fill="white" opacity="0.08"/><circle cx="15" cy="15" r="2" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23about-pattern)"/></svg>');
  animation: aboutPatternMove 25s linear infinite;
}

@keyframes aboutPatternMove {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  100% {
    transform: translateX(-30px) translateY(-30px) rotate(360deg);
  }
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: linear-gradient(
    45deg,
    #d4af37,
    #f4d03f,
    #d4af37
  ); /* Royal Gold gradient */
  border-radius: 50%;
  animation: aboutFloat 10s ease-in-out infinite;
  will-change: transform;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.particle:nth-child(1) {
  left: 5%;
  animation-delay: 0s;
  animation-duration: 12s;
}
.particle:nth-child(2) {
  left: 15%;
  animation-delay: 1.5s;
  animation-duration: 8s;
}
.particle:nth-child(3) {
  left: 25%;
  animation-delay: 3s;
  animation-duration: 10s;
}
.particle:nth-child(4) {
  left: 35%;
  animation-delay: 4.5s;
  animation-duration: 9s;
}
.particle:nth-child(5) {
  left: 45%;
  animation-delay: 6s;
  animation-duration: 11s;
}
.particle:nth-child(6) {
  left: 55%;
  animation-delay: 7.5s;
  animation-duration: 7s;
}
.particle:nth-child(7) {
  left: 65%;
  animation-delay: 9s;
  animation-duration: 13s;
}
.particle:nth-child(8) {
  left: 75%;
  animation-delay: 10.5s;
  animation-duration: 8s;
}
.particle:nth-child(9) {
  left: 85%;
  animation-delay: 12s;
  animation-duration: 10s;
}
.particle:nth-child(10) {
  left: 95%;
  animation-delay: 13.5s;
  animation-duration: 9s;
}

@keyframes aboutFloat {
  0%,
  100% {
    transform: translateY(100vh) rotate(0deg) scale(1);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  50% {
    transform: translateY(40vh) rotate(180deg) scale(2);
    opacity: 0.9;
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg) scale(1);
    opacity: 0;
  }
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.1)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #d4af37; /* Royal Gold */
  backdrop-filter: blur(20px);
  border: 3px solid rgba(212, 175, 55, 0.4); /* Royal Gold */
  animation: aboutFloatIcon 15s ease-in-out infinite;
  will-change: transform;
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3); /* Royal Gold shadow */
}

.floating-icon:nth-child(1) {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}
.floating-icon:nth-child(2) {
  top: 25%;
  right: 12%;
  animation-delay: 3s;
}
.floating-icon:nth-child(3) {
  top: 55%;
  left: 3%;
  animation-delay: 6s;
}
.floating-icon:nth-child(4) {
  top: 65%;
  right: 8%;
  animation-delay: 9s;
}

@keyframes aboutFloatIcon {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  20% {
    transform: translateY(-30px) rotate(45deg) scale(1.2);
  }
  40% {
    transform: translateY(-20px) rotate(90deg) scale(0.8);
  }
  60% {
    transform: translateY(-35px) rotate(135deg) scale(1.3);
  }
  80% {
    transform: translateY(-10px) rotate(270deg) scale(0.9);
  }
}

@keyframes aboutGlow {
  from {
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  }
  to {
    text-shadow: 0 0 60px rgba(255, 215, 0, 0.8),
      0 0 80px rgba(212, 175, 55, 0.5), 0 0 100px rgba(212, 175, 55, 0.3); /* Royal Gold glow */
  }
}

@keyframes aboutFloatCard {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-25px) rotate(5deg) scale(1.1);
  }
  50% {
    transform: translateY(-15px) rotate(-3deg) scale(0.9);
  }
  75% {
    transform: translateY(-30px) rotate(8deg) scale(1.15);
  }
}
.container {
  position: relative;
  z-index: 3;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.hero-badge {
  margin-bottom: 2rem;
  animation: slideInLeft 1s ease 0.5s both;
  will-change: transform, opacity;
}

.badge-text {
  background: linear-gradient(
    45deg,
    #d4af37,
    #f4d03f
  ); /* Royal Gold gradient */
  color: #0a0f29; /* Midnight Navy text */
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); /* Royal Gold shadow */
  animation: pulse 2s infinite;
  will-change: transform;
}

.hero-subtitle {
  font-size: 1.3rem;
  /* margin-bottom: 3rem; */
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  animation: slideInLeft 1s ease 0.9s both;
  will-change: transform, opacity;
  /* background-color: yellow; */
}

.highlight {
  color: #d4af37; /* Royal Gold */
  font-weight: 600;
}

.typing-text::after {
  content: "|";
  animation: blink 1s infinite;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 2.5rem; /* space between stats (500/1000) and buttons */
  animation: slideInLeft 1s ease 1.1s both;
  will-change: transform, opacity;
}

.stat-item {
  text-align: center;
  flex: 1 1 180px;
  min-width: 160px;
  max-width: 220px;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #d4af37; /* Royal Gold */
  will-change: transform;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  animation: slideInLeft 1s ease 1.3s both;
  will-change: transform, opacity;
  padding: 0 0 3rem 0;

  /* background-color: yellow; */
}

.btn-glow {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    45deg,
    #d4af37,
    #f4d03f
  ); /* Royal Gold gradient */
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4); /* Royal Gold shadow */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, box-shadow;
}

.btn-glow::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-glow:hover::before {
  left: 100%;
}

.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6); /* Royal Gold shadow */
}

.btn-outline-glow {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, box-shadow, background;
}

.btn-outline-glow:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-glow i,
.btn-outline-glow i {
  margin-left: 0.5rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.btn-glow:hover i,
.btn-outline-glow:hover i {
  transform: translateX(5px);
}

.hero-visual {
  position: relative;
  animation: slideInRight 1s ease 0.5s both;
  will-change: transform, opacity;
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: floatImage 6s ease-in-out infinite;
  will-change: transform;
}

.image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.2) 0%,
    /* Royal Gold */ transparent 70%
  );
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
  z-index: 1;
  will-change: transform, opacity;
}

.floating-cards {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid #d4af37; /* Royal Gold */
  border-radius: 15px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  animation: floatCard 8s ease-in-out infinite;
  will-change: transform;
}

.floating-card i {
  color: #d4af37; /* Royal Gold */
  font-size: 1.2rem;
}

.card-1 {
  top: 5%;
  right: 0%;
  animation-delay: 0s;
}

.card-2 {
  top: 60%;
  left: 5%;
  animation-delay: 2s;
}

.card-3 {
  bottom: 1%;
  right: 0%;
  animation-delay: 4s;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  z-index: 3;
  animation: fadeInUp 1s ease 1.5s both;
  will-change: transform, opacity;
  cursor: pointer;
}

.scroll-text {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.scroll-arrow {
  animation: bounce 2s infinite;
  will-change: transform;
}

.scroll-arrow i {
  font-size: 1.5rem;
  color: #d4af37; /* Royal Gold */
}

/* History Section */
.history-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.history-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.history-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--secondary);
}

.history-text p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.1rem;
}

.history-image {
  position: relative;
}

.history-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.milestones {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-width: 200px;
}

.milestone {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.milestone:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.milestone .year {
  background: #d4af37; /* Royal Gold */
  color: #0a0f29; /* Midnight Navy text */
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-right: 1rem;
  min-width: 60px;
  text-align: center;
}

.milestone .event {
  color: var(--text);
  font-weight: 500;
}

/* Mission Section */
.mission-section {
  padding: 5rem 0;
  background-color: var(--bg-accent);
}

.mission-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--secondary);
}

.mission-content {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.mission-content p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-card i {
  font-size: 3rem;
  color: #d4af37; /* Royal Gold */
  margin-bottom: 1.5rem;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.value-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 40px 0;
  background-color: var(--white);
}

.team-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: white;
}

.team-section .subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-member {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-member img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  background-color: #f8f9fa;
  transition: transform 0.3s ease;
}

.team-member:hover img {
  transform: scale(1.05);
}

.team-member h3 {
  font-size: 1.3rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--secondary);
}

.team-member .position {
  color: #d4af37; /* Royal Gold */
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.team-member .bio {
  color: var(--text-light);
  line-height: 1.6;
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
}

.team-member .social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0 1.5rem 1.5rem;
}

.team-member .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d4af37; /* Royal Gold */
  color: #0a0f29; /* Midnight Navy text */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.team-member .social-links a:hover {
  background: #f4d03f; /* Lighter gold on hover */
}

/* About CTA Section */
.about-cta {
  background: linear-gradient(
    135deg,
    #0a0f29 0%,
    #1a2342 100%
  ); /* Midnight Navy gradient */
  color: var(--white);
  padding: 4rem 0;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cta-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.cta-text p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.cta-button .btn-primary {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.cta-button .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Responsive Design for About Page */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .hero-visual {
    margin-top: 2rem;
  }
  body {
    overflow-x: hidden;
  }

  .about-hero {
    overflow-x: hidden;
    width: 100%;
  }
  .hero-subtitle{
    font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
  }

  .hero-visual {
    order: -1;
  }
  /* .hero-text {
    text-align: center;
  } */
  .hero-stats {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;

  }
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem;
  }
  .about-hero h1 {
    font-size: 3rem;
  }

  .history-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .milestones {
    position: static;
    transform: none;
    margin-top: 2rem;
    right: auto;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .title-highlight {
    font-size: 3.2rem;
  }

  .hero-visual {
    margin-top: 4rem;
  }

  .hero-image img {
    width: 80%;
    max-width: 300px;
  }

  .floating-elements,
  .floating-cards {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-hero {
    height: auto;
    padding: 100px 20px 60px;
    overflow: hidden;
    text-align: center;
  }

  .about-hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .about-hero .hero-text {
    order: 1;
    max-width: 100%;
  }

  .about-hero {
    font-size: 2rem;
    line-height: 1.3;
  }

  .about-hero .title-highlight {
    font-size: 2.3rem;
  }

  .about-hero .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .about-hero .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .about-hero .stat-item {
    width: 100%;
  }

  .about-hero .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .about-hero .hero-visual {
    order: 2;
    width: 100%;
  }

  .about-hero .hero-image img {
    width: 80%;
    max-width: 300px;
    height: auto;
  }

  .floating-elements,
  .floating-cards,
  .particles-container {
    display: none !important;
  }

  .scroll-indicator {
    bottom: 1rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .about-hero {
    padding: 80px 0 60px;
  }

  .hero-stats {
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
  }

  .container {
    padding: 0 1rem;
    max-width: 100vw;
    box-sizing: border-box;
  }

  .hero-content {
    max-width: 100%;
    padding: 0;
  }

  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: calc(100vw - 2rem);
  }

  .title-highlight {
    font-size: 1.9rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: calc(100vw - 2rem);
    display: block;
  }

  .title-line {
    font-size: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: calc(100vw - 2rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }

  .badge-text {
    font-size: 0.75rem;
    padding: 0.35rem 1rem;
  }

  .hero-badge {
    margin-bottom: 1.5rem;
  }

  .hero-stats {
    flex-direction: row;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .stat-item {
    flex: 1;
    min-width: 100px;
    max-width: 110px;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
  }

  .stat-number {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
  }

  .stat-label {
    font-size: 0.75rem;
    line-height: 1.2;
  }

  .hero-buttons {
    gap: 0.8rem;
  }

  .btn-glow,
  .btn-outline-glow {
    max-width: 100%;
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
    letter-spacing: 0.3px;
  }

  .hero-image img {
    width: 220px;
  }

  .image-glow {
    width: 250px;
    height: 250px;
  }

  .scroll-indicator {
    display: none;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .history-text p,
  .mission-content p {
    font-size: 1rem;
  }

  .value-card {
    padding: 2rem;
  }

  .team-member .bio {
    padding: 0 1rem 1rem;
  }

  .team-member .social-links {
    padding: 0 1rem 1rem;
  }

  .cta-text h2 {
    font-size: 1.8rem;
  }

  .cta-text p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-hero .hero-title {
    font-size: 1.6rem;
  }
  .about-hero .title-highlight {
    font-size: 2rem;
  }
}

/* Extra small devices */
@media (max-width: 400px) {
  .about-hero {
    overflow-x: hidden;
    width: 100vw;
  }

  .container {
    padding: 0 0.75rem;
    max-width: 100vw;
    /* max-height: 100vh; */
  }

  .hero-content {
    max-width: 100vw;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-badge {
    /* margin-bottom: 1rem; */
    /* display: flex;
        justify-content: center;
        align-items: center; */
    width: 0%;
    padding: 0 0.5rem;
    box-sizing: border-box;
    animation: none;
    opacity: 0.98;

    /* adjust badge internals for very small screens */
    .hero-badge .badge-text {
      font-size: 0.7rem;
      padding: 0.35rem 0.9rem;
      border-radius: 20px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 92%;
    }

    /* ensure hero spacing doesn't overflow */
    .hero-badge + .hero-title,
    .hero-badge + .hero-title ~ .hero-subtitle {
      padding-left: 0.5rem;
      padding-right: 0.5rem;
      box-sizing: border-box;
    }
  }

  .hero-title {
    font-size: 1.3rem;
    max-width: calc(100vw - 1.5rem);
  }

  .title-highlight {
    font-size: 1.7rem;
    max-width: calc(100vw - 1.5rem);
  }

  .title-line {
    font-size: 1.3rem;
    max-width: calc(100vw - 1.5rem);
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .stat-item {
    min-width: 90px;
    max-width: 95px;
    padding: 0.6rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }
}

/* About Page Hero Section - Unique Design */
.about-hero {
  height: 100vh;
  min-height: 700px;
  background: linear-gradient(
    135deg,
    #0a0f29 0%,
    #1a2342 30%,
    #0a0f29 60%,
    #1a2342 100%
  );
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 60px;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><polygon points="15,5 25,15 15,25 5,15" fill="white" opacity="0.08"/><circle cx="15" cy="15" r="2" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23about-pattern)"/></svg>');
  animation: aboutPatternMove 25s linear infinite;
}

@keyframes aboutPatternMove {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  100% {
    transform: translateX(-30px) translateY(-30px) rotate(360deg);
  }
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.about-hero .particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: linear-gradient(
    45deg,
    #d4af37,
    #f4d03f,
    #d4af37
  ); /* Royal Gold gradient */
  border-radius: 50%;
  animation: aboutFloat 10s ease-in-out infinite;
  will-change: transform;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.about-hero .particle:nth-child(1) {
  left: 5%;
  animation-delay: 0s;
  animation-duration: 12s;
}
.about-hero .particle:nth-child(2) {
  left: 15%;
  animation-delay: 1.5s;
  animation-duration: 8s;
}
.about-hero .particle:nth-child(3) {
  left: 25%;
  animation-delay: 3s;
  animation-duration: 10s;
}
.about-hero .particle:nth-child(4) {
  left: 35%;
  animation-delay: 4.5s;
  animation-duration: 9s;
}
.about-hero .particle:nth-child(5) {
  left: 45%;
  animation-delay: 6s;
  animation-duration: 11s;
}
.about-hero .particle:nth-child(6) {
  left: 55%;
  animation-delay: 7.5s;
  animation-duration: 7s;
}
.about-hero .particle:nth-child(7) {
  left: 65%;
  animation-delay: 9s;
  animation-duration: 13s;
}
.about-hero .particle:nth-child(8) {
  left: 75%;
  animation-delay: 10.5s;
  animation-duration: 8s;
}
.about-hero .particle:nth-child(9) {
  left: 85%;
  animation-delay: 12s;
  animation-duration: 10s;
}
.about-hero .particle:nth-child(10) {
  left: 95%;
  animation-delay: 13.5s;
  animation-duration: 9s;
}

@keyframes aboutFloat {
  0%,
  100% {
    transform: translateY(100vh) rotate(0deg) scale(1);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  50% {
    transform: translateY(40vh) rotate(180deg) scale(2);
    opacity: 0.9;
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg) scale(1);
    opacity: 0;
  }
}

.about-hero .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.about-hero .floating-icon {
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.1)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #d4af37; /* Royal Gold */
  backdrop-filter: blur(20px);
  border: 3px solid rgba(212, 175, 55, 0.4); /* Royal Gold */
  animation: aboutFloatIcon 15s ease-in-out infinite;
  will-change: transform;
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3); /* Royal Gold shadow */
}

.about-hero .floating-icon:nth-child(1) {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}
.about-hero .floating-icon:nth-child(2) {
  top: 25%;
  right: 12%;
  animation-delay: 3s;
}
.about-hero .floating-icon:nth-child(3) {
  top: 55%;
  left: 3%;
  animation-delay: 6s;
}
.about-hero .floating-icon:nth-child(4) {
  top: 65%;
  right: 8%;
  animation-delay: 9s;
}

@keyframes aboutFloatIcon {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  20% {
    transform: translateY(-30px) rotate(45deg) scale(1.2);
  }
  40% {
    transform: translateY(-20px) rotate(90deg) scale(0.8);
  }
  60% {
    transform: translateY(-35px) rotate(135deg) scale(1.3);
  }
  80% {
    transform: translateY(-10px) rotate(270deg) scale(0.9);
  }
}

.about-hero {
  background: linear-gradient(
    45deg,
    #d4af37,
    #f4d03f,
    #d4af37,
    #f4d03f
  ); /* Royal Gold gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  font-size: 5rem;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  animation: aboutGlow 4s ease-in-out infinite alternate;
  will-change: text-shadow;
}

@keyframes aboutGlow {
  from {
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  }
  to {
    text-shadow: 0 0 60px rgba(255, 215, 0, 0.8),
      0 0 80px rgba(212, 175, 55, 0.5), 0 0 100px rgba(212, 175, 55, 0.3); /* Royal Gold glow */
  }
}

.about-hero .floating-card {
  position: absolute;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.08)
  );
  backdrop-filter: blur(20px);
  border: 2px solid rgba(212, 175, 55, 0.4); /* Royal Gold */
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
  animation: aboutFloatCard 18s ease-in-out infinite;
  will-change: transform;
}

@keyframes aboutFloatCard {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-25px) rotate(5deg) scale(1.1);
  }
  50% {
    transform: translateY(-15px) rotate(-3deg) scale(0.9);
  }
  75% {
    transform: translateY(-30px) rotate(8deg) scale(1.15);
  }
}

.about-hero .container {
  position: relative;
  z-index: 3;
}

.about-hero .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  color: var(--white);
}

.about-hero .hero-badge {
  margin-bottom: 2rem;
  animation: slideInLeft 1s ease 0.5s both;
  will-change: transform, opacity;
}

.about-hero .badge-text {
  background: linear-gradient(
    45deg,
    #d4af37,
    #f4d03f
  ); /* Royal Gold gradient */
  color: #0a0f29; /* Midnight Navy text */
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  /* /* box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); /* Royal Gold shadow  */
  animation: pulse 2s infinite;
  will-change: transform;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 2rem;
  animation: slideInLeft 1s ease 0.7s both;
  will-change: transform, opacity;
}

.about-hero {
  display: block;
  color: rgba(255, 255, 255, 0.9);
}

.about-hero .hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  animation: slideInLeft 1s ease 0.9s both;
  will-change: transform, opacity;
}

.about-hero .highlight {
  color: #d4af37; /* Royal Gold */
  font-weight: 600;
}

.about-hero .typing-text::after {
  content: "|";
  animation: blink 1s infinite;
}

.about-hero .hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  animation: slideInLeft 1s ease 1.1s both;
  will-change: transform, opacity;
}

.about-hero .stat-item {
  text-align: center;
}

.about-hero .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #d4af37; /* Royal Gold */
  margin-bottom: 0.5rem;
  will-change: transform;
}
.about-hero .stat-label {
  font-size: 0.9rem;
  color: rgba(10, 10, 10, 0.8);
  font-weight: 500;
}

.about-hero .hero-buttons {
  display: flex;
  gap: 1.5rem;
  animation: slideInLeft 1s ease 1.3s both;
  will-change: transform, opacity;
}

.about-hero .btn-glow {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    45deg,
    #d4af37,
    #f4d03f
  ); /* Royal Gold gradient */
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, box-shadow;
}

.about-hero .btn-glow::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-hero .btn-glow:hover::before {
  left: 100%;
}

.about-hero .btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6); /* Royal Gold shadow */
}

.about-hero .btn-outline-glow {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, box-shadow, background;
}

.about-hero .btn-outline-glow:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.about-hero .btn-glow i,
.about-hero .btn-outline-glow i {
  margin-left: 0.5rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.about-hero .btn-glow:hover i,
.about-hero .btn-outline-glow:hover i {
  transform: translateX(5px);
}

.about-hero .hero-visual {
  position: relative;
  animation: slideInRight 1s ease 0.5s both;
  will-change: transform, opacity;
}

.about-hero .hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-hero .hero-image {
  position: relative;
  z-index: 2;
}

.about-hero .hero-image img {
  width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: floatImage 6s ease-in-out infinite;
  will-change: transform;
}

.about-hero .image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.2) 0%,
    /* Royal Gold */ transparent 70%
  );
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
  z-index: 1;
  will-change: transform, opacity;
}

.about-hero .floating-cards {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.about-hero .floating-card i {
  color: #d4af37; /* Royal Gold */
  font-size: 1.2rem;
}

.about-hero .card-1 {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.about-hero .card-2 {
  top: 60%;
  left: 5%;
  animation-delay: 2s;
}

.about-hero .card-3 {
  bottom: 20%;
  right: 5%;
  animation-delay: 4s;
}

.about-hero .scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  z-index: 3;
  animation: fadeInUp 1s ease 1.5s both;
  will-change: transform, opacity;
}

.about-hero .scroll-text {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.about-hero .scroll-arrow {
  animation: bounce 2s infinite;
  will-change: transform;
}

.scroll-arrow i {
  font-size: 1.5rem;
  color: #d4af37; /* Royal Gold */
}
/* ///////////////////////////////////////service page why choose us css////////////////////////////// */
.why-choose-us {
  /* padding: 5rem 0;  */
  padding-left: 20px;
  padding-right: 20px;
  background-color: #f5f5f5; /* Soft White */
  /* background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); */
}

.why-content {
  /* display: grid;  */
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.why-benefits h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--secondary);
  text-align: center;
  padding: 5px;
}

/*.benefit-item {
  /* text-align: center;  */
/*display: grid;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.benefit-item i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.benefit-item h3 {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.benefit-item p {
  color: var(--text-light);
  line-height: 1.6;
}*/
/*.services-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px;
  flex-wrap: wrap; /* responsive 
}

.service-box {
  width: 45%;
  min-width: 320px;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.benefit-item {
  margin-bottom: 25px;
}

.benefit-item i {
  font-size: 22px;
  margin-right: 10px;
  color: #ff4f8b;
}*/
.seo-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 4rem;
  color: #000;
}

/* Main two-column wrapper */
.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 40px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

/* Equal width columns */
.seo-column {
  display: contents;
}

/* 3D cards (same height + alignment) */
.seo-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12), 0 3px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
  border: 1px solid #d8ae47;

  /* equal height cards */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.seo-card:hover {
  transform: translateY(-5px);
  /* background-color: rgb(254, 244, 186); */
}

.seo-card i {
  font-size: 26px;
  color: #d4af37;
  margin-bottom: 10px;
}

.seo-card h3 {
  margin: 0 0 8px 0;
  color: #000;
}

.seo-card p {
  margin: 0;
}

.seo-card4 {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12), 0 3px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
  border: 1px solid #d8ae47;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.pm {
  color: #000;
  margin: 0 0 8px 0;
}

.seo-card4:hover {
  transform: translateY(-5px);
  /* background-color: rgb(254, 244, 186); */
}

@media (max-width: 768px) {
  .seo-grid {
    grid-template-columns: 1fr;
  }
}

.why-details h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  /* color: var(--secondary); */
  color: #000;
  text-align: center;
}

.why-details p {
  margin-bottom: 1.5px;
  color: var(--text-light);
  line-height: 1.8;
  text-align: center;
}

.mini-bundles {
  margin-bottom: 1rem;
}

/* p{
  font-weight: bold;
}  */
.section-subtitle {
  font-weight: bold;
}

.btn-secondary {
  background-color: #d8ae47;
  font-size: larger;
  font-weight: 900;
  height: 40px;
  width: 140px;
  text-align: center;
  padding: 0.4rem;
}

.btn-secondary:hover {
  color: white;
  font-weight: 800;
}
