/* General Styles */
body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Navbar */
.navbar {
    position: fixed;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: fadeInDown 1s;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 1.8em;
    font-weight: 700;
    color: #FF6F00;
}

.nav-toggle {
    display: none;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px;
    transition: all 0.3s ease;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links li a {
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #FF6F00;
}

/* Header */
header {
    height: 100vh;
    background: linear-gradient(135deg, #00897B 0%, #FF6F00 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.header-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s;
}

.header-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    animation: fadeInDown 1s;
}

.header-content p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #fff;
    color: #FF6F00;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.2em;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.4);
}

/* Sections */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 60px;
    color: #FF6F00;
    position: relative;
    animation: fadeInDown 1s;
}

section h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #FF6F00;
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
}

section p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #666;
    animation: fadeInUp 1s;
}

/* Our Story Section */
.story-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.story-image {
    flex: 1 1 40%;
    animation: fadeInLeft 1s;
}

.story-image img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.story-text {
    flex: 1 1 55%;
    animation: fadeInRight 1s;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 20px;
    flex: 1 1 calc(45% - 40px);
    text-align: center;
    color: #333;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-icon i {
    width: 50px;
    height: 50px;
    stroke-width: 1.5px;
    color: #FF6F00;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 1em;
    line-height: 1.6;
    color: #666;
}

/* Projects Grid */
.projects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.project-item {
    position: relative;
    overflow: hidden;
    flex: 1 1 calc(50% - 20px);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.project-item img {
    transition: transform 0.3s;
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 137, 123, 0.8);
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-overlay h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.project-overlay p {
    font-size: 1em;
    padding: 0 20px;
}

/* Contact Form */
#contact form {
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    color: #333;
    background: transparent;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1em;
    color: #666;
    transition: all 0.3s;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 0.8em;
    color: #FF6F00;
    background: #f5f5f5;
    padding: 0 5px;
}

#contact form button {
    background-color: #FF6F00;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.2em;
    transition: transform 0.3s, box-shadow 0.3s;
}

#contact form button:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.4);
}

/* Footer */
footer {
    background-color: #333;
    padding: 30px 0;
    text-align: center;
    color: #fff;
}

.social-links a {
    margin: 0 10px;
    display: inline-block;
    color: #fff;
    font-size: 1.5em;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #FF6F00;
}

.footer-links {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.footer-links li {
    display: inline-block;
    margin: 0 15px;
}

.footer-links a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FF6F00;
}

footer p {
    color: #ccc;
    margin-top: 20px;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .service-item,
    .project-item {
        flex: 1 1 calc(45% - 40px);
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
    }

    .burger {
        display: block;
    }

    .nav-links {
        position: fixed;
        background-color: #fff;
        height: 100vh;
        width: 100%;
        top: 0;
        left: -100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease-in-out;
        z-index: 999;
    }

    .nav-links li {
        margin: 20px 0;
    }

    /* Toggle Menu Open */
    .nav-toggle:checked + .burger + .nav-links {
        left: 0;
    }

    /* Burger Animation */
    .nav-toggle:checked + .burger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle:checked + .burger span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle:checked + .burger span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .burger {
        display: block;
        position: absolute;
        top: 20px;
        right: 25px;
    }

    .burger span {
        background-color: #333;
    }

    .story-content {
        flex-direction: column;
    }

    .story-image,
    .story-text {
        flex: 1 1 100%;
    }

    .service-item,
    .project-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 2.5em;
    }

    .header-content p {
        font-size: 1em;
    }
}
* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}
ul{
list-style:none}