/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--footer-header);
    padding: 15px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 80px;
    transition: filter 0.3s ease-in-out;
}

/* Logo Red Effect on Hover */
.navbar:hover .logo img,
.footer:hover .footer-logo img {
    filter: hue-rotate(320deg) brightness(1.2);
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 15px;
}

.nav-links ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links ul li a {
    text-decoration: none;
    color: rgb(7, 7, 7);
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

/* Hover Effect: Red Background */
.nav-links ul li a:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 0 10px var(--primary-color);
}

/* Default: Hide Toggle Button on Large Screens */
.menu-toggle {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    z-index: 1100;
}

/* ✅ Show Only on Small Screens */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Sirf mobile screens ke liye show hoga */
    }

    .nav-links ul {
        display: none;
        flex-direction: column;
        background: var(--white);
        position: absolute;
        top: 60px;
        right: 0;
        width: 115px;
        padding: 15px;
    }

    .nav-links ul.active {
        display: flex;
    }
}


/* Hero Banner */
.banner {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    margin-bottom: 200px;
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    color: rgb(248, 247, 247);
    margin-left: -40px;
}

.banner-content h1 {
    font-size: 3rem;
    font-weight: bold;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.banner-btn {
    padding: 12px 24px;
    background: var(--white);
    color: #030303;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.banner-btn:hover {
    background: var(--primary-color);
}

/* 🌟 Contact Form Container */
.contact-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 100px); /* 100px footer height adjust */
    background: linear-gradient(135deg, #1E293B, #334155);
    padding: 0px;
    margin-top: 0;
    

}

/* 🌟 Contact Form */
.contact-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.2),
                -8px -8px 16px rgba(255, 255, 255, 0.8);
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.8s ease-in-out;
    justify-content: center;
    margin-top: 200px;
}

/* 🌟 Input Fields */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 8px;
    background: #f0f0f0;
    font-size: 16px;
    box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.1),
                inset -3px -3px 6px rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

/* 🌟 Placeholder Animation */
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: white;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2),
                -3px -3px 6px rgba(255, 255, 255, 0.7);
}

/* 🌟 Placeholder Animation */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    transition: all 0.3s ease-in-out;
    color: #999;
}

.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
    opacity: 0;
    transform: translateX(10px);
}

/* 🌟 Submit Button */
.contact-form button {
    padding: 12px;
    margin-top: 10px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    color: white;
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2),
                -3px -3px 6px rgba(255, 255, 255, 0.7);
}

/* 🌟 Button Hover Effect */
.contact-form button:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: scale(1.05);
}

/* 🌟 Fade-In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 🌟 Responsive Design */
@media (max-width: 768px) {
    .contact-form {
        width: 90%;
    }
}



/* Fix Footer at Bottom */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Full screen height */
    margin: 0;
}

.main-content {
    flex: 1; /* Takes full available space */
}

.footer {
    width: 100%;
    background: var(--secondary-color);
    color: black;
    padding: 30px 0;
}

/* Footer Section - Full Width */
.footer {
    width: 100%;
    background: var(--footer-header);
    color: black;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    margin-top: 200px;
    overflow: hidden;
}

/* Footer Container */
.footer .container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    margin: 0 auto; /* ✅ Remove extra right margin */
}

/* Logo on Left Side */
.logo-left {
    max-width: 150px;
    margin: -80px 30px 0 0;
}

/* Footer Content */
.footer .row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    gap: 40px;
}

/* Footer Columns */
.footer-col {
    flex: 1;
    min-width: 200px;
    text-align: left;
}

/* Footer Column Titles */
.footer-col h4 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Footer Links */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: black;
    text-decoration: none;
    font-size: 1rem;
    display: inline-block;
    transition: color 0.3s ease, background 0.3s ease;
}

/* Footer Hover Effect */
.footer-col ul li a:hover {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 5px;
}

/* Social Media Icons */
.social-link {
    display: flex;
    gap: 10px;
}

.social-link a {
    color: rgb(11, 96, 193);
    font-size: 1.5rem;
    padding: 10px;
    transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.social-link a:hover {
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    transform: scale(1.2);
}

/* Footer Bottom */
.footer-bottom {
    width: 100%; /* Fixed: 150% hata diya */
    background: #c8e189;
    text-align: center;
    padding: 10px 0;
    font-size: 1rem;
    font-weight: bold;
    margin: 0 auto; /* Fixed: Extra margin hata diya */
}

/* Footer Bottom Links */
.footer-bottom p {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
}

/* Footer Bottom Links */
.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, background 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--white);
    background: var(--primary-color);
    padding: 5px 10px;
    border-radius: 5px;
}

/* ✅ Responsive Design */
@media (max-width: 1024px) {
    .footer .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 20px;
    }

    .footer .row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom p {
        flex-direction: column;
        gap: 5px;
    }

    .social-link {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 10px;
    }
    .footer .row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom p {
        flex-direction: column;
        gap: 5px;
    }

    .social-link {
        justify-content: center;
    }

    .logo-left {
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
        margin-bottom: 15px;
    }
}
