/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
}

body {
    margin: 0;
    background: #000;
    color: #f1f1f1;
    overflow-x: hidden;
    position: relative;
}

/* ======================== Space Background ======================== */
.space-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000000;
}
images{ height:1000px;}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(1px 1px at 40px 70px, #fff, transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, #fff, transparent),
        radial-gradient(2px 2px at 160px 30px, #fff, transparent),
        radial-gradient(1px 1px at 200px 120px, #fff, transparent),
        radial-gradient(1px 1px at 250px 60px, #fff, transparent),
        radial-gradient(2px 2px at 280px 90px, #fff, transparent),
        radial-gradient(1px 1px at 320px 150px, #fff, transparent),
        radial-gradient(1px 1px at 350px 40px, #fff, transparent);
    background-repeat: repeat;
    background-size: 400px 300px;
    animation: starsMove 100s linear infinite;
}

.stars::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 60px 150px, #fff, transparent),
        radial-gradient(2px 2px at 120px 120px, #fff, transparent),
        radial-gradient(1px 1px at 180px 60px, #fff, transparent),
        radial-gradient(2px 2px at 90px 180px, #fff, transparent),
        radial-gradient(1px 1px at 220px 200px, #fff, transparent),
        radial-gradient(2px 2px at 300px 100px, #fff, transparent),
        radial-gradient(1px 1px at 350px 180px, #fff, transparent),
        radial-gradient(1px 1px at 380px 80px, #fff, transparent);
    background-repeat: repeat;
    background-size: 400px 300px;
    animation: starsMove 120s linear infinite;
}

/* Twinkling stars effect */
.stars::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 50px 80px, #fff, transparent),
        radial-gradient(1px 1px at 150px 200px, #fff, transparent),
        radial-gradient(2px 2px at 280px 30px, #fff, transparent),
        radial-gradient(1px 1px at 320px 160px, #fff, transparent);
    background-repeat: repeat;
    background-size: 400px 300px;
    animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes starsMove {
    from { transform: translateY(0); }
    to { transform: translateY(-300px); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Shooting Stars */
.shooting-star {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 8px 2px #fff;
    opacity: 0;
}

/* Shooting Star Animation */
@keyframes shoot {
    0% {
        transform: translateX(0) translateY(0) rotate(45deg);
        opacity: 1;
        height: 2px;
    }
    10% {
        height: 50px;
    }
    100% {
        transform: translateX(500px) translateY(500px) rotate(45deg);
        opacity: 0;
        height: 100px;
    }
}

/* ======================== Header ======================== */
header {
    background: rgba(20, 20, 25, 0.6);
    backdrop-filter: blur(15px);
    padding: 15px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 2px 20px rgba(192, 192, 192, 0.2);
    flex-wrap: wrap;
    border-bottom: 1px solid;
    border-image: linear-gradient(90deg, transparent, #c0c0c0, #e8e8e8, #c0c0c0, transparent) 1;
    margin: 10px 20px 20px 20px;
    border-radius: 20px;
    max-width: calc(100% - 40px);
}

header img {
    height: 100px;
    max-width: 100%;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #f1f1f1;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 12px;
}

nav ul li a:hover {
    color: #c0c0c0;
    background: rgba(192, 192, 192, 0.1);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Hamburger Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-top: 10px;
}

.menu-toggle span {
    background: #c0c0c0;
    height: 3px;
    width: 25px;
    margin: 4px auto;
    border-radius: 2px;
    transition: 0.3s;
}

/* ======================== General Sections ======================== */
.section {
    padding: 40px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(25, 25, 35, 0.5);
    backdrop-filter: blur(20px);
    box-shadow: 
        inset 0 0 30px rgba(192, 192, 192, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.3);
    margin: 20px 20px 30px 20px;
    border-radius: 25px;
    flex-wrap: wrap;
    border: 1px solid;
    border-image: linear-gradient(135deg, #a0a0a0, #c0c0c0, #e0e0e0, #c0c0c0, #a0a0a0) 1;
    max-width: calc(100% - 40px);
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.1), transparent);
    transition: left 0.6s ease;
}

.section:hover::before {
    left: 100%;
}

.section img {
    max-width: 200px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.section img:hover {
    transform: scale(1.05);
}

.section-text {
    flex: 1;
    padding: 20px;
    min-width: 250px;
}

.section-text h2 {
    margin-bottom: 15px;
    color: #c0c0c0;
    font-size: 2rem;
    background: linear-gradient(135deg, #e8e8e8, #c0c0c0, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: silverGlow 3s ease-in-out infinite alternate;
}

.section-text h4 {
    margin-bottom: 12px;
    color: #c0c0c0;
    font-weight: 500;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.section-text p {
    line-height: 1.7;
    color: #e1e1e1;
}

/* Silver Glow Animation */
@keyframes silverGlow {
    0% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3),
                     0 0 20px rgba(255, 255, 255, 0.2),
                     0 0 30px rgba(255, 255, 255, 0.1);
    }
    100% {
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.5),
                     0 0 25px rgba(255, 255, 255, 0.3),
                     0 0 35px rgba(255, 255, 255, 0.2),
                     0 0 45px rgba(255, 255, 255, 0.1);
    }
}

/* ======================== Quick Links ======================== */
.quick-links {
    text-align: center;
    padding: 30px 5%;
    background: rgba(25, 25, 35, 0.5);
    backdrop-filter: blur(20px);
    box-shadow: 
        inset 0 0 30px rgba(192, 192, 192, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.3);
    margin: 20px;
    border-radius: 25px;
    border: 1px solid;
    border-image: linear-gradient(135deg, #a0a0a0, #c0c0c0, #e0e0e0, #c0c0c0, #a0a0a0) 1;
    max-width: calc(100% - 40px);
}

.quick-links h3 {
    margin-bottom: 25px;
    color: #c0c0c0;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #e8e8e8, #c0c0c0, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: silverGlow 3s ease-in-out infinite alternate;
}

.quick-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.quick-links ul li {
    margin: 5px;
}

.quick-links ul li a {
    text-decoration: none;
    color: #f1f1f1;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 12px 24px;
    border-radius: 15px;
    background: rgba(192, 192, 192, 0.1);
    border: 1px solid rgba(192, 192, 192, 0.3);
    display: block;
    min-width: 160px;
}

.quick-links ul li a:hover {
    color: #ffffff;
    background: rgba(192, 192, 192, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(192, 192, 192, 0.3);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* ================================ Contact Us Section Styling ================================= */
#contact {
    margin: 40px auto;
    max-width: 1200px;
    padding: 20px;
}

.contact-wrapper {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.contact-card {
    flex: 1;
    background: rgba(25, 25, 35, 0.6);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 25px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 0 30px rgba(192, 192, 192, 0.1);
    display: flex;
    flex-direction: column;
    border: 1px solid;
    border-image: linear-gradient(135deg, #a0a0a0, #c0c0c0, #e0e0e0, #c0c0c0, #a0a0a0) 1;
}

.contact-card h2 {
    color: #c0c0c0;
    margin-bottom: 15px;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #e8e8e8, #c0c0c0, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: silverGlow 3s ease-in-out infinite alternate;
}

.contact-card p {
    color: #e1e1e1;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Form Styling */
#contact form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1;
}

/* Labels */
#contact label {
    font-weight: bold;
    color: #c0c0c0;
    font-size: 14px;
    margin-bottom: 5px;
    text-align: left;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Inputs & Textarea */
#contact input,
#contact textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 15px;
    font-size: 15px;
    background: rgba(40, 40, 50, 0.6);
    color: #fff;
    transition: all 0.3s ease;
}

#contact input:focus,
#contact textarea:focus {
    border: 1px solid #c0c0c0;
    outline: none;
    background: rgba(50, 50, 60, 0.8);
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.3);
}

/* Button */
#contact button {
    background: linear-gradient(135deg, #a0a0a0, #c0c0c0, #e0e0e0);
    color: #333;
    padding: 12px 18px;
    font-size: 16px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 10px;
}

#contact button:hover {
    background: linear-gradient(135deg, #e0e0e0, #c0c0c0, #a0a0a0);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 192, 192, 0.4);
    color: #000;
}

/* Map Styling */
.map-container {
    flex: 1;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    height: 400px;
    border: 1px solid;
    border-image: linear-gradient(135deg, #a0a0a0, #c0c0c0, #e0e0e0, #c0c0c0, #a0a0a0) 1;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ================================ Popup Notification ================================= */
#popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(25, 25, 35, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid;
    border-image: linear-gradient(135deg, #a0a0a0, #c0c0c0, #e0e0e0) 1;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    padding: 25px;
    border-radius: 20px;
    z-index: 1000;
    animation: fadeInOut 3s ease forwards;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    20% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
}

/* ================================ Responsive Design ================================= */
@media (max-width: 900px) {
    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
        margin: 10px 15px 15px 15px;
        max-width: calc(100% - 30px);
        border-radius: 20px;
        position: relative;
        z-index: 1000; /* Added to ensure header stays on top */
    }

    header img {
        height: 35px;
        margin-bottom: 10px;
    }

    /* Hamburger visible */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    nav ul {
        flex-direction: column;
        background: rgba(25, 25, 35, 0.98); /* Increased opacity */
        backdrop-filter: blur(25px);
        position: absolute;
        top: 80px; /* Adjusted to appear right below header */
        right: 50%;
        transform: translateX(50%);
        width: 220px; /* Slightly wider */
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
        display: none;
        z-index: 1100; /* Increased z-index to appear above everything */
        border: 1px solid;
        border-image: linear-gradient(135deg, #a0a0a0, #c0c0c0, #e0e0e0) 1;
        padding: 10px 0;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 12px 20px;
        margin: 0 15px;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    nav ul li a:hover {
        background: rgba(192, 192, 192, 0.15);
        transform: translateY(-2px);
    }

    .section {
        flex-direction: column;
        text-align: center;
        padding: 30px 5%;
        margin: 15px 15px 25px 15px;
        max-width: calc(100% - 30px);
        border-radius: 20px;
        position: relative;
        z-index: 1; /* Ensure sections stay below menu */
    }

    .section img {
        margin-top: 20px;
        max-width: 180px;
        border-radius: 15px;
    }

    /* Quick Links Mobile - Better spacing */
    .quick-links {
        margin: 15px;
        max-width: calc(100% - 30px);
        padding: 25px 5%;
        border-radius: 20px;
        position: relative;
        z-index: 1; /* Ensure quick links stay below menu */
    }

    .quick-links ul {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .quick-links ul li {
        margin: 8px 0;
        width: 100%;
        max-width: 250px;
    }

    .quick-links ul li a {
        padding: 15px 20px;
        margin: 5px 0;
        border-radius: 15px;
        min-width: 200px;
    }

    /* Contact page responsive - stack vertically on small screens */
    .contact-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .contact-card {
        width: 100%;
        border-radius: 20px;
        position: relative;
        z-index: 1;
    }

    .map-container {
        height: 300px;
        border-radius: 20px;
        position: relative;
        z-index: 1;
    }
}
@media (max-width: 480px) {
    .section {
        padding: 25px 4%;
        margin: 10px 10px 20px 10px;
        max-width: calc(100% - 20px);
        border-radius: 18px;
    }

    .section-text h2 {
        font-size: 1.6rem;
    }

    header {
        padding: 12px 4%;
        margin: 8px 10px 12px 10px;
        max-width: calc(100% - 20px);
        border-radius: 18px;
    }

    .quick-links {
        padding: 20px 4%;
        margin: 10px;
        max-width: calc(100% - 20px);
        border-radius: 18px;
    }

    .quick-links ul li a {
        min-width: 180px;
        padding: 12px 18px;
    }
}

