        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            min-height: 100vh; /* Extra height to demonstrate scrolling */
        }

        header {
            background-color: white;
            position: sticky;
            top: 0;
            width: 100%;
            padding: 1rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .scrolled {
            background-color: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
        }

        .logo {
            height: 50px;
            display: flex;
            align-items: center;
            padding-left: 200px;
        }

        .logo img {
            height: 100%;
        }

        nav {
            display: flex;
            align-items: center;
            padding-right: 200px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-size: 1rem;
            position: relative;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
        }

        .nav-links a.active {
            font-weight: bold;
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background-color: #333;
            bottom: 0;
            left: 0;
        }

        .nav-links a:hover {
            color: #666;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            height: 24px;
            width: 30px;
            position: relative;
        }

        .hamburger span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: #333;
            transition: all 0.3s ease;
            position: absolute;
            left: 0;
        }
        
        .hamburger span:nth-child(1) {
            top: 0;
        }
        
        .hamburger span:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
        }
        
        .hamburger span:nth-child(3) {
            bottom: 0;
        }
        
        .hamburger.active span:nth-child(1) {
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:nth-child(3) {
            bottom: 50%;
            transform: translateY(50%) rotate(-45deg);
        }

        /* Mobile view */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .logo {
                padding-left: 10px;
            }

            nav {
                padding-right: 10px;
            }

            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                flex-direction: column;
                background-color: rgba(255, 255, 255, 0.4);
                backdrop-filter: blur(10px);
                padding: 1rem;
                gap: 1rem;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                align-items: center;
                text-align: center;
            }

            .nav-links li {
                width: 100%;
                display: flex;
                justify-content: center;
            }

            .nav-links a {
                display: inline-block;
                width: auto;
            }

            .nav-links.active {
                transform: translateY(0);
            }
        }
  
  /* Campus Section Styles */
  .campus-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1rem;
  }
  
  .campus-heading {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .campus-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #1a1b1d;
    margin-bottom: 1rem;
  }
  
  .campus-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  /* Gallery Styles */
  .campus-gallery {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, 5vw);
    grid-gap: 15px;
    margin-bottom: 2rem;
  }
  
  .gallery-item {
    position:relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  
  .gallery-item-1 {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 5;
  }
  
  .gallery-item-2 {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 5;
  }
  
  .gallery-item-3 {
    grid-column-start: 5;
    grid-column-end: 9;
    grid-row-start: 1;
    grid-row-end: 5;
  }
  
  .gallery-item-4 {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 5;
    grid-row-end: 9;
  }
  
  .gallery-item-5 {
    grid-column-start: 5;
    grid-column-end: 7;
    grid-row-start: 5;
    grid-row-end: 7;
  }
  
  .gallery-item-6 {
    grid-column-start: 7;
    grid-column-end: 9;
    grid-row-start: 5;
    grid-row-end: 7;
  }
  
  .gallery-item-7 {
    grid-column-start: 5;
    grid-column-end: 9;
    grid-row-start: 7;
    grid-row-end: 9;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .gallery-item:hover .overlay {
    opacity: 1;
  }
  
  .overlay-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  /* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
  }
  
  .modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
  }
  
  .modal-img {
    width: 100%;
    max-height: 90vh;
    object-fit: contain;
  }
  
  .close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 101;
  }
  
  .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 101;
  }
  
  .prev {
    left: 20px;
  }
  
  .next {
    right: 20px;
  }
  
  /* Campus Info Section */
  .campus-info {
    background-color: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
  }
  
  .info-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1b1d;
    margin-bottom: 1.5rem;
  }
  
  .info-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .info-card {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .info-icon {
    font-size: 2rem;
    color: #060606;
  }
  
  .info-text {
    display: flex;
    flex-direction: column;
  }
  
  .info-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1b1d;
    margin-bottom: 0.5rem;
  }
  
  .info-card-desc {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .campus-gallery {
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(12, 10vw);
    }
    
    .gallery-item-1 {
      grid-column-start: 1;
      grid-column-end: 3;
      grid-row-start: 1;
      grid-row-end: 4;
    }
    
    .gallery-item-2 {
      grid-column-start: 3;
      grid-column-end: 5;
      grid-row-start: 1;
      grid-row-end: 4;
    }
    
    .gallery-item-3 {
      grid-column-start: 1;
      grid-column-end: 5;
      grid-row-start: 4;
      grid-row-end: 7;
    }
    
    .gallery-item-4 {
      grid-column-start: 1;
      grid-column-end: 5;
      grid-row-start: 7;
      grid-row-end: 10;
    }
    
    .gallery-item-5 {
      grid-column-start: 1;
      grid-column-end: 3;
      grid-row-start: 10;
      grid-row-end: 13;
    }
    
    .gallery-item-6 {
      grid-column-start: 3;
      grid-column-end: 5;
      grid-row-start: 10;
      grid-row-end: 13;
    }
    
    .gallery-item-7 {
      grid-column-start: 2;
      grid-column-end: 4;
      grid-row-start: 13;
      grid-row-end: 16;
    }
  }
  
  @media (max-width: 480px) {
    .campus-gallery {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    
    .gallery-item {
      height: 250px;
    }
    
    .prev, .next {
      width: 40px;
      height: 40px;
      font-size: 20px;
    }
  }


.custom-footer {
  background-color: #f9f9f9;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
} 

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 220px;
}

.footer-logo {
  width: 160px;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-link {
  padding: 5px 18px;
  border: 1px solid #000;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  color: #000;
  width: fit-content;
  transition: all 0.3s ease;
  margin-left: 30px;
}

.quick-link:hover {
  background-color: #000;
  color: #fff;
}

.footer-right p {
  margin: 6px 0;
  font-size: 14px;
  color: #333;
}

.footer-right a {
  color: #000;
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

.social-icons {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-left: 17px;
}

.social-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  
  .footer-links {
    align-items: center;
  }
  
  .quick-link {
    margin-left: 0;
  }
  
  .social-icons {
    justify-content: center;
    margin-left: 0;
  }
}