/* Hero Section */
.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;
    color: var(--white);
    padding: 120px 20px;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: #ffffff;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    color: #ffffff;
}
.hit-campus-intro {
  background: #ffffff;
}

/* Eyebrow */
.hit-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #427d3a;
  margin-bottom: 12px;
}

/* Title */
.hit-section-title {
  font-size: 36px;
  font-weight: 700;
  color: #70181f;
  margin-bottom: 18px;
}

/* Text */
.hit-section-text {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 14px;
}

/* Highlights */
.hit-campus-highlights {
  margin-top: 24px;
}

.hit-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
}

.hit-highlight i {
  font-size: 20px;
  color: #70181f;
}

/* Campus Size */
.hit-campus-size {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding: 16px 18px;
  background: #f7f7f7;
  border-left: 4px solid #427d3a;
}

.hit-campus-size i {
  font-size: 26px;
  color: #427d3a;
}

.hit-campus-size strong {
  display: block;
  font-size: 16px;
}

/* Image */
.hit-campus-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Note */
.hit-note {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .hit-section-title {
    font-size: 28px;
  }
}
.hit-title {
  font-size: 38px;
  font-weight: 700;
  color: #70181f;
}

.hit-subtitle {
  font-size: 16px;
  color: #444;
}

.club-category h3 {
  font-size: 26px;
  color: #70181f;
  margin-bottom: 20px;
}

.club-block {
  background: #f9f9f9;
  padding: 24px 26px;
  margin-bottom: 20px;
  border-left: 4px solid #427d3a;
}

.club-block h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.club-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.club-meta {
  font-size: 14px;
  color: #333;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .club-grid {
    grid-template-columns: 1fr;
  }
}
 /* Hero Section */
        .clubs-hero {
            background: var(--primary-color);
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .clubs-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
            animation: float 20s linear infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0); }
            100% { transform: translateY(-100px); }
        }
        
        .clubs-hero h1 {
            color: white;
            font-weight: 700;
            font-size: 3rem;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }
        
        .clubs-hero p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.3rem;
            font-weight: 300;
            position: relative;
            z-index: 1;
        }
        
        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            margin-top: 80px;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }
        
        /* Club Cards */
        .club-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            border: 2px solid transparent;
            height: 100%;
        }
        
        .club-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            border-color: var(--primary-color);
        }
        
        .club-card-header {
            background: var(--primary-color);
            padding: 25px;
            color: white;
            position: relative;
        }
        
        .club-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            font-size: 1.8rem;
        }
        
        .club-card-header h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0;
        }
        
        .club-card-body {
            padding: 25px;
        }
        
        .club-card-body h5 {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1.1rem;
            margin-top: 20px;
            margin-bottom: 15px;
        }
        
        .club-card-body ul {
            list-style: none;
            padding: 0;
        }
        
        .club-card-body ul li {
            padding: 8px 0 8px 30px;
            position: relative;
            color: #555;
            line-height: 1.6;
        }
        
        .club-card-body ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: bold;
        }
        
        .achievement-badge {
            background: #ffd700;
            color: #70181f;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
            margin: 5px 5px 5px 0;
            box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
        }
        
        .coordinator-info {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 10px;
            margin-top: 20px;
            border-left: 4px solid var(--secondary-color);
        }
        
        .coordinator-info p {
            margin: 5px 0;
            color: #555;
            font-size: 0.95rem;
        }
        
        .coordinator-info strong {
            color: var(--primary-color);
        }
        
        /* Stats Section */
        .stats-section {
            background: var(--primary-color);
            padding: 60px 0;
            margin: 80px 0;
            color: white;
        }
        
        .stat-box {
            text-align: center;
            padding: 20px;
        }
        
        .stat-box h2 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .stat-box p {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Tab Navigation */
        .club-nav-tabs {
            border-bottom: 3px solid #e9ecef;
            margin-bottom: 40px;
        }
        
        .club-nav-tabs .nav-link {
            color: #555;
            font-weight: 600;
            padding: 15px 30px;
            border: none;
            background: transparent;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .club-nav-tabs .nav-link:hover {
            color: var(--primary-color);
        }
        
        .club-nav-tabs .nav-link.active {
            color: var(--primary-color);
            background: transparent;
            border: none;
        }
        
        .club-nav-tabs .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary-color);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .clubs-hero h1 {
                font-size: 2rem;
            }
            
            .clubs-hero p {
                font-size: 1.1rem;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .stat-box h2 {
                font-size: 2.5rem;
            }
            
            .club-nav-tabs .nav-link {
                padding: 12px 20px;
                font-size: 0.9rem;
            }
        }
        
        /* Animation */
        .fade-in {
            animation: fadeIn 0.6s ease-in;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Facilities Badge */
        .facilities-badge {
            background: rgba(66, 125, 58, 0.1);
            color: var(--secondary-color);
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 0.85rem;
            font-weight: 500;
            display: inline-block;
            margin: 3px;
        }
        

    .section-title {
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .section-subtitle {
      font-size: 20px;
      opacity: 0.9;
    }

    .category-header {
      background-color: #427d3a;
      color: white;
      padding: 20px 0;
      margin-top: 40px;
      margin-bottom: 30px;
    }

    .category-title {
      font-size: 32px;
      font-weight: 600;
      margin: 0;
    }

    .sport-card {
      background: white;
      border: 2px solid #dee2e6;
      border-radius: 8px;
      padding: 30px;
      margin-bottom: 30px;
      height: 100%;
    }

    .sport-card:hover {
      border-color: #70181f;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .sport-icon {
      font-size: 48px;
      color: #427d3a;
      margin-bottom: 20px;
    }

    .sport-name {
      font-size: 24px;
      font-weight: 600;
      color: #70181f;
      margin-bottom: 20px;
    }

    .sport-features {
      list-style: none;
      padding: 0;
    }

    .sport-features li {
      padding: 8px 0;
      border-bottom: 1px solid #f0f0f0;
    }

    .sport-features li:last-child {
      border-bottom: none;
    }

    .sport-features li i {
      color: #427d3a;
      margin-right: 10px;
    }

    .gym-section {
      background-color: #f8f9fa;
      padding: 60px 0;
    }

    .achievement-card {
      background: white;
      border-left: 4px solid #70181f;
      padding: 20px;
      margin-bottom: 20px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .achievement-card:hover {
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }

    .achievement-icon {
      font-size: 36px;
      color: #f59e0b;
      margin-right: 15px;
    }

    .achievement-text {
      font-size: 18px;
      color: #333;
      margin: 0;
    }

    .info-box {
      background-color: #e8f5e9;
      border-left: 4px solid #427d3a;
      padding: 20px;
      margin: 20px 0;
    }

    .info-box h5 {
      color: #427d3a;
      margin-bottom: 10px;
    }

    .facility-highlight {
      background-color: #fff3cd;
      border-radius: 8px;
      padding: 30px;
      margin: 30px 0;
      border: 2px solid #ffc107;
    }

    .facility-highlight h4 {
      color: #70181f;
      margin-bottom: 20px;
    }
    .page-header {
            background: linear-gradient(rgba(112, 24, 31, 0.9), rgba(112, 24, 31, 0.9)), 
                        url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=1200');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
        }

        .page-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .fest-section {
            padding: 80px 0;
        }

        .fest-header {
            background-color: #70181f;
            color: white;
            padding: 30px;
            border-radius: 8px;
            margin-bottom: 40px;
        }

        .fest-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .fest-subtitle {
            font-size: 20px;
            opacity: 0.9;
        }

        .fest-info-box {
            background-color: #f8f9fa;
            border-left: 4px solid #427d3a;
            padding: 20px;
            margin: 20px 0;
        }

        .fest-info-box h5 {
            color: #70181f;
            margin-bottom: 15px;
        }

        .event-category {
            background-color: #427d3a;
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            display: inline-block;
            margin: 20px 0;
            font-weight: 600;
        }

        .event-card {
            background: white;
            border: 2px solid #dee2e6;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .event-card:hover {
            border-color: #70181f;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .event-card h5 {
            color: #70181f;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .event-list {
            list-style: none;
            padding: 0;
        }

        .event-list li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
        }

        .event-list li:before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #427d3a;
            font-weight: bold;
        }

        .stats-row {
            background-color: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
            margin: 30px 0;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
        }

        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: #70181f;
            display: block;
        }

        .stat-label {
            font-size: 16px;
            color: #666;
        }

        .photo-gallery {
            margin: 40px 0;
        }

        .gallery-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .other-events-section {
            background-color: #f8f9fa;
            padding: 80px 0;
        }

        .event-highlight {
            background: white;
            border-radius: 8px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .event-highlight:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.12);
        }

        .event-highlight-title {
            color: #70181f;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .event-meta {
            color: #666;
            font-size: 16px;
            margin-bottom: 20px;
        }

        .event-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .badge-custom {
            background-color: #427d3a;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            margin-right: 10px;
            display: inline-block;
            margin-bottom: 10px;
        }
        
        .section-subtitle {
            font-size: 22px;
            opacity: 0.95;
        }

        .hostel-card {
            background: white;
            border: 2px solid #dee2e6;
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 30px;
        }

        .hostel-card:hover {
            border-color: #70181f;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        }

        .hostel-header {
            background-color: #427d3a;
            color: white;
            padding: 20px 30px;
            border-radius: 8px;
            margin-bottom: 30px;
        }

        .hostel-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .hostel-capacity {
            font-size: 18px;
            opacity: 0.95;
        }

        .facility-section {
            margin-bottom: 40px;
        }

        .facility-title {
            font-size: 24px;
            font-weight: 600;
            color: #70181f;
            margin-bottom: 20px;
            border-left: 4px solid #427d3a;
            padding-left: 15px;
        }

        .facility-list {
            list-style: none;
            padding: 0;
        }

        .facility-list li {
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
        }

        .facility-list li:last-child {
            border-bottom: none;
        }

        .facility-list li i {
            color: #427d3a;
            margin-right: 12px;
            font-size: 20px;
        }

        .room-type-card {
            background: #f8f9fa;
            border: 2px solid #dee2e6;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 20px;
            text-align: center;
        }

        .room-type-card:hover {
            border-color: #427d3a;
        }

        .room-icon {
            font-size: 48px;
            color: #70181f;
            margin-bottom: 15px;
        }

        .room-name {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .room-price {
            font-size: 24px;
            font-weight: 700;
            color: #427d3a;
        }

        .security-badge {
            background-color: #e8f5e9;
            border-left: 4px solid #427d3a;
            padding: 20px;
            margin: 20px 0;
        }

        .security-badge h5 {
            color: #427d3a;
            margin-bottom: 15px;
        }

        .mess-timing {
            background: white;
            border: 2px solid #dee2e6;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 15px;
        }

        .mess-timing:hover {
            border-color: #70181f;
        }

        .timing-label {
            font-weight: 600;
            color: #70181f;
            margin-bottom: 5px;
        }

        .timing-value {
            color: #666;
            font-size: 18px;
        }

        .rules-card {
            background: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 25px;
            margin: 20px 0;
        }

        .rules-card h5 {
            color: #70181f;
            margin-bottom: 15px;
        }

        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 15px;
            text-align: center;
            font-weight: 600;
        }

        .info-highlight {
            background-color: #e8f5e9;
            border: 2px solid #427d3a;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            margin: 30px 0;
        }

        .info-number {
            font-size: 48px;
            font-weight: 700;
            color: #427d3a;
            display: block;
        }

        .info-label {
            font-size: 18px;
            color: #666;
            margin-top: 10px;
        }
         .cafeteria-hero {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
            margin-bottom: 40px;
        }

        .cafeteria-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .cafeteria-info {
            padding: 40px;
        }

        .info-badge {
            background-color: #427d3a;
            color: white;
            padding: 10px 24px;
            border-radius: 50px;
            display: inline-block;
            margin-right: 15px;
            margin-bottom: 10px;
            font-size: 16px;
        }

        .info-badge i {
            margin-right: 8px;
        }

        .menu-section {
            background: white;
            border: 2px solid #dee2e6;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
        }

        .menu-section:hover {
            border-color: #70181f;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        }

        .menu-title {
            font-size: 28px;
            font-weight: 600;
            color: #70181f;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .menu-icon {
            font-size: 36px;
            margin-right: 15px;
            color: #427d3a;
        }

        .menu-items {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .menu-item {
            background: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 12px 20px;
            font-size: 16px;
            color: #333;
        }

        .menu-item:hover {
            background: #e8f5e9;
            border-color: #427d3a;
        }

        .price-highlight {
            background-color: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 25px;
            margin: 30px 0;
            text-align: center;
        }

        .price-text {
            font-size: 32px;
            font-weight: 700;
            color: #70181f;
        }

        .facility-card {
            background: white;
            border: 2px solid #dee2e6;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            margin-bottom: 20px;
            height: 100%;
        }

        .facility-card:hover {
            border-color: #427d3a;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        }

        .facility-icon {
            font-size: 56px;
            color: #427d3a;
            margin-bottom: 20px;
        }

        .facility-name {
            font-size: 22px;
            font-weight: 600;
            color: #70181f;
            margin-bottom: 10px;
        }

        .additional-options {
            background-color: #f8f9fa;
            padding: 60px 0;
        }

        .option-card-1 {
            background: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            margin-bottom: 20px;
            height: 100%;
        }

        .option-card-1:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
            transform: translateY(-5px);
            transition: all 0.3s ease;
        }

        .option-icon {
            font-size: 64px;
            margin-bottom: 20px;
        }

        .option-title {
            font-size: 24px;
            font-weight: 600;
            color: #70181f;
            margin-bottom: 10px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 15px;
            text-align: center;
            font-weight: 600;
        }
        .badge{

            height: 25px !important;
        }