/* Global Styles */
* {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
/* Header & Navigation */
.header {
    font-size: 1.2rem;
}

/* Navigation Bar */
.navbar a {
    font-size: 1.1rem;
}

/* Contact Form Section */
.container {
    font-size: 1rem;
}

.form-box {
    font-size: 1rem;
}

/* Input & Textarea Fields */
input, textarea {
    font-size: 1rem;
}

/* Submit Button */
button {
    font-size: 1rem;
    font-weight: bold;
}

/* Footer */
.footer {
    font-size: 1rem;
}

.footer-left, .footer-center, .footer-right {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    .logo{
        margin-left: -25px;
    }
    .logo img{
        min-width: 35vw;
    }
    
    .header {
        font-size: 1.1rem;
    }

    .navbar a {
        font-size: 0.6rem;
    }

    .form-box {
        font-size: 0.7rem;
    }

    input, textarea {
        font-size: 0.6rem;
    }

    button {
        font-size: 0.7rem;
    }

    .footer-left, .footer-center, .footer-right {
        font-size: 0.4rem;
    }
    
}




body {
    min-height: 100vh;
    background: white;
    background-size: cover;
    background-position: center;
    font-size: 16px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 6vw;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, #b3b2b2 0%, #f5f5f5 80%, transparent 100%);

}

/* Logo Styling */
.logo img {
    padding-top: 20px;
    max-width: 28%;
}

/* Navigation Bar */
.navbar {
    padding-top: 20px;
    display: flex;
    gap: 30px; /* Spacing between nav items */
}

.navbar a {
    position: relative;
    color: rgb(0, 0, 0);
    font-weight: 600;
    text-decoration: none;
    margin-left: 40px;
    white-space: nowrap;
}

/* Navigation Hover Effects */
.navbar a:hover {
    filter: drop-shadow(8px 8px 15px rgba(0, 0, 0, 0.6));
}

.navbar a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 3px;
    background-color: rgb(0, 0, 0);
    transition: 0.3s;
}

.navbar a:hover::before {
    width: 100%;
}
/* Hide hamburger on larger screens */
.hamburger {
    display: none; /* Hidden by default */
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    background: none;
    border: none;
    color: rgb(0, 0, 0);
    z-index: 1001;
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease-in-out; /* Smooth rotation */
}

/* Show hamburger only on smaller screens */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar {
        display: none;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 60px;
        right: 20px;
        width: fit-content; /* Adjust width */
        text-align: center;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        padding: 15px ;
    }

    .navbar.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }
    .navbar a {
        position: relative;
        color: rgb(255, 255, 255);
        font-weight: 600;
        text-decoration: none;
        margin-left: 40px;
        white-space: nowrap;
    }
}
/* Rotation effect when active */
.hamburger.active {
    transform: rotate(180deg); /* Rotates 180 degrees when active */
}
/* ============================
   Contact Form Section Styles
   ============================ */
   .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px; /* Space between image and form */
    padding: 100px 0 60px;
    max-width: 900px;
    margin: auto;
}

/* Image Box */
.image-box {
    flex: 1;
}

.image-box img {
    width: 100%;
    height: auto;
    max-width: 500px; /* Prevents oversized images */
}

/* Form Box */
.form-box {
    background: rgb(221, 221, 224);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

/* Input & Textarea Fields */
input, textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: none; /* Prevents manual resizing of textarea */
}

/* Submit Button */
button {
    width: 100%;
    padding: 10px;
    background: linear-gradient(90deg, #a855f7, #ec4899); /* Gradient effect */
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    opacity: 0.9;
}

/* =====================
   Responsive Design 
   ===================== */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .image-box {
        max-width: 40%;
    }

    .form-box {
        width: 90%;
    }
}

/*Footer*/
.footer {
    background: #f5f5f5;
    padding: 0px 20px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.footer-container {
    max-width: 100vw;
    margin: 0 auto;
}


/* Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    border-top: 1.5px solid black;
    padding-top: 20px;
}

/* Left Section */
.footer-left {
    text-align: left;
    max-width: 300px;
}

.company-name {
    font-weight: bold;
    margin-bottom: 10px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.social-icons img {
    width: 1.4vw;
    height: auto;
}

.copyright {
    color: #666;
    margin-top: 10px;
}

/* Center Section */
.footer-center ul {
    list-style: none;
    padding: 0;
    padding-top: 16px;
    margin: 0;
}

.footer-center ul li {
    margin-bottom: 5px;
}

.footer-center ul li a {
    text-decoration: none;
    color: black;
}

/* Right Section */
.footer-right {
    text-align: right;
    max-width: 250px;
}

.footer-right a {
    text-decoration: none;
    color: black;
}

