/* Enhanced CSS Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #ff9900;
    --secondary-color: #0b3d91;
    --accent-color: #3c8dbc;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.2);
    --shadow-medium: 0 6px 24px rgba(0, 0, 0, 0.12);
    --gradient-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #ff9900 0%, #ff6b00 100%);
}

body {
    line-height: 1.6;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--text-dark);
    padding: 8px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
}

header .logo {
    font-size: 1rem;
    font-weight: 600;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

header .logo img {
    width: 100px;
    height: 60px;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    margin: 0 15px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}



.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

#nav-icon {
    font-size: 28px;
    color: var(--text-dark);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mobile-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(16, 14, 14, 0.2);
}

.mobile-nav button {
    background: var(--gradient-accent);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

nav a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--gradient-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover::after {
    width: 100%;
}

nav .cta {
    background: var(--gradient-accent);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    margin-left: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
}

nav .cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
}

/* Enhanced Hero Section */
.hero {
    height: 100vh;
    display: flex;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background-image 1s ease-in-out;
}


.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.1rem, 3vw, 3rem);
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    margin-top: 35px;
}

.hero-buttons button {
    margin: 8px;
    padding: 10px 25px;
    border: none;
    border-radius: 30px;
    background: var(--gradient-accent);
    color: var(--white);
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.3);
}

.hero-buttons button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 153, 0, 0.4);
}

.hero-buttons button:nth-child(2) {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.hero-buttons button:nth-child(2):hover {
    background: var(--white);
    color: var(--text-dark);
}

.hero a {
    text-decoration: none;
    background: none;
    color: var(--primary-color);
}

/* Floating elements animation */
.hero::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 153, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 20%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Enhanced Sections */
section {
    padding: 80px 40px;
    position: relative;
}

h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Enhanced Projects Section */
.projects-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.1"><polygon points="0,0 1000,0 1000,60 0,100"/></svg>') no-repeat center top;
    background-size: cover;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
}

.projects-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.projects-container::-webkit-scrollbar {
    display: none;
}

.project-card {
    flex: 0 0 340px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    scroll-snap-align: start;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-card:hover::before {
    opacity: 0.05;
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-card a {
    text-decoration: none;
}

.card-content {
    padding: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

.card-content p {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}


/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.modal-content h3 {
    margin-bottom: 1rem;
}

.modal-content input {
    width: 100%;
    padding: 0.6rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.modal-content button {
    cursor: pointer;
    padding: 0.7rem 2rem;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
}

.close-btn {
    position: relative;
    top: -20px;
    right: -160px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

.close-btn:hover {
    color: red;
}



/* Enhanced About Section */
.about {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 40px;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="none"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e0e0e0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.about>* {
    position: relative;
    z-index: 1;
}

.about h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 40px;
    color: var(--text-dark);
    text-align: center;
}

.about p {
    max-width: 900px;
    margin: 0 auto 30px auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
}

.about h3 {
    text-align: center;
    margin-top: 50px;
    font-size: 1.6rem;
    color: var(--text-dark);
    font-weight: 600;
}

.about .project-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.about .project-list li {
    background: var(--white);
    border: 2px solid transparent;
    padding: 15px 25px;
    border-radius: 25px;
    box-shadow: var(--shadow-light);
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about .project-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}



.about ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.about ul li {
    background: var(--white);
    padding: 15px 25px;
    border-radius: 25px;
    box-shadow: var(--shadow-light);
    font-weight: 600;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.about ul li:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

/* Enhanced Facilities Section */

.facilities {
    position: relative;
    padding: 60px 20px;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    z-index: 1;
}

.facilities::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)),
        url('/assets/mauli1.jpg') center/cover no-repeat;
    filter: blur(4px);
    /* Adjust blur here */
    z-index: -1;
    transform: scale(1.05);
    /* Prevent edge blur cut-off */
}


@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.facilities>* {
    position: relative;
    z-index: 1;
}

.facilities h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    /* 220px */
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.facility {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 10px;
    /* 40px 20px */
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.facility::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}



.facility i {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}


.facility p {
    font-size: 1.2rem;
    color: var(--white);
    margin: 0;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Enhanced Map Section */
/* #map-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
} */



/* #map {
    height: 90vh;
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
} */

#map-section {
  display: flex;
  flex-direction: column; /* Title + video vertically arrange honge */
  align-items: center;    /* Horizontal center */
  justify-content: center; /* Vertical center (agar height set ho) */
  text-align: center;
  padding: 20px;
}

#map-section video {
  max-width: 90%;  /* Responsive video */
  max-height: 550px;
  height: auto;
  border-radius: 12px; /* optional: rounded corners */
}

.video-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color:var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

#project-video {
    width: 60%;
    height: 100vh;
    object-fit: fill;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Enhanced Contact Section */
.contact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #232323 0%, #2c2c2c 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.1"><polygon points="0,0 1000,0 800,100 0,100"/></svg>') no-repeat center bottom;
    background-size: cover;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    /* background: rgba(255, 255, 255, 0.95); */
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.contact-info {
    width: 550px;
    padding: 50px;
    background: var(--white);
    position: relative;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-accent);
}


.contact-info a:hover {
    color: var(--primary-color);
}


.info-item {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    padding: 8px;
    /* background-color: #007bff; */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

.info-item i {
    font-size: 20px;
    color: var(--primary-color);
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    padding: 5px;
}

.info-item p {
    margin: 20px 0;
    color: var(--text-dark);
    font-size: 1.1rem;
    display: flex;
    text-align: center;
    gap: 10px;
    font-size: 15px;
}

.info-item a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}



.contact-form {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--white);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.1);
}

.contact-form button {
    padding: 15px 20px;
    background: var(--gradient-accent);
    color: var(--white);
    border: none;
    font-size: 1.1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.3);
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 153, 0, 0.4);
}

/* Enhanced Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
}

footer p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Enhanced Animations */
.highlight {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 10px;
    text-shadow: 0 0 10px rgba(255, 153, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4CAF50;
    margin-top: 10px;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in.delay-1 {
    animation-delay: 0.3s;
}

.fade-in.delay-2 {
    animation-delay: 0.6s;
}

.fade-in.delay-3 {
    animation-delay: 0.9s;
}

.fade-in.delay-4 {
    animation-delay: 1.2s;
}

.fade-in.delay-5 {
    animation-delay: 1.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    nav {
        display: none;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .hero {
        padding: 0 15px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .hero-buttons {
        margin-top: 30px;
    }

    .hero-buttons button {
        display: block;
        width: 200px;
        margin: 10px auto;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    section {
        padding: 50px 15px;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .about p {
        font-size: 1rem;
        text-align: left;
        padding: 0 10px;
    }

    .about .project-list {
        gap: 10px;
        margin-top: 20px;
    }

    .about .project-list li {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .about ul {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        margin-top: 30px;
    }

    .projects-section {
        padding: 4rem 1rem;
    }

    .projects-container {
        gap: 1rem;
        padding: 1rem 0;
    }

    .project-card {
        flex: 0 0 310px;
    }

    .project-card img {
        height: 160px;
    }

    .card-content {
        padding: 1rem;
    }

    .card-content h3 {
        font-size: 1.1rem;
    }

    .card-content p {
        font-size: 0.9rem;
    }

    .facilities {
        padding: 40px 15px;
    }

    .facilities h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .facilities-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 20px;
    }

    .facility {
        padding: 15px 15px;
    }

    .facility i {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .facility p {
        font-size: 1rem;
    }

    #map-section {
        padding: 20px 15px;
    }

    .map-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 20px;
    }

    #project-video {
        width: 100%;
        height: 60vh;  /* mobile me zyada height na le */
        /*object-fit: cover; */
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

    .contact-section {
        padding: 60px 15px;
    }

    .contact-container {
        flex-direction: column;
        margin: 0 10px;
        border-radius: 15px;
    }

    .contact-info,
    .contact-form {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .contact-info {
        width: 100%;
        padding: 30px 20px;
        box-sizing: border-box;
        border-bottom: 2px solid #ddd;
    }

    .contact-info::before {
        display: none;
    }

    .contact-info h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
        text-align: center;
    }

    .contact-info p {
        font-size: 1rem;
        margin: 15px 0;
        text-align: center;
    }

    .social-links {
        justify-content: center;
        margin-top: 25px;
    }

    .contact-form {
        margin-top: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px 18px;
        font-size: 1rem;
    }

    .contact-form button {
        padding: 12px 15px;
        font-size: 1rem;
    }

    footer {
        padding: 30px 15px;
    }

    footer p {
        font-size: 0.9rem;
    }

    /* Mobile-specific animations */
    .fade-in {
        animation-duration: 0.8s;
    }

    /* Adjust floating particles for mobile */
    .hero::after {
        width: 100px;
        height: 100px;
        right: 5%;
        top: 30%;
    }

    .close-btn {
        top: -2px;
        right: -140px;
        font-size: 20px;
    }


    /* Mobile floating action button positioning */
    .fab {
        bottom: 20px !important;
        right: 20px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 18px !important;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .price {
        font-size: 1.4rem;
    }

    .highlight {
        font-size: 1rem;
    }

    section {
        padding: 40px 10px;
    }

    h2 {
        font-size: 1.6rem;
    }

    .about .project-list li {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .project-card {
        flex: 0 0 300px;
    }

    .close-btn {
        top: -2px;
        right: -140px;
        font-size: 20px;
    }



    .facilities-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
    }

    .facility {
        padding: 20px 10px;
    }

    .facility i {
        font-size: 1.8rem;
    }

    .facility p {
        font-size: 0.9rem;
    }

     #map-section {
        padding: 15px 10px;
    }

    .map-title {
        font-size: clamp(1.2rem, 6vw, 1.5rem);
        margin-bottom: 15px;
    }

    #project-video {
        width: 100%;
        height: 50vh;  /* chhoti screen ke liye aur kam height */
        /*object-fit: cover;*/
        border-radius: 5px;
        box-shadow: 0 1px 8px rgba(0,0,0,0.15);
    }

    .contact-info,
    .contact-form {
        padding: 20px;
        border-radius: 20px;
    }

    .contact-info h2 {
        font-size: 1.5rem;
    }

    .contact-info p {
        font-size: 0.9rem;
    }
}

/* Loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Apply hover effects only on devices that support hover (i.e., not mobile touch devices) */
@media (hover: hover) and (pointer: fine) {
    .about .project-list li:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-medium);
        color: var(--white);
    }

    .about .project-list li:hover::before {
        opacity: 1;
    }

    .facility:hover {
        transform: translateY(-15px) scale(1.05);
        background: rgba(255, 255, 255, 0.25);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .facility:hover::before {
        opacity: 1;
    }

    .facility:hover i {
        transform: scale(1.2);
        color: #ff9900;
    }
}