:root {
    --primary: #0a6e6a;
    --primary-dark: #08524f;
    --secondary: #ffc107;
    --accent: #e74c3c;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-blue: #e6f4f3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    overflow-x: hidden;
    background-color: #ffffff;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

/* Header & Navigation */
.navbar {
    background: rgba(10, 110, 106, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.4s ease;
}

.navbar-brand {
    font-weight: 800;
    font-size: 2rem;
    color: white !important;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.navbar-brand span {
    color: var(--secondary);
}

.logo-icon {
    background: var(--secondary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 8px;
    transition: all 0.3s;
    position: relative;
    padding: 8px 15px !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary) !important;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s;
    border-radius: 10px;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.btn-call {
    background: var(--secondary);
    border: none;
    color: var(--dark);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
}

.btn-call i {
    margin-right: 8px;
}

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: #ffca2c;
}

/* Hero Section with Parallax */
.hero {
    /* height: 100vh; */
    background: linear-gradient(rgba(5, 82, 79, 0.85), rgba(5, 82, 79, 0.9)), url('../images/bg01.avif') no-repeat center center/cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 135px;
    padding-bottom: 135px;
}
.heroimage {
    margin-top: 90px;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 35px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    /* justify-content: center; */
}

.btn-hero {
    background: var(--secondary);
    border: none;
    color: var(--dark);
    font-weight: 600;
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #ffca2c;
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 13px;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Stats Section */
.stats {
    background: var(--primary);
    padding: 70px 0;
    color: white;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--secondary);
    line-height: 1;
}

.stat-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--light);
    position: relative;
}

.section-title {
    position: relative;
    margin-bottom: 60px;
    text-align: center;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 800;
    display: inline-block;
    padding-bottom: 15px;
    position: relative;
    color: var(--primary-dark);
}
.why-us .section-title h2 {
    color: #fff;
}

.why-us .section-title p {
    color: #fff;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--secondary);
    border-radius: 10px;
}

.section-title p {
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 1.2rem;
    color: var(--gray);
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: none;
    margin-bottom: 30px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-img {
    height: 220px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 20px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    border: 8px solid #fff;
}

.service-content {
    padding: 30px;
    text-align: center;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.service-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.btn-service {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-service:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Why Choose Us */
.why-us {
    padding: 100px 0;
    background: linear-gradient(rgba(10, 110, 106, 0.95), rgba(10, 110, 106, 0.95)), url('../images/bg03.avif') center/cover fixed;
    color: white;
}

.feature-box {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    height: 100%;
    margin-bottom: 30px;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Process Section */
.process {
    padding: 100px 0;
    background-color: white;
}

.process-step {
    text-align: center;
    padding: 30px;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--secondary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.process-step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 105px;
    left: 50%;
    width: 80%;
    height: 3px;
    background: var(--light-blue);
    transform: translateX(-50%);
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background-color: var(--light);
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    margin: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    border-top: 5px solid var(--primary);
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.client-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    margin-right: 15px;
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(rgba(5, 82, 79, 0.9), rgba(5, 82, 79, 0.9)), url('../images/bg02.avif') center/cover fixed;
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 35px;
    opacity: 0.9;
}

.btn-cta {
    background: var(--secondary);
    border: none;
    color: var(--dark);
    font-weight: 600;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #ffca2c;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: white;
}

.contact-form .form-control {
    background: var(--light);
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    height: 50px;
}

.contact-form textarea.form-control {
    height: auto;
    resize: none;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(10, 110, 106, 0.15);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0;
}

.footer h5 {
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    font-size: 1.4rem;
}

.footer h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary);
    border-radius: 10px;
}

.footer-links {
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
    list-style: none;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    padding: 5px 0;
}

.footer-links li a:hover {
    color: var(--secondary);
    padding-left: 8px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: var(--secondary);
    transform: translateY(-5px);
    color: var(--dark);
}

.copyright {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    margin-top: 60px;
    text-align: center;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .section-title h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .process-step:not(:last-child):after {
        display: none;
    }

    .navbar-brand {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }
}
.btn-01 {
    background-color: #0f716d;
    color: #fff;
}
.btn-01:hover {
    background-color: #ffca2c;
    color: #0f716d;
}
.map-container {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 30px;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.faq {
    padding: 80px 0;
}
 /* FAQ */
.accordion-button {
    font-weight: 600;
    padding: 20px;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.floating-icon {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 50px;
    font-size: 35px;
    color: white;
    padding: 7px;
    border-radius: 50%;
    z-index: 9999;
    animation: ripple 1.5s infinite ease-out;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: bottom 0.3s ease;
}

.call-icon {
    left: 20px;
    background-color: #2aabdc; 
}
.whatsapp-icon {
    right: 20px;
    background-color: #25D366;
}
.call-icon:hover {
    color: var(--secondary); 
}
.whatsapp-icon:hover {
    color: var(--secondary); 
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}
.contact-info a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
}
.contact-info a:hover {
    color: var(--secondary);
}