  :root {
      --primary-blue: #000E5B;
      --secondary-blue: #202C6F;
      --dark-green: #1a472a;
      --light-green: #2e8b57;
  }

  body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      overflow-x: hidden;
      padding-top: 80px;
      /* To account for fixed navbar */
  }

  /* Navigation */
  .navbar {
      padding: 15px 0;
      transition: all 0.4s ease;
      background: var(--light-green) !important;
  }

  .navbar-brand {
      font-weight: 700;
      font-size: 28px;
      color: white;
      display: flex;
      align-items: center;
  }

  .navbar-brand img {
      transition: all 0.4s ease;
  }

  .nav-link {
      font-weight: 500;
      margin: 0 8px;
      transition: all 0.3s;
      color: white;
      position: relative;
      padding: 8px 12px !important;
      border-radius: 8px;
  }

  .nav-link:hover,
  .nav-link:focus {
      color: var(--dark-green);
  }

  .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 50%;
      background: linear-gradient(90deg, var(--light-green), var(--secondary-blue));
      transition: all 0.3s ease;
      transform: translateX(-50%);
  }

  .nav-link:hover::after {
      width: 80%;
  }

  .nav-link.active {
      color: var(--dark-green);
      font-weight: 600;
  }

  .nav-link.active::after {
      width: 80%;
  }

  /* Dropdown Menu */
  .dropdown-menu {
      border: none;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      padding: 15px 0;
      margin-top: 10px;
      transition: all 0.3s ease;
      border-left: 4px solid var(--light-green);
      animation: fadeIn 0.3s ease;
      background: rgb(0, 0, 0);
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(10px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .dropdown-item {
      padding: 10px 20px;
      transition: all 0.2s ease;
      position: relative;
      font-weight: 500;
      color: var(--primary-blue);
      display: flex;
      align-items: center;
  }

  .dropdown-item:hover {
      background: var(--light-green);
      color: white;
      padding-left: 25px;
  }

  .dropdown-item::before {
      content: '';
      position: absolute;
      left: 10px;
      top: 50%;
      transform: translateY(-50%);
      width: 6px;
      height: 6px;
      background: var(--dark-green);
      border-radius: 50%;
      opacity: 0;
      transition: all 0.2s ease;
  }

  .dropdown-item:hover::before {
      opacity: 1;
      left: 15px;
  }

  .nav-item.dropdown:hover .dropdown-menu {
      display: block;
      margin-top: 0;
  }

  /* Custom Toggler */
  .custom-toggler {
      border: none;
      background: transparent;
      outline: none;
      padding: 6px;
      cursor: pointer;
      transition: transform 0.3s ease-in-out;
  }

  .custom-toggler:hover {
      transform: scale(1.1);
  }

  .toggler-icon {
      display: block;
      width: 28px;
      height: 3px;
      background-color: white;
      margin: 6px 0;
      border-radius: 50px;
      transition: all 0.4s ease;
      box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  }

  .custom-toggler:not(.collapsed) .top-bar {
      transform: rotate(45deg) translate(6px, 6px);
  }

  .custom-toggler:not(.collapsed) .middle-bar {
      opacity: 0;
      transform: translateX(-20px);
  }

  .custom-toggler:not(.collapsed) .bottom-bar {
      transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Navbar on Scroll (Capsule Effect) */
  .navbar.scrolled {
      width: 90%;
      margin: 15px auto;
      border-radius: 50px;
      padding: 8px 25px;
      background: var(--primary-blue) !important;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(10px);
  }

  .navbar.scrolled .nav-link {
      color: var(--light-green);
  }

  .navbar.scrolled .nav-link:hover {
      color: var(--dark-green);
  }

  .navbar.scrolled .navbar-brand {
      color: var(--primary-blue);
  }

  .navbar.scrolled .navbar-brand img {
      transform: scale(0.9);
  }

  .navbar.scrolled .btn-primary1 {
      background-color: var(--secondary-blue);
      color: rgb(255, 255, 255);
  }

  .navbar.scrolled .btn-primary1:hover {
      background-color: var(--light-green);
      color: white;
  }

  /* Responsive Adjustments */
  @media (max-width: 991.98px) {
      .navbar.scrolled {
          width: 95%;
          margin: 10px auto;
      }

      .navbar-collapse {
          background: white;
          border-radius: 15px;
          padding: 10px;
          margin-top: 10px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }

      .nav-link {
          color: var(--primary-blue);
      }

      .dropdown-menu {
          margin-left: 15px;
          width: 90%;
      }
  }

  .btn-primary1 {
      background-color: var(--primary-blue);
      border: none;
      padding: 12px 30px;
      border-radius: 8px;
      font-weight: 600;
      transition: all 0.3s ease;
      color: white;
      cursor: pointer;
      display: inline-block;
  }

  .btn-primary1:hover {
      background-color: var(--secondary-blue);
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  /* Hero Section */
  .hero-section {
      background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
      color: white;
      padding: 120px 0;
      position: relative;
      overflow: hidden;
      margin-top: -80px;
      /* Offset for navbar */
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
  }

  .hero-section::before {
      content: '';
      position: absolute;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
      top: -50%;
      left: -50%;
      animation: pulse 15s infinite linear;
      z-index: 0;
  }

  @keyframes pulse {
      0% {
          transform: rotate(0deg);
      }

      100% {
          transform: rotate(360deg);
      }
  }

  .hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 0 20px;
  }

  .hero-content h1 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.2;
  }

  .hero-content p {
      font-size: clamp(1rem, 2.5vw, 1.2rem);
      margin-bottom: 30px;
      color: rgba(255, 255, 255, 0.9);
  }

  .contact-form {
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(12px);
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      max-width: 600px;
      width: 90%;
      margin: 0 auto;
      position: relative;
      z-index: 2;
  }

  .form-control {
      background: rgba(255, 255, 255, 0.9);
      border: none;
      border-radius: 8px;
      padding: 14px 16px;
      margin-bottom: 15px;
      width: 100%;
      font-size: 1rem;
  }

  .btn-primary {
      background-color: var(--light-green);
      border: none;
      padding: 12px 30px;
      border-radius: 8px;
      font-weight: 600;
      transition: all 0.3s ease;
      color: white;
      cursor: pointer;
      display: inline-block;
  }

  .btn-primary:hover {
      background-color: var(--dark-green);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  /* ---------- RESPONSIVE DESIGN ---------- */

  /* Tablets */
  @media (max-width: 992px) {
      .hero-section {
          padding: 100px 0;
      }

      .hero-content {
          padding: 0 30px;
      }

      .contact-form {
          padding: 25px;
      }
  }

  /* Mobile Landscape */
  @media (max-width: 768px) {
      .hero-section {
          padding: 80px 0;
      }

      .hero-content h1 {
          font-size: 2rem;
      }

      .hero-content p {
          font-size: 1rem;
      }

      .contact-form {
          width: 95%;
      }
  }

  /* Mobile Portrait (small screens) */
  @media (max-width: 480px) {
      .hero-section {
          padding: 70px 0;
      }

      .hero-content h1 {
          font-size: 1.7rem;
      }

      .hero-content p {
          font-size: 0.95rem;
          margin-bottom: 25px;
      }

      .contact-form {
          padding: 20px;
          border-radius: 10px;
      }

      .btn-primary {
          width: 100%;
          padding: 14px 0;
          font-size: 1rem;
      }
  }


  /* Section Styling */
  /* ---------- SECTION STYLING ---------- */
  .section-padding {
      padding: 100px 0;
      position: relative;
      background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
      text-align: center;
      z-index: 1;
  }

  .section-padding::before {
      content: '';
      position: absolute;
      top: -80px;
      left: -80px;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(0, 174, 255, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      z-index: -1;
  }

  .section-padding::after {
      content: '';
      position: absolute;
      bottom: -80px;
      right: -80px;
      width: 250px;
      height: 250px;
      background: radial-gradient(circle, rgba(61, 207, 182, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      z-index: -1;
  }


  /* ---------- SECTION TITLE ---------- */
  .section-title {
      position: relative;
      display: inline-block;
      font-weight: 800;
      font-size: 2.5rem;
      color: var(--primary-blue);
      margin-bottom: 60px;
      text-transform: capitalize;
      letter-spacing: 1px;
      background: linear-gradient(135deg, var(--primary-blue), var(--light-green));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      transition: all 0.4s ease;
      z-index: 1;
      text-align: center;
  }

  /* Animated gradient underline */
  .section-title::after {
      content: '';
      position: absolute;
      width: 100px;
      height: 4px;
      background: linear-gradient(135deg, var(--light-green), var(--primary-blue));
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 3px;
      transition: width 0.4s ease;
  }

  /* Hover effects */
  .section-title:hover::after {
      width: 140px;
  }

  .section-title:hover {
      transform: translateY(-3px);
  }

  /* About Section */
  .about-section {
      background-color: #f8f9fa;
      padding: 100px 0;
      position: relative;
      overflow: hidden;
  }

  .about-content {
      max-width: 600px;
      margin: 0 auto;
      text-align: left;
  }

  .about-content h2 {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 700;
      color: var(--primary-blue, #0d47a1);
      margin-bottom: 20px;
      position: relative;
  }

  .about-content p {
      font-size: clamp(1rem, 1.5vw, 1.1rem);
      color: #555;
      margin-bottom: 15px;
      line-height: 1.7;
  }

  .about-content .btn-primary {
      background-color: var(--accent, #007bff);
      border: none;
      padding: 12px 30px;
      border-radius: 8px;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-block;
      color: #fff;
  }

  .about-content .btn-primary:hover {
      background-color: var(--dark-green, #0056b3);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }

  .about-image img {
      border-radius: 15px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      transition: transform 0.4s ease;
  }

  .about-image img:hover {
      transform: scale(1.03);
  }

  /* ---------- RESPONSIVE DESIGN ---------- */

  /* Medium screens (tablets) */
  @media (max-width: 992px) {
      .about-section {
          padding: 80px 0;
      }

      .about-content {
          text-align: center;
          margin-top: 30px;
      }

      .about-content h2 {
          font-size: 2rem;
      }
  }

  /* Small screens (mobile landscape) */
  @media (max-width: 768px) {
      .about-section {
          padding: 70px 0;
      }

      .about-content h2 {
          font-size: 1.8rem;
      }

      .about-content p {
          font-size: 1rem;
      }

      .about-content .btn-primary {
          width: 100%;
      }
  }

  /* Extra small screens (mobile portrait) */
  @media (max-width: 480px) {
      .about-section {
          padding: 60px 0;
      }

      .about-content h2 {
          font-size: 1.6rem;
      }

      .about-content p {
          font-size: 0.95rem;
      }

      .about-image img {
          border-radius: 10px;
      }
  }

  /* ---------- SERVICES SECTION ---------- */
  .section-padding {
      padding: 100px 0;
      position: relative;
      background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
      overflow: hidden;
  }

  .section-padding::before,
  .section-padding::after {
      content: "";
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      filter: blur(100px);
      opacity: 0.15;
      z-index: 0;
  }

  .section-padding::before {
      top: -100px;
      left: -100px;
      background: var(--primary-blue);
  }

  .section-padding::after {
      bottom: -100px;
      right: -100px;
      background: var(--light-green);
  }

  /* ---------- SERVICE CARD ---------- */
  .service-card {
      background: #ffffff;
      border-radius: 16px;
      padding: 40px 30px;
      text-align: center;
      position: relative;
      z-index: 1;
      box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
      transition: all 0.4s ease;
      overflow: hidden;
      border: none;
      height: 100%;
  }

  .service-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--primary-blue), var(--light-green));
      opacity: 0;
      z-index: -1;
      transition: opacity 0.4s ease;
      border-radius: 16px;
  }

  .service-card:hover::before {
      opacity: 0.9;
  }

  .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }

.service-icon {
    font-size: 3rem;
    margin-bottom: 22px;
    color: var(--primary-blue);
    background: linear-gradient(135deg, var(--primary-blue), var(--light-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(.4,1.4,.6,1), filter 0.4s;
    filter: drop-shadow(0 2px 8px rgba(46,139,87,0.12));
}
.service-card:hover .service-icon {
    transform: scale(1.15) rotate(-6deg);
    filter: drop-shadow(0 6px 18px rgba(46,139,87,0.18));
    background: linear-gradient(135deg, var(--light-green), #fff 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

  .service-card h4 {
      font-weight: 700;
      font-size: 1.4rem;
      margin-bottom: 15px;
      color: var(--primary-blue);
      transition: color 0.4s ease;
  }

  .service-card p {
      color: #666;
      font-size: 1rem;
      line-height: 1.6;
      transition: color 0.4s ease;
  }

  .service-card:hover h4,
  .service-card:hover p {
      color: white;
  }

  /* ---------- BUTTON ---------- */
  .btn-primary.btn-lg {
      background: linear-gradient(135deg, var(--light-green), var(--dark-green));
      border: none;
      border-radius: 10px;
      padding: 14px 40px;
      font-size: 1.1rem;
      font-weight: 600;
      transition: all 0.4s ease;
  }

  .btn-primary.btn-lg:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  /* ---------- RESPONSIVE DESIGN ---------- */

  /* For large tablets and small laptops (max-width: 1200px) */
  @media (max-width: 1200px) {
      .section-padding {
          padding: 90px 0;
      }

      .service-card {
          padding: 35px 25px;
      }

      .service-icon {
          font-size: 2.7rem;
      }
  }

  /* For tablets (max-width: 992px) */
  @media (max-width: 992px) {
      .section-padding {
          padding: 80px 0;
      }

      .service-card {
          padding: 30px 20px;
          margin-bottom: 30px;
      }

      .service-icon {
          font-size: 2.5rem;
      }

      .service-card h4 {
          font-size: 1.3rem;
      }

      .service-card p {
          font-size: 0.95rem;
      }
  }

  /* For mobile landscape (max-width: 768px) */
  @media (max-width: 768px) {
      .section-padding {
          padding: 70px 0;
      }

      .service-card {
          padding: 28px 20px;
      }

      .service-icon {
          font-size: 2.2rem;
      }

      .service-card h4 {
          font-size: 1.2rem;
      }

      .service-card p {
          font-size: 0.95rem;
      }

      .btn-primary.btn-lg {
          width: 100%;
          font-size: 1rem;
      }
  }

  /* For small mobile screens (max-width: 576px) */
  @media (max-width: 576px) {
      .section-padding {
          padding: 60px 0;
      }

      .service-card {
          padding: 25px 18px;
          border-radius: 12px;
      }

      .service-icon {
          font-size: 2rem;
          margin-bottom: 15px;
      }

      .service-card h4 {
          font-size: 1.1rem;
      }

      .service-card p {
          font-size: 0.9rem;
          line-height: 1.5;
      }

      .btn-primary.btn-lg {
          padding: 12px 20px;
      }
  }

  /* For extra-small screens (max-width: 400px) */
  @media (max-width: 400px) {
      .section-padding {
          padding: 50px 0;
      }

      .service-icon {
          font-size: 1.8rem;
      }

      .service-card h4 {
          font-size: 1rem;
      }

      .service-card p {
          font-size: 0.88rem;
      }
  }

  /* ---------- WHY CHOOSE SECTION ---------- */
  .section-padding.bg-light {
      background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
      position: relative;
      overflow: hidden;
      padding: 100px 0;
  }

  /* Soft gradient glows */
  .section-padding.bg-light::before {
      content: '';
      position: absolute;
      width: 400px;
      height: 400px;
      top: -100px;
      left: -150px;
      border-radius: 50%;
      background: var(--primary-blue);
      filter: blur(120px);
      opacity: 0.1;
      z-index: 0;
  }

  .section-padding.bg-light::after {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      bottom: -100px;
      right: -150px;
      border-radius: 50%;
      background: var(--light-green);
      filter: blur(100px);
      opacity: 0.12;
      z-index: 0;
  }

  /* ---------- IMAGE STYLING ---------- */
  .why-choose-img {
      border-radius: 18px;
      box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
      transition: all 0.5s ease;
      transform: scale(1);
      width: 100%;
      height: auto;
      z-index: 1;
      position: relative;
  }

  .why-choose-img:hover {
      transform: scale(1.03);
      box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  }

  /* ---------- ACCORDION ---------- */
  .accordion-item {
      border: none;
      margin-bottom: 15px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      background: #fff;
      transition: all 0.3s ease;
      z-index: 1;
      position: relative;
  }

  .accordion-item:hover {
      box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
      transform: translateY(-3px);
  }

  /* Accordion Buttons */
  .accordion-button {
      background-color: #ffffff;
      color: var(--primary-blue);
      font-weight: 600;
      font-size: 1.05rem;
      padding: 18px 22px;
      border: none;
      transition: all 0.3s ease;
  }

  .accordion-button:focus {
      box-shadow: none;
  }

  .accordion-button:not(.collapsed) {
      background: linear-gradient(135deg, var(--primary-blue), var(--light-green));
      color: #fff;
      box-shadow: inset 0 -3px 10px rgba(0, 0, 0, 0.05);
  }

  /* Accordion Body */
  .accordion-body {
      background: #f9fbff;
      color: #555;
      font-size: 0.95rem;
      line-height: 1.6;
      padding: 20px 25px;
      border-top: 1px solid rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
  }

  /* Icons in accordion button */
  .accordion-button::after {
      filter: brightness(0) invert(0.3);
      transition: filter 0.3s ease;
  }

  .accordion-button:not(.collapsed)::after {
      filter: brightness(10);
  }

  /* ---------- RESPONSIVENESS ---------- */
  @media (max-width: 992px) {
      .section-padding.bg-light {
          padding: 80px 0;
      }

      .accordion-button {
          font-size: 1rem;
          padding: 16px 20px;
      }

      .accordion-body {
          padding: 18px 20px;
      }
  }

  @media (max-width: 768px) {
      .section-padding.bg-light {
          padding: 70px 0;
      }

      .why-choose-img {
          width: 90%;
          margin: 0 auto 25px auto;
          display: block;
      }

      .accordion-button {
          font-size: 0.95rem;
          padding: 14px 18px;
      }

      .accordion-body {
          font-size: 0.9rem;
          padding: 16px 18px;
      }
  }

  @media (max-width: 576px) {
      .section-padding.bg-light {
          padding: 60px 0;
      }

      .accordion-button {
          font-size: 0.9rem;
          padding: 12px 15px;
      }

      .accordion-body {
          font-size: 0.85rem;
          line-height: 1.5;
      }

      .why-choose-img {
          width: 100%;
          margin-bottom: 20px;
      }
  }

  /* ---------- PROCESS SECTION ---------- 
.process-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  z-index: 1;
}

/* Row Layout 
.process-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* Process Step Card
.process-step {
  flex: 1 1 220px;
  max-width: 250px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 25px;
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* Step Icon 
.process-img {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.process-step:hover .process-img {
  transform: scale(1.1);
}

/* Step Number 
.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 10px auto 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Connector Line (for desktop view)
.process-connector {
  height: 3px;
  background: var(--light-green);
  width: 60px;
  align-self: center;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ---------- RESPONSIVENESS ---------- 
@media (max-width: 1200px) {
  .process-row {
    gap: 30px;
  }
  .process-step {
    max-width: 230px;
  }
}

@media (max-width: 992px) {
  .process-section {
    padding: 80px 0;
  }
  .process-row {
    gap: 25px;
  }
  .process-step {
    flex: 1 1 45%;
    max-width: 45%;
    margin-bottom: 20px;
  }
  .process-connector {
    display: none; /* hide connector on tablets and below 
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 70px 0;
  }
  .process-step {
    flex: 1 1 100%;
    max-width: 90%;
    margin: 0 auto 25px;
  }
  .process-img {
    width: 60px;
    height: 60px;
  }
  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .process-section {
    padding: 60px 0;
  }
  .process-step {
    padding: 20px;
    max-width: 95%;
  }
  .process-img {
    width: 55px;
    height: 55px;
    margin-bottom: 10px;
  }
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }
  .process-row {
    gap: 20px;
  }
}*/

  /* ---------- HEALTH TIPS SECTION ---------- */
  .tips-section {
      background: linear-gradient(135deg, #f8faff 0%, #eef3f8 100%);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
      z-index: 1;
  }

  /* Decorative blur accents */
  .tips-section::before,
  .tips-section::after {
      content: "";
      position: absolute;
      width: 350px;
      height: 350px;
      border-radius: 50%;
      filter: blur(120px);
      opacity: 0.1;
      z-index: 0;
  }

  .tips-section::before {
      top: -120px;
      left: -150px;
      background: var(--primary-blue);
  }

  .tips-section::after {
      bottom: -100px;
      right: -150px;
      background: var(--light-green);
  }

  /* ---------- TIP CARD ---------- */
  .tip-card {
      border-radius: 18px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      height: 100%;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      position: relative;
      z-index: 1;
  }

  .tip-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
  }

  /* ---------- IMAGE ---------- */
  .tip-img {
      height: 220px;
      background-size: cover;
      background-position: center;
      position: relative;
      transition: all 0.4s ease;
  }

  .tip-img::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
      opacity: 0;
      transition: opacity 0.4s ease;
  }

  .tip-card:hover .tip-img::after {
      opacity: 1;
  }

  /* ---------- TEXT CONTENT ---------- */
  .tip-content {
      padding: 25px;
      flex-grow: 1;
      text-align: left;
  }

  .tip-content h5 {
      color: var(--primary-blue);
      font-weight: 700;
      margin-bottom: 12px;
      font-size: 1.15rem;
      transition: color 0.3s ease;
  }

  .tip-content p {
      color: #555;
      font-size: 0.95rem;
      line-height: 1.6;
  }

  .tip-card:hover h5 {
      color: var(--light-green);
  }

  /* ---------- IMAGE BACKGROUNDS ---------- */
  .tip-1 {
      background: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
  }

  .tip-2 {
      background: url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?auto=format&fit=crop&w=1520&q=80') center/cover no-repeat;
  }

  .tip-3 {
      background: url('https://images.unsplash.com/photo-1512621776951-a57141f2eefd?auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
  }

  .tip-4 {
      background: url('https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
  }

  /* ---------- RESPONSIVENESS ---------- */
  @media (max-width: 1200px) {
      .tip-img {
          height: 200px;
      }
  }

  @media (max-width: 992px) {
      .tips-section {
          padding: 80px 0;
      }

      .tip-card {
          height: auto;
      }

      .tip-content h5 {
          font-size: 1.05rem;
      }

      .tip-content p {
          font-size: 0.9rem;
      }
  }

  @media (max-width: 768px) {
      .tips-section {
          padding: 70px 0;
      }

      .tip-img {
          height: 180px;
      }

      .tip-card {
          margin-bottom: 25px;
      }

      .tip-content {
          padding: 20px;
      }
  }

  @media (max-width: 576px) {
      .tips-section {
          padding: 60px 0;
      }

      .tip-img {
          height: 160px;
      }

      .tip-content {
          padding: 18px;
      }

      .tip-content h5 {
          font-size: 1rem;
      }

      .tip-content p {
          font-size: 0.9rem;
      }
  }

  /* Testimonials */
  /* ---------- TESTIMONIAL SECTION ---------- */
  .testimonial-section {
      background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
      color: #fff;
      position: relative;
      overflow: hidden;
      padding: 100px 0;
      z-index: 1;
  }

  /* Subtle background image accent */
  .testimonial-bg {
      position: absolute;
      top: 0;
      right: 0;
      height: 100%;
      width: 40%;
      background: url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?auto=format&fit=crop&w=1471&q=80') no-repeat center center;
      background-size: cover;
      opacity: 0.25;
      mix-blend-mode: lighten;
      z-index: 0;
  }

  /* ---------- SLIDER ---------- */
  .testimonial-slider {
      position: relative;
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
      z-index: 2;
  }

  .testimonial-card {
      background: rgba(255, 255, 255, 0.15);
      border-left: 4px solid var(--light-green);
      border-radius: 14px;
      padding: 35px;
      backdrop-filter: blur(10px);
      transition: all 0.6s ease;
      opacity: 0;
      transform: scale(0.95);
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
  }

  .testimonial-card.active {
      opacity: 1;
      transform: scale(1);
      position: relative;
  }

  .testimonial-card p {
      font-style: italic;
      font-size: 1.05rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.9);
  }

  /* ---------- CLIENT INFO ---------- */
  .client-info {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 25px;
  }

  .client-img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 15px;
      border: 2px solid var(--light-green);
      transition: transform 0.3s ease;
  }

  .testimonial-card:hover .client-img {
      transform: scale(1.1);
  }

  .client-name {
      font-weight: 600;
      color: #fff;
  }

  .client-role {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.75);
  }

  /* ---------- DOTS ---------- */
  .slider-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 25px;
      z-index: 2;
  }

  .dot {
      width: 12px;
      height: 12px;
      background: rgba(255, 255, 255, 0.4);
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .dot.active {
      background: var(--light-green);
      transform: scale(1.2);
  }

  /* ---------- RESPONSIVENESS ---------- */
  @media (max-width: 1200px) {
      .testimonial-section {
          padding: 90px 0;
      }

      .testimonial-bg {
          width: 45%;
      }
  }

  @media (max-width: 992px) {
      .testimonial-section {
          padding: 80px 0;
      }

      .testimonial-bg {
          display: none;
          /* Hide background image for better readability */
      }

      .testimonial-slider {
          max-width: 600px;
          padding: 0 20px;
      }

      .testimonial-card {
          padding: 30px;
      }
  }

  @media (max-width: 768px) {
      .testimonial-section {
          padding: 70px 0;
      }

      .testimonial-card {
          padding: 25px;
      }

      .testimonial-card p {
          font-size: 1rem;
          line-height: 1.6;
      }

      .client-img {
          width: 55px;
          height: 55px;
      }
  }

  @media (max-width: 576px) {
      .testimonial-section {
          padding: 60px 0;
      }

      .testimonial-card {
          padding: 22px;
      }

      .testimonial-card p {
          font-size: 0.95rem;
      }

      .client-info {
          flex-direction: column;
          text-align: center;
      }

      .client-img {
          margin: 0 0 10px 0;
      }

      .slider-dots {
          gap: 8px;
      }

      .dot {
          width: 10px;
          height: 10px;
      }
  }

  /* ---------- CONTACT SECTION ---------- */
  .contact-section {
      background: linear-gradient(135deg, #f0f6ff 0%, #e8f9f3 100%);
      position: relative;
      overflow: hidden;
      padding: 100px 0;
      z-index: 1;
  }

  /* Decorative Background Shapes */
  .contact-section::before {
      content: "";
      position: absolute;
      width: 220px;
      height: 220px;
      background: var(--primary-blue);
      opacity: 0.05;
      border-radius: 50%;
      top: 10%;
      left: -60px;
      filter: blur(4px);
  }

  .contact-section::after {
      content: "";
      position: absolute;
      width: 320px;
      height: 320px;
      background: var(--light-green);
      opacity: 0.08;
      border-radius: 50%;
      bottom: -90px;
      right: -100px;
      filter: blur(4px);
  }

  /* ---------- CONTACT CARD ---------- */
  .contact-card {
      background: #fff;
      border-radius: 18px;
      padding: 45px 30px;
      text-align: center;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
      transition: all 0.4s ease;
      height: 100%;
      border-top: 5px solid var(--primary-blue);
      position: relative;
      z-index: 2;
  }

  .contact-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
      border-top-color: var(--light-green);
  }

  /* ---------- ICON ---------- */
  .contact-icon {
      font-size: 3rem;
      color: var(--primary-blue);
      margin-bottom: 20px;
      transition: color 0.3s ease, transform 0.3s ease;
  }

  .contact-card:hover .contact-icon {
      color: var(--light-green);
      transform: scale(1.2);
  }

  /* ---------- TEXT ---------- */
  .contact-card h4 {
      font-weight: 700;
      color: #002b5c;
      margin-bottom: 12px;
      font-size: 1.3rem;
  }

  .contact-card p {
      font-size: 1rem;
      color: #555;
      margin-bottom: 18px;
      line-height: 1.6;
  }

  .highlight-text {
      color: var(--primary-blue);
      font-weight: 600;
  }

  /* ---------- BUTTON ---------- */
  .btn-modern {
      background: var(--light-green);
      color: white;
      border: none;
      padding: 12px 28px;
      border-radius: 30px;
      transition: all 0.3s ease;
      font-weight: 600;
      font-size: 0.95rem;
  }

  .btn-modern:hover {
      background: var(--primary-blue);
      color: #fff;
      transform: scale(1.05);
  }

  /* ---------- RESPONSIVENESS ---------- */
  @media (max-width: 992px) {
      .contact-section {
          padding: 80px 0;
      }

      .contact-card {
          padding: 40px 25px;
      }

      .contact-icon {
          font-size: 2.6rem;
      }

      .contact-card h4 {
          font-size: 1.2rem;
      }
  }

  @media (max-width: 768px) {
      .contact-section {
          padding: 70px 0;
      }

      .contact-card {
          margin-bottom: 25px;
      }

      .contact-icon {
          font-size: 2.4rem;
      }

      .contact-card p {
          font-size: 0.95rem;
      }
  }

  @media (max-width: 576px) {
      .contact-section {
          padding: 60px 15px;
      }

      .contact-card {
          padding: 30px 20px;
          border-radius: 14px;
      }

      .contact-icon {
          font-size: 2.2rem;
      }

      .contact-card h4 {
          font-size: 1.1rem;
      }

      .contact-card p {
          font-size: 0.9rem;
      }

      .btn-modern {
          width: 100%;
          padding: 10px 0;
      }
  }

  /* ---------- FAQ SECTION ---------- */
  .faq1-section {
      background: linear-gradient(135deg, #f8faff, #eef3ff);
      position: relative;
      z-index: 1;
      padding: 100px 0;
      overflow: hidden;
  }

  /* Decorative shape */
  .faq1-section::before {
      content: "";
      position: absolute;
      top: -80px;
      left: -80px;
      width: 220px;
      height: 220px;
      background: var(--primary-blue);
      border-radius: 50%;
      opacity: 0.1;
      z-index: 0;
      filter: blur(2px);
  }

  /* Section title */
  .faq1-section .section-title {
      font-weight: 700;
      font-size: 2.5rem;
      color: #000E5B;
      position: relative;
      margin-bottom: 50px;
      text-align: center;
      z-index: 2;
  }

  /* Accordion items */
  .faq1-section .accordion-item {
      border: none;
      background: #fff;
      border-radius: 12px;
      margin-bottom: 20px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      transition: all 0.3s ease;
  }

  .faq1-section .accordion-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }

  /* Accordion buttons */
  .faq1-section .accordion-button {
      background: #fff;
      color: #000E5B;
      font-weight: 600;
      font-size: 1.1rem;
      padding: 1.2rem 1.5rem;
      border: none;
      box-shadow: none;
      transition: all 0.3s ease;
  }

  .faq1-section .accordion-button:not(.collapsed) {
      background: var(--primary-blue);
      color: #fff;
  }

  /* Icons */
  .faq1-section .accordion-button::after {
      background-image: none;
      font-family: "Font Awesome 6 Free";
      content: "\f107";
      font-weight: 900;
      transform: rotate(0deg);
      color: var(--primary-blue);
      transition: transform 0.3s ease, color 0.3s ease;
  }

  .faq1-section .accordion-button:not(.collapsed)::after {
      transform: rotate(180deg);
      color: #fff;
  }

  /* Accordion body */
  .faq1-section .accordion-body {
      background: #fff;
      color: #333;
      padding: 1.2rem 1.5rem 1.5rem;
      line-height: 1.7;
      border-top: 1px solid #e0e0e0;
      font-size: 1rem;
  }

  /* ---------- RESPONSIVENESS ---------- */
  @media (max-width: 992px) {
      .faq1-section {
          padding: 80px 0;
      }

      .faq1-section .section-title {
          font-size: 2.2rem;
      }

      .faq1-section .accordion-button {
          font-size: 1rem;
          padding: 1rem 1.2rem;
      }
  }

  @media (max-width: 768px) {
      .faq1-section {
          padding: 70px 15px;
      }

      .faq1-section .section-title {
          font-size: 2rem;
          margin-bottom: 40px;
      }

      .faq1-section .accordion-body {
          font-size: 0.95rem;
      }
  }

  @media (max-width: 576px) {
      .faq1-section {
          padding: 60px 10px;
      }

      .faq1-section .section-title {
          font-size: 1.8rem;
          margin-bottom: 35px;
      }

      .faq1-section .accordion-button {
          font-size: 0.95rem;
          padding: 0.9rem 1rem;
      }

      .faq1-section .accordion-body {
          font-size: 0.9rem;
          padding: 1rem;
      }
  }

  /* Footer */
  .footer {
      position: relative;
      background: #000E5B;
      color: #fff;
      padding: 80px 0 30px;
      overflow: hidden;
      z-index: 1;
  }

  .footer::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url('https://i.pinimg.com/1200x/0d/a6/5f/0da65f90efde1cd95eb03f206a0f28a5.jpg') center center / cover no-repeat;
      opacity: 0.15;
      z-index: 0;
  }

  .footer .container {
      position: relative;
      z-index: 2;
  }

  .footer-logo img {
      width: 280px;
      filter: brightness(100%);
  }

  .footer h5 {
      color: var(--light-green);
      margin-bottom: 20px;
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: 0.5px;
  }

  .footer-links a {
      color: rgba(255, 255, 255, 0.75);
      text-decoration: none;
      display: block;
      margin-bottom: 10px;
      font-size: 0.95rem;
      transition: all 0.3s ease;
  }

  .footer-links a:hover {
      color: var(--light-green);
      padding-left: 8px;
  }

  .footer p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.95rem;
      line-height: 1.7;
      margin-bottom: 10px;
  }

  .footer .social-icons {
      display: flex;
      flex-wrap: wrap;
  }

  .footer .social-icons a {
      display: inline-flex;
      text-decoration: none;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      margin-right: 10px;
      color: white;
      font-size: 1rem;
      transition: all 0.3s ease;
  }

  .footer .social-icons a:hover {
      background: var(--light-green);
      color: var(--primary-blue);
      transform: translateY(-4px);
  }

  .footer .contact-info i {
      color: var(--light-green);
  }

  .copyright {
      border-top: 1px solid rgba(255, 255, 255, 0.15);
      margin-top: 40px;
      padding-top: 20px;
      text-align: center;
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.75);
  }

  /* ✅ Responsive Alignment Fix */
  @media (max-width: 768px) {
      .footer {
          text-align: center;
      }

      .footer-logo img {
          margin: 0 auto;
      }

      .footer .social-icons {
          justify-content: center;
      }

      .footer-links a:hover {
          padding-left: 0;
          text-decoration: none;
      }
  }

  /* ================================
           ABOUT PAGE STYLES
        ================================ */

  /* Hero Section */
  .aboutpage-hero {
      position: relative;
      background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
      color: #fff;
      padding: 120px 20px;
      text-align: center;
      overflow: hidden;
  }

  /* Subtle gradient overlay */
  .aboutpage-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
      z-index: 1;
  }

  /* Floating gradient animation effect */
  .aboutpage-hero::after {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: conic-gradient(from 180deg at 50% 50%, rgba(255, 255, 255, 0.1), transparent, rgba(255, 255, 255, 0.1));
      animation: rotateGlow 10s linear infinite;
      z-index: 0;
      opacity: 0.3;
  }

  @keyframes rotateGlow {
      0% {
          transform: rotate(0deg);
      }

      100% {
          transform: rotate(360deg);
      }
  }

  .aboutpage-hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
      padding: 0 15px;
  }

  .aboutpage-hero-title {
      font-size: 3rem;
      font-weight: 800;
      letter-spacing: 1px;
      margin-bottom: 20px;
      line-height: 1.2;
      text-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  }

  .aboutpage-hero-subtitle {
      font-size: 1.2rem;
      opacity: 0.95;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
  }

  /* Optional subtle entrance animation */
  .aboutpage-hero-title,
  .aboutpage-hero-subtitle {
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 1s ease forwards;
  }

  .aboutpage-hero-subtitle {
      animation-delay: 0.3s;
  }

  @keyframes fadeUp {
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* ---------- RESPONSIVENESS ---------- */
  @media (max-width: 992px) {
      .aboutpage-hero {
          padding: 100px 20px;
      }

      .aboutpage-hero-title {
          font-size: 2.4rem;
      }

      .aboutpage-hero-subtitle {
          font-size: 1.1rem;
      }
  }

  @media (max-width: 576px) {
      .aboutpage-hero {
          padding: 80px 15px;
      }

      .aboutpage-hero-title {
          font-size: 2rem;
      }

      .aboutpage-hero-subtitle {
          font-size: 1rem;
      }
  }

  /* ===========================
   About Page Section Styling
=========================== */
  .aboutpage-section {
      padding: 100px 0;
      position: relative;
      overflow: hidden;
  }

  /* Light background variant */
  .aboutpage-section-light {
      background-color: #f8f9fa;
  }

  /* Section Title */
  .aboutpagesection-title {
      position: relative;
      display: inline-block;
      font-weight: 800;
      font-size: 2.5rem;
      color: var(--primary-blue);
      margin-bottom: 60px;
      text-transform: capitalize;
      letter-spacing: 1px;
      background: linear-gradient(135deg, var(--primary-blue), var(--light-green));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      transition: all 0.4s ease;
      z-index: 1;
      text-align: center;
  }

  /* Animated underline */
  .aboutpagesection-title::after {
      content: '';
      position: absolute;
      width: 100px;
      height: 4px;
      background: linear-gradient(135deg, var(--light-green), var(--primary-blue));
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 3px;
      transition: width 0.4s ease;
  }

  /* Hover effect for subtle interaction */
  .aboutpagesection-title:hover::after {
      width: 120px;
  }

  /* Optional subtle fade-in animation */
  .aboutpagesection-title {
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUpTitle 0.8s ease forwards;
  }

  @keyframes fadeUpTitle {
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* ---------- RESPONSIVENESS ---------- */
  @media (max-width: 992px) {
      .aboutpage-section {
          padding: 80px 0;
      }

      .aboutpagesection-title {
          font-size: 2rem;
          margin-bottom: 40px;
      }

      .aboutpagesection-title::after {
          width: 70px;
      }
  }

  @media (max-width: 576px) {
      .aboutpage-section {
          padding: 70px 0;
      }

      .aboutpagesection-title {
          font-size: 1.7rem;
          margin-bottom: 30px;
      }

      .aboutpagesection-title::after {
          width: 60px;
      }
  }

  /* ===============================
   About Page - Content Styling
=============================== */
  .aboutpage-about-content {
      font-size: 1.15rem;
      line-height: 1.8;
      color: #333;
      max-width: 750px;
      margin: 0 auto;
      text-align: justify;
      letter-spacing: 0.3px;
      font-weight: 400;
      position: relative;
      z-index: 2;
      transition: all 0.3s ease;
  }

  /* Add subtle fade-in for content */
  .aboutpage-about-content {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.8s ease forwards;
  }

  @keyframes fadeInUp {
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* Image Styling */
  .aboutpage-about-image {
      border-radius: 15px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
      overflow: hidden;
      width: 100%;
      max-width: 550px;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  /* Image hover effect */
  .aboutpage-about-image:hover {
      transform: scale(1.05);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  }

  /* Optional soft overlay animation */
  .aboutpage-about-image img {
      width: 100%;
      display: block;
      border-radius: 15px;
      transition: transform 0.4s ease, filter 0.3s ease;
  }

  .aboutpage-about-image:hover img {
      transform: scale(1.08);
      filter: brightness(1.05);
  }

  /* ============= Responsive Layouts ============= */
  @media (max-width: 992px) {
      .aboutpage-about-content {
          font-size: 1.05rem;
          line-height: 1.7;
          text-align: left;
      }

      .aboutpage-about-image {
          max-width: 480px;
          margin: 30px auto 0;
      }
  }

  @media (max-width: 768px) {
      .aboutpage-about-content {
          font-size: 1rem;
          line-height: 1.6;
          padding: 0 20px;
      }

      .aboutpage-about-image {
          max-width: 100%;
          margin: 25px auto 0;
      }
  }

  @media (max-width: 576px) {
      .aboutpage-about-content {
          font-size: 0.95rem;
          line-height: 1.6;
      }
  }

  /* Mission & Vision Sections */
  /* ==========================
   Mission & Vision Sections
========================== */
  .aboutpage-mission-section {
      background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
      color: white;
      padding: 100px 0;
      position: relative;
      overflow: hidden;
  }

  /* Decorative background glow */
  .aboutpage-mission-section::before {
      content: "";
      position: absolute;
      top: -100px;
      left: -100px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(46, 139, 87, 0.25) 0%, transparent 70%);
      z-index: 0;
  }

  .aboutpage-mission-section .aboutpagesection1-title {
      color: white !important;
      text-align: center;
  }

  .aboutpage-mission-section .aboutpagesection-title::after {
      background: var(--light-green);
  }

  /* Mission/Vision Card */
  .mission-vision-card {
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(15px);
      border-radius: 15px;
      padding: 45px 35px;
      text-align: center;
      height: 100%;
      border-left: 5px solid var(--light-green);
      color: white;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      transition: all 0.4s ease;
      position: relative;
      z-index: 1;
  }

  /* Hover animation */
  .mission-vision-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  }

  /* Icon Styling */
  .mission-vision-icon {
      font-size: 3rem;
      color: var(--light-green);
      margin-bottom: 20px;
      transition: transform 0.4s ease;
  }

  .mission-vision-card:hover .mission-vision-icon {
      transform: scale(1.15) rotate(8deg);
  }

  /* Headings & Text */
  .mission-vision-card h3 {
      font-weight: 700;
      margin-bottom: 15px;
      font-size: 1.6rem;
      color: #fff;
  }

  .mission-vision-card p {
      font-size: 1.05rem;
      line-height: 1.8;
      opacity: 0.9;
      margin-bottom: 15px;
  }

  /* Vision Card (Light Theme) */
  .aboutpage-vision-section {
      background: #f8f9fa;
      color: #333;
      padding: 100px 0;
  }

  .aboutpage-vision-section .aboutpagesection-title {
      color: var(--primary-blue);
      text-align: center;
  }

  .aboutpage-vision-section .aboutpagesection-title::after {
      background: var(--primary-blue);
  }

  .aboutpage-vision-section .mission-vision-card {
      background: #ffffff;
      color: #333;
      border-left: 5px solid var(--primary-blue);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }

  .aboutpage-vision-section .mission-vision-icon {
      color: var(--primary-blue);
  }

  /* ==========================
   Responsive Styling
========================== */
  @media (max-width: 992px) {
      .mission-vision-card {
          padding: 35px 25px;
      }

      .mission-vision-card h3 {
          font-size: 1.4rem;
      }
  }

  @media (max-width: 768px) {

      .aboutpage-mission-section,
      .aboutpage-vision-section {
          padding: 80px 0;
      }

      .mission-vision-card {
          margin-bottom: 30px;
      }

      .mission-vision-icon {
          font-size: 2.5rem;
      }

      .mission-vision-card p {
          font-size: 1rem;
      }
  }

  @media (max-width: 576px) {
      .mission-vision-card {
          padding: 30px 20px;
      }

      .mission-vision-card h3 {
          font-size: 1.25rem;
      }

      .mission-vision-icon {
          font-size: 2.2rem;
      }
  }

  /* ==========================
   Core Values Section
========================== */
  .corevalue-card {
      background: white;
      border-radius: 15px;
      padding: 35px 25px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      height: 100%;
      border-top: 5px solid var(--light-green);
      position: relative;
      overflow: hidden;
  }

  .corevalue-card::before {
      content: "";
      position: absolute;
      width: 120%;
      height: 100%;
      top: -20%;
      left: -10%;
      background: linear-gradient(120deg, var(--primary-blue), var(--secondary-blue));
      opacity: 0.05;
      transform: rotate(25deg);
      z-index: 0;
  }

  .corevalue-card:hover {
      transform: translateY(-8px) scale(1.03);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
      border-top-color: var(--dark-green);
  }

  /* Icon Circle */
  .corevalue-icon {
      width: 80px;
      height: 80px;
      background: var(--primary-blue);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin: 0 auto 20px;
      position: relative;
      z-index: 1;
      transition: all 0.3s ease;
  }

  .corevalue-card:hover .corevalue-icon {
      background: var(--light-green);
      color: #fff;
      transform: scale(1.1);
  }

  /* Title & Text */
  .corevalue-card h3 {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--primary-blue);
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
  }

  .corevalue-card p {
      font-size: 1rem;
      line-height: 1.6;
      color: #555;
      position: relative;
      z-index: 1;
  }

  /* Responsive Adjustments */
  @media (max-width: 992px) {
      .corevalue-card {
          padding: 30px 20px;
      }

      .corevalue-icon {
          width: 70px;
          height: 70px;
          font-size: 1.8rem;
      }
  }

  @media (max-width: 576px) {
      .corevalue-card {
          padding: 25px 15px;
          margin-bottom: 20px;
      }

      .corevalue-icon {
          width: 60px;
          height: 60px;
          font-size: 1.5rem;
      }

      .corevalue-card h3 {
          font-size: 1.2rem;
      }

      .corevalue-card p {
          font-size: 0.95rem;
      }
  }


  /* ==========================
   CTA Section Styling
========================== */
  .aboutpage-cta-section {
      position: relative;
      background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
      color: white;
      padding: 100px 0;
      overflow: hidden;
      text-align: center;
  }

  /* Animated background glow effect */
  .aboutpage-cta-section::before,
  .aboutpage-cta-section::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(46, 139, 87, 0.25), transparent 70%);
      animation: floatGlow 8s infinite ease-in-out;
      z-index: 0;
  }

  .aboutpage-cta-section::before {
      width: 300px;
      height: 300px;
      top: -80px;
      left: -100px;
      animation-delay: 0s;
  }

  .aboutpage-cta-section::after {
      width: 400px;
      height: 400px;
      bottom: -120px;
      right: -150px;
      animation-delay: 2s;
  }

  @keyframes floatGlow {

      0%,
      100% {
          transform: translateY(0) scale(1);
          opacity: 0.6;
      }

      50% {
          transform: translateY(20px) scale(1.1);
          opacity: 1;
      }
  }

  /* Text Styling */
  .cta-title {
      font-weight: 700;
      font-size: 2.3rem;
      line-height: 1.3;
      position: relative;
      z-index: 1;
  }

  .cta-subtitle {
      font-size: 1.1rem;
      opacity: 0.9;
      margin-bottom: 30px;
      z-index: 1;
      position: relative;
  }

  .cta-call-btn {
      padding: 12px 30px;
      border: 2px solid white;
      border-radius: 8px;
      font-weight: 600;
      color: white;
      transition: all 0.3s ease;
  }

  .cta-call-btn:hover {
      background-color: white;
      color: var(--primary-blue);
      transform: translateY(-3px);
  }
 .btn-primary2 {
      background-color: var(--light-green);
      border: none;
      padding: 12px 30px;
      border-radius: 8px;
      font-weight: 600;
      transition: all 0.3s ease;
      color: white;
      cursor: pointer;
      display: inline-block;
  }

  .btn-primary2:hover {
      background-color: transparent;
      border: 2px solid var(--light-green);
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  /* ==========================
   Responsiveness
========================== */
  @media (max-width: 992px) {
      .cta-title {
          font-size: 2rem;
      }

      .cta-subtitle {
          font-size: 1rem;
      }
  }

  @media (max-width: 768px) {
      .aboutpage-cta-section {
          padding: 80px 0;
      }

      .btn-primary1,
      .cta-call-btn {
          display: block;
          margin: 10px auto;
          width: 80%;
      }
  }

  @media (max-width: 576px) {
      .cta-title {
          font-size: 1.8rem;
      }

      .cta-subtitle {
          font-size: 0.95rem;
      }
  }


  /* ================================
           SERVICES PAGE STYLES
        ================================ */

  /* ==========================
   Services Page Hero Section
========================== */
  .servicespage-hero {
      position: relative;
      background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
      color: white;
      padding: 100px 20px;
      text-align: center;
      overflow: hidden;
  }

  /* Decorative Gradient Overlay */
  .servicespage-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%),
          radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
      z-index: 0;
      animation: gradientMove 12s ease-in-out infinite alternate;
  }

  /* Floating Glow Orbs */
  .servicespage-hero::after {
      content: "";
      position: absolute;
      width: 180%;
      height: 180%;
      top: -40%;
      left: -40%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
      animation: rotateOrb 30s linear infinite;
      z-index: 0;
  }

  /* Hero Text */
  .servicespage-hero-title {
      font-size: 3rem;
      font-weight: 800;
      letter-spacing: 0.5px;
      margin-bottom: 15px;
      position: relative;
      z-index: 1;
      animation: fadeSlideDown 1s ease forwards;
  }

  .servicespage-hero-subtitle {
      font-size: 1.25rem;
      opacity: 0.95;
      max-width: 650px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      animation: fadeSlideUp 1.2s ease forwards;
  }

  /* Subtle Animated Gradient Border (Optional) */
  .servicespage-hero-title::after {
      content: "";
      display: block;
      width: 80px;
      height: 4px;
      background: var(--light-green);
      border-radius: 2px;
      margin: 20px auto 0;
      animation: glowPulse 3s infinite ease-in-out;
  }

  /* Animations */
  @keyframes fadeSlideDown {
      0% {
          opacity: 0;
          transform: translateY(-20px);
      }

      100% {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes fadeSlideUp {
      0% {
          opacity: 0;
          transform: translateY(20px);
      }

      100% {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes glowPulse {

      0%,
      100% {
          box-shadow: 0 0 10px var(--light-green);
          opacity: 1;
      }

      50% {
          box-shadow: 0 0 20px var(--light-green);
          opacity: 0.7;
      }
  }

  @keyframes gradientMove {
      from {
          background-position: 0% 50%;
      }

      to {
          background-position: 100% 50%;
      }
  }

  @keyframes rotateOrb {
      from {
          transform: rotate(0deg);
      }

      to {
          transform: rotate(360deg);
      }
  }

  /* Responsive Design */
  @media (max-width: 992px) {
      .servicespage-hero {
          padding: 80px 15px;
      }

      .servicespage-hero-title {
          font-size: 2.5rem;
      }

      .servicespage-hero-subtitle {
          font-size: 1.1rem;
          max-width: 500px;
      }
  }

  @media (max-width: 576px) {
      .servicespage-hero {
          padding: 70px 10px;
      }

      .servicespage-hero-title {
          font-size: 2rem;
      }

      .servicespage-hero-subtitle {
          font-size: 1rem;
      }
  }

  /* Section Base Styles */
  /* ===============================
   Services Page Sections
=============================== */
  .servicespage-section {
      padding: 100px 0;
      position: relative;
      overflow: hidden;
      z-index: 1;
      transition: all 0.4s ease-in-out;
  }

  /* Light Background Section */
  .servicespage-section-light {
      background-color: #f9fafc;
  }

  /* Dark Gradient Section */
  .servicespage-section-dark {
      background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
      color: white;
      position: relative;
  }

  /* Animated Overlay Effect for Dark Section */
  .servicespage-section-dark::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 20% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 70%),
          radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
      animation: moveGlow 15s ease-in-out infinite alternate;
      z-index: 0;
  }

  /* Section Title */
  .servicespagesection-title {
      position: relative;
      display: inline-block;
      font-weight: 800;
      font-size: 2.5rem;
      color: var(--primary-blue);
      margin-bottom: 60px;
      text-transform: capitalize;
      letter-spacing: 1px;
      background: linear-gradient(135deg, var(--primary-blue), var(--light-green));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      transition: all 0.4s ease;
      z-index: 1;
      text-align: center;
  }

  .servicespagesection-title::after {
      content: '';
      position: absolute;
      width: 70px;
      height: 4px;
      background: var(--light-green);
      bottom: -10px;
      left: 0;
      border-radius: 2px;
      transition: width 0.3s ease;
  }

  .servicespagesection-title.center {
      display: block;
      text-align: center;
  }

  .servicespagesection-title.center::after {
      left: 50%;
      transform: translateX(-50%);
  }

  /* Hover Accent (Optional) */
  .servicespagesection-title:hover::after {
      width: 100px;
  }

  /* White Version for Dark Sections */
  .servicespagesection-title.white {
      color: #ffffff;
  }

  .servicespagesection-title.white::after {
      background: var(--light-green);
  }

  /* Section Subtitle */
  .servicespagesection-subtitle {
      font-size: 1.15rem;
      color: #555;
      line-height: 1.8;
      margin: 25px auto 50px;
      max-width: 750px;
      opacity: 0.9;
      font-weight: 400;
      text-align: center;
      z-index: 1;
      position: relative;
  }

  .servicespagesection-subtitle.white {
      color: rgba(255, 255, 255, 0.9);
  }

  /* Decorative Floating Elements */
  .servicespage-section::after {
      content: "";
      position: absolute;
      width: 220px;
      height: 220px;
      top: -80px;
      right: -80px;
      background: radial-gradient(circle, rgba(0, 255, 180, 0.15) 0%, transparent 70%);
      border-radius: 50%;
      z-index: 0;
      animation: floatOrb 10s ease-in-out infinite alternate;
  }

  /* Animations */
  @keyframes moveGlow {
      0% {
          background-position: 0% 50%;
      }

      100% {
          background-position: 100% 50%;
      }
  }

  @keyframes floatOrb {
      0% {
          transform: translateY(0);
          opacity: 0.6;
      }

      100% {
          transform: translateY(25px);
          opacity: 1;
      }
  }

  /* Responsive Design */
  @media (max-width: 992px) {
      .servicespage-section {
          padding: 80px 0;
      }

      .servicespagesection-title {
          font-size: 1.9rem;
      }

      .servicespagesection-subtitle {
          font-size: 1.05rem;
          max-width: 600px;
      }
  }

  @media (max-width: 576px) {
      .servicespage-section {
          padding: 70px 0;
      }

      .servicespagesection-title {
          font-size: 1.7rem;
      }

      .servicespagesection-subtitle {
          font-size: 1rem;
          margin-bottom: 40px;
      }
  }

  /* ===============================
   Services Grid Cards
=============================== */
  .servicespage-service-card {
      background: #fff;
      border-radius: 16px;
      padding: 45px 35px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transition: all 0.4s ease;
      height: 100%;
      border-top: 4px solid var(--primary-blue);
      position: relative;
      overflow: hidden;
      z-index: 1;
  }

  /* Subtle Gradient Overlay */
  .servicespage-service-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(120deg, rgba(0, 255, 180, 0.1), rgba(0, 0, 255, 0.05));
      transition: all 0.6s ease;
      z-index: 0;
  }

  .servicespage-service-card:hover::before {
      left: 0;
  }

  /* Hover Effects */
  .servicespage-service-card:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
      border-top-color: var(--light-green);
  }

  /* Icon */
  .servicespage-service-icon {
      font-size: 3.5rem;
      color: var(--primary-blue);
      margin-bottom: 25px;
      transition: all 0.4s ease;
      position: relative;
      z-index: 1;
  }

  .servicespage-service-card:hover .servicespage-service-icon {
      transform: scale(1.2) rotate(5deg);
      color: var(--light-green);
  }

  /* Title */
  .servicespage-service-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 15px;
      color: var(--primary-blue);
      letter-spacing: 0.3px;
      position: relative;
      z-index: 1;
  }

  /* Description */
  .servicespage-service-description {
      color: #555;
      line-height: 1.7;
      margin-bottom: 25px;
      font-size: 1.05rem;
      z-index: 1;
      position: relative;
  }

  /* Feature List */
  .servicespage-service-features {
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: left;
      position: relative;
      z-index: 1;
  }

  .servicespage-service-features li {
      padding: 7px 0;
      color: #444;
      font-size: 0.95rem;
      position: relative;
      padding-left: 28px;
      transition: all 0.3s ease;
  }

  .servicespage-service-features li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 2px;
      color: var(--light-green);
      font-weight: 700;
      font-size: 1rem;
  }

  /* Hover Accent for List Items */
  .servicespage-service-card:hover .servicespage-service-features li {
      color: #222;
  }

  /* Glow Border Animation */
  .servicespage-service-card::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 16px;
      border: 2px solid transparent;
      background: linear-gradient(45deg, var(--light-green), var(--primary-blue)) border-box;
      mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
      mask-composite: exclude;
      transition: opacity 0.4s ease;
      opacity: 0;
      z-index: 2;
  }

  .servicespage-service-card:hover::after {
      opacity: 0.6;
  }

  /* ===============================
   Responsive Design
=============================== */
  @media (max-width: 992px) {
      .servicespage-service-card {
          padding: 35px 25px;
      }

      .servicespage-service-title {
          font-size: 1.35rem;
      }

      .servicespage-service-icon {
          font-size: 3rem;
      }
  }

  @media (max-width: 768px) {
      .servicespage-service-card {
          margin-bottom: 30px;
      }

      .servicespage-service-description {
          font-size: 1rem;
      }
  }

  @media (max-width: 576px) {
      .servicespage-service-card {
          padding: 30px 20px;
          border-radius: 12px;
      }

      .servicespage-service-title {
          font-size: 1.25rem;
      }

      .servicespage-service-icon {
          font-size: 2.7rem;
      }
  }

  /* Benefits Section */
  /* Benefit Card */
  .servicespage-benefit-card {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      border-radius: 16px;
      padding: 40px 25px;
      text-align: center;
      height: 100%;
      border-left: 5px solid var(--light-green);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.35s ease;
      position: relative;
      overflow: hidden;
  }

  /* Hover Effects */
  .servicespage-benefit-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
      background: rgba(255, 255, 255, 0.25);
      border-left-color: var(--primary-blue);
  }

  /* Icon */
  .servicespage-benefit-icon {
      font-size: 3rem;
      color: var(--light-green);
      margin-bottom: 25px;
      transition: all 0.3s ease;
  }

  .servicespage-benefit-card:hover .servicespage-benefit-icon {
      transform: scale(1.2) rotate(8deg);
      color: var(--primary-blue);
  }

  /* Title */
  .servicespage-benefit-title {
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--primary-blue);
      margin-bottom: 15px;
      transition: color 0.3s ease;
  }

  .servicespage-benefit-card:hover .servicespage-benefit-title {
      color: var(--light-green);
  }

  /* Description */
  .servicespage-benefit-description {
      color: rgba(255, 255, 255, 0.85);
      font-size: 1rem;
      line-height: 1.7;
  }

  /* Decorative Glow */
  .servicespage-benefit-card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 70%);
      z-index: 0;
      opacity: 0;
      transition: opacity 0.4s ease;
  }

  .servicespage-benefit-card:hover::before {
      opacity: 1;
  }

  /* Responsive */
  @media (max-width: 768px) {
      .servicespage-benefit-card {
          padding: 30px 20px;
      }

      .servicespage-benefit-icon {
          font-size: 2.5rem;
      }

      .servicespage-benefit-title {
          font-size: 1.2rem;
      }
  }


  /* ================================
           SPECIALTIES PAGE STYLES
        ================================ */

  /* Specialties Hero Section */
  .specialtiespage-hero {
      background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
      color: #fff;
      padding: 120px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
  }

  /* Soft overlay glow for depth */
  .specialtiespage-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent 70%);
      opacity: 0.7;
      pointer-events: none;
  }

  /* Floating geometric shape */
  .specialtiespage-hero::after {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      background: rgba(255, 255, 255, 0.05);
      top: -100px;
      right: -100px;
      border-radius: 50%;
      filter: blur(50px);
      z-index: 0;
  }

  /* Title */
  .specialtiespage-hero-title {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 20px;
      letter-spacing: 0.5px;
      line-height: 1.2;
      z-index: 2;
      position: relative;
      text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  /* Animated gradient underline */
  .specialtiespage-hero-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background: var(--light-green);
      margin: 15px auto 0;
      border-radius: 2px;
      animation: underlineGlow 3s ease-in-out infinite alternate;
  }

  @keyframes underlineGlow {
      0% {
          box-shadow: 0 0 5px var(--light-green);
      }

      100% {
          box-shadow: 0 0 20px var(--light-green);
      }
  }

  /* Subtitle */
  .specialtiespage-hero-subtitle {
      font-size: 1.25rem;
      opacity: 0.95;
      max-width: 700px;
      margin: 20px auto 0;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.7;
      z-index: 2;
      position: relative;
  }

  /* Floating effect */
  .specialtiespage-hero-content {
      position: relative;
      z-index: 2;
      animation: floatUp 1.2s ease forwards;
      opacity: 0;
  }

  @keyframes floatUp {
      0% {
          transform: translateY(30px);
          opacity: 0;
      }

      100% {
          transform: translateY(0);
          opacity: 1;
      }
  }

  /* Responsive Design */
  @media (max-width: 992px) {
      .specialtiespage-hero {
          padding: 100px 15px;
      }

      .specialtiespage-hero-title {
          font-size: 2.4rem;
      }

      .specialtiespage-hero-subtitle {
          font-size: 1.1rem;
          max-width: 90%;
      }
  }

  @media (max-width: 576px) {
      .specialtiespage-hero-title {
          font-size: 2rem;
      }

      .specialtiespage-hero-subtitle {
          font-size: 1rem;
      }
  }

  /* Specialties Page Section */
  .specialtiespage-section {
      padding: 100px 20px;
      position: relative;
      overflow: hidden;
      transition: all 0.4s ease;
  }

  /* Light Section */
  .specialtiespage-section-light {
      background-color: #f9fafc;
  }

  /* Dark Section */
  .specialtiespage-section-dark {
      background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
      color: #fff;
      position: relative;
  }

  /* Subtle animated gradient overlay for dark sections */
  .specialtiespage-section-dark::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent 70%);
      opacity: 0.6;
      pointer-events: none;
  }

  /* Section Title */
  .specialtiespagesection-title {
      position: relative;
      display: inline-block;
      font-weight: 800;
      font-size: 2.5rem;
      color: var(--primary-blue);
      margin-bottom: 60px;
      text-transform: capitalize;
      letter-spacing: 1px;
      background: linear-gradient(135deg, var(--primary-blue), var(--light-green));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      transition: all 0.4s ease;
      z-index: 1;
      text-align: center;
  }

  /* Animated underline */
  .specialtiespagesection-title::after {
      content: '';
      position: absolute;
      width: 80px;
      height: 4px;
      background: var(--light-green);
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
      animation: glowPulse 2s ease-in-out infinite alternate;
  }

  @keyframes glowPulse {
      0% {
          box-shadow: 0 0 5px var(--light-green);
      }

      100% {
          box-shadow: 0 0 20px var(--light-green);
      }
  }

  /* White Title (for dark sections) */
  .specialtiespagesection-title.white {
      color: #fff;
  }

  /* Subtitle */
  .specialtiespagesection-subtitle {
      font-size: 1.15rem;
      color: #555;
      margin: 25px auto 50px;
      max-width: 750px;
      line-height: 1.7;
      text-align: center;
      opacity: 0.9;
      transition: all 0.3s ease;
  }

  /* White Subtitle */
  .specialtiespagesection-subtitle.white {
      color: rgba(255, 255, 255, 0.9);
  }

  /* Hover fade-in effect for elements inside section */
  .specialtiespage-section .fade-in {
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 1s ease forwards;
  }

  @keyframes fadeInUp {
      0% {
          opacity: 0;
          transform: translateY(30px);
      }

      100% {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* Responsive Adjustments */
  @media (max-width: 992px) {
      .specialtiespage-section {
          padding: 80px 15px;
      }

      .specialtiespagesection-title {
          font-size: 1.8rem;
      }

      .specialtiespagesection-subtitle {
          font-size: 1.05rem;
      }
  }

  @media (max-width: 576px) {
      .specialtiespage-section {
          padding: 60px 15px;
      }

      .specialtiespagesection-title {
          font-size: 1.6rem;
      }

      .specialtiespagesection-subtitle {
          font-size: 1rem;
      }
  }

  /* 🌐 Specialties Grid Section */
  .specialtiespage-specialty-card {
      background: #ffffff;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      height: 100%;
      position: relative;
      transform: translateY(0);
  }

  .specialtiespage-specialty-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  }

  /* 🩺 Image Overlay */
  .specialtiespage-specialty-image {
      height: 220px;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
  }

  .specialtiespage-specialty-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom right, rgba(0, 14, 91, 0.6), rgba(32, 44, 111, 0.9));
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.4s ease;
  }

  .specialtiespage-specialty-card:hover .specialtiespage-specialty-overlay {
      opacity: 1;
  }

  .specialtiespage-specialty-icon {
      font-size: 2.8rem;
      color: #fff;
      transform: scale(0.9);
      transition: transform 0.3s ease;
  }

  .specialtiespage-specialty-card:hover .specialtiespage-specialty-icon {
      transform: scale(1.1);
  }

  /* 🧩 Content Section */
  .specialtiespage-specialty-content {
      padding: 30px 25px;
      text-align: left;
  }

  .specialtiespage-specialty-title {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--primary-blue);
      position: relative;
  }

  .specialtiespage-specialty-title::after {
      content: '';
      display: block;
      width: 50px;
      height: 3px;
      background: var(--light-green);
      margin-top: 6px;
      border-radius: 3px;
      transition: width 0.3s ease;
  }

  .specialtiespage-specialty-card:hover .specialtiespage-specialty-title::after {
      width: 70px;
  }

  .specialtiespage-specialty-description {
      color: #555;
      line-height: 1.7;
      margin-bottom: 20px;
      font-size: 0.95rem;
  }

  /* ✅ Features List */
  .specialtiespage-specialty-features {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .specialtiespage-specialty-features li {
      padding: 8px 0;
      color: #444;
      position: relative;
      padding-left: 28px;
      font-size: 0.95rem;
      transition: color 0.3s ease;
  }

  .specialtiespage-specialty-features li:before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--light-green);
      font-weight: bold;
      font-size: 1.1rem;
  }

  .specialtiespage-specialty-card:hover .specialtiespage-specialty-features li {
      color: var(--primary-blue);
  }

  /* 🌍 Responsive Design */
  @media (max-width: 992px) {
      .specialtiespage-specialty-card {
          margin-bottom: 30px;
      }

      .specialtiespage-specialty-content {
          padding: 25px 20px;
      }

      .specialtiespage-specialty-title {
          font-size: 1.3rem;
      }

      .specialtiespage-specialty-description {
          font-size: 0.9rem;
      }

      .specialtiespage-specialty-icon {
          font-size: 2.4rem;
      }
  }

  @media (max-width: 768px) {
      .specialtiespage-specialty-card {
          border-radius: 12px;
      }

      .specialtiespage-specialty-image {
          height: 180px;
      }

      .specialtiespage-specialty-content {
          padding: 20px 18px;
          text-align: center;
      }

      .specialtiespage-specialty-title {
          font-size: 1.2rem;
      }

      .specialtiespage-specialty-title::after {
          margin: 6px auto 0;
      }

      .specialtiespage-specialty-description {
          font-size: 0.9rem;
      }

      .specialtiespage-specialty-features li {
          font-size: 0.9rem;
          padding-left: 25px;
      }

      .specialtiespage-specialty-icon {
          font-size: 2.2rem;
      }
  }

  @media (max-width: 576px) {
      .specialtiespage-specialty-card {
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      }

      .specialtiespage-specialty-image {
          height: 160px;
      }

      .specialtiespage-specialty-title {
          font-size: 1.1rem;
      }

      .specialtiespage-specialty-description {
          font-size: 0.85rem;
          line-height: 1.5;
      }

      .specialtiespage-specialty-features li {
          font-size: 0.85rem;
          padding-left: 22px;
      }

      .specialtiespage-specialty-icon {
          font-size: 2rem;
      }
  }

  /* Specialty Expertise Cards */
  .specialtiespage-expertise-card {
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(12px);
      border-radius: 15px;
      padding: 40px 30px;
      text-align: center;
      height: 100%;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-left: 5px solid var(--light-green);
      color: white;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
  }

  /* Hover Glow + Movement */
  .specialtiespage-expertise-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
      border-left-color: #72ffb6;
  }

  /* Decorative gradient glow behind */
  .specialtiespage-expertise-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(114, 255, 182, 0.15), transparent 60%);
      opacity: 0;
      transition: opacity 0.5s ease;
  }

  .specialtiespage-expertise-card:hover::before {
      opacity: 1;
  }

  /* Icon Styling */
  .specialtiespage-expertise-icon {
      font-size: 2.8rem;
      color: var(--light-green);
      margin-bottom: 25px;
      transition: all 0.4s ease;
  }

  .specialtiespage-expertise-card:hover .specialtiespage-expertise-icon {
      transform: scale(1.15);
      color: #72ffb6;
  }

  /* Title */
  .specialtiespage-expertise-title {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 15px;
      color: #ffffff;
      letter-spacing: 0.5px;
  }

  /* Description */
  .specialtiespage-expertise-description {
      line-height: 1.7;
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.85);
      transition: color 0.3s ease;
  }

  .specialtiespage-expertise-card:hover .specialtiespage-expertise-description {
      color: rgba(255, 255, 255, 1);
  }

  /* Grid Spacing */
  .specialtiespage-section-dark .row {
      margin-top: 50px;
  }

  /* Responsive Layout */
  @media (max-width: 992px) {
      .specialtiespage-expertise-card {
          padding: 30px 25px;
      }

      .specialtiespage-expertise-icon {
          font-size: 2.5rem;
      }

      .specialtiespage-expertise-title {
          font-size: 1.25rem;
      }

      .specialtiespage-expertise-description {
          font-size: 1rem;
      }
  }

  @media (max-width: 576px) {
      .specialtiespage-expertise-card {
          padding: 25px;
          border-radius: 12px;
      }

      .specialtiespage-expertise-icon {
          font-size: 2.2rem;
      }
  }

  /* 🌐 Statistics Section */
  .specialtiespage-stat-section {
      background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
      color: white;
      padding: 80px 0;
      position: relative;
      overflow: hidden;
  }

  .specialtiespage-stat-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: -50%;
      width: 200%;
      height: 100%;
      background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 70%);
      animation: stats-glow 8s infinite alternate ease-in-out;
  }

  @keyframes stats-glow {
      0% {
          transform: translateX(-10%);
          opacity: 0.5;
      }

      100% {
          transform: translateX(10%);
          opacity: 1;
      }
  }

  /* 📊 Individual Stat Item */
  .specialtiespage-stat-item {
      text-align: center;
      padding: 30px 15px;
      border-radius: 12px;
      transition: all 0.4s ease;
      position: relative;
  }

  .specialtiespage-stat-item:hover {
      transform: translateY(-8px);
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(8px);
  }

  /* 🔢 Number Styling */
  .specialtiespage-stat-number {
      font-size: 3rem;
      font-weight: 800;
      color: var(--light-green);
      margin-bottom: 12px;
      position: relative;
      display: inline-block;
      transition: all 0.3s ease;
  }

  .specialtiespage-stat-item:hover .specialtiespage-stat-number {
      transform: scale(1.08);
  }

  /* 🏷️ Label Styling */
  .specialtiespage-stat-label {
      font-size: 1.15rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.85);
      letter-spacing: 0.5px;
      text-transform: capitalize;
  }

  /* ✨ Optional Divider Line */
  .specialtiespage-stat-item::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background: var(--light-green);
      margin: 12px auto 0;
      border-radius: 3px;
      transition: width 0.3s ease;
  }

  .specialtiespage-stat-item:hover::after {
      width: 80px;
  }

  /* 📱 Responsive Adjustments */
  @media (max-width: 992px) {
      .specialtiespage-stat-number {
          font-size: 2.5rem;
      }

      .specialtiespage-stat-label {
          font-size: 1rem;
      }

      .specialtiespage-stat-item {
          padding: 25px 10px;
      }
  }

  @media (max-width: 768px) {
      .specialtiespage-stat-section {
          padding: 60px 0;
      }

      .specialtiespage-stat-item {
          margin-bottom: 25px;
      }

      .specialtiespage-stat-number {
          font-size: 2.2rem;
      }

      .specialtiespage-stat-label {
          font-size: 0.95rem;
      }
  }

  @media (max-width: 576px) {
      .specialtiespage-stat-number {
          font-size: 2rem;
      }

      .specialtiespage-stat-label {
          font-size: 0.9rem;
      }

      .specialtiespage-stat-item {
          padding: 20px;
      }
  }

  /* ================================
           TESTIMONIALS PAGE STYLES
        ================================ */

  /* Hero Section */
  /* 🌠 Testimonials Hero Section */
  .testimonialspage-hero {
      position: relative;
      background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
      color: white;
      padding: 100px 0;
      text-align: center;
      overflow: hidden;
  }

  /* ✨ Soft glow effect layer */
  .testimonialspage-hero::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
      animation: testimonialGlow 10s infinite alternate ease-in-out;
      z-index: 1;
  }

  @keyframes testimonialGlow {
      0% {
          transform: scale(1) rotate(0deg);
          opacity: 0.6;
      }

      100% {
          transform: scale(1.2) rotate(5deg);
          opacity: 1;
      }
  }

  /* 🏷️ Title */
  .testimonialspage-hero-title {
      font-size: 3rem;
      font-weight: 800;
      letter-spacing: 1px;
      margin-bottom: 20px;
      position: relative;
      z-index: 2;
      text-transform: capitalize;
      animation: fadeInDown 1s ease forwards;
  }

  @keyframes fadeInDown {
      0% {
          transform: translateY(-30px);
          opacity: 0;
      }

      100% {
          transform: translateY(0);
          opacity: 1;
      }
  }

  /* 💬 Subtitle */
  .testimonialspage-hero-subtitle {
      font-size: 1.2rem;
      opacity: 0.9;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
      position: relative;
      z-index: 2;
      animation: fadeInUp 1.2s ease forwards;
  }

  @keyframes fadeInUp {
      0% {
          transform: translateY(30px);
          opacity: 0;
      }

      100% {
          transform: translateY(0);
          opacity: 1;
      }
  }

  /* 🌈 Decorative Accent Underline */
  .testimonialspage-hero-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background: var(--light-green);
      margin: 15px auto 0;
      border-radius: 2px;
      transition: width 0.4s ease;
  }

  .testimonialspage-hero-title:hover::after {
      width: 120px;
  }


  /* 📱 Responsive Design */
  @media (max-width: 992px) {
      .testimonialspage-hero {
          padding: 80px 0;
      }

      .testimonialspage-hero-title {
          font-size: 2.5rem;
      }

      .testimonialspage-hero-subtitle {
          font-size: 1.1rem;
          max-width: 90%;
      }
  }

  @media (max-width: 768px) {
      .testimonialspage-hero {
          padding: 70px 0;
      }

      .testimonialspage-hero-title {
          font-size: 2rem;
      }

      .testimonialspage-hero-subtitle {
          font-size: 1rem;
      }
  }

  @media (max-width: 576px) {
      .testimonialspage-hero {
          padding: 60px 0;
      }

      .testimonialspage-hero-title {
          font-size: 1.8rem;
      }

      .testimonialspage-hero-subtitle {
          font-size: 0.95rem;
      }
  }


  /* Section Base Styles */
  /* 🌠 Testimonials Page Section */
  .testimonialspage-section {
      padding: 100px 0;
      position: relative;
      overflow: hidden;
  }

  /* Light Background Variant */
  .testimonialspage-section-light {
      background-color: #f8f9fa;
  }

  /* Dark Gradient Variant */
  .testimonialspage-section-dark {
      background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
      color: white;
      position: relative;
  }

  /* Soft Glow Overlay for Dark Sections */
  .testimonialspage-section-dark::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 70%);
      animation: testimonialGlow 10s infinite alternate ease-in-out;
      z-index: 0;
  }

  /* Glow Animation */
  @keyframes testimonialGlow {
      0% {
          transform: scale(1) rotate(0deg);
          opacity: 0.6;
      }

      100% {
          transform: scale(1.2) rotate(3deg);
          opacity: 1;
      }
  }

  /* 🏷️ Section Title */
  .testimonialspagesection-title {
      position: relative;
      display: inline-block;
      font-weight: 800;
      font-size: 2.5rem;
      color: var(--primary-blue);
      margin-bottom: 60px;
      text-transform: capitalize;
      letter-spacing: 1px;
      background: linear-gradient(135deg, var(--primary-blue), var(--light-green));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      transition: all 0.4s ease;
      z-index: 1;
      text-align: center;
  }

  /* Gradient underline accent */
  .testimonialspagesection-title::after {
      content: '';
      position: absolute;
      width: 80px;
      height: 4px;
      background: var(--light-green);
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
      animation: glowPulse 2s ease-in-out infinite alternate;
  }

  /* Hover effect for the underline */
  .testimonialspagesection-title:hover::after {
      width: 120px;
  }

  /* White Title Variant */
  .testimonialspagesection-title.white {
      color: #fff;
  }

  /* 📝 Subtitle */
  .testimonialspagesection-subtitle {
      font-size: 1.15rem;
      color: #555;
      margin: 25px auto 50px;
      max-width: 750px;
      line-height: 1.7;
      text-align: center;
      opacity: 0.9;
      transition: all 0.3s ease;
  }

  .testimonialspagesection-subtitle.white {
      color: rgba(255, 255, 255, 0.85);
  }

  /* ✨ Fade-up animation for titles */
  .testimonialspagesection-title,
  .testimonialspagesection-subtitle {
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 1s ease forwards;
  }

  @keyframes fadeUp {
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* 📱 Responsive Design */
  @media (max-width: 992px) {
      .testimonialspage-section {
          padding: 80px 0;
      }

      .testimonialspagesection-title {
          font-size: 2rem;
      }

      .testimonialspagesection-subtitle {
          font-size: 1.05rem;
          max-width: 90%;
      }
  }

  @media (max-width: 768px) {
      .testimonialspage-section {
          padding: 70px 0;
      }

      .testimonialspagesection-title {
          font-size: 1.8rem;
      }

      .testimonialspagesection-subtitle {
          font-size: 1rem;
          margin-bottom: 35px;
      }
  }

  @media (max-width: 576px) {
      .testimonialspagesection-title {
          font-size: 1.6rem;
      }

      .testimonialspagesection-subtitle {
          font-size: 0.95rem;
      }
  }

  /* 🌟 Testimonials Grid */
  .testimonialspage-testimonial-card {
      background: #fff;
      border-radius: 16px;
      padding: 35px 30px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
      transition: all 0.35s ease;
      height: 100%;
      border-left: 5px solid var(--light-green);
      position: relative;
      overflow: hidden;
  }

  /* Hover Effect */
  .testimonialspage-testimonial-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
      border-left-color: var(--secondary-blue);
  }

  /* Decorative Accent Background on Hover */
  .testimonialspage-testimonial-card::after {
      content: '';
      position: absolute;
      top: 0;
      right: -50px;
      width: 120px;
      height: 120px;
      background: radial-gradient(circle at center, var(--light-green) 0%, transparent 70%);
      opacity: 0;
      transform: scale(0.6);
      transition: all 0.5s ease;
      z-index: 0;
  }

  .testimonialspage-testimonial-card:hover::after {
      opacity: 0.15;
      transform: scale(1);
  }

  /* Quotation Icon */
  .testimonialspage-testimonial-quote {
      font-size: 3.2rem;
      color: var(--light-green);
      opacity: 0.25;
      position: absolute;
      top: 18px;
      left: 25px;
      z-index: 1;
      transition: all 0.3s ease;
  }

  .testimonialspage-testimonial-card:hover .testimonialspage-testimonial-quote {
      opacity: 0.35;
  }

  /* Testimonial Content */
  .testimonialspage-testimonial-content {
      margin-top: 30px;
      margin-bottom: 25px;
      line-height: 1.8;
      color: #444;
      font-style: italic;
      font-size: 1.05rem;
      position: relative;
      z-index: 2;
  }

  /* Author Info */
  .testimonialspage-testimonial-author {
      display: flex;
      align-items: center;
      position: relative;
      z-index: 2;
  }

  /* Author Image */
  .testimonialspage-author-image {
      width: 65px;
      height: 65px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 18px;
      border: 3px solid var(--light-green);
      transition: all 0.3s ease;
  }

  .testimonialspage-testimonial-card:hover .testimonialspage-author-image {
      transform: scale(1.08);
  }

  /* Author Text */
  .testimonialspage-author-info h4 {
      margin: 0;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--primary-blue);
  }

  .testimonialspage-author-info p {
      margin: 4px 0 0;
      color: #777;
      font-size: 0.9rem;
  }

  /* ⭐ Star Ratings */
  .testimonialspage-rating {
      color: #ffc107;
      margin-top: 6px;
      font-size: 1rem;
  }

  /* ✨ Entrance Animation */
  .testimonialspage-testimonial-card {
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUpCard 0.8s ease forwards;
  }

  @keyframes fadeUpCard {
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* 📱 Responsive Design */
  @media (max-width: 992px) {
      .testimonialspage-testimonial-card {
          padding: 30px 25px;
      }

      .testimonialspage-testimonial-content {
          font-size: 1rem;
      }
  }

  @media (max-width: 768px) {
      .testimonialspage-testimonial-card {
          padding: 25px 20px;
      }

      .testimonialspage-testimonial-quote {
          font-size: 2.5rem;
          top: 10px;
          left: 20px;
      }

      .testimonialspage-author-image {
          width: 55px;
          height: 55px;
      }

      .testimonialspage-author-info h4 {
          font-size: 1rem;
      }

      .testimonialspage-author-info p {
          font-size: 0.85rem;
      }
  }

  @media (max-width: 576px) {
      .testimonialspage-testimonial-card {
          padding: 20px 18px;
          border-left-width: 4px;
      }

      .testimonialspage-testimonial-content {
          font-size: 0.95rem;
          line-height: 1.6;
      }
  }

  /* Statistics Section */
  /* 🌟 Testimonials Stats */
  .testimonialspage-stat-item {
      text-align: center;
      padding: 25px 20px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(6px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.4s ease;
      cursor: default;
  }

  .testimonialspage-stat-item:hover {
      transform: translateY(-8px);
      background: rgba(255, 255, 255, 0.15);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  /* Stat Number */
  .testimonialspage-stat-number {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 8px;
      color: var(--light-green);
      letter-spacing: 1px;
      transition: color 0.3s ease;
  }

  .testimonialspage-stat-item:hover .testimonialspage-stat-number {
      color: #fff;
  }

  /* Stat Label */
  .testimonialspage-stat-label {
      font-size: 1.1rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.85);
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

  /* ✨ Featured Testimonial */
  .testimonialspage-featured-testimonial {
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(14px);
      border-radius: 20px;
      padding: 50px 40px;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: #fff;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
      transition: all 0.4s ease;
      max-width: 900px;
      margin: 0 auto;
  }

  .testimonialspage-featured-testimonial:hover {
      transform: translateY(-10px);
      background: rgba(255, 255, 255, 0.2);
  }

  /* Quote Text */
  .testimonialspage-featured-content {
      font-size: 1.25rem;
      line-height: 1.9;
      margin-bottom: 30px;
      font-style: italic;
      color: rgba(255, 255, 255, 0.9);
      position: relative;
  }

  /* Add Stylish Quote Marks */
  .testimonialspage-featured-content::before,
  .testimonialspage-featured-content::after {
      content: "“";
      font-family: Georgia, serif;
      font-size: 3rem;
      color: var(--light-green);
      opacity: 0.4;
      position: absolute;
  }

  .testimonialspage-featured-content::before {
      left: -10px;
      top: -15px;
      transform: rotate(-5deg);
  }

  .testimonialspage-featured-content::after {
      content: "”";
      right: -10px;
      bottom: -15px;
      transform: rotate(5deg);
  }

  /* Author Details */
  .testimonialspage-featured-author {
      font-size: 1.2rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 5px;
  }

  .testimonialspage-featured-position {
      color: rgba(255, 255, 255, 0.75);
      font-size: 1rem;
      margin-bottom: 10px;
  }

  /* 🌈 Subtle Glow Animation */
  @keyframes glowPulse {
      0% {
          text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
      }

      50% {
          text-shadow: 0 0 16px rgba(0, 255, 180, 0.6);
      }

      100% {
          text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
      }
  }

  .testimonialspage-featured-author {
      animation: glowPulse 3s infinite ease-in-out;
  }

  /* 📱 Responsive Design */
  @media (max-width: 992px) {
      .testimonialspage-featured-testimonial {
          padding: 40px 30px;
      }

      .testimonialspage-featured-content {
          font-size: 1.1rem;
      }

      .testimonialspage-stat-number {
          font-size: 2.5rem;
      }
  }

  @media (max-width: 768px) {
      .testimonialspage-featured-testimonial {
          padding: 35px 25px;
      }

      .testimonialspage-featured-content {
          font-size: 1.05rem;
          line-height: 1.7;
      }

      .testimonialspage-stat-item {
          margin-bottom: 20px;
      }
  }

  @media (max-width: 576px) {
      .testimonialspage-featured-testimonial {
          padding: 30px 20px;
          border-radius: 15px;
      }

      .testimonialspage-featured-content {
          font-size: 1rem;
          line-height: 1.6;
      }

      .testimonialspage-stat-number {
          font-size: 2.2rem;
      }

      .testimonialspage-stat-label {
          font-size: 1rem;
      }
  }

  /* ================================
           CONTACT PAGE STYLES
        ================================ */

  /* 🌟 Contact Page Hero */
  .contactpage-hero {
      background: linear-gradient(135deg, rgba(0, 14, 91, 0.95) 0%, rgba(32, 44, 111, 0.95) 100%);
      color: white;
      padding: 100px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
  }

  /* Subtle floating overlay for depth */
  .contactpage-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15), transparent 60%),
          radial-gradient(circle at 80% 70%, rgba(0, 255, 180, 0.2), transparent 60%);
      z-index: 0;
      animation: heroGradientMove 10s infinite alternate ease-in-out;
  }

  /* Hero Title */
  .contactpage-hero-title {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 15px;
      position: relative;
      z-index: 1;
      letter-spacing: 1px;
      text-transform: uppercase;
      background: white;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: fadeInDown 1.2s ease;
  }

  /* Hero Subtitle */
  .contactpage-hero-subtitle {
      font-size: 1.25rem;
      opacity: 0.9;
      max-width: 700px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      line-height: 1.7;
      animation: fadeInUp 1.5s ease;
  }

  /* Decorative underline */
  .contactpage-hero-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background: var(--light-green);
      margin: 15px auto 0;
      border-radius: 2px;
      animation: expandLine 1s ease forwards;
  }

  /* ✨ Animations */
  @keyframes fadeInDown {
      from {
          opacity: 0;
          transform: translateY(-30px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes expandLine {
      from {
          width: 0;
          opacity: 0;
      }

      to {
          width: 80px;
          opacity: 1;
      }
  }

  @keyframes heroGradientMove {
      0% {
          background-position: 0% 50%;
      }

      100% {
          background-position: 100% 50%;
      }
  }

  /* 📱 Responsive Styles */
  @media (max-width: 992px) {
      .contactpage-hero {
          padding: 80px 15px;
      }

      .contactpage-hero-title {
          font-size: 2.5rem;
      }

      .contactpage-hero-subtitle {
          font-size: 1.1rem;
          max-width: 600px;
      }
  }

  @media (max-width: 576px) {
      .contactpage-hero {
          padding: 70px 10px;
      }

      .contactpage-hero-title {
          font-size: 2rem;
      }

      .contactpage-hero-subtitle {
          font-size: 1rem;
          line-height: 1.6;
      }
  }

  /* Section Base Styles */
  /* ✨ Contact Page Section */
  .contactpage-section {
      padding: 100px 0;
      position: relative;
      overflow: hidden;
  }

  /* Light Section */
  .contactpage-section-light {
      background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  }

  /* Dark Section */
  .contactpage-section-dark {
      background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
      color: white;
      position: relative;
      z-index: 1;
  }

  /* Add soft floating shapes to dark section */
  .contactpage-section-dark::before,
  .contactpage-section-dark::after {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(0, 255, 180, 0.15), transparent 60%);
      border-radius: 50%;
      filter: blur(80px);
      z-index: 0;
  }

  .contactpage-section-dark::before {
      top: -50px;
      left: -80px;
  }

  .contactpage-section-dark::after {
      bottom: -50px;
      right: -80px;
  }

  /* Section Title */
  .contactpagesection-title {
      position: relative;
      display: inline-block;
      font-weight: 800;
      font-size: 2.5rem;
      color: var(--primary-blue);
      margin-bottom: 60px;
      text-transform: capitalize;
      letter-spacing: 1px;
      background: linear-gradient(135deg, var(--primary-blue), var(--light-green));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      transition: all 0.4s ease;
      z-index: 1;
      text-align: center;
  }

  /* Animated underline */
  .contactpagesection-title::after {
      content: '';
      position: absolute;
      width: 80px;
      height: 4px;
      background: var(--light-green);
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
      animation: glowPulse 2s ease-in-out infinite alternate;
  }

  .contactpagesection-title.center::after {
      left: 50%;
      transform: translateX(-50%);
  }

  .contactpagesection-title:hover::after {
      width: 100px;
  }

  /* White version for dark backgrounds */
  .contactpagesection-title.white {
      color: #fff;
  }

  .contactpagesection-title.white::after {
      background: var(--light-green);
  }

  /* Subtitle */
  .contactpagesection-subtitle {
      font-size: 1.15rem;
      color: #555;
      margin: 25px auto 50px;
      max-width: 750px;
      line-height: 1.7;
      text-align: center;
      opacity: 0.9;
      transition: all 0.3s ease;
  }

  .contactpagesection-subtitle.white {
      color: rgba(255, 255, 255, 0.85);
  }

  /* Hover effect for better interaction */
  .contactpagesection-subtitle:hover {
      opacity: 1;
      transform: scale(1.02);
      transition: all 0.3s ease;
  }

  /* 🌍 Responsive Adjustments */
  @media (max-width: 992px) {
      .contactpage-section {
          padding: 80px 20px;
      }

      .contactpagesection-title {
          font-size: 2rem;
      }

      .contactpagesection-subtitle {
          font-size: 1rem;
          margin-bottom: 40px;
      }
  }

  @media (max-width: 576px) {
      .contactpage-section {
          padding: 60px 15px;
      }

      .contactpagesection-title {
          font-size: 1.7rem;
      }

      .contactpagesection-subtitle {
          font-size: 0.95rem;
          line-height: 1.6;
      }
  }

  /* contact section */
  .contactpage-section {
      padding: 80px 0;
  }

  .contactpage-section-light {
      background-color: #f8f9fa;
  }

  /* Office Card */
  .contactpage-location-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
      transition: all 0.3s ease;
  }

  .contactpage-location-card:hover {
      transform: translateY(-5px);
  }

  .contactpage-location-image {
      height: 220px;
      background-size: cover;
      background-position: center;
  }

  .contactpage-location-content {
      padding: 25px;
  }

  .contactpage-location-title {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--primary-blue);
      margin-bottom: 10px;
  }

  .contactpage-location-address {
      color: #555;
      line-height: 1.6;
      margin-bottom: 10px;
  }

  .contactpage-location-hours {
      color: #777;
      font-size: 0.95rem;
  }

  /* Contact Cards */
  .contactpage-contact-card {
      background: white;
      border-radius: 12px;
      padding: 35px 25px;
      text-align: center;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
      border-top: 4px solid var(--primary-blue);
      transition: all 0.3s ease;
      height: 100%;
  }

  .contactpage-contact-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  }

  .contactpage-contact-icon {
      font-size: 2.3rem;
      color: var(--primary-blue);
      margin-bottom: 15px;
  }

  .contactpage-contact-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--primary-blue);
      margin-bottom: 10px;
  }

  .contactpage-contact-info {
      color: #666;
      line-height: 1.6;
      margin-bottom: 15px;
  }

  .contactpage-contact-link {
      color: var(--light-green);
      text-decoration: none;
      font-weight: 600;
  }

  .contactpage-contact-link:hover {
      color: var(--dark-green);
  }

  /* Responsive Adjustments */
  @media (max-width: 992px) {
      .contactpage-location-card {
          margin-bottom: 30px;
      }
  }

  @media (max-width: 768px) {
      .contactpage-section {
          padding: 60px 0;
      }

      .contactpage-contact-card {
          padding: 25px 20px;
      }

      .contactpage-location-image {
          height: 180px;
      }

      .contactpage-contact-icon {
          font-size: 2rem;
      }

      .contactpage-contact-title {
          font-size: 1.1rem;
      }

      .contactpage-contact-info {
          font-size: 0.95rem;
      }
  }

  /* FAQ Section */
  /* FAQ Container */
  .contactpage-faq-item {
      background: white;
      border-radius: 12px;
      padding: 20px 25px;
      margin-bottom: 18px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      border-left: 5px solid var(--light-green);
      transition: all 0.3s ease;
      cursor: pointer;
      position: relative;
      overflow: hidden;
  }

  .contactpage-faq-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  }

  /* Question Row */
  .contactpage-faq-question {
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--primary-blue);
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: color 0.3s ease;
  }

  .contactpage-faq-question:hover {
      color: var(--light-green);
  }

  /* Icon */
  .contactpage-faq-question i {
      font-size: 1.2rem;
      color: var(--light-green);
      transition: transform 0.3s ease;
  }

  /* Answer */
  .contactpage-faq-answer {
      color: #666;
      line-height: 1.7;
      margin-top: 12px;
      display: none;
      transition: all 0.3s ease;
  }

  /* Active State */
  .contactpage-faq-item.active {
      border-left-color: var(--dark-green);
      background: #f9fdfb;
  }

  .contactpage-faq-item.active .contactpage-faq-answer {
      display: block;
  }

  .contactpage-faq-item.active .contactpage-faq-question i {
      transform: rotate(180deg);
  }

  /* Responsive */
  @media (max-width: 768px) {
      .contactpage-faq-item {
          padding: 18px 20px;
      }

      .contactpage-faq-question {
          font-size: 1rem;
      }

      .contactpage-faq-answer {
          font-size: 0.95rem;
      }
  }

  /* CTA Section */
  .contactpage-cta-section {
      background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
      color: white;
      text-align: center;
      padding: 90px 0;
      position: relative;
      overflow: hidden;
  }

  /* Subtle animated background overlay */
  .contactpage-cta-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.15), transparent 60%),
          radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.1), transparent 60%);
      animation: floatBg 8s infinite alternate ease-in-out;
  }

  @keyframes floatBg {
      from {
          transform: translateY(0);
      }

      to {
          transform: translateY(-15px);
      }
  }

  /* Title & Subtitle */
  .contactpage-cta-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 15px;
  }

  .contactpage-cta-subtitle {
      font-size: 1.15rem;
      color: rgba(255, 255, 255, 0.9);
      max-width: 650px;
      margin: 0 auto 40px auto;
      line-height: 1.8;
  }

  .contactpage-cta-subtitle .highlight {
      color: var(--light-green);
      font-weight: 700;
  }

  /* Buttons */
  .btn-primary {
      background-color: var(--light-green);
      border: none;
      padding: 12px 30px;
      border-radius: 10px;
      font-weight: 600;
      transition: all 0.3s ease;
      color: #fff;
  }

  .btn-primary:hover {
      background-color: var(--dark-green);
      transform: translateY(-4px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  }

  /* Outline Button */
  .btn-outline-primary {
      border: 2px solid var(--light-green);
      color: var(--light-green);
      background: transparent;
      padding: 12px 30px;
      border-radius: 10px;
      font-weight: 600;
      transition: all 0.3s ease;
  }

  .btn-outline-primary:hover {
      background-color: var(--light-green);
      color: white;
      transform: translateY(-4px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }

  /* Responsive Tweaks */
  @media (max-width: 768px) {
      .contactpage-cta-title {
          font-size: 2rem;
      }

      .contactpage-cta-subtitle {
          font-size: 1rem;
          padding: 0 15px;
      }

      .btn-primary,
      .btn-outline-primary {
          width: 100%;
          padding: 14px;
      }

      .d-flex.gap-3 {
          gap: 15px !important;
      }
  }