* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
  }
  
  /* Header */
  .navbar {
    height: 75px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    background: linear-gradient(90deg, #67b4e1, #2a8826, #dd4723, #264688);
    background-size: 300% 100%;
    animation: gradientAnimation 15s linear infinite;
  }
  
  @keyframes gradientAnimation {
    0% { background-position: 0 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0 50%; }
  }
  
  /* Logo Size */
  .logo {
    width: 100px;
    height: 50px;
  }
  
  /* Navbar Links */
  .navbar ul {
    display: flex;
    align-items: center;
    list-style: none;
    /* gap: 55px; */
  }
  
  /* Navbar Font */
  .navbar ul li {
    font-family: Inter;
  }
  
  /* Header */
  .navbar ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 10px;
    transition: color 0.3s ease-in-out;
  }
  
  .navbar ul li a:hover {
    color: rgb(204, 200, 200);
  }
  
  /* Mobile Menu Toggle */
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .menu-toggle div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: 0.3s;
  }
  
  /* Media Query for Mobile */
  @media (max-width: 768px) {
    .navbar {
        height: 60px;
        padding: 0 15px;
    }
  
    .logo {
        width: 80px;
        height: 40px;
    }
  
  /* Hamburger Menu */
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    justify-content: center;  /* Centers bars */
    align-items: center;
    gap: -1000px;  /* Space between bars */
  }
  
  /* Styling each bar */
  .menu-toggle div {
    width: 30px;  /* Adjust width of bars */
    height: 4px;  /* Adjust thickness of bars */
    background-color: white; /* Color of bars */
    border-radius: 5px; /* Round the edges */
    margin: 4px 0; /* Spacing between bars */
    transition: all 0.3s ease-in-out;
  }
  
  .menu-toggle.active div:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-toggle.active div:nth-child(2) {
    opacity: 0; /* Hide middle bar */
  }
  
  .menu-toggle.active div:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  /* Mobile View */
  @media (max-width: 768px) {
    .menu-toggle {
        display: flex; /* Show menu toggle on mobile */
    }
  
    .navbar ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.8);
        text-align: center;
        padding: 10px 0;
    }
  
    .navbar ul.active {
        display: flex;
    }
  
    .navbar ul li {
        margin: 15px 0;
    }
  }
  
    .navbar ul {
      width: 50vw;  /* Set it to half of the viewport width */
      max-width: 300px; /* Optional: Prevent it from getting too wide */
      height: 100vh; /* Full height */
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 0;
      text-align: center;
      z-index: 9999; /* Ensure it's on top */
      background: linear-gradient(90deg, #67b4e1, #2a8826, #dd4723, #264688);
      background-size: 400% 100%;
      animation: gradientAnimation 15s linear infinite;
    }
  
    .navbar ul.active {
        display: flex;
    }
  
    .navbar ul li {
        margin: 15px 0;
    }
  
    .navbar ul li a {
        font-size: 14px;
    }
  }
  
  /* Responsive About Section */
  @media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }
  }
  
  /* Apply gap only on larger screens */
  @media (min-width: 769px) {
    .navbar ul {
      gap: 55px;
    }
  }

  .service-section .container .row .title {
    font-family: Inter, sans-serif;
    font-weight: bold;
    font-size: 50px;
    background: linear-gradient(120deg, #2A8826, #DD4723);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.service-section .container .row .description{
    font-family: Inter,sans-serif;
    color: black;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    color:#264688;
}
    
.service-section {
    padding: 50px 0;
    background: white;
}

.service-section .container{
    max-width: 1240px;
    margin: auto;
}

.row{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.service-section .title{   
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 32px;
    text-transform: capitalize;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.service-section .title:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 140px;
    height: 3px;
    background: linear-gradient(to right, #2A8826, #DD4723);
    background-size: 200% 100%;
    animation: gradientMove 3s infinite linear;
    transform: translateX(-50%);
}

.service-section .title:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 45px;
    height: 6px;
    background: linear-gradient(to right, #2A8826, #DD4723);
    background-size: 200% 100%;
    animation: gradientMove 3s infinite linear;
    transform: translateX(-50%);
}

.service-section .description{
    letter-spacing: 1px;
    font-size: 16px;
    color: #6f6f71;
    font-weight: 600;
    text-align: center;
}

.service-section .service-column{
    max-width: 33.333333%;
    padding: 0 15px;
}

@keyframes smoothGradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    
    100% { background-position: 0% 50%; }
}

.service-section .service-column .single-service {
    position: relative;
    margin-top: 30px;
    background: #FAF9F6; 
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    text-align: center;
    transition: background 1s ease-in-out, box-shadow 0.8s ease-in-out;
}

.service-section .service-column .single-service:hover {
    background: linear-gradient(120deg, #2A8826, #DD4723);
    background-size: 300% 300%;
    animation: smoothGradientMove 5s infinite ease-in-out;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
}

.service-section .service-column .single-service .content{
    position: relative;
    z-index: 20;
}

.service-section .service-column .single-service .content .icon{
    display: inline-block;
    margin-bottom: 25px;
    width: 70px;
    height: 70px;
    background-color: #2A8826;
    border-radius: 5px;
    line-height: 70px;
    text-align: center;
    color: #fff;
    font-size: 30px;
    transition: all 0.5s;
}

@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.service-section .service-column .single-service .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;  
    height: 70px; 
    background-color: green;
    border-radius: 5px;
    transition: all 0.5s;
}

.service-section .service-column .single-service:hover .icon {
    background-color: #fff;
    border-radius: 50px;
}

.service-section .service-column .single-service .icon i {
    font-size: 30px; 
    transition: all 0.5s;
}

.service-section .service-column .single-service:hover .icon i {
    background: linear-gradient(120deg, #2A8826, #DD4723);
    background-size: 300% 300%;
    animation: gradientText 3s infinite ease-in-out;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-section .service-column .single-service .content .main-title{
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 23px;
    color: orange;
    transition: color 0.3s;
}

.service-section .service-column .single-service .content .description{
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 500;
    color: gray;
    transition: color 0.3s;
}

.service-section .service-column .single-service:hover .description{
    color:#fff;
}

.service-section .service-column .single-service .content .learn-more{
    color: blue;
    text-decoration: none;
    font-size: 18px;
    position: relative;
    font-weight: 500;
    transition: color .3s;
}

.service-section .service-column .single-service .content .learn-more:after{
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #67B4E1;
    transition: background-color .3s;
}

.service-section .service-column .single-service:hover .learn-more:after{
    background-color:#fff;
}
 
@media (max-width: 1024px) {
    .service-section .service-column {
        max-width: 50%; 
    }
    .service-section .title {
        font-size: 40px; 
    }
}

@media (max-width: 768px) {
    .service-section .service-column {
        max-width: 100%; 
    }
    .service-section .title {
        font-size: 35px;
    }
}

@media (max-width: 480px) {
    .service-section .title {
        font-size: 28px; 
    }
    .service-section .description {
        font-size: 14px; 
    }
    .service-section .service-column .single-service {
        padding: 30px 20px; 
    }
}