:root {
  /* Corporate Color Palette */
  --primary: #004481; /* Deep Corporate Blue */
  --primary-light: #005bb5;
  --primary-dark: #002d56;

  --accent: #f05d23; /* Energetic Orange */
  --accent-hover: #d14915;

  /* New UI Colors */
  --purple-light: #9a86fd;
  --teal-light: #4bc9c0;
  --yellow-light: #f7b731;
  --red-dark: #b30000;

  --bg-main: #ffffff;
  --bg-light: #f4f7f9;
  --bg-dark: #121212; /* Darker for Straive look */

  --text-main: #333333;
  --text-muted: #666666;
  --text-light: #ffffff;

  --border-color: #e1e5eb;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);

  /* Typography */
  --font-heading: "Roboto", sans-serif;
  --font-body: "Inter", sans-serif;

  --transition: all 0.3s ease;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.text-center {
  text-align: center;
}
.text-white {
  color: #ffffff !important;
}
.bg-dark {
  background-color: var(--bg-dark);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
}

/* Sidebar & Navigation */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -350px;
  width: 350px;
  height: 100%;
  background: #fff;
  z-index: 2000;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
}

.sidebar.active {
  right: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-logo {
  height: 40px;
}

.close-sidebar {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-muted);
}

.sidebar-content {
  padding: 2rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-nav a {
  font-size: 1.2rem;
  font-family: var(--font-heading);
  color: var(--text-main);
  border-bottom: 1px solid var(--bg-light);
  padding-bottom: 0.5rem;
}

.sidebar-social {
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.sidebar-social h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.social-icons a {
  margin-right: 15px;
  font-weight: bold;
  color: var(--primary);
}

/* Navbar */
.navbar {
  background: #fff;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

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

.brand-logo {
  height: 45px;
  object-fit: contain;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.social-mini {
  display: flex;
  gap: 1rem;
}
.social-mini a {
  color: var(--text-main);
}

.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-main);
}

/* Quick Services (Colorful Row) */
.quick-services {
  display: flex;
  width: 100%;
}

.quick-service-btn {
  align-items: center;
  gap: 15px;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.3s;
}

.quick-service-btn:hover {
  opacity: 0.9;
}
.bg-purple {
  background-color: var(--purple-light);
}
.bg-teal {
  background-color: var(--teal-light);
}
.bg-yellow {
  background-color: var(--yellow-light);
  color: var(--text-main);
}
.bg-yellow svg {
  stroke: var(--text-main);
}

/* Transforming Section */
.transform-section {
  padding: 6rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sub-heading {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 1rem;
}

.transform-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.transform-content > p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 68, 129, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.feature-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.feature-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.transform-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

/* Explore Capabilities (Straive Style Dark) */
.capabilities-section {
  padding: 6rem 0;
}

.capabilities-section .section-title {
  margin-bottom: 4rem;
}

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

.cap-card {
  background: #1a1a1a;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: transform 0.3s;
}
.cap-card:hover {
  transform: translateY(-10px);
}

.cap-icon-box {
  height: 80px;
  margin-bottom: 2rem;
}

.cap-card h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.cap-card p {
  color: #a0aec0;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.btn-neon {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}
.btn-neon:hover {
  background: var(--accent-hover);
}

/* Areas of Expertise (Aptara Style) */
.expertise-section {
  padding: 6rem 2rem;
}

.expertise-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.btn-outline-red {
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.btn-outline-red:hover {
  background: var(--primary);
  color: #fff;
}

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

.expert-card {
  background: #fff;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.expert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.expert-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.expert-content {
  padding: 2rem;
}

.expert-content h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  min-height: 3rem;
}

.red-link {
  color: var(--red-dark);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.red-link:hover {
  color: #000;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: #a0aec0;
  padding-top: 5rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

.footer-logo {
  max-width: 200px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-brand-text {
  color: #fff;
  margin-bottom: 1rem;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-col a,
.footer-col p {
  display: block;
  color: #a0aec0;
  margin-bottom: 0.8rem;
}

.footer-col a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.4);
  padding: 1.5rem 0;
}

.bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.legal-links a {
  margin-left: 1.5rem;
  color: #a0aec0;
}
.legal-links a:hover {
  color: #fff;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .transform-section {
    grid-template-columns: 1fr;
  }
  .expertise-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .quick-services {
    flex-direction: column;
  }
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  .expertise-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .bottom-flex {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
/* Main Desktop Navigation */
.main-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.main-nav a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

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

@media (max-width: 991px) {
  .d-none.d-lg-flex {
    display: none !important;
  }
}
/* Header Social Icons Reference Style */
.social-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #333;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s;
}
.social-circle:hover {
  background-color: var(--primary);
  color: #fff;
}
.nav-right.d-flex {
  display: flex;
  align-items: center;
}
/* Dropdown Hover */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
.gap-2 {
  gap: 0.5rem;
}
.me-3 {
  margin-right: 1rem;
}
/* Quick Services Overlap */
.quick-services {
  margin-top: -60px;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.quick-service-btn {
  align-items: center;
  gap: 15px;
  padding: 2rem;
  color: white;
  font-weight: 600;
}

/* NEW HOMEPAGE REDESIGN CSS */
.hero-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 120px 0;
  min-height: 90vh;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 34, 68, 0.95) 0%,
    rgba(0, 34, 68, 0.5) 100%
  );
  z-index: 1;
}

/* Quick Services Overlap */
.quick-services {
  margin-top: -80px;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.quick-service-btn {
  padding: 2.5rem 2rem;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s;
}
.quick-service-btn:hover {
  transform: translateY(-5px);
}
.quick-service-btn svg {
  margin-bottom: 1rem;
  width: 36px;
  height: 36px;
}

/* Explore Capabilities - Dark Card */
.dark-card {
  background-color: #111;
  border: 1px solid #333;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.dark-card:hover {
  transform: translateY(-5px);
  border-color: #f05d23;
}
.dark-card h3 {
  color: #fff;
  margin-top: 1.5rem;
  font-size: 1.4rem;
}
.dark-card p {
  color: #aaa;
  flex-grow: 1;
}
.dark-card .btn-neon {
  align-self: flex-start;
}

/* Primary Blue Accent Icons */
.orange-accent svg {
  stroke: var(--primary);
}
.btn-neon {
  background-color: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 15px;
  transition: all 0.3s ease;
}
.btn-neon:hover {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
  color: #fff;
}

/* Clean Corporate Card (Our Expertise) */
.clean-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.clean-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.clean-card .expert-content {
  padding: 1.5rem;
}
.clean-card h3 {
  .fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Responsive */
  @media (max-width: 991px) {
    .transform-section {
      grid-template-columns: 1fr;
    }
    .expertise-grid {
      grid-template-columns: 1fr 1fr;
    }
    .footer-container {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 768px) {
    .quick-services {
      flex-direction: column;
    }
    .expertise-grid {
      grid-template-columns: 1fr;
    }
    .expertise-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-container {
      grid-template-columns: 1fr;
    }
    .bottom-flex {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
  }
  /* Main Desktop Navigation */
  .main-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }

  .main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
  }

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

  /* Hover Dropdown for Desktop */
  @media (min-width: 992px) {
    .main-nav .dropdown:hover .dropdown-menu {
      display: block;
      margin-top: 0;
    }
    .main-nav .dropdown-menu {
      top: 100%; /* Position exactly below */
    }
  }

  @media (max-width: 991px) {
    .d-none.d-lg-flex {
      display: none !important;
    }
  }
  /* Header Social Icons Reference Style */
  .social-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
  }
  .social-circle:hover {
    background-color: var(--primary);
    color: #fff;
  }
  .nav-right.d-flex {
    display: flex;
    align-items: center;
  }
  .gap-2 {
    gap: 0.5rem;
  }
  .me-3 {
    margin-right: 1rem;
  }
  /* Quick Services Overlap */
  .quick-services {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  .quick-service-btn {
    align-items: center;
    gap: 15px;
    padding: 2rem;
    color: white;
    font-weight: 600;
  }

  /* NEW HOMEPAGE REDESIGN CSS */
  .hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 120px 0;
    min-height: 90vh;
  }
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      90deg,
      rgba(0, 34, 68, 0.95) 0%,
      rgba(0, 34, 68, 0.5) 100%
    );
    z-index: 1;
  }

  /* Quick Services Overlap */
  .quick-services {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .quick-service-btn {
    padding: 2.5rem 2rem;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s;
  }
  .quick-service-btn:hover {
    transform: translateY(-5px);
  }
  .quick-service-btn svg {
    margin-bottom: 1rem;
    width: 36px;
    height: 36px;
  }

  /* Explore Capabilities - Dark Card */
  .dark-card {
    background-color: #111;
    border: 1px solid #333;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    transition:
      transform 0.3s ease,
      border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .dark-card:hover {
    transform: translateY(-5px);
    border-color: #f05d23;
  }
  .dark-card h3 {
    color: #fff;
    margin-top: 1.5rem;
    font-size: 1.4rem;
  }
  .dark-card p {
    color: #aaa;
    flex-grow: 1;
  }
  .dark-card .btn-neon {
    align-self: flex-start;
  }

  /* Orange Accent Icons */
  .orange-accent svg {
    stroke: #f05d23;
  }
  .btn-neon {
    background-color: #f05d23;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 15px;
  }
  .btn-neon:hover {
    background-color: #d04d1c;
    color: #fff;
  }

  /* Clean Corporate Card (Our Expertise) */
  .clean-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  .clean-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .clean-card .expert-content {
    padding: 1.5rem;
  }
  .clean-card h3 {
    font-size: 1.25rem;
    color: #002244;
    margin-bottom: 1rem;
  }

  /* Impact & Testimonials */
  .impact-stat {
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    transition:
      transform 0.3s ease,
      background 0.3s ease;
  }
  .impact-stat:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
  }
  .testimonial-card {
    border-left: 4px solid #004481;
  }

  /* PREMIUM DESIGN IMPROVEMENTS */

  /* Hero Enhancements */
  .hero-content .badge {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 68, 129, 0.4);
  }
  .hero-content h1 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
  }
  .hero-buttons .btn-primary {
    background: linear-gradient(135deg, #004481 0%, #0066cc 100%);
    border: none;
    box-shadow: 0 5px 15px rgba(0, 68, 129, 0.4);
    transition:
      transform 0.3s,
      box-shadow 0.3s;
  }
  .hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 68, 129, 0.6);
  }

  /* Testimonials Enhancements */
  .testimonial-card {
    position: relative;
    border: none;
    border-top: 4px solid #f05d23;
    border-radius: 12px;
    padding: 2.5rem !important;
    transition:
      transform 0.3s,
      box-shadow 0.3s;
    z-index: 1;
  }
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
  }
  .testimonial-card::before {
    content: "\f10d"; /* FontAwesome quote-left */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: rgba(240, 93, 35, 0.1);
    z-index: -1;
  }
  .testimonial-card p {
    font-style: italic;
    color: #555;
    line-height: 1.8;
  }

  /* CTA Enhancements */
  .cta-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0 !important;
  }
  .cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 60%
    );
    z-index: 0;
  }
  .cta-section .container {
    position: relative;
    z-index: 1;
  }
  .cta-section .btn-light {
    color: #004481;
    border-radius: 30px;
    transition: all 0.3s;
  }
  .cta-section .btn-light:hover {
    background: #f05d23;
    color: white;
    transform: scale(1.05);
  }

  /* Footer Enhancements */
  .footer {
    background: #001224 !important; /* Extremely dark blue */
    border-top: 5px solid #f05d23;
    font-size: 0.95rem;
  }
  .footer h5 {
    color: #fff;
    letter-spacing: 1px;
    font-size: 1.1rem;
  }
  .footer .footer-link {
    transition:
      color 0.3s,
      padding-left 0.3s;
    display: inline-block;
  }
  .footer .footer-link:hover {
    color: #f05d23 !important;
    padding-left: 5px;
  }
  .footer .social-circle {
    transition:
      background 0.3s,
      transform 0.3s;
  }
  .footer .social-circle:hover {
    background: #f05d23 !important;
    transform: translateY(-3px);
  }

  /* NEW DESIGN UPGRADES */

  /* CTA Section Pattern & Buttons */
  .cta-section {
    position: relative;
    background-image:
      radial-gradient(
        circle at 100% 100%,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 0% 0%,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%
      );
  }
  .btn-cta {
    background-color: #f05d23;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
  }
  .btn-cta:hover {
    background-color: #d04d1c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(240, 93, 35, 0.4);
  }

  /* Hero Badge */
  .hero-badge {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    letter-spacing: 1px;
    font-weight: 500;
  }

  /* Testimonial Watermark & Styling */
  .testimonial-card {
    position: relative;
    overflow: hidden;
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
  }
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
  }
  .testimonial-card::before {
    content: "\f10d"; /* FontAwesome quote-left */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 6rem;
    color: rgba(0, 68, 129, 0.05);
    z-index: 0;
  }
  .testimonial-card > * {
    position: relative;
    z-index: 1;
  }

  /* Footer Fixes */
  .footer-link {
    transition: color 0.3s ease;
  }
  .footer-link:hover {
    color: #f05d23 !important;
  }
  .social-circle {
    transition:
      background-color 0.3s ease,
      color 0.3s ease,
      transform 0.3s ease;
  }
  .social-circle:hover {
    background-color: #f05d23 !important;
    color: #fff !important;
    transform: translateY(-3px);
  }
  .footer-border {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Glass Panel for Impact Stats */
  .glass-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  .glass-panel:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
  }

  /* Quick Services Overlap Redesign */
  .quick-services {
    margin-top: -100px;
    position: relative;
    z-index: 10;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    overflow: hidden;
  }
  .quick-service-btn {
    padding: 3rem 2rem;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition:
      transform 0.3s,
      background-color 0.3s;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  .quick-service-btn:last-child {
    border-right: none;
  }
  .quick-service-btn:hover {
    transform: translateY(-5px);
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  .bg-purple {
    background-color: #6f42c1;
  }
  .bg-teal {
    background-color: #20c997;
  }
  .bg-yellow {
    background-color: #f0ad4e;
  }

  /* Our Expertise Hover Effect */
  .clean-card {
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  .clean-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  .clean-card img {
    transition: transform 0.5s ease;
  }
  .clean-card:hover img {
    transform: scale(1.05);
  }
  .expert-card {
    overflow: hidden;
  }
}
