/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background 0.3s ease-in-out;

}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 15px 50px;
}

.logo img {
    width: 80px;
    height: 80px;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #f68624;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #f39c12;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: #f68624;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 0;
        background: white;
        width: 100%;
        text-align: center;
        padding: 15px 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
    }
}



/* Section Title */
.section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    color: #222;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.section-title::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #f39c12;
    display: block;
    margin: 8px auto 40px auto;
    border-radius: 10px;
}

/* Project Layout */
.project {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 40px;
    padding: 25px 40px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Reverse Layout for Alternating Style */
.project.reverse {
    flex-direction: row-reverse;
}

/* Hover Effect */
.project:hover {
    transform: translateY(-3px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.12);
}

/* Image Styling */
.project-image {
    flex: 0.5;
    overflow: hidden;
    border-radius: 10px;
    height: 350px;
    max-width: 420px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: transform 0.4s ease-in-out;
}

/* Smooth Hover Zoom on Image */
.project:hover .project-image img {
    transform: scale(1.06);
}

/* Project Content */
.project-content {
    flex: 0.5;
    padding: 0 20px;
    text-align: left;
}

.project-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

.project-content h3::before {
    content: "";
    width: 50px;
    height: 3px;
    background: #f39c12;
    display: block;
    margin-bottom: 8px;
    border-radius: 5px;
}

.project-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .project {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .project.reverse {
        flex-direction: column;
    }

    .project-image {
        width: 100%;
        height: auto;
        max-width: 100%;
    }

    .project-content {
        text-align: center;
        padding: 20px 15px;
    }
}
/* Footer Styling */
.footer {
    background-color:#243843;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

/* Footer Main Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
    text-align: left;
}

/* Footer Sections */
.footer-logo,
.footer-links,
.footer-contact {
    width: 22%;
}

/* Company Info */
.footer-logo h2 {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.footer-logo h2 i {
    margin-right: 8px;
    color: #f39c12;
}

.footer-logo p {
    font-size: 16px;
    color: #ccc;
    margin: 10px 0;
}

.footer-logo i {
    color: #f39c12;
    margin-right: 8px;
}

/* Footer Links */
.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #f39c12;
}

/* Contact Info */
.footer-contact p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 10px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #222;
    color: white;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    background-color: #f39c12;
}

/* Footer Bottom */
.footer-rights {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    margin-top: 20px;
    font-size: 14px;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo,
    .footer-links,
    .footer-contact {
        width: 100%;
        margin-bottom: 20px;
    }

    .social-icons {
        justify-content: center;
    }
}

