* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body, html {
    height: 100%;
    overflow-x: hidden;
  }

  .banner {
    position: relative;
    background: url('img/banner-bg.png') no-repeat center center/cover;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; 
    height: 100%;
    background: #268bffba;
    z-index: 0;
  }

  .header, .contact-inner {
    position: relative;
    z-index: 2;
    padding: 10px 90px;
  }

  .container {
      max-width: 1140px;
      margin: 0 auto;
  }
      /* Fixed Header */
      .container.position-fixed {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1140px;
    width: 100%;
    z-index: 1058;
    border-radius: 20px;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
  }

  .banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 60px 0;
    margin-top: 150px !important;
  }



  .btn-primary {
    background-color: #268AFF;
    border-color: #268AFF;
  }

  .btn-primary:hover {
    background-color: #0E56AB;
    border-color: #0E56AB;
  }

  .btn-secondary {
      background-color: #fff;
      color: #268AFF;
  }

  .btn-secondary:hover {
    background-color:#268AFF ;
    border-color: #268AFF ;
  }

.bg-light-blue {
background-color: #EFF6FF;
}

.blur-card {
background-color: #268AFF; /* very light blue background */
color: white;
}

.span-text {
  color: #268AFF;
}

.arrow-btn {
  width: 30px;
  height: 30px;
  padding: 4px;
}


.icon-box i {
font-size: 30px;
}

.muted-text{
background-color: #F1F5F9;
border-radius: 40px;
padding: 9px 15px;
}

.bg-primary {
background-color: #268AFF !important;
}

.bg-secondary {
background: #fff !important;
color: #268AFF !important;
}

.Contact {
    position: relative;
    background: url('img/contact.jpeg') no-repeat center center/cover;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


.Contact::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; 
    height: 100%;
    background: #2175d4ba;
    z-index: 0;
  }


.feature-card {
border: none;
padding: 30px 20px;
text-align: center;

}

.feature-card img {
width: 60px;
height: 60px;
margin-bottom: 20px;
}

.features-section {
padding: 60px 20px;
}

.custom-card {
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #e6f2ff; /* Light blue */
    padding: 20px;
  }

  .custom-card:hover, .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }

  .custom-card-img {
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    object-fit: cover;
    height: 100%;
    width: 100%;
  }

  @media (max-width: 768px) {
    .custom-card-img {
      border-top-right-radius: 0;
      border-bottom-left-radius: 1rem;
    }
    .container {
        max-width: 600px;
    }
  }