body {
    font-family: 'Roboto', sans-serif;
}

.navbar-custom {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: -3px;
}

.navbar-custom .navbar-brand img {
    height: 40px;
    width: auto;
    padding: 0 !important;
}

.navbar-custom .nav-link {
    color: #333333;
    font-weight: 600;
    font-size: 15px;
}

.navbar-custom .nav-link:hover {
    color: #01b288;
}

.navbar-custom .btn-custom {
    background-color: #01b288;
    color: #ffffff;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 3px;
}

.navbar-custom .btn-custom:hover {
    background-color: #01b288;
}

.navbar-custom .navbar-toggler {
    border: none;
}

.navbar-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.hero-section {
    position: relative;
    height: 60vh;
    background: url('https://storage.googleapis.com/a1aa/image/PzwHCLl9nnzayY1Y_qmBEbuBjYmZXQqmBDguFOFTcOw.jpg') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    color: white;
    padding: 20px;
    padding-left: 7%;
}

.contact-form {
    position: absolute;
    top: 16% !important;
    right: 2%;
    background: white;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
}

.chat-button {
    position: fixed;
    bottom: 15px !important;
    right: 20px;
}

.btn-orange {
    background-color: #01b288;
    border: #01b288;
    padding: 15px;
}

.btn-orange:hover {
    background-color: #01a17c;
    border: #01b288;
    color: #ffffff;
}
.icon-what{
    bottom: 45px;}

@media (max-width: 768px) {
    .hero-overlay {
        align-items: center;
        text-align: center;
    }

    .contact-form {
        position: static;
        margin: 20px auto;
        width: 90%;
    }

    .chat-button {
        bottom: 10px;
        right: 10px;
    }

   .btn-orange {
       padding: 1px;
    }

   .icon-what{
       bottom: 35px;
       margin-right: -10px !important;
    }
    .navbar-toggler {
        display: block;
    }
}
@media (max-width: 576px) {
    .icon-what {
        bottom: 35px;
        z-index: 9999;
        margin-right: -10 !important;
    }
}

.hover-translate:hover {
    transform: translateY(-1px);
    transition: transform 0.3s ease;
}

.package-header {
    background-color: #01b288;
    border: #01b288;
    color: white;
    text-align: center;
    padding: 10px;
    border-top-left-radius: 0.2rem;
    border-top-right-radius: 0.2rem;
}

.package-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-list li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #e5e7eb;
}

.package-list li:last-child {
    border-bottom: none;
}

.btn-custom {
    background-color: #01b288;
    color: white;
    border-radius: 9999px;
    font-size: 0.875rem;
}

.btn-custom:hover {
    background-color: #01b288;
}

.fixed-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.card {
    font-size: 0.875rem;
    border-radius: 3px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

/*Start about-section Section */
.about-section .card{
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-color: #e4e4e4;
}
  .about-img {
    width: 100%;
    height: 410px;
    object-fit: cover;
    border-radius: 2px;
    background: whitesmoke;
  }
  .about-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 2rem;
  }
  
  .about-text {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 1rem;
  }
  
  .feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
  }
  
  .feature-icon.quality {
    background: #e3f2fd;
  }
  
  .feature-icon.eco {
    background: #e8f5e9;
  }
  
  .feature-icon.support {
    background: #f3e5f6;
  }
  
  .feature-icon i {
    font-size: 1rem;
  }
  
  .feature-title {
    margin: 0 0 5px 0;
    color: #333;
  }
  
  .feature-desc {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
  }
  
  .about-btn {
    background: #2a9d8f;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .about-btn:hover {
    background: #1b8d7f;
  }
  
  .feature-item {
    display: flex;
    align-items: start;
    margin-bottom: 15px;
  }
    @media (max-width: 576px) {
    .about-section .about-row {
        padding:1.5rem 1rem !important;
    }

    .about-section .about-img {
        height: 250px !important;
        object-fit: cover;
        width: 100%;
        border-radius: 2px;
    }
}
  
  /*End about-section Section */

/*start blog-section Section */
   .blog-card {
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .blog-card:hover {
        transform: translateY(-1px);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    .blog-img {
        height: 200px;
        object-fit: cover;
    }

    .blog-content {
        padding: 0.8rem 1rem;
    }
     .blog-content .dist{
        margin: 0.5rem 0;
        font-size: 0.9rem;
     }

    .blog-title {
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none;
        color: #01b288;
        transition: color 0.3s ease;
    }

    .blog-meta {
        font-size: 0.875rem;
        color: #6c757d;
    }
    /*end blog-section Section */

/*start footer-section Section */
    .footer .footer-title {
        position: relative;
        padding-left: 12px;
        margin-bottom: 1.5rem;
    }

    .footer .footer-title::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 70%;
        width: 3px;
        background-color: #01b288;
    }

    .footer .footer-link {
        color: #fff !important;
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .footer .footer-link i {
        font-size: 0.75rem;
        transition: transform 0.3s ease;
    }

    .footer .footer-link:hover {
        color: #d1d1d1 !important;
    }

    .footer .footer-link:hover i {
        transform: translateX(3px);
    }

    .footer .contact-info {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 8px;
    }

    .footer .social-icon {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        background-color: #01b288;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        text-decoration: none;
        color: #fff;
        font-size: 1.1rem;
        margin: 0 5px;
        padding: 5px;
        border: 1px solid #fff;
        box-sizing: border-box;
        position: relative;
        overflow: hidden;
    }

    .footer .social-icon:hover {
        transform: translateY(-2px);
    }
    .footer .text-suc{
        color: #01b288;
    }
    /*end footer-section Section */