/* Reset general */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font y body */
body {
    font-family: 'Montserrat', sans-serif;
    color: #273746;
    background-color: #D5DBDB;
    overflow-x: hidden;
}

/* Header */
header {
    background-color: #000000;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.logo {
    height: 50px;
}

.nav-toggle {
    display: none;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    margin-right: 200px;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #FFD700;
}

/* Dropdown Menu */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 35%;
    transform: translate(-0%,-35%);
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    margin: 50px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 10px;
    animation: fadeInDown 1.5s ease;
}

.hero-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    animation: fadeInDown 2s ease;
}

.hero-text p {
    font-size: 24px;
    color: #DDD;
    animation: fadeInDown 2.5s ease;
}

.btn {
    background-color: #FFD700;
    color: #273746;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

/* Overview Section */
.overview {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.overview h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.overview p {
    font-size: 18px;
    margin-bottom: 20px;
}

.overview img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
}

/* Details Section */
.details {
    background-color: #F7F7F7;
    padding: 50px 20px;
}

.details-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.details-left,
.details-right {
    flex: 1;
    min-width: 300px;
}

.details-left img,
.details-right img {
    width: 100%;
    border-radius: 10px;
}

.details-right {
    text-align: center;
}

.details-right h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.details-right p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Master Plan Section */
.master-plan {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
   
}

.master-plan h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.master-plan-div {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

}

.master-plan img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.features {
    list-style: none;
    padding: 30px;
}

.features li {
    font-size: 18px;
    margin: 10px 0;
    
}

/* What We Do */
.what-we-do {
    background-color: #fff;
    padding: 25px 0;
    text-align: center;
}

.icon-title {
    padding-bottom: 25px;
}

.icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.icon-item {
    text-align: center;
    flex: 1 1 200px;
}

.icon-item img {
    width: 60px;
    height: 60px;
}

.icon-item h3 {
    margin: 10px 0;
    font-size: 20px;
    color: #273746;
}

.icon-item p {
    font-size: 16px;
    color: #555;
}

/* Contact Section */
.contact {
    background-color: #273746;
    color: #ffffff;
    padding: 50px 20px;
    text-align: center;
}

.contact .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact .contact-info p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact .contact-info a {
    color: #FFD700;
    text-decoration: none;
}

.contact .contact-info i {
    font-size: 20px;
}

/* Footer */
footer {
    background-color: #273746;
    color: #ffffff;
    text-align: center;
    padding: 20px;
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #FFD700;
    color: #273746;
    padding: 10px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    transition: background-color 0.3s, transform 0.3s;
}

.floating-contact a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-contact img {
    width: 20px;
    height: 20px;
}

.floating-contact:hover {
    background-color: #e6b800;
    transform: scale(1.05);
}


/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        background: none;
        border: none;
        color: #ffffff;
        font-size: 24px;
        cursor: pointer;
    }

    .sidebar {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #273746;
        z-index: 1000;
        padding-top: 60px;
        text-align: center;
    }

    .sidebar.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        margin: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 900;
    }

    .overlay.active {
        display: block;
    }

    .details-content {
        flex-direction: column;
    }
}
