  /*---------------------------------1.Navbar--------------------------------------*/


  .nav-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: var(--white);
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      padding: 0 20px;
  }

  nav {

      max-width: 1200px;
      margin: 0 auto;
      height: 80px;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }


  body {
      padding-top: 80px;
  }

  .logo {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--dark-blue);
      z-index: 101;
  }


  .nav-menu {
      display: flex;
      align-items: center;
      gap: 25px;
  }

  .nav-links {
      display: flex;
      gap: 20px;
  }

  .nav-links a {
      text-decoration: none;
      color: var(--text-dark);
      font-weight: 500;
      font-size: 0.95rem;
      transition: color 0.3s;
  }

  .nav-links a:hover {
      color: var(--primary-blue);
  }

  .btn {
      padding: 12px 28px;
      border-radius: 8px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      font-size: 0.95rem;
      background-color: var(--primary-blue);
      color: var(--white);
  }

  .btn:hover {
      opacity: 0.9;
      transform: translateY(-1px);
  }


  .hamburger {
      display: none;
      cursor: pointer;
      z-index: 101;
  }

  .bar {
      display: block;
      width: 25px;
      height: 3px;
      margin: 5px auto;
      transition: all 0.3s ease-in-out;
      background-color: var(--dark-blue);
  }

  /*----------------------2.Hero-----------------------------------*/


  .hero {
      padding: 80px 0;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      overflow: visible;

  }


  .hero-content h1 {
      font-size: 3.5rem;
      line-height: 1.1;
      color: var(--text-dark);
      margin-bottom: 24px;
  }

  .hero-content p {
      color: var(--text-light);
      margin-bottom: 32px;
      font-size: 1.125rem;
      max-width: 90%;
      line-height: 1.6;
  }


  .hero-btns {
      display: flex;
      gap: 15px;
      align-items: center;
  }

  .btn-link {
      background: none;
      color: var(--text-dark);
      text-decoration: underline;
      font-weight: 500;
  }


  .hero-image-container {
      position: relative;
      z-index: 1;
  }

  .hero-image-container::before {
      content: '';
      position: absolute;
      top: -30px;
      right: -30px;
      width: 80%;
      height: 90%;
      z-index: -1;
      background-image: radial-gradient(var(--primary-blue) 2px, transparent 2px);
      background-size: 20px 20px;
      opacity: 0.85;
      border-radius: var(--border-radius);
  }

  .hero-img {
      width: 100%;
      height: auto;
      border-radius: var(--border-radius);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      display: block;
  }

  .trust-bar-section {
      position: relative;
      z-index: 10;
      padding: 20px 0;
  }

  .trust-bar-container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
  }

  .trust-card {
      display: flex;
      align-items: center;
      justify-content: space-around;
      background: var(--glass-bg);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-radius: var(--border-radius);
      padding: 25px 40px;
      box-shadow: var(--shadow-premium);
      border: 1px solid rgba(255, 255, 255, 0.6);
      max-width: 900px;
      margin: 0 auto;
      transition: transform 0.3s ease;
  }

  .trust-card:hover {
      transform: translateY(-3px);
  }

  .trust-item {
      display: flex;
      align-items: center;
      gap: 18px;
  }

  .trust-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
  }

  .google-svg {
      width: 34px;
      height: 34px;
      display: block;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
  }

  .stars-row {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 2px;
  }

  .score {
      font-weight: 800;
      font-size: 1.25rem;
      color: var(--dark-blue);
      line-height: 1;
      font-family: 'Poppins', sans-serif;
  }

  .stars {
      display: flex;
      gap: 3px;
  }

  .stars i {
      font-size: 0.9rem;
      background: var(--gold-start);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      color: var(--gold);
  }

  .trust-sub {
      font-size: 0.85rem;
      color: #64748b;
      margin: 0;
      font-weight: 500;
      font-family: 'Poppins', sans-serif;
  }

  .trust-sub strong {
      color: var(--dark-blue);
      font-weight: 700;
      text-decoration: underline;
      text-decoration-color: rgba(30, 58, 138, 0.2);
      text-underline-offset: 3px;
  }

  .trust-divider {
      width: 1px;
      height: 50px;
      padding-right: 15px;
  }

  .icon-pulse-wrapper {
      position: relative;
      width: 48px;
      height: 48px;
      background: #eff6ff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-blue);
      font-size: 1.3rem;
      flex-shrink: 0;
  }


  .pulse-ring {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      border: 2px solid var(--primary-blue);
      animation: pulse-animation 2s infinite;
      opacity: 0;
      z-index: 1;
  }

  .icon-pulse-wrapper i {
      position: relative;
      z-index: 2;
  }

  @keyframes pulse-animation {
      0% {
          transform: scale(1);
          opacity: 0.5;
      }

      100% {
          transform: scale(1.6);
          opacity: 0;
      }
  }

  .highlight-number {
      font-weight: 800;
      font-size: 1.25rem;
      color: var(--dark-blue);
      line-height: 1;
      margin-bottom: 2px;
      font-family: 'Poppins', sans-serif;
  }


  @media (max-width: 768px) {
      .trust-card {
          flex-direction: column;
          gap: 25px;
          text-align: center;
          padding: 25px 20px;
      }

      .trust-divider {
          width: 100%;
          height: 1px;
          background: linear-gradient(to right, transparent, #cbd5e1, transparent);
      }

      .trust-item {
          flex-direction: column;
          gap: 12px;
      }

      .trust-content {
          align-items: center;
      }
  }

  /*------------------------------3.Pricing-------------------------------------*/

  .pricing {
      background-color: var(--bg-light);
      padding: 100px 0;
      text-align: center;
  }

  .pricing-header h2 {
      font-size: 2.5rem;
      margin-bottom: 15px;
      color: var(--text-dark);
  }


  .pricing-toggle {
      display: inline-flex;
      background: #e2e8f0;
      padding: 4px;
      border-radius: 30px;
      margin-top: 20px;
      margin-bottom: 50px;
  }

  .toggle-btn {
      padding: 8px 24px;
      border-radius: 25px;
      cursor: pointer;
      font-size: 0.9rem;
      font-weight: 500;
      transition: all 0.3s ease;
      color: var(--text-light);
  }

  .toggle-btn.active {
      background: var(--white);
      color: var(--primary-blue);
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }


  .pricing-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      align-items: flex-start;
      max-width: 1200px;
      margin: 0 auto;
  }


  .card {
      background: var(--white);
      padding: 40px;
      border-radius: 12px;
      text-align: left;
      border: 1px solid #e5e7eb;
      transition: all 0.3s ease;
      position: relative;
  }

  .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  }

  .card.highlight {
      background: var(--primary-blue);
      color: var(--white);
      border: none;
      box-shadow: 0 20px 40px rgba(37, 99, 235, 0.25);
      transform: scale(1.05);
      z-index: 2;
  }

  .card.highlight:hover {
      transform: scale(1.05) translateY(-5px);
  }

  .card.highlight p,
  .card.highlight li {
      color: #e0e7ff;
  }

  .card.highlight .btn {
      background: #FFD700;
      color: #1f2937;
      font-weight: 600;
      border: none;
  }

  .card.highlight .btn:hover {
      background: #ffe44d;
  }


  .price {
      font-size: 2.5rem;
      font-weight: 700;
      margin: 20px 0;
  }

  .price span {
      font-size: 1rem;
      font-weight: 400;
      opacity: 0.8;
  }

  .features-list {
      list-style: none;
      margin: 30px 0 0 0;
      padding: 0;
  }

  .features-list li {
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      font-size: 0.95rem;
  }

  .features-list i {
      margin-right: 12px;
      color: var(--primary-blue);
  }

  .card.highlight .features-list i {
      color: #FFD700;
  }


  @media (max-width: 968px) {
      .card.highlight {
          transform: scale(1);
      }

      .card.highlight:hover {
          transform: translateY(-10px);
      }
  }

  /*-------------------------------4.Meet the doctor--------------------------------------------*/

  .meet-doctor {
      padding: 100px 0;
      background-color: var(--white);
      overflow: hidden;
  }

  .doctor-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
  }


  .doctor-img-wrapper {
      position: relative;
      z-index: 1;
  }

  .doctor-photo {
      width: 100%;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow-soft);
      position: relative;
      z-index: 2;
  }


  .doctor-img-wrapper::before {
      content: '';
      position: absolute;
      bottom: -20px;
      left: -20px;
      width: 100%;
      height: 100%;
      background-color: var(--primary-blue);
      border-radius: var(--border-radius);
      z-index: 1;
  }

  .exp-badge {
      position: absolute;
      bottom: 30px;
      right: -30px;
      background: var(--white);
      padding: 20px;
      border-radius: 12px;
      box-shadow: var(--shadow-hover);
      z-index: 3;
      display: flex;
      align-items: center;
      gap: 15px;
      min-width: 200px;
  }

  .exp-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--primary-blue);
      line-height: 1;
  }

  .exp-text {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--text-dark);
      line-height: 1.2;
  }


  .doctor-content h5 {
      color: var(--primary-blue);
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 10px;
  }

  .doctor-content h2 {
      font-size: 2.5rem;
      margin-bottom: 25px;
      line-height: 1.2;
  }

  .doctor-bio {
      color: var(--text-light);
      margin-bottom: 30px;
      font-size: 1rem;
  }

  .doctor-signature {
      margin-bottom: 30px;
      opacity: 0.8;
  }


  .credentials {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 40px;
  }

  .credential-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 500;
      color: var(--text-dark);
  }

  .credential-item i {
      color: var(--primary-blue);
      background: #eff6ff;
      padding: 8px;
      border-radius: 50%;
      font-size: 0.9rem;
  }


  @media (max-width: 968px) {
      .doctor-grid {
          grid-template-columns: 1fr;
          gap: 50px;
      }

      .doctor-img-wrapper {
          max-width: 500px;
          margin: 0 auto;
      }

      .exp-badge {
          right: 0;
      }
  }

  /*-------------------------------------5.Why Choose Us----------------------------------------------------------*/


  .why-choose-us {
      padding: 100px 0;
      background-color: var(--bg-light);
  }

  .wcu-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 60px;
  }

  .wcu-header h2 {
      font-size: 2.5rem;
      margin-bottom: 15px;
      color: var(--text-dark);
  }

  .wcu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
  }

  .wcu-card {
      background: var(--white);
      padding: 40px 30px;
      border-radius: var(--border-radius);
      transition: var(--transition);
      border: 1px solid transparent;
  }

  .wcu-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
      border-color: #e2e8f0;
  }


  .wcu-icon {
      width: 60px;
      height: 60px;
      background-color: #eff6ff;
      /* Light Blue */
      color: var(--primary-blue);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 24px;
      transition: var(--transition);
  }

  .wcu-card:hover .wcu-icon {
      background-color: var(--primary-blue);
      color: var(--white);
      transform: scale(1.1) rotate(-5deg);
  }

  .wcu-card h4 {
      font-size: 1.25rem;
      margin-bottom: 12px;
      color: var(--text-dark);
  }

  .wcu-card p {
      color: var(--text-light);
      font-size: 0.95rem;
      line-height: 1.6;
  }


  @media (max-width: 768px) {
      .wcu-header h2 {
          font-size: 2rem;
      }

      .wcu-grid {
          grid-template-columns: 1fr;
          /* Stack vertically on mobile */
      }
  }

  /*------------------------------------6.Reviews--------------------------------------------------------*/


  .reviews-section {
      padding: 100px 0;
      background-color: var(--white);
  }

  .reviews-header {
      text-align: center;
      margin-bottom: 60px;
  }

  .reviews-header h2 {
      font-size: 2.5rem;
      margin-bottom: 15px;
      color: var(--text-dark);
  }


  .google-badge-header {
      display: inline-flex;
      align-items: center;
      gap: 15px;
      background: #fff;
      padding: 10px 15px;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      border: 1px solid #eee;
      margin-bottom: 20px;
  }

  .google-logo-text {
      font-weight: 600;
      font-size: 1.1rem;
      color: #5f6368;
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
  }


  .review-card {
      background: #f8fafc;
      padding: 30px;
      border-radius: 16px;
      position: relative;
      border: 1px solid transparent;
      transition: var(--transition);
  }

  .review-card:hover {
      background: #fff;
      box-shadow: var(--shadow-hover);
      border-color: #e2e8f0;
      transform: translateY(-5px);
  }

  .reviewer-info {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 15px;
  }

  .reviewer-img {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      object-fit: cover;
  }

  .reviewer-details h5 {
      font-size: 0.95rem;
      margin-bottom: 2px;
      color: var(--text-dark);
  }

  .reviewer-meta {
      font-size: 0.75rem;
      color: var(--text-light);
  }


  .review-stars-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 15px;
  }

  .stars-gold {
      color: #F4B400;
      font-size: 0.9rem;
  }

  .review-time {
      font-size: 0.8rem;
      color: var(--text-light);
  }

  .review-text {
      color: var(--text-dark);
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 20px;
  }

  .g-watermark {
      position: absolute;
      top: 30px;
      right: 30px;
      width: 24px;
      height: 24px;
      opacity: 0.8;
  }

  .reviews-footer {
      text-align: center;
      margin-top: 50px;
  }

  @media (max-width: 768px) {
      .reviews-grid {
          grid-template-columns: 1fr;
      }
  }

  /*----------------------------------------7.Contact Form------------------------------------------------------------*/


  .contact-section {
      padding: 100px 0;
      background-color: var(--white);
  }

  .contact-container {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 60px;
      align-items: start;
      max-width: 1200px;
      margin: 0 auto;
  }

  .contact-info-col {
      display: flex;
      flex-direction: column;
      gap: 30px;
  }

  .info-card {
      background: var(--bg-light);
      padding: 30px;
      border-radius: var(--border-radius);
      border: 1px solid #e2e8f0;
  }

  .info-item {
      display: flex;
      gap: 20px;
      margin-bottom: 25px;
  }

  .info-item:last-child {
      margin-bottom: 0;
  }

  .info-icon {
      width: 45px;
      height: 45px;
      background: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-blue);
      font-size: 1.1rem;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      flex-shrink: 0;
  }

  .info-content h5 {
      font-size: 1.1rem;
      margin-bottom: 5px;
      color: var(--text-dark);
  }

  .info-content p {
      color: var(--text-light);
      font-size: 0.95rem;
      line-height: 1.5;
  }

  .map-wrapper {
      width: 100%;
      height: 300px;
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      border: 5px solid var(--white);
  }

  .map-wrapper iframe {
      width: 100%;
      height: 100%;
      border: none;
  }

  .contact-form-wrapper {
      background: var(--white);
      padding: 40px;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow-soft);
      border: 1px solid #f1f5f9;
  }

  .form-header {
      margin-bottom: 30px;
  }

  .form-header h2 {
      font-size: 2rem;
      margin-bottom: 10px;
  }

  .form-group {
      margin-bottom: 20px;
  }

  .form-label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
      color: var(--text-dark);
      font-size: 0.9rem;
  }

  .form-control {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid #e2e8f0;
      border-radius: 8px;
      font-size: 1rem;
      font-family: 'Poppins', sans-serif;
      transition: var(--transition);
      background-color: #f8fafc;
  }

  .form-control:focus {
      outline: none;
      border-color: var(--primary-blue);
      background-color: var(--white);
      box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  }

  textarea.form-control {
      resize: vertical;
      min-height: 120px;
  }


  @media (max-width: 900px) {
      .contact-container {
          grid-template-columns: 1fr;
          gap: 50px;
      }

      .map-wrapper {
          height: 250px;
      }
  }

  /*--------------------------------------7.Gallery---------------------------------------------------*/
  .showcase-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      width: 100%;
      max-width: 1100px;
      background: var(--white);
      padding: 40px;
      border-radius: 24px;
      box-shadow: 0 20px 40px -10px rgba(30, 58, 138, 0.1);
      max-width: 1200px;
      margin: 0 auto;
  }

  .section-header {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 24px;
      color: var(--primary-blue);
      display: flex;
      align-items: center;
      gap: 12px;
  }

  .section-header::before {
      content: '';
      display: block;
      width: 5px;
      height: 28px;
      background: var(--primary-blue);
      border-radius: 4px;
  }


  .ba-container {
      position: relative;
      width: 100%;
      aspect-ratio: 4/3;
      border-radius: var(--border-radius);
      overflow: hidden;
      border: 4px solid var(--white);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
      --position: 50%;
  }

  .ba-img-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
  }

  .ba-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      pointer-events: none;
  }

  .img-before {
      width: var(--position);
      border-right: 3px solid var(--white);
      z-index: 2;
      overflow: hidden;
  }

  .inner-img-container {
      width: 100%;
      height: 100%;
      overflow: hidden;
  }

  .inner-before-img {
      width: 100%;
      height: 100%;
  }

  .ba-label {
      position: absolute;
      top: 20px;
      padding: 6px 14px;
      background: rgba(255, 255, 255, 0.95);
      color: var(--primary-blue);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      border-radius: 6px;
      z-index: 5;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      pointer-events: none;
  }

  .lbl-before {
      left: 20px;
  }

  .lbl-after {
      right: 20px;
  }

  .ba-handle {
      position: absolute;
      top: 50%;
      left: var(--position);
      transform: translate(-50%, -50%);
      width: 44px;
      height: 44px;
      background: var(--primary-blue);
      border: 3px solid var(--white);
      border-radius: 50%;
      z-index: 4;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(37, 99, 235, 0.4);
      pointer-events: none;
  }

  .ba-arrow {
      border: solid var(--white);
      border-width: 0 2px 2px 0;
      display: inline-block;
      padding: 3px;
  }

  .arrow-left {
      transform: rotate(135deg);
      margin-left: 2px;
  }

  .arrow-right {
      transform: rotate(-45deg);
      margin-right: 2px;
  }


  .ba-input {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      z-index: 10;
      cursor: col-resize;
  }

  .case-desc {
      margin-top: 20px;
      color: var(--text-light);
      font-size: 0.95rem;
      line-height: 1.6;
      font-weight: 400;
  }

  .case-desc strong {
      color: var(--text-dark);
      font-weight: 600;
  }

  .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(3, 1fr);
      gap: 16px;
  }

  .gallery-item {
      position: relative;
      border-radius: var(--border-radius);
      overflow: hidden;
      cursor: pointer;
      aspect-ratio: 1/1;
      background-color: #e2e8f0;
  }

  .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
  }


  .gallery-item:hover img {
      transform: scale(1.1);
  }

  .gallery-item::after {
      content: '+';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(37, 99, 235, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 2rem;
      font-weight: 300;
      opacity: 0;
      transition: opacity 0.3s ease;
  }

  .gallery-item:hover::after {
      opacity: 1;
  }

  @media (max-width: 850px) {
      .showcase-wrapper {
          grid-template-columns: 1fr;
          gap: 30px;
          padding: 24px;
      }
  }

  /*--------------------------------------4.Services---------------------------------------------------*/
  .services-section {
      padding: 100px 0;
      background-color: var(--bg-color);
  }

  .services-container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
  }

  .section-header-center {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 60px auto;
  }

  .sub-title {
      color: var(--primary-blue);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 0.9rem;
      display: block;
      margin-bottom: 10px;
  }

  .section-header-center h2 {
      color: var(--text-dark);
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 15px;
      line-height: 1.2;
  }

  .section-header-center p {
      color: var(--text-light);
      font-size: 1.1rem;
      line-height: 1.6;
  }


  .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
  }

  .service-card {
      background: var(--white);
      padding: 40px 30px;
      border-radius: var(--border-radius);
      border: 1px solid #e2e8f0;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
  }


  .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px -5px rgba(30, 58, 138, 0.1);
      border-color: transparent;
  }

  .icon-box {
      width: 60px;
      height: 60px;
      background-color: #eff6ff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;
      transition: var(--transition);
  }

  .icon-box svg {
      width: 30px;
      height: 30px;
      fill: var(--primary-blue);
      transition: var(--transition);
  }


  .service-card:hover .icon-box {
      background-color: var(--primary-blue);
  }

  .service-card:hover .icon-box svg {
      fill: var(--white);
  }

  .service-card h3 {
      color: var(--text-dark);
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 15px;
  }

  .service-card p {
      color: var(--text-light);
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 25px;
      flex-grow: 1;
  }

  .service-link {
      text-decoration: none;
      color: var(--primary-blue);
      font-weight: 600;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 5px;
      transition: var(--transition);
  }

  .service-link:hover {
      color: var(--dark-blue);
      gap: 10px;
  }

  @media (max-width: 768px) {
      .section-header-center h2 {
          font-size: 2rem;
      }

      .services-grid {
          gap: 20px;
      }
  }

  /*--------------------------------------9.FAQ-----------------------------------------------------*/
  .faq-container {
      width: 90%;
      max-width: 800px;
      margin: 0 auto;
  }


  .faq-header {
      text-align: center;
      margin-bottom: 50px;
  }

  .sub-title {
      color: var(--primary-blue);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 0.9rem;
      display: block;
      margin-bottom: 10px;
  }

  .faq-header h2 {
      color: var(--text-dark);
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 15px;
      line-height: 1.2;
  }

  .faq-header p {
      color: var(--text-dark);
      font-size: 1.1rem;
      line-height: 1.6;
  }

  .faq-wrapper {
      display: flex;
      flex-direction: column;
      gap: 16px;
  }

  .faq-item {
      background: var(--bg-color);
      border-radius: var(--border-radius);
      overflow: hidden;
      border: 1px solid transparent;
      transition: all 0.3s ease;
  }

  .faq-item:hover {
      border-color: #cbd5e1;
  }

  .faq-question {
      width: 100%;
      background: none;
      border: none;
      padding: 24px;
      text-align: left;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-family: 'Poppins', sans-serif;
  }

  .faq-question span {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--dark-blue);
  }

  .faq-icon {
      width: 32px;
      height: 32px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, background 0.3s ease;
      flex-shrink: 0;
  }

  .faq-icon svg {
      width: 16px;
      height: 16px;
      fill: var(--primary-blue);
      transition: fill 0.3s ease;
  }

  .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-out;
      background-color: var(--bg-color);
  }

  .answer-content {
      padding: 0 24px 24px 24px;
  }

  .answer-content p {
      color: var(--text-light);
      line-height: 1.6;
      font-size: 0.95rem;
      margin: 0;
  }


  .faq-item.active {
      background: var(--white);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      border-color: #e2e8f0;
  }

  .faq-item.active .faq-icon {
      transform: rotate(45deg);
      /* Turns Plus into X */
      background: var(--primary-blue);
  }

  .faq-item.active .faq-icon svg {
      fill: var(--white);
  }

  .faq-item.active .faq-question span {
      color: var(--primary-blue);
  }

  /*--------------------------------------8.Footer-----------------------------------------------------*/

  footer {
      background-color: #0f172a;
      color: #e2e8f0;
      padding: 80px 0 30px;
      font-size: 0.95rem;
  }

  .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
      gap: 40px;
      margin-bottom: 60px;
      max-width: 1200px;
      margin: 0 auto;
  }

  .footer-col h4 {
      color: var(--white);
      font-size: 1.1rem;
      margin-bottom: 25px;
      font-weight: 600;
  }

  .footer-text {
      color: #94a3b8;
      line-height: 1.6;
      margin-bottom: 20px;
      max-width: 300px;
  }


  .footer-links {
      list-style: none;
  }

  .footer-links li {
      margin-bottom: 12px;
  }

  .footer-links a {
      color: #94a3b8;
      text-decoration: none;
      transition: var(--transition);
  }

  .footer-links a:hover {
      color: var(--primary-blue);
      padding-left: 5px;
  }

  .footer-contact li {
      display: flex;
      gap: 15px;
      margin-bottom: 15px;
      color: #94a3b8;
  }

  .footer-contact i {
      color: var(--primary-blue);
      margin-top: 5px;
  }


  .newsletter-form {
      display: flex;
      margin-top: 20px;
  }

  .newsletter-input {
      padding: 12px;
      border-radius: 6px 0 0 6px;
      border: none;
      outline: none;
      width: 100%;
      background: #1e293b;
      color: var(--white);
  }

  .newsletter-btn {
      padding: 12px 20px;
      background: var(--primary-blue);
      color: var(--white);
      border: none;
      border-radius: 0 6px 6px 0;
      cursor: pointer;
      transition: var(--transition);
  }

  .newsletter-btn:hover {
      background: var(--dark-blue);
  }

  .footer-bottom {
      border-top: 1px solid #1e293b;
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
  }

  .footer-socials {
      display: flex;
      gap: 20px;
  }

  .footer-socials a {
      color: #94a3b8;
      font-size: 1.2rem;
      transition: var(--transition);
  }

  .footer-socials a:hover {
      color: var(--white);
      transform: translateY(-3px);
  }

  @media (max-width: 992px) {
      .footer-grid {
          grid-template-columns: 1fr 1fr;
      }
  }

  @media (max-width: 600px) {
      .footer-grid {
          grid-template-columns: 1fr;
          gap: 40px;
      }

      .footer-bottom {
          flex-direction: column;
          text-align: center;
      }
  }