  :root {
      --primary-blue: #1e5aa8;
      --secondary-blue: #3b82f6;
      --dark-blue: #0d3977;
      --light-blue: #2980b9;
      --cyan: #17a2b8;
      --text-dark: #1f2937;
      --text-muted: #6b7280;
      --border-color: #d1d5db;
  }

  body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }


  .scroll-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background-color: #007bff;
      color: white;
      border: none;
      font-size: 24px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      cursor: pointer;
      opacity: 0;
      transition: opacity 0.3s ease-in-out;
      box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
      z-index: 999;
  }

  .btnGroup .btn {
      padding: 0 !important;
      font-size: 16px !important;
      max-width: 200px;
      width: 100%;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      /* margin: auto; */
      border-radius: 25px;
      transition: all 0.3s ease;
  }

  .navbar-brand img {
      max-width: 150px;
      height: auto;
      display: block;
  }

  .solutions-section .btnGroup,
  .hero-section .btnGroup,
  .growth-content .btnGroup {
      justify-content: start;
  }

  .scroll-to-top:hover {
      background-color: #0056b3;
  }

  .scroll-to-top.visible {
      opacity: 1;
  }

  /* Main navbar */
  .main-navbar {
      background: var(--primary-blue);
      padding: 15px 0;
      transition: all 0.3s ease;
  }

  .main-navbar.sticky {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1050;
      padding: 10px 0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
      from {
          transform: translateY(-100%);
      }

      to {
          transform: translateY(0);
      }
  }


  /* Desktop navigation */
  .desktop-nav {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
      align-items: center;
  }

  .desktop-nav .nav-item {
      position: relative;
      margin: 0 8px;
  }

  .desktop-nav .nav-link {
      color: white !important;
      font-weight: 500;
      padding: 10px;
      text-decoration: none;
      display: flex;
      align-items: center;
      transition: all 0.3s ease;
      white-space: nowrap;
      border-radius: 4px;
  }

  .desktop-nav .nav-link:hover {
      color: var(--cyan) !important;
      background: rgba(255, 255, 255, 0.1);
  }

  .desktop-nav .nav-link i {
      font-size: 10px;
      margin-left: 5px;
      transition: transform 0.3s ease;
  }

  /* Fixed dropdown positioning and hover behavior */
  .dropdown-menu {
      display: none;
      position: absolute;
      top: 90%;
      right: 0;
      z-index: 1000;
      min-width: 200px;
      background: white;
      border: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
      border-radius: 8px;
      margin-top: 5px;
      opacity: 0;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      pointer-events: none;
  }

  /* Show dropdown only when hovering on the specific nav-item */
  .desktop-nav .nav-item:hover>.dropdown-menu {
      display: block;
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
  }

  .desktop-nav .nav-item:hover>.nav-link i {
      transform: rotate(180deg);
  }

  .dropdown-item {
      padding: 12px 20px;
      transition: all 0.3s ease;
      color: #333;
      text-decoration: none;
      display: block;
      border: none;
      background: none;
      width: 100%;
      text-align: left;
  }

  .dropdown-item:hover {
      background: var(--light-blue);
      color: white;
  }

  /* Mobile menu toggle */
  .mobile-menu-toggle {
      background: none;
      border: none;
      color: white;
      cursor: pointer;
      display: none;
  }

  .hamburger {
      display: flex;
      flex-direction: column;
      width: 25px;
      height: 18px;
      justify-content: space-between;
  }

  .hamburger span {
      width: 100%;
      height: 3px;
      background: white;
      transition: all 0.3s ease;
      border-radius: 2px;
  }

  .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
  }

  .hamburger.active span:nth-child(2) {
      opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Mobile menu */
  .mobile-menu {
      position: fixed;
      top: 0;
      left: -100%;
      width: 320px;
      max-width: 90vw;
      height: 100vh;
      background: white;
      z-index: 1060;
      transition: left 0.3s ease;
      box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
      overflow-y: auto;
  }

  .mobile-menu.active {
      left: 0;
  }

  .mobile-menu-header {
      background: var(--primary-blue);
      color: white;
      padding: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 16px;
      font-weight: bold;
  }

  .mobile-menu-close {
      background: none;
      border: none;
      color: white;
      font-size: 20px;
      cursor: pointer;
  }

  .mobile-menu-items {
      padding: 0;
      margin: 0;
      list-style: none;
  }

  .mobile-menu-items li {
      border-bottom: 1px solid #f0f0f0;
  }

  .mobile-menu-items>li>a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      color: #333;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
  }

  .mobile-menu-items>li>a:hover {
      background: #f8f9fa;
      color: var(--primary-blue);
  }

  /* Mobile dropdown */
  .mobile-dropdown {
      max-height: 0;
      overflow: hidden;
      background: #f8f9fa;
      transition: max-height 0.3s ease;
  }

  .mobile-dropdown.active {
      max-height: 300px;
  }

  .mobile-dropdown a {
      display: block;
      padding: 15px 40px;
      color: #666;
      text-decoration: none;
      border-bottom: 1px solid #e9ecef;
      font-size: 14px;
      transition: all 0.3s ease;
  }

  .mobile-dropdown a:hover {
      background: #e9ecef;
      color: #333;
      padding-left: 45px;
  }

  .mobile-dropdown a:last-child {
      border-bottom: none;
  }

  .dropdown-arrow {
      transition: transform 0.3s ease;
  }

  .dropdown-arrow.rotated {
      transform: rotate(180deg);
  }

  /* Mobile overlay */
  .mobile-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1055;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
  }

  .mobile-overlay.active {
      opacity: 1;
      visibility: visible;
  }

  /* Hero section */
  .hero-section {
      background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
      color: white;
      padding: 80px 0;
      position: relative;
      overflow: hidden;
  }

  .hero-content h1 {
      font-size: 3.3rem;
      font-weight: bold;
      margin-bottom: 30px;
      line-height: 1.2;
  }

  .hero-content p {
      font-size: 1.1rem;
      margin-bottom: 40px;
      opacity: 0.9;
  }

  .btn-apply {
      background: var(--cyan);
      border: none;
      color: white;
  }

  .btn-apply:hover {
      background: #138496;
      transform: translateY(-2px);
      color: white;
  }

  .hero-image {
      width: 100%;
      height: 100%;
  }

  .hero-image img {
      border-radius: 5px;
      height: 100%;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  /* Responsive breakpoints */
  @media (min-width: 992px) {
      .desktop-nav {
          display: flex !important;
      }

      .mobile-menu-toggle {
          display: none !important;
      }
  }

  @media (max-width: 991.98px) {
      .desktop-nav {
          display: none !important;
      }

      .mobile-menu-toggle {
          display: block !important;
      }

  }

  @media (max-width: 768px) {
      .hero-content h1 {
          font-size: 2.5rem;
      }

      .mobile-menu {
          width: 100%;
          max-width: 100%;
      }

      .btn {
          padding: 10px 15px !important;
          font-size: 13px !important;
      }

      .section-subtitle,
      .stories-header,
      .success-header {
          margin-bottom: 20px !important;
      }

      .footer-bottom {
          margin-top: 0px !important;
      }
  }

  @media (max-width: 576px) {
      .hero-content h1 {
          font-size: 2rem;
      }

  }


  /* ===========================Business Solutions Section================================ */

  .solutions-section {
      background: linear-gradient(135deg, #e8f4f8 0%, #f0f8ff 100%);
      padding: 80px 0;
  }


  /* Custom Accordion Styling */
  .solutions-accordion .card {
      background: white;
      border: none;
      border-radius: 12px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      overflow: hidden;
  }

  .solutions-accordion .card:hover {
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
      transform: translateY(-2px);
  }

  .solutions-accordion .card-header {
      background: transparent;
      border: none;
      padding: 0;
  }

  .solutions-accordion .btn-outline-dark {
      background: transparent;
      border: none;
      width: 100%;
      text-align: left;
      padding: 25px;
      color: #333;
      font-weight: 600;
      font-size: 1.1rem;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
  }

  .solutions-accordion .btn-outline-dark:hover,
  .solutions-accordion .btn-outline-dark:focus {
      background: transparent;
      border: none;
      color: #333;
      box-shadow: none;
  }

  .solution-icon {
      color: #17a2b8;
      font-size: 1.5rem;
      margin-right: 15px;
  }

  .solution-title-wrapper {
      display: flex;
      align-items: center;
      flex: 1;
  }

  .solution-arrow {
      color: #666;
      font-size: 1rem;
      transition: transform 0.3s ease;
  }

  .solutions-accordion .btn-outline-dark[aria-expanded="true"] .solution-arrow {
      transform: rotate(180deg);
  }

  .solutions-accordion .card-body {
      padding: 0 25px 25px;
      border-top: none;
  }

  .solution-description {
      color: #666;
      font-size: 0.95rem;
      line-height: 1.5;
      margin-bottom: 10px;
  }

  .read-more-link {
      color: #17a2b8;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
  }

  .read-more-link:hover {
      color: #138496;
  }

  .btn-apply-now {
      background: #17a2b8;
      border: none;
      color: white;
      padding: 12px 30px;
      border-radius: 25px;
      font-weight: 600;
      transition: all 0.3s ease;
  }

  .btn-apply-now:hover {
      background: #138496;
      transform: translateY(-2px);
      color: white;
  }

  .btn-see-all {
      color: #17a2b8;
      border: 2px solid #17a2b8;
  }

  .btn-see-all:hover {
      background: #17a2b8;
      color: white;
  }

  .section-title {
      color: #333;
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 20px;
  }

  .section-subtitle {
      color: #666;
      font-size: 1.1rem;
      margin-bottom: 40px;
  }

  @media (max-width: 768px) {
      .section-title {
          font-size: 2rem;
      }

      .solutions-accordion .btn-outline-dark {
          padding: 20px;
      }

      .solutions-section {
          padding: 60px 0;
      }
  }


  /* ================================== Testimonial Section with Swiper ========================================== */

  /* Testimonial Section */
  .testimonial-section {
      background: #f8f9fa;
      padding: 80px 0;
  }

  .testimonial-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
  }

  .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
      display: none !important;
  }

  .testimonial-quote {
      font-size: 1.5rem;
      color: #333;
      line-height: 1.6;
      margin-bottom: 30px;
  }

  .highlight-text {
      color: #17a2b8;
  }

  .author-name {
      font-weight: bold;
      color: #333;
      margin-bottom: 5px;
  }

  .author-title {
      color: #666;
      font-size: 0.9rem;
  }

  /* Custom Swiper Navigation */
  .swiper-button-next,
  .swiper-button-prev {
      color: #17a2b8;
      width: 50px;
      height: 50px;
      margin-top: -25px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
      font-size: 20px;
  }

  /* Custom Pagination */
  .swiper-pagination-bullet {
      background: #dee2e6;
      width: 12px;
      height: 12px;
      opacity: 1;
  }

  .swiper-pagination-bullet-active {
      background: #17a2b8;
  }

  /* Growth Section */
  .growth-section {
      background: linear-gradient(135deg, #e8f4f8 0%, #f0f8ff 100%);
      padding: 80px 0;
  }

  .growth-content {
      /* background: white; */
      /* border-radius: 15px; */
      padding: 30px;
      /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
  }

  .growth-title {
      font-size: 2.2rem;
      font-weight: bold;
      color: #333;
      margin-bottom: 20px;
  }

  .growth-subtitle {
      color: #666;
      margin-bottom: 30px;
  }

  .growth-item {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      color: #333;
  }

  .growth-item i {
      color: #17a2b8;
      margin-right: 12px;
      font-size: 1.1rem;
  }

  .btn-apply {
      background: #17a2b8;
      color: white;
  }

  .btn-apply:hover {
      background: #138496;
      transform: translateY(-2px);
      color: white;
  }

  .btn-solutions {
      color: #17a2b8;
      text-decoration: none;
      font-weight: 600;
      padding: 12px 25px;
      border: 2px solid #17a2b8;
      border-radius: 25px;
      transition: all 0.3s ease;
  }

  .btn-solutions:hover {
      background: #17a2b8;
      color: white;
  }

  .btn-reviews {
      background: transparent;
      border: 2px solid #17a2b8;
      color: #17a2b8;
  }

  .btn-reviews:hover {
      background: #17a2b8;
      color: white;
  }

  @media (max-width: 768px) {
      .testimonial-quote {
          font-size: 1.2rem;
      }

      .growth-title {
          font-size: 1.8rem;
      }

      .growth-content {
          padding: 30px 20px;
      }

      .testimonial-section,
      .growth-section {
          padding: 60px 0;
      }
  }


  /* ================================== Section 1 - Features Table =====================================================   */


  .features-section {
      background: #f8f9fa;
      padding: 80px 0;
  }

  .features-section .section-title {
      text-align: center;
  }

  .features-table-wrapper {
      background: white;
      border-radius: 0;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      /* max-width: 900px; */
      /* margin: 0 auto; */
  }

  .features-table {
      margin: 0;
  }

  .features-table thead tr th {
      background: var(--primary-blue);
  }

  .features-table thead th {
      color: white;
      font-weight: 600;
      padding: 20px 30px;
      border: none;
      text-transform: uppercase;
      font-size: 13px;
      letter-spacing: 1px;
      text-align: left;
  }

  .features-table tbody td {
      padding: 18px 30px;
      border: none;
      vertical-align: middle;
      font-size: 14px;
      text-align: left;
  }

  .features-table tbody tr {
      border-bottom: 1px solid #e2e8f0;
  }

  .features-table tbody tr:last-child {
      border-bottom: none;
  }

  .feature-name {
      font-weight: 600;
      color: var(--primary-blue);
      text-transform: uppercase;
      font-size: 12px;
      letter-spacing: 0.5px;
  }

  .feature-check {
      color: var(--success-green);
      font-size: 16px;
      margin-right: 8px;
  }

  .feature-cross {
      color: #e53e3e;
      font-size: 16px;
      margin-right: 8px;
  }


  /* ====================================== Section 2 - Client Stories =============================================== */


  .client-stories-section {
      background: linear-gradient(135deg, #e6f3ff 0%, #f0f8ff 100%);
      padding: 80px 0;
  }

  .stories-header {
      text-align: center;
      margin-bottom: 60px;
  }

  .story-card {
      background: white;
      border: none;
      border-radius: 0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      height: 100%;
      display: flex;
      flex-direction: column;
      transition: transform 0.2s ease;
  }

  .story-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  }

  .story-image {
      height: 180px;
      object-fit: cover;
      width: 100%;
  }

  .story-content {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
  }

  .story-content p {
      font-size: 14px;
      flex: auto;
  }

  .story-category {
      color: var(--text-muted);
      font-size: 12px;
      font-weight: 500;
      margin-bottom: 12px;
  }

  .story-title {
      font-size: 16px;
      font-weight: 600;
      color: var(--text-dark);
      line-height: 1.4;
      margin-bottom: 15px;
      /* flex-grow: 1; */
  }

  .story-stats {
      border-top: 1px solid #e2e8f0;
      padding-top: 20px;
      margin-top: 20px;
  }

  .stat-label {
      font-size: 10px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-weight: 600;
      margin-bottom: 5px;
  }

  .stat-value {
      font-weight: 700;
      color: var(--text-dark);
      font-size: 15px;
  }

  .stat-growth {
      color: var(--success-green);
      font-size: 12px;
      font-weight: 600;
  }

  .btnGroup {
      /* margin-top: 50px; */
      text-align: center;
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      justify-content: center;
  }


  /* ======================================= Section 3 - Success Stories ======================================== */

  .success-stories-section {
      background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
      padding: 80px 0;
      color: white;
  }

  .success-header {
      text-align: center;
      margin-bottom: 60px;
  }

  .success-stories-section :where(.section-title, .section-subtitle) {
      color: #fff;
  }

  .success-card {
      background: white;
      border: none;
      border-radius: 0;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
      height: 100%;
      display: flex;
      flex-direction: column;
      transition: transform 0.2s ease;
  }

  .success-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }

  .success-image {
      height: 180px;
      object-fit: cover;
      width: 100%;
  }

  .success-content {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
  }

  .success-category {
      color: var(--text-muted);
      font-size: 12px;
      font-weight: 500;
      margin-bottom: 12px;
  }

  .success-story-title {
      font-size: 16px;
      font-weight: 600;
      color: var(--text-dark);
      line-height: 1.4;
      margin-bottom: auto;
      flex-grow: 1;
  }

  .author-section {
      border-top: 1px solid #e2e8f0;
      padding-top: 20px;
      margin-top: 20px;
  }

  .author-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 12px;
  }

  .author-name {
      font-weight: 700;
      font-size: 11px;
      color: var(--text-dark);
      letter-spacing: 0.5px;
      margin-bottom: 3px;
      text-transform: uppercase;
  }

  .author-role {
      font-size: 10px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.3px;
  }

  .btn-view-more {
      background: rgba(255, 255, 255, 0.1);
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(5px);
  }

  .btn-view-more:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: rgba(255, 255, 255, 0.5);
      color: white;
  }


  @media (max-width: 1145px) {
      .desktop-nav .nav-link {
          font-size: 14px;
          padding: 5px;
      }

      .hero-section,
      .solutions-section,
      .testimonial-section,
      .growth-section,
      .features-section,
      .features-section,
      .client-stories-section,
      .success-stories-section,
      .newsletter-section,
      .footer-section {
          padding: 30px 0 !important;
      }

      .growth-content {
          padding: 0;
      }
  }

  @media (max-width: 768px) {

      .features-table thead th,
      .features-table tbody td {
          padding: 15px 20px;
          font-size: 13px;
      }

      .section-title,
      .stories-title,
      .success-title {
          font-size: 1.8rem;
      }

      .story-buttons {
          text-align: center;
      }

  }


  /* ======================================== Newsletter Section ====================================== */

  /* Newsletter Section */
  .newsletter-section {
      background: linear-gradient(135deg, #e6f3ff 0%, #f0f8ff 100%);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
  }

  .newsletter-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--secondary-blue);
  }

  .circular-image-container {
      position: relative;
      width: 350px;
      height: 350px;
      margin: 0 auto;
  }

  .circular-image {
      width: 100%;
      height: 100%;
      /* border-radius: 50%; */
      object-fit: cover;
      /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); */
  }


  .newsletter-content {
      padding-left: 40px;
  }

  .newsletter-title {
      font-size: 2.2rem;
      font-weight: 400;
      color: var(--text-dark);
      margin-bottom: 15px;
  }

  .newsletter-subtitle {
      color: var(--text-muted);
      font-size: 16px;
      margin-bottom: 30px;
      line-height: 1.5;
  }

  .newsletter-form {
      max-width: 400px;
      /* margin: auto; */
  }

  .form-control {
      border: 2px solid var(--border-color);
      border-radius: 6px;
      padding: 12px 15px;
      font-size: 14px;
      transition: all 0.3s ease;
      margin-bottom: 15px;
  }

  .form-control:focus {
      border-color: var(--secondary-blue);
      box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
  }

  .btn-subscribe {
      background: var(--secondary-blue);
      color: white;
      border: none;
      padding: 12px 30px;
      border-radius: 6px;
      font-weight: 600;
      text-transform: uppercase;
      font-size: 13px;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      width: 100%;
  }

  .btn-subscribe:hover {
      background: var(--primary-blue);
      color: white;
      transform: translateY(-1px);
  }

  .privacy-text {
      font-size: 11px;
      color: var(--text-muted);
      margin-top: 15px;
      line-height: 1.4;
  }

  .privacy-text a {
      color: var(--secondary-blue);
      text-decoration: none;
  }

  .privacy-text a:hover {
      text-decoration: underline;
  }

  /* Footer Section */
  .footer-section {
      background: var(--primary-blue);
      color: white;
      padding: 60px 0 0;
  }

  .footer-brand {
      margin-bottom: 30px;
  }


  .footer-description {
      color: rgba(255, 255, 255, 0.8);
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 25px;
      max-width: 280px;
  }

  .footer-column h5 {
      font-size: 16px;
      font-weight: 600;
      color: white;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

  .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .footer-links li {
      margin-bottom: 10px;
  }

  .footer-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s ease;
  }

  .footer-links a:hover {
      color: white;
  }

  .footer-cta {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      padding: 25px;
      margin-bottom: 30px;
      backdrop-filter: blur(10px);
  }

  .footer-cta h6 {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 15px;
      color: white;
  }

  .btn-apply-footer {
      background: var(--secondary-blue);
      color: white;
      border: none;
      padding: 10px 25px;
      border-radius: 6px;
      font-weight: 600;
      text-transform: uppercase;
      font-size: 12px;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
  }

  .btn-apply-footer:hover {
      background: #2563eb;
      color: white;
      transform: translateY(-1px);
  }

  .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 25px 0;
      margin-top: 50px;
  }

  .footer-social {
      display: flex;
      gap: 15px;
      margin-bottom: 20px;
  }

  .social-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 35px;
      height: 35px;
      background: rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.8);
      border-radius: 6px;
      text-decoration: none;
      transition: all 0.3s ease;
  }

  .social-icon:hover {
      background: var(--secondary-blue);
      color: white;
      transform: translateY(-2px);
  }

  .footer-certifications {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 20px;
  }

  .cert-badge {
      background: rgba(255, 255, 255, 0.1);
      padding: 8px 15px;
      border-radius: 6px;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .footer-copyright {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.6);
      margin: 0;
  }

  .footer-legal-links {
      display: flex;
      gap: 20px;
      margin-top: 10px;
      justify-content: center;
  }

  .footer-legal-links a {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      font-size: 13px;
  }

  .footer-legal-links a:hover {
      color: rgba(255, 255, 255, 0.8);
  }

  /* Responsive Design */
  @media (max-width: 992px) {
      .newsletter-content {
          padding-left: 0;
          margin-top: 40px;
          text-align: center;
      }

      .circular-image-container {
          width: 280px;
          height: 280px;
      }

      .newsletter-title {
          font-size: 1.8rem;
      }
  }

  @media (max-width: 768px) {
      .circular-image-container {
          width: 250px;
          height: 250px;
      }

      .newsletter-form {
          margin: auto;
      }

      .newsletter-title {
          font-size: 1.6rem;
      }

      .footer-section {
          padding: 40px 0 0;
      }

      .footer-social {
          justify-content: center;
      }

      .footer-certifications {
          justify-content: center;
          flex-wrap: wrap;
      }

      .footer-legal-links {
          justify-content: center;
          flex-wrap: wrap;
          text-align: center;
      }
  }


  /* ===================================contact-page================================= */

  .form-container {
      background: rgba(255, 255, 255, 0.95);
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(30, 90, 168, 0.15);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .form-container .section-header {
      background: linear-gradient(135deg, #1e5aa8 0%, #2d6bb8 100%);
      color: white;
      padding: 15px 25px;
      border-radius: 15px;
      margin-bottom: 25px;
      box-shadow: 0 8px 25px rgba(30, 90, 168, 0.3);
  }

  .form-container .section-header h4 {
      margin: 0;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .form-container .form-control,
  .form-container .form-select {
      border: 2px solid #e0e6ed;
      border-radius: 10px;
      padding: 12px 15px;
      transition: all 0.3s ease;
      background: rgba(255, 255, 255, 0.8);
  }

  .form-container .form-control:focus,
  .form-container .form-select:focus {
      border-color: #1e5aa8;
      box-shadow: 0 0 0 0.2rem rgba(30, 90, 168, 0.25);
      background: white;
  }

  .form-container .form-label {
      font-weight: 600;
      color: #2c3e50;
      margin-bottom: 8px;
  }

  .form-container .btn-primary {
      background: linear-gradient(135deg, #1e5aa8 0%, #2d6bb8 100%);
      border: none;
      padding: 15px 40px;
      border-radius: 50px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      box-shadow: 0 8px 25px rgba(30, 90, 168, 0.3);
  }

  .form-container .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 35px rgba(30, 90, 168, 0.4);
      background: linear-gradient(135deg, #2d6bb8 0%, #1e5aa8 100%);
  }

  .form-container .form-check-input:checked {
      background-color: #1e5aa8;
      border-color: #1e5aa8;
  }

  .form-container .input-group-text {
      background: linear-gradient(135deg, #1e5aa8 0%, #2d6bb8 100%);
      color: white;
      border: none;
      border-radius: 10px 0 0 10px;
  }

  .form-container .consent-section {
      background: linear-gradient(135deg, rgba(30, 90, 168, 0.05) 0%, rgba(45, 107, 184, 0.05) 100%);
      border: 2px solid rgba(30, 90, 168, 0.1);
      border-radius: 15px;
      padding: 20px;
      margin: 30px 0;
      font-size: 0.9em;
  }

  .form-container .signature-box {
      border: 2px dashed #1e5aa8;
      border-radius: 10px;
      padding: 40px;
      text-align: center;
      background: rgba(30, 90, 168, 0.05);
      margin: 15px 0;
  }