/* Body Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff; /* White primary */
    color: #1e3a8a; /* Dark blue secondary */
    margin: 0;
    padding: 0;
}

/* Header Styles */
.nav-style-unique {
    background: #1e3a8a; /* Solid dark blue */
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links a {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: #f97316; /* Orange secondary */
}
.dropdown {
    position: relative;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 0.5rem;
    top: 100%;
    left: 0; /* Open on left for mobile, unchanged for desktop */
    padding: 0.5rem 0;
    transition: opacity 0.2s ease;
    opacity: 0;
    box-sizing: border-box; /* Ensure padding doesn't affect width */
}
.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
}
.dropdown-content a {
    color: #1e3a8a;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    text-align: left;
    transition: background-color 0.3s ease;
    margin: 0.75rem 0; /* Match spacing with menu links */
}
.dropdown-content a:hover {
    background-color: rgba(249, 115, 22, 0.1); /* Light orange hover */
    color: #1e3a8a;
}
.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: #1e3a8a;
    border: 2px solid #ffffff;
    border-radius: 0.25rem;
    cursor: pointer;
    position: relative;
    padding: 0;
}
.nav-toggle span {
    width: 70%;
    height: 2px;
    background: #ffffff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}
.nav-toggle span:nth-child(1) { top: 30%; }
.nav-toggle span:nth-child(2) { top: 50%; }
.nav-toggle span:nth-child(3) { top: 70%; }
.nav-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}
#mobileMenu {
    display: none;
    position: absolute;
    top: 100%;
    right: 1rem;
    background: #1e3a8a;
    width: 200px;
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
#mobileMenu.active {
    display: block;
}
#mobileMenu a {
    color: #ffffff;
    display: block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
}
#mobileMenu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    .nav-links {
        display: none;
    }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 1rem;
        background: #1e3a8a;
        width: 200px;
        border-radius: 0 0 0.5rem 0.5rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        box-sizing: border-box; /* Ensure padding doesn't affect width */
        z-index: 100; /* Ensure it stays above dropdowns */
    }
    .nav-links.active a {
        margin: 0.75rem 0; /* Equal vertical spacing for all links, including dropdown triggers */
        padding: 0.75rem 1.5rem;
    }
    .dropdown-content {
        position: absolute;
        top: 0;
        left: -200px; /* Open to the left of the menu bar */
        width: 200px;
        background-color: #1e3a8a;
        border-radius: 0.5rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000; /* Ensure it appears above other elements */
        box-sizing: border-box; /* Ensure padding doesn't affect width */
    }
    .dropdown-content a {
        color: #ffffff;
        background-color: #1e3a8a;
        margin: 0.75rem 0; /* Match spacing with menu links */
    }
    .dropdown-content a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #f97316;
    }
    .dropdown.active .dropdown-content {
        display: block;
        opacity: 1;
    }
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}
.hero-banner.active {
    opacity: 1;
}
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.5), rgba(249, 115, 22, 0.3)); /* Dark blue to orange gradient */
    z-index: -1;
}
.hero-banner h2 {
    font-size: clamp(1.8em, 6vw, 2.5em); /* Reduced max size */
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}
.hero-banner p {
    font-size: clamp(1em, 3vw, 1.2em); /* Reduced max size */
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.button {
    background: linear-gradient(135deg, #1e3a8a, #f97316); /* Dark blue to orange */
    color: #ffffff;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.95em;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
    border: none;
    cursor: pointer;
}
.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.5);
}

/* Inquiry Form Styles */
#inquiry-form {
    background: #ffffff;
    padding: 12px; /* Reduced from 25px to decrease height */
    margin: -50px auto 40px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.1);
    position: relative;
    z-index: 10;
    max-width: 80%; /* Reduced from 1200px to decrease width */
    text-align: center;
}
#inquiry-form .heading {
    font-size: 1.5em; /* Reduced for laptop */
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 20px;
    line-height: 1.2;
}
#inquiry-form form {
    display: flex;
    align-items: center;
    flex-grow: 1;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}
#inquiry-form .form-group {
    position: relative;
    flex: 1;
    min-width: 200px;
}
#inquiry-form input, #inquiry-form select {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid #1e3a8a;
    border-radius: 30px;
    background: #f5f6fa;
    font-size: 1em;
    color: #1e3a8a;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
#inquiry-form input:focus, #inquiry-form select:focus {
    background: #ffffff;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.3); /* Orange shadow */
    outline: none;
}
#inquiry-form .form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #f97316; /* Orange icon */
    font-size: 1.2em;
}
#inquiry-form .form-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}
#inquiry-form button {
    background: #1e3a8a; /* Dark blue */
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1em;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
#inquiry-form button:hover {
    background: #f97316; /* Orange */
    transform: scale(1.05);
}
#inquiry-form .whatsapp-button {
    background: linear-gradient(135deg, #25D366, #128C7E); /* Green gradient for WhatsApp */
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
#inquiry-form .whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}
#inquiry-form .slogan {
    text-align: center;
    font-size: 0.9em;
    color: #7f8c8d;
    font-style: italic;
    line-height: 1.5;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
    #inquiry-form {
        flex-direction: column;
        padding: 12px; /* Reduced from 25px to further decrease height */
        margin: -50px auto 40px;
        gap: 15px;
        max-width: 80%; /* Reduced from 1200px to further decrease width */
    }
    #inquiry-form .heading {
        font-size: 1.3em;
    }
    #inquiry-form form {
        flex-direction: column;
        gap: 10px;
    }
    #inquiry-form .form-group i {
        font-size: 1.1em;
    }
    #inquiry-form .form-buttons {
        flex-direction: column;
        gap: 10px;
    }
    #inquiry-form button {
        width: 100%;
        padding: 10px;
    }
}