
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1d2d44;
    color: #ffffff;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #1d2d44;
}

.logo {
    font-size: 2.4em;
    font-weight: bold;
}

.main-nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}



.book-now {
    background: none;
    color: #ffffff;
    padding: 0;
    border: none;
    font-weight: 500;
    border-radius: 0;
    text-decoration: underline;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.book-now:hover {
    color: #ddd;
}


@media (max-width: 768px) {
    .book-now {
        font-size: 0.9em;
        padding: 8px 16px;
        margin: 5px 0;
        display: inline-block;
        width: auto;
    }
}




.book-now2 {
    background-color: white;
    color: #1d2d44;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block;
    margin: 20px auto 0 auto;
    text-align: center;
}

.book-now2:hover {
    background-color: #0f172a;
    color: white;
}




.hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    flex-wrap: wrap;
    gap: 40px;
    text-align: left;
}

.hero-text {
    max-width: 600px;
    flex: 1;
}

.hero-text h1 {
    font-size: 2.5em;
    line-height: 1.2;
}

.hero-text p {
    margin-top: 20px;
    line-height: 1.5;
}

.learn-more-button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    border-radius: 25px;
    background-color: white;
    color: #1d2d44;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.learn-more-button:hover {
    background-color: #0f172a;
    color: white;
}




.learn-more-button2 {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    border-radius: 25px;
    background-color: #0f172a;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.learn-more-button2:hover {
    background-color: #0f172a;
    color: white;
}






.hero-image {
    flex: 1;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.services {
    background-color: #f1f1f1;
    color: #1d2d44;
    padding: 60px 40px;
    text-align: center;
}

.services h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.service-card {
    background: white;
    color: #1d2d44;
    max-width: 300px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    text-align: left;
}

.service-card img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 15px;
}

.service-card h3 {
    margin: 10px 0 5px;
    font-size: 1.2em;
}

.service-card .price {
    font-weight: bold;
    margin-bottom: 10px;
}

.chat-button-container {
    margin-top: 40px;
}

.chat-button {
    background-color: #0044ff;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.chat-button:hover {
    background-color: #0022aa;
}

.brand-vision {
    background-color: #ffffff;
    color: #1d2d44;
    padding: 80px 40px;
}

.vision-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-text {
    flex: 1;
    min-width: 300px;
}

.vision-text h2 {
    font-size: 2.8em;
    font-weight: bold;
    margin-bottom: 20px;
}

.vision-text p {
    font-size: 1.1em;
    line-height: 1.6;
}

.vision-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.vision-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact {
    background-color: #f8f8f8;
    color: #1d2d44;
    padding: 80px 40px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-info h2 {
    font-size: 2.8em;
    font-weight: bold;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

input[type="text"], input[type="email"], textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 25px;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input[type="text"]:hover, input[type="email"]:hover, textarea:hover {
    border-color: #1d2d44;
    box-shadow: 0 0 5px rgba(29, 45, 68, 0.2);
}

textarea {
    resize: vertical;
    border-radius: 15px;
}

.send-button {
    background-color: #1d2d44;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.send-button:hover {
    background-color: #0f172a;
}

.footer {
    background-color: #1d2d44;
    color: #ffffff;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.95em;
}

.footer-left, .footer-right > div {
    margin-bottom: 10px;
}

.footer-right {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-left, .footer-right > div {
    margin-bottom: 10px;
}

.footer-right {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-left, .footer-right > div {
    margin-bottom: 10px;
}

.footer-right {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}


.services-intro {
    background-color: #f8f8f8;
    padding: 100px 40px;
    color: #1d2d44;
}

.services-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.services-left {
    flex: 1;
    min-width: 300px;
}

.services-left h1 {
    font-size: 3em;
    font-weight: bold;
}

.services-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
}

.services-right p {
    font-size: 1.1em;
    line-height: 1.6;
}


/* Responsive Hamburger Menu */
.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

#menu-toggle {
    display: none;
}

.main-nav .menu {
    display: flex;
    gap: 20px;
    align-items: center;
}

@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        width: 100%;
        flex-direction: column;
    }

    .menu-icon {
        display: block;
        padding: 10px 40px;
    }

    .main-nav .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #1d2d44;
    }

    #menu-toggle:checked + .menu-icon + .menu {
        display: flex;
    }

    .main-nav a {
        padding: 10px 20px;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 768px) {
    .main-header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .logo {
        font-size: 1.8em;
        padding: 10px 40px 0;
    }

    .main-nav {
        width: 100%;
    }

    .main-nav .menu {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .main-header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 20px;
    }

    .logo {
        font-size: 1.5em;
        padding-bottom: 10px;
        width: 100%;
    }

    .main-nav {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .menu-icon {
        display: block;
        padding: 10px 0;
        font-size: 26px;
        width: 100%;
    }

    .main-nav .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #1d2d44;
    }

    #menu-toggle:checked + .menu-icon + .menu {
        display: flex;
    }

    .main-nav .menu a {
        padding: 12px 20px;
        width: 100%;
        box-sizing: border-box;
        text-align: left;
    }
}
