/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cherry-red: #2c4c3b;
    --light-green: #c07f5e;
    --dark-green: #e3c188;
    --medium-green: #f4f0e6;
    --cream: #534e38;
    --text-dark: #728d83;
    --text-light: rgb(28, 219, 28);
}

body {
    /* font-family: 'Georgia', 'Times New Roman', serif; */
    line-height: 1.6;

    overflow-x: hidden;
}

/* Typography Updates */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'oswald';
}

.section-label,
.btn,
.nav-menu li a,
.logo-text,
.trust-item h3,
.hero-subtitle,
p {
    font-family: 'Helvetica';
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--text-dark) 20%, var(--cherry-red) 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;

}

.logo-container A {
    text-decoration: none;
}

.logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.logo-text {
    font-size: 1rem;
    font-weight: 900;
    color: var(--text-light);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;

    gap: 2rem;
    animation: slideInRight 0.8s ease;
}

.nav-menu li a {
    color: var(--medium-green);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--cherry-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 80%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 2px;
    background-color: transparent;
    border: none;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 70vh;

    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 1200px 0;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;


}

.hero-overlay-img {
    background-size: cover;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    /* color: var(--text-light); */
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #f4f0e6;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #f4f0e6;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease 1s backwards;
}

.btn {
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.5s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.6s ease, height 0.6s ease;
    transform: translate(-50%, -50%);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--medium-green);
    color: var(--text-light);
}

.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(9, 63, 23, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}



.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 3s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-light);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 10px;
    background: var(--cherry-red);
    border-radius: 3px;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {

    0%,
    20% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-20px);
    }

    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Trust Section */


.trust-section {
    padding: 4rem 0;


}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}


.hero-why {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    /* text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5); */
    animation: fadeInUp 1s ease 0.6s backwards;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--text-dark) 20%, var(--cherry-red) 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;

}


.trust-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
    color: var(--text-light);
}

.trust-item:nth-child(2) .trust-icon {
    animation-delay: 0.5s;
}

.trust-item:nth-child(3) .trust-icon {
    animation-delay: 1s;
}

.trust-item:nth-child(4) .trust-icon {
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.trust-item h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.trust-item p {
    color: var(--medium-green);
}

/* About Preview Section */
.about-preview {
    padding: 5rem 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    animation: slideInLeft 1s ease;
}

.image-placeholder {
    width: 80%;
    height: 350px;
    background: var(--medium-green) 100%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.image-placeholder:hover {
    transform: scale(1.05);
}

.about-text {
    animation: slideInRight 1s ease;
}

.section-label {
    color: var(--cherry-red);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--cherry-red);
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--cherry-red);
    font-size: 1.1rem;
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--cherry-red);
    font-size: 1.3rem;
}

/* Services Preview Section */
/* .services-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--text-dark) 20%, var(--cherry-red) 100%);
} */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease;

}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--cherry-red);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--text-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.8s ease;
    animation: fadeInUp 1.2s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-image .image-placeholder {
    height: 250px;
    background: linear-gradient(135deg, var(--medium-green) 0%, var(--dark-green) 100%);
}

.service-card h3 {
    padding: 1.5rem;
    color: var(--cherry-red);
    font-size: 1.5rem;
    margin-bottom: 0;
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-dark);
    font-size: 1.3rem;
}

.cta-center {
    text-align: center;
}

/* Equipment Section */
.equipment-section {
    padding: 5rem 0;
    background: white;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1rem;
}

.equipment-item {
    animation: fadeInUp 1s ease;
}

.equipment-item .image-placeholder {

    transition: all 0.8s ease;
    width: 95%;

    background: var(--medium-green) 100%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.equipment-item:hover .image-placeholder {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--text-dark) 20%, var(--cherry-red) 100%);
    text-align: center;
}

.cta-content {
    animation: fadeInUp 0.8s ease;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--medium-green);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--medium-green);
    margin-bottom: 2rem;
}

.btn-light {
    background: transparent;
    color: var(--dark-green);
    border: 3px solid var(--cherry-red);
}

.btn-light:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
    color: var(--cherry-red);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.5);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 20%, var(--cherry-red) 100%);
    color: var(--medium-green);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--medium-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--cherry-red);
    padding-left: 5px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-col p {
    opacity: 0.9;
    line-height: 1.8;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 68px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--text-dark) 20%, var(--cherry-red) 100%);
        width: 40%;
        border-bottom-left-radius: 50px;
        text-align: center;
        margin-inline-start: 60%;
        border-top-left-radius: 50px;
        transition: all 0.5s ease;
        padding: 0.5rem 0;
        gap: 0;
    }

    .hero-buttons {
        margin-inline: 25%;
        display: flex;
        gap: 1rem;
        justify-content: center;
        animation: fadeInUp 1s ease 1s backwards;
    }

    .btn {
        padding: 0.5rem 0.5rem;
        text-decoration: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: bold;
        transition: all 0.5s ease;
        display: inline-block;
        cursor: pointer;
        border: none;
        position: relative;
        overflow: hidden;
    }

    .btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transition: width 0.6s ease, height 0.6s ease;
        transform: translate(-50%, -50%);
    }

    .btn:hover::before {
        width: 150px;
        height: 150px;
    }

    .btn-primary {
        background: transparent;
        color: var(--text-light);
        border: 2px solid var(--light-green);
        padding: 0.5rem 1rem;
    }

    .btn-primary:hover {
        background: var(--medium-green);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(9, 63, 23, 0.4);
    }

    .btn-secondary {
        background: transparent;
        color: var(--text-light);
        border: 2px solid var(--text-light);
    }

    .btn-secondary:hover {
        background: var(--text-light);
        color: var(--dark-green);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
    }

    .btn-light {
        background: transparent;
        color: var(--dark-green);
        border: 2px solid var(--cherry-red);
    }

    .btn-light:hover {
        background: var(--light-green);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(255, 255, 255, 0.5);
    }

    .scroll-indicator {
        display: none;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-why {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;

    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .image-placeholder {
        width: 90%;
        height: 300px;
        background: var(--medium-green) 100%;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: var(--dark-green);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .equipment-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-why {
        font-size: 2rem;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }


    .hero-buttons {
        margin-inline: 25%;
        display: flex;
        gap: 1rem;
        justify-content: center;
        animation: fadeInUp 1s ease 1s backwards;
    }

    .btn {
        padding: 0.5rem 0.5rem;
        text-decoration: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: bold;
        transition: all 0.5s ease;
        display: inline-block;
        cursor: pointer;
        border: none;
        position: relative;
        overflow: hidden;
    }

    .btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transition: width 0.6s ease, height 0.6s ease;
        transform: translate(-50%, -50%);
    }

    .btn:hover::before {
        width: 150px;
        height: 150px;
    }

    .btn-primary {
        background: transparent;
        color: var(--text-light);
        border: 2px solid var(--light-green);
        padding: 0.5rem 1rem;
    }

    .btn-primary:hover {
        background: var(--medium-green);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(9, 63, 23, 0.4);
    }

    .btn-secondary {
        background: transparent;
        color: var(--text-light);
        border: 2px solid var(--text-light);
    }

    .btn-secondary:hover {
        background: var(--text-light);
        color: var(--dark-green);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
    }

    .btn-light {
        background: transparent;
        color: var(--dark-green);
        border: 2px solid var(--cherry-red);
    }

    .btn-light:hover {
        background: var(--light-green);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(255, 255, 255, 0.5);
    }


    .section-header h2 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }
}