body {
    font-family: 'Inter', sans-serif;
  }

  @font-face {
font-family: 'customFont';
src: url('fonts/customFont.otf') format('opentype');
font-weight: normal;
font-style: normal;
}

.company-logo-text {
font-family: 'customFont', sans-serif;
font-size: 3rem;  /* Adjust size as needed */
font-weight: normal; /* Or bold if your font requires */
transition: color 0.3s ease;
}

/* Default for light theme */
[data-bs-theme="light"] .company-logo-text {
color: #212529; /* Bootstrap's body text color (dark) */
}

/* Adjust for dark theme */
[data-bs-theme="dark"] .company-logo-text {
color: #f8f9fa; /* Bootstrap's light text color */
}


  .navbar {
    padding: 1rem 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-bottom: 1px solid #eaeaea;
  }
  .navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
  }
  .navbar-brand img {
    max-height: 40px;
    margin-right: 10px;
    border-radius: 6px;
  }
  .nav-link {
    margin-right: 1rem;
    font-weight: 500;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
  }
  .nav-link:hover, .nav-link.active {
    background-color: rgba(0,0,0,0.05);
  }


  /* Light/Dark adjustments */
  [data-bs-theme="dark"] .nav-link:hover,
  [data-bs-theme="dark"] .nav-link.active {
    background-color: rgba(255,255,255,0.1);
    color: #0d6efd !important;
  }

  [data-bs-theme="dark"] .navbar {
    border-bottom-color: rgba(255,255,255,0.1);
  }









  .section-title {
    border-left: 5px solid #0d6efd;
    padding-left: 15px;
    margin-top: 40px;
    margin-bottom: 3rem;
    font-weight: 700;
    color: var(--bs-emphasis-color);
  }

  
  .card-custom {
    background: var(--bs-light-bg-subtle);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 40px;
    transition: transform 0.3s ease-in-out;
  }
  .card-custom:hover {
    transform: translateY(-5px);
  }

  
  .hero-section {
    background-color: var(--bs-tertiary-bg);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--bs-emphasis-color);
  }
  .hero-section p {
    font-size: 1.2rem;
    color: var(--bs-secondary-color);
    max-width: 800px;
    margin: 0 auto 40px;
  }
  .hero-section .hero-image-placeholder {
      width: 100%;
      max-width: 600px;
      height: 300px; 
      background: var(--bs-gray-200);
      border-radius: 12px;
      margin-top: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--bs-gray-600);
      font-size: 1.2rem;
      font-style: italic;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      margin-left: auto;
      margin-right: auto;
      overflow: hidden; 
  }
  .hero-section .hero-image-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: cover; 
  }


  .service-card-main {
      background: var(--bs-body-tertiary);
      border-radius: 12px;
      padding: 30px;
      text-align: center;
      min-height: 250px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
      transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
      text-decoration: none; 
      color: inherit; 
  }
  .service-card-main:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
      color: inherit; 
  }
  .service-card-main .icon {
      font-size: 3.5rem;
      margin-bottom: 15px;
      color: var(--bs-primary);
      line-height: 1;
  }
  .service-card-main h5 {
      font-weight: 600;
      margin-bottom: 10px;
      color: var(--bs-emphasis-color);
  }
  .service-card-main p {
      font-size: 0.95rem;
      color: var(--bs-secondary-color);
  }

  .feature-item {
      text-align: center;
      padding: 20px;
      transition: transform 0.3s ease-in-out;
  }
  .feature-item:hover {
      transform: translateY(-5px);
  }
  .feature-item .icon {
      font-size: 2.5rem;
      color: var(--bs-primary);
      margin-bottom: 15px;
  }
  .feature-item h6 {
      font-weight: 600;
      color: var(--bs-emphasis-color);
      margin-bottom: 10px;
  }
  .feature-item p {
      font-size: 0.9rem;
      color: var(--bs-secondary-color);
  }

  .horizontal-divider {
    border: 0;
    height: 2px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), var(--bs-primary), rgba(0, 0, 0, 0));
    margin: 60px 0;
    opacity: 0.15;
  }

  .cta-section {
      background-color: var(--bs-primary);
      color: white;
      padding: 60px 0;
      text-align: center;
  }
  .cta-section h3 {
      font-weight: 700;
      margin-bottom: 20px;
  }
  .cta-section .btn {
      background-color: white;
      color: var(--bs-primary);
      font-weight: 600;
      padding: 12px 30px;
      border-radius: 50px;
      transition: all 0.3s ease;
  }
  .cta-section .btn:hover {
      background-color: var(--bs-dark);
      color: white;
      transform: translateY(-3px);
  }