 :root {
            --maroon: #70181f;
            --green: #427d3a;
            --black: #000000;
            --white: #ffffff;
            --light-bg: #f5f5f5;
            --text-gray: #555555;
            --border-light: #e0e0e0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-gray);
            background: #fafafa;
            overflow-x: hidden;
        }

        /* Hero Section */
        .hostel-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.68)), url(../assets/image/bg.webp?w=1200&h=600&fit=crop) center / cover;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 140px 0 120px;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: white;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 10px 30px;
            border-radius: 50px;
            margin-bottom: 25px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .hero-content h1 {
            font-size: 4.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.4rem;
            font-weight: 300;
            max-width: 800px;
            margin: 0 auto 40px;
            opacity: 0.95;
        }

        .hero-cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .hero-btn {
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .hero-btn.primary {
            background: white;
            color: var(--maroon);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .hero-btn.primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
        }

        .hero-btn.secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .hero-btn.secondary:hover {
            background: white;
            color: var(--maroon);
        }

 /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: white;
            margin-top: -50px;
            position: relative;
            z-index: 20;
        }

        .stats-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .stat-card {
            background: linear-gradient(135deg, #fafafa, #f0f0f0);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            border: 2px solid #e8e8e8;
            transition: all 0.4s ease;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            border-color: var(--maroon);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .stat-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .stat-icon i {
            font-size: 35px;
            color: white;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--maroon);
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-gray);
            font-weight: 600;
        }

        /* Section Heading */
        .section-heading {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-label {
            display: inline-block;
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            color: white;
            padding: 8px 25px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .section-heading h2 {
            font-size: 3rem;
            font-weight: 900;
            color: var(--black);
            margin-bottom: 15px;
        }

        .section-heading p {
            font-size: 1.2rem;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Hostel Types */
        .hostel-types-section {
            padding: 100px 0;
            background: #fafafa;
        }

        .hostel-cards {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .hostel-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
        }

        .hostel-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 70px rgba(0,0,0,0.15);
        }

        .hostel-image {
            height: 300px;
            overflow: hidden;
            position: relative;
        }

        .hostel-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .hostel-card:hover .hostel-image img {
            transform: scale(1.1);
        }

        .hostel-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .hostel-content {
            padding: 40px;
        }

        .hostel-title {
            font-size: 2rem;
            font-weight: 900;
            color: var(--maroon);
            margin-bottom: 15px;
        }

        .hostel-description {
            font-size: 1.05rem;
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .hostel-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            color: var(--text-gray);
        }

        .feature-item i {
            color: var(--green);
            font-size: 1.2rem;
        }

        .hostel-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 2px solid #f0f0f0;
        }

        .price-label {
            font-size: 0.9rem;
            color: var(--text-gray);
        }

        .price-amount {
            font-size: 2rem;
            font-weight: 900;
            color: var(--maroon);
        }

        /* Facilities Section */
        .facilities-section {
            padding: 100px 0;
            background: white;
        }

        .facilities-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .facility-card {
            background: linear-gradient(135deg, #fafafa, #f5f5f5);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .facility-card:hover {
            transform: translateY(-10px);
            border-color: var(--maroon);
            background: white;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .facility-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--green), #52a045);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        .facility-card:hover .facility-icon {
            transform: scale(1.1);
        }

        .facility-icon i {
            font-size: 40px;
            color: white;
        }

        .facility-card h4 {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 10px;
        }

        .facility-card p {
            font-size: 0.95rem;
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* Admission Process */
        .admission-process-section {
            padding: 100px 0;
            background: #fafafa;
        }

        .process-timeline {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, var(--maroon), var(--green));
            transform: translateX(-50%);
        }

        .process-step {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            margin-bottom: 60px;
            position: relative;
        }

        .process-step:nth-child(even) .step-content {
            order: 2;
        }

        .step-content {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            position: relative;
        }

        .step-number {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            background: var(--maroon);
            border: 5px solid #fafafa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 900;
            box-shadow: 0 5px 15px rgba(112, 24, 31, 0.3);
        }

        .step-content h3 {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 15px;
        }

        .step-content p {
            font-size: 1.05rem;
            color: var(--text-gray);
            line-height: 1.8;
        }

        /* Fee Structure */
        .fee-structure-section {
            padding: 100px 0;
            background: white;
        }

        .fee-table-wrapper {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0,0,0,0.1);
        }

        .fee-table {
            width: 100%;
            border-collapse: collapse;
        }

        .fee-table thead {
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            color: white;
        }

        .fee-table th {
            padding: 25px 30px;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 700;
        }

        .fee-table tbody tr {
            border-bottom: 2px solid #f0f0f0;
            transition: all 0.3s ease;
        }

        .fee-table tbody tr:hover {
            background: #fafafa;
        }

        .fee-table td {
            padding: 25px 30px;
            font-size: 1.05rem;
            color: var(--text-gray);
        }

        .fee-table td:first-child {
            font-weight: 600;
            color: var(--black);
        }

        .fee-table td:last-child {
            font-weight: 800;
            color: var(--maroon);
            font-size: 1.2rem;
        }

        /* Rules Section */
        .rules-section {
            padding: 100px 0;
            background: #fafafa;
        }

        .rules-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .rules-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .rule-card {
            background: white;
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border-left: 5px solid var(--maroon);
        }

        .rule-card h4 {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .rule-card h4 i {
            color: var(--green);
        }

        .rule-card p {
            font-size: 1rem;
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* Application CTA */
        .application-cta {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--maroon), #4a1014);
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .application-cta::before {
            content: '';
            position: absolute;
            top: -150px;
            right: -150px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
            border-radius: 50%;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            padding: 0 20px;
        }

        .cta-content h3 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cta-btn {
            background: white;
            color: var(--maroon);
            padding: 18px 50px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.15rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            color: var(--maroon);
        }

        .cta-btn.secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cta-btn.secondary:hover {
            background: white;
            color: var(--maroon);
        }

        /* Gallery Preview */
        .gallery-preview-section {
            padding: 100px 0;
            background: white;
        }

        .gallery-grid {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .gallery-item {
            /* height: 250px; */
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.2);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hostel-cards {
                grid-template-columns: 1fr;
            }

            .facilities-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-timeline::before {
                left: 30px;
            }

            .process-step {
                grid-template-columns: 1fr;
                padding-left: 80px;
            }

            .step-number {
                left: 30px;
            }

            .process-step:nth-child(even) .step-content {
                order: 1;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .section-heading h2 {
                font-size: 2rem;
            }

            .facilities-grid {
                grid-template-columns: 1fr;
            }

            .rules-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hostel-features {
                grid-template-columns: 1fr;
            }
        }