/* standard CSS */
body {
    scroll-behavior: smooth;
    font-family: Arial, sans-serif;
  }
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Alata', sans-serif;
  }

  /* Navbar CSS */
  .navbar {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .navbar-nav .nav-link:hover
  {color: #11cce3;}

  .btn-custom:hover {
    color: #FFF;
  }
  .navbar .btn-contact {
    margin-left: 15px;
  }

  @media (max-width: 991px) {
    .navbar .btn-contact {
      margin: 10px 0;
      width: 100%;
    }
  }

  /* button css */
  :root {
    --primary-color: #11cce3;
    --primary-hover: #0fa6ba;
    --light-bg: #f8f9fa;
  }
  
  .btn-custom {
    background-color: var(--primary-color);
    border: none;
    color: white;
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 600;
  }
  
  .btn-custom:hover,
  .btn-custom:focus {
    background-color: var(--primary-hover);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
    transform: translateY(-1px);
  }
  
  .btn-outline-light.btn-custom {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
  }
  
  .btn-outline-light.btn-custom:hover {
    background-color: #fff;
    color: var(--primary-color);
    border-color: #fff;
  }
  
.text-bright-teal {
  color: #00fff0;
}

#publishers .row {display: flex; flex-direction: row-reverse;}
.text-teal {
  color: #008080 !important;
}

.hover-feature .icon-box {
  font-size: 1.8rem;
  color: #008080;
  transition: all 0.3s ease;
}

.hover-feature:hover .icon-box {
  color: #00b7b7; /* brighter teal */
  transform: scale(1.2);
}

.hover-feature h6 {
  transition: color 0.3s ease;
}

.hover-feature:hover h6 {
  color: #008080;
}


.hover-card {
  transition: all 0.3s ease;
}
.hover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

  /*section css */
  .section {
    padding: 100px 0;
  }

  .section-title {
    font-weight: 700;
    margin-bottom: 20px;
  }
  .section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 40px;
  }

  /* second box css */
  .industry-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  .industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 123, 255, 0.15);
  }
  .icon-box i {
    font-size: 2.2rem;
    transition: color 0.3s ease;
  }
  .industry-card:hover i {
    color: #00fafa;
  }
  
  /* Services section css */
   .service-box {
      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: all 0.3s ease-in-out;
      padding: 30px;
      height: 100%;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
    }
    .service-box:hover {
      box-shadow: 0 6px 20px rgba(0,0,0,0.12);
      transform: translateY(-5px);
    }
    .service-icon {
      background-color: #e6f0ff;
      color: #0d6efd;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 24px;
      margin-bottom: 20px;
      transition: all 0.3s ease-in-out;
    }
    .service-box:hover .service-icon {
      background-color: #0d6efd;
      color: white;
    }
    .service-box h3 {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 15px;
    }
    .service-box p {
      font-size: 15px;
      color: #555;
    }

    /* company section css */
   #company .company-hover-box {
    transition: all 0.3s ease;
  }

  #company .company-hover-box:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-5px);
  }

  #company .company-icon-box {
    color: #0d6efd;
    background: #e6f4f1;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
  }

  #company .company-hover-box:hover .company-icon-box {
    background: #00c6a2;
    color: #fff;
  }

  #company img.rounded-circle {
    object-fit: cover;
    border: 4px solid #eaeaea;
    transition: transform 0.3s ease;
  }

  #company .team-hover-box {
    transition: all 0.4s ease;
  }

  #company .team-hover-box:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  }

  @media (max-width: 576px) {
    #company .company-icon-box {
      margin: 0 auto;
    }
  }

  /* Footer section css */
  footer {
    background-color: #343a40;
    color: #fff;
    padding: 40px 0;
    color: #adb5bd;
  }
  footer a {
    color: #adb5bd;
    text-decoration: none;
  }
  footer a:hover {
    color: #fff;
  }

/* Brighter Teal Accent */
.text-brighter-teal {
  color: #00ffe7;
}

/* Sticky Header */
header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}

html, body {
  overflow-x: hidden;
}

section {
  scroll-margin-top: 100px;
}
