:root {
    --primary: #304975;
    /* Charcoal Blue */
    --accent: #f9a825;
    /* Playful Yellow/Gold */
    --bg-soft: #f4f7f9;
    --white: #ffffff;
    --text: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text);
    background-color: var(--bg-soft);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}


/* Hero Section */

.hero {
    background: linear-gradient(rgba(48, 73, 117, 0.8), rgba(48, 73, 117, 0.8)), url('your-school-image.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.highlight {
    color: var(--accent);
}


/* Program Cards */

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 50px 0;
}

.program-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.program-card.low-priority {
    opacity: 0.8;
}

.program-card:hover {
    transform: translateY(-10px);
}


/* Form Styles */

.form-wrapper {
    background: var(--primary);
    color: white;
    padding: 40px;
    border-radius: 25px;
    max-width: 600px;
    margin: 50px auto;
}

.form-wrapper input,
.form-wrapper textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: none;
}

.submit-btn {
    background: var(--accent);
    color: var(--primary);
    font-weight: bold;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    width: 100%;
}


/* Pop-up Styles */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    text-align: center;
}


/* Section Titles */

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-top: 50px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}


/* Program Card Enhancements */

.program-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Keeps buttons aligned at the bottom */
    padding-top: 50px;
    /* Space for the icon */
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.icon {
    font-size: 3rem;
    margin-bottom: 15px;
}


/* Button inside Cards */

.card-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.card-btn:hover {
    background-color: var(--accent);
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(249, 168, 37, 0.4);
}


/* Pre-School Featured Button */

.featured .card-btn {
    background-color: var(--accent);
    color: var(--primary);
}

.featured .card-btn:hover {
    background-color: var(--primary);
    color: white;
}


/* Mission & Vision Styling */

.mission-vision {
    padding: 80px 0;
    background-color: #fff;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.mission-box {
    padding: 30px;
    background: var(--bg-soft);
    border-radius: 30px;
    border-bottom: 5px solid var(--primary);
}

.section-tag {
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.mission-box ul {
    list-style: none;
    padding: 0;
}

.mission-box li {
    margin-bottom: 10px;
    font-weight: 600;
}


/* Principal Section Styling */

.principal-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #304975 0%, #1e2e4a 100%);
    color: white;
}

.principal-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 40px;
    backdrop-filter: blur(10px);
}

.principal-image img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    /* Makes it a circle */
    border: 8px solid var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.principal-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.quote-icon {
    font-size: 4rem;
    font-family: serif;
    color: var(--accent);
    line-height: 1;
    display: block;
    margin-bottom: -20px;
}

.principal-name {
    margin-top: 20px;
    font-weight: 800;
    font-size: 1.2rem;
}


/* Responsive fix for mobile */

@media (max-width: 768px) {
    .mission-grid,
    .principal-card {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }
}


/* Navigation Styling */


/* .navbar {
    background: white;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
} */

.main-logo {
    height: 70px;
    /* Adjusted for better visibility */
    width: auto;
}


/* .nav-contact {
    font-weight: 700;
    color: var(--primary);
} */


/* Hero Banner with Specific Image */

.hero-banner {
    background-image: url(banner1.jpg);
    background-size: cover;
    background-position: center 20%;
    /* Adjusted to show children's faces better */
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    background: linear-gradient(to right, rgba(48, 73, 117, 0.9), rgba(48, 73, 117, 0.4));
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.header-logo {
  margin-bottom: 100px;
}

.header-logo img {
  max-width: 350px;   /* adjust if needed */
  width: 100%;
  height: auto;       /* keeps aspect ratio */
  object-fit: contain;
}

.hero-content {
    max-width: 650px;
    color: white;
    text-align: left;
}

.admission-tag {
    background: var(--accent);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}


/* Buttons */

.hero-actions {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-outline {
    border: 2px solid white;
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-primary:hover {
    background: white;
    color: var(--primary);
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
}


/* Mobile View for Hero */

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-actions {
        justify-content: center;
        flex-direction: column;
    }
    .hero-overlay {
        background: rgba(48, 73, 117, 0.85);
    }
    /* Solid overlay for mobile readability */
}


/* Award Section Animation */

.awards-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.awards-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.award-item {
    background: var(--bg-soft);
    padding: 40px;
    border-radius: 20px;
    width: 300px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    animation: float 3s ease-in-out infinite;
}

.award-item:nth-child(2) {
    animation-delay: 0.5s;
}

.award-item:nth-child(3) {
    animation-delay: 1s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}


/* Why Millsberry Section - Playful Cloud Design */

.why-millsberry {
    padding: 100px 0;
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

.why-card {
    background: white;
    padding: 60px;
    border-radius: 50px;
    position: relative;
}

.title-with-cloud {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
}

.feat-icon {
    font-size: 2.5rem;
    background: #fdf2e9;
    padding: 20px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 15px;
}


/* FAQ Accordion Styling */

.faq-section {
    padding: 80px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto;
}

details {
    background: white;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: 0.3s;
}

details[open] {
    border-left: 5px solid var(--accent);
}

summary {
    font-weight: 700;
    font-size: 1.1rem;
    list-style: none;
    color: var(--primary);
}

details p {
    margin-top: 15px;
    color: #555;
    line-height: 1.6;
}


/* Children Related Graphics (Mission/Vision section adjustment) */

.mission-box {
    position: relative;
    overflow: hidden;
}


/* Adding a playful circle to represent a sun or ball */

.mission-box::after {
    content: '⚽';
    position: absolute;
    bottom: -10px;
    right: 10px;
    font-size: 3rem;
    opacity: 0.2;
}

.mission-box:first-child::after {
    content: '☀️';
    top: 10px;
    right: 10px;
}


/* Final Section Layout */

.final-section {
    padding: 80px 0;
    background-color: #f9fbfd;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}


/* Inquiry Form Styling */

.form-container {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-top: 10px solid #2b76df;
    /* Blue accent */
}

.form-tag {
    color: white;
    padding: 5px 15px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 800;
}

.form-container h2 {
    margin: 15px 0;
    color: #304975;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid #eee;
    border-radius: 15px;
    font-family: 'Nunito', sans-serif;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: #7f5aff;
    /* Purple focus */
}

.submit-btn-final {
    width: 100%;
    padding: 18px;
    background: #ff7355;
    /* Salmon color */
    color: white;
    border: none;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 115, 85, 0.3);
    transition: 0.3s;
}

.submit-btn-final:hover {
    transform: translateY(-3px);
    background: #2b76df;
}


/* Side Footer Styling */

.footer-column {
    padding-top: 20px;
}

.footer-logo {
    max-width: 220px;
    margin-bottom: 20px;
}

.link-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 40px 0;
}

.link-group h4 {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.link-group ul {
    list-style: none;
    padding: 0;
}

.link-group li {
    margin-bottom: 12px;
}

.link-group a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    transition: 0.2s;
}

.link-group a:hover {
    color: #7f5aff;
    padding-left: 5px;
}

.footer-contact-info p {
    margin-bottom: 10px;
    font-weight: 700;
    color: #304975;
}


/* Responsive design */

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-column {
        text-align: center;
    }
    .link-columns {
        text-align: left;
    }
}


/* Contact Box Styling */

.contact-info-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    border: 2px dashed #d1d9e6;
    /* Playful dashed border */
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item small {
    display: block;
    color: #888;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-item p {
    margin: 0;
    font-weight: 700;
    color: #304975;
    font-size: 0.95rem;
}


/* Responsive adjustment */

@media (max-width: 600px) {
    .contact-info-box {
        text-align: left;
    }
}


/* Add this for the Navbar */


/* .navbar {
    background: var(--white);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
} */

.main-logo {
    height: 60px;
    width: auto;
}


/* Add this for the Mission/Vision Desktop Layout */

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 0;
}

.mission-box {
    padding: 30px;
    background: var(--bg-soft);
    border-radius: 25px;
    border-bottom: 5px solid var(--primary);
}


/* Saraswati Pooja Banner */

.pooja-banner {
    /* Background using a festive yellow/orange theme or a school celebration photo */
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://school.millsberry.edu.np/wp-content/gallery/investiture-day-junior-2082/2.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    color: white;
}

.pooja-overlay {
    width: 100%;
}

.pooja-tag {
    background: #ff7355;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}


/* About Pooja Section */

.pooja-info {
    padding: 80px 0;
    background: #fff9f0;
    /* Soft warm yellow background */
}

.pooja-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.god-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 15px 30px rgba(255, 156, 2, 0.2);
    border: 5px solid #fff;
}

.pooja-text-box h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin: 15px 0;
}

.pooja-features {
    margin-top: 25px;
}

.p-feat {
    background: white;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 10px;
    border-left: 5px solid #ff9c02;
    font-size: 0.95rem;
}


/* Responsive adjustment for the Pooja section */

@media (max-width: 768px) {
    .pooja-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .pooja-image-box {
        order: -1;
    }
}


/* Container must be relative to anchor the absolute rays */


/* Container to hold everything centered */


/* Container made into a Circle */

.pooja-image-box {
    position: relative;
    width: 450px;
    /* Equal width and height for a perfect circle */
    height: 450px;
    margin: 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    /* This makes it a circle */
    border-radius: 50%;
    /* This clips the rotating rays so they stay inside the circle */
    overflow: hidden;
    /* Optional: Adds a nice gold border and glow to the circle itself */
    /* border: 8px solid #fff; */
    box-shadow: 0 0 30px rgba(255, 156, 2, 0.4);
    background: #fff;
    /* Ensures a clean base */
}


/* The Rotating Rays (Adjusted to fill the circle) */

.sun-rays {
    position: absolute;
    width: 200%;
    height: 200%;
    z-index: 1;
    background: repeating-conic-gradient( from 0deg, #ff9c02 0deg 15deg, transparent 15deg 30deg);
    opacity: 0.25;
    animation: rotate-rays 25s linear infinite;
    /* Slightly slower for a peaceful feel */
    pointer-events: none;
}

.god-image {
    position: relative;
    z-index: 3;
    width: 280px;
    height: 280px;
    /* Make height equal to width */
    object-fit: cover;
    /* Ensures the image doesn't stretch */
    border-radius: 50%;
    border: none;
    outline: none;
    /* This removes the rectangular corners of the image */
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}


/* The Divine Glow (Centered Halo) */

.divine-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.5) 0%, rgba(255, 255, 255, 0) 75%);
    z-index: 2;
}


/* The Image - Scaled to fit nicely inside the circle */

@keyframes rotate-rays {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* Responsive adjustment for small screens */

@media (max-width: 500px) {
    .pooja-image-box {
        width: 300px;
        height: 300px;
    }
    .god-image {
        width: 180px;
    }
}


/* Split the Hero into two columns */

.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 60px 0;
}

.hero-left {
    flex: 1.2;
    text-align: left;
}

.hero-right {
    flex: 0.8;
}


/* Banner Form Styling */

.banner-form-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: var(--primary);
}

.banner-form-container h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary);
    text-align: center;
}

.banner-form-container input,
.banner-form-container select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    outline: none;
}

.banner-form-container select {
    background-color: white;
    cursor: pointer;
}

.submit-btn-banner {
    width: 100%;
    padding: 15px;
    background: var(--salmon);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn-banner:hover {
    background: var(--primary);
    transform: translateY(-2px);
}


/* Responsive: Stack columns on mobile */

@media (max-width: 992px) {
    .hero-split {
        flex-direction: column;
        text-align: center;
    }
    .hero-left {
        text-align: center;
    }
    .hero-right {
        width: 100%;
        max-width: 450px;
    }
}


/* Layout to split the banner */

.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    height: 100%;
}

.hero-content {
    flex: 1.2;
    /* Takes more space for the text */
}

.hero-form-box {
    flex: 0.8;
    display: flex;
    justify-content: flex-end;
}


/* Designing the Form Card */

.banner-form {
    background: rgba(255, 255, 255, 0.98);
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 400px;
    border-top: 8px solid var(--purple);
    /* Using your purple #7f5aff */
}

.banner-form h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-align: center;
}

.banner-form input,
.banner-form select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 12px;
    border: 2px solid #eef0f2;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    outline: none;
    transition: var(--transition);
}

.banner-form input:focus,
.banner-form select:focus {
    border-color: var(--purple);
}

.banner-submit {
    width: 100%;
    padding: 15px;
    background: var(--salmon);
    /* Using your salmon #ff7355 */
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 115, 85, 0.3);
    transition: var(--transition);
}

.banner-submit:hover {
    background: var(--primary);
    transform: translateY(-2px);
}


/* Ensure mobile responsiveness */

@media (max-width: 992px) {
    .hero-split {
        flex-direction: column;
        padding-top: 100px;
        text-align: center;
    }
    .hero-content {
        margin-bottom: 40px;
    }
    .hero-form-box {
        justify-content: center;
        width: 100%;
    }
}


/* Hero Split Layout */

.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 50px 0;
}


/* Floating Form Card Design */

.banner-form-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 25px;
    width: 100%;
    max-width: 420px;
    position: relative;
    /* ENHANCED FLOATING SHADOW */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 10px 20px rgba(0, 0, 0, 0.1);
    /* Subtle border for extra polish */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 8px solid var(--purple);
    /* Slight lift animation */
    animation: floatUp 1s ease-out;
}

.banner-form-card h3 {
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 800;
}

.banner-form-card input,
.banner-form-card select,
.banner-form-card textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 12px;
    border: 2px solid #f0f2f5;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    outline: none;
    transition: var(--transition);
}

.banner-form-card textarea {
    resize: none;
    /* Keeps the form looking neat */
}

.banner-form-card input:focus,
.banner-form-card select:focus,
.banner-form-card textarea:focus {
    border-color: var(--purple);
    background: #fff;
}


/* SOLID BUTTON (Visible before hover) */

.banner-submit {
    width: 100%;
    padding: 16px;
    background-color: #ff7355 !important;
    /* Forces Salmon color visibility */
    color: #ffffff !important;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    display: block;
    opacity: 1 !important;
    /* Ensures it is not transparent */
    box-shadow: 0 8px 20px rgba(255, 115, 85, 0.4);
    transition: var(--transition);
}
.banner-form-card div {
    font-size: 14px;
    padding: 8px;
    border-radius: 4px;
}


.banner-submit:hover {
    background-color: var(--primary) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(48, 73, 117, 0.3);
}


/* Animation for the floating entrance */

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive adjustment */

@media (max-width: 992px) {
    .hero-split {
        flex-direction: column;
        text-align: center;
    }
    .hero-form-box {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    /* Change fixed height to auto so the banner grows with the content */
    .hero-banner {
        height: auto;
        padding: 100px 0 50px 0;
        /* Add top/bottom padding for the form and image */
    }
    /* Ensure the overlay doesn't restrict height */
    .hero-overlay {
        height: auto;
        display: block;
        /* Stack content vertically instead of centering in a fixed box */
    }
    /* Add spacing between the form and the circular image */
    .hero-split {
        flex-direction: column;
        gap: 40px;
        /* Space out the form from the Saraswati image */
    }
    /* Ensure the Saraswati image container doesn't overlap the form above it */
    .pooja-image-box {
        margin: 20px auto;
        width: 320px;
        /* Scale down the circle size for small screens */
        height: 320px;
    }
    .god-image {
        width: 200px;
        /* Scale down the image of the goddess */
    }
}


/* Responsive adjustments for mobile screens */

@media (max-width: 992px) {
    /* Allow the banner height to grow based on the content */
    .hero-banner {
        height: auto;
        min-height: 100vh;
        padding: 0;
        /* Space for the stacked elements */
    }
    /* Stack the text and form vertically */
    .hero-split {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        /* height: 100%; */
        /* margin: 0px; */
    }
    /* Center the form and ensure it fits the screen width */
    .hero-form-box {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .banner-form-card {
        max-width: 100%;
        /* Ensures the form doesn't bleed off the screen */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        /* Softer shadow for mobile */
    }
    /* Adjust heading size for readability on small screens */
    .hero-content h1 {
        font-size: 2.2rem;
    }
}