/* ✅ Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: calibri, sans-serif;
}

/* ✅ Full Page Layout */
body, html {
    width: 100%;
    height: 100%;
}

/* ✅ Navigation Bar */
nav {
    width: 100%;
    height: 80px;
    background: #111184;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: relative;
    z-index: 100;
}

label.logo {
    font-size: 28px;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

/* ✅ Navigation Links */
nav ul {
    list-style-type: none;
    display: flex;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 8px 15px;
    transition: 0.3s;
}

nav ul li a.active, nav ul li a:hover {
    background: #acda4d;
    border-radius: 5px;
}

/* ✅ Hamburger Menu for Mobile */
#checkbtn {
    font-size: 30px;
    color: white;
    cursor: pointer;
    display: none;
}

/* Hide checkbox */
#check {
    display: none;
}

/* ✅ Mobile Menu */
@media (max-width: 768px) {
    #checkbtn {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #222268;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.5s;
        z-index: 101;
    }

    nav ul li {
        margin: 15px 0;
    }

    nav ul li a {
          font-size: 20px;
        padding: 12px;
    }

    #check:checked ~ ul {
        left: 0;
    }

    /* ✅ Hide Everything Except Menu When Open */
    #check:checked ~ .home-container {
        display: none !important;
    }
}

/* ✅ Home Section */
/* ✅ Full-Screen Section */
.home-container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f4f8fc;
}

/* ✅ Left Side (40%) with Curved Background */
.left-content {
    width: 40%;
    height: 100vh;
    background: linear-gradient(to bottom right, skyblue, blue); /* Gradient for curved effect */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom-right-radius: 50% 20%; /* Curved Effect */
}

.image-frame {
    padding: 15px;
    border: 5px solid #fff;
    border-radius: 10px;
    background: #f8f8f8;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.image-frame img {
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
}

/* ✅ Right Side (60%) */
.right-content {
    width: 60%;
    height: 100vh;
    background: #f4f8fc;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5%;
}

/* ✅ Heading & Text */
.right-content h1 {
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 15px;
    color: darkblue; /* Updated Heading Color */
}
.right-content h2 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #acda4d; /* Updated Heading Color */
}
.right-content p {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold
    color: black; /* Updated Paragraph Color */
}

/* ✅ Button Container */
.button-container {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-size: 16px;
}

.call-btn {
    background: #007bff;
}

.whatsapp-btn {
    background: #25d366;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
    .home-container {
        flex-direction: column-reverse;
        height: auto;
    }

    /* Right Side (60%) moves UP */
    .right-content {
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .right-content h1 {
        font-size: 40px;
    }

    .right-content p {
        font-size: 20px;
    }

    .button-container {
        justify-content: center;
    }

    /* Left Content Adjusts */
    .left-content {
        width: 100%;
        height: auto;
        padding: 40px 5%;
        border-bottom-right-radius: 0;
    }
}
/* ✅ Hide Logo in Mobile */
.home-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 70px;
}

