    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    :root {
      --primary-blue: #1872f9;
      --primary-dark: #0d5fd6;
      --primary-light: #4a95ff;
      --primary-extra-light: #e8f1ff;
      --secondary-blue: #2a9d8f;
      --accent-blue: #1d4ed8;
      --text-dark: #1e293b;
      --text-light: #64748b;
      --light-bg: #f8fafc;
      --white: #ffffff;
      --border-color: #e2e8f0;
      --shadow: 0 5px 15px rgba(24, 114, 249, 0.1);
      --shadow-hover: 0 10px 25px rgba(24, 114, 249, 0.15);
      --transition: all 0.3s ease;
    }

    body {
      font-family: 'Poppins', sans-serif;
      color: var(--text-dark);
      line-height: 1.6;
      overflow-x: hidden;
      background-color: var(--light-bg);
      margin: 0;
      padding: 0;
    }

    main {
      overflow: hidden;
      margin-top: 80px;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      color: var(--text-dark);
    }

    /* Hero Section */
    .hero-section {
      background: linear-gradient(rgba(24, 114, 249, 0.85), rgba(13, 95, 214, 0.9)), 
                  url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      color: white;
      padding: 150px 0 100px;
      text-align: center;
      position: relative;
    }

    .hero-section h1 {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: white;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .hero-section p {
      font-size: 1.3rem;
      max-width: 700px;
      margin: 0 auto 2rem;
      color: rgba(255, 255, 255, 0.9);
    }

    .hero-buttons {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .hero-btn {
      padding: 12px 30px;
      border-radius: 30px;
      font-weight: 600;
      transition: var(--transition);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .hero-btn-primary {
      background: white;
      color: var(--primary-blue);
      border: 2px solid white;
    }

    .hero-btn-primary:hover {
      background: transparent;
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .hero-btn-outline {
      background: transparent;
      color: white;
      border: 2px solid white;
    }

    .hero-btn-outline:hover {
      background: white;
      color: var(--primary-blue);
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    /* Section Styles */
    section {
      padding: 60px 0;
    }

    .section-title {
      position: relative;
      padding-bottom: 20px;
      margin-bottom: 40px;
      text-align: center;
      font-weight: 700;
      color: var(--primary-blue);
    }

    .section-title:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-blue), var(--primary-light));
      border-radius: 2px;
    }

    .section-title.text-start:after {
      left: 0;
      transform: none;
    }

    /* Campus Overview Section */
    #campus-overview {
      background: linear-gradient(135deg, var(--primary-extra-light) 0%, var(--white) 100%);
      position: relative;
      overflow: hidden;
    }

    #campus-overview:before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(24, 114, 249, 0.1) 0%, rgba(24, 114, 249, 0) 70%);
      border-radius: 50%;
    }

    .stats-container .text-center {
      padding: 20px 15px;
      border-radius: 15px;
      background: white;
      box-shadow: var(--shadow);
      transition: var(--transition);
      border: 1px solid var(--border-color);
      flex: 1;
      min-width: 120px;
    }

    .stats-container .text-center:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
      border-color: var(--primary-light);
    }

    .stats-container h3 {
      font-size: 2rem;
      background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: var(--primary-blue);
      margin-bottom: 10px;
    }

    /* Static Image Gallery */
    .static-gallery {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: var(--shadow);
      height: 400px;
      position: relative;
    }

    .static-gallery img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }

    .static-gallery:hover img {
      transform: scale(1.05);
    }

    /* Text Content Section */
    .text-content-section {
      padding: 40px;
      background: white;
      border-radius: 15px;
      box-shadow: var(--shadow);
      height: 100%;
      transition: var(--transition);
    }

    .text-content-section:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
    }

    .text-content-section h3 {
      color: var(--primary-blue);
      margin-bottom: 20px;
      font-size: 1.8rem;
    }

    .text-content-section p {
      margin-bottom: 20px;
      color: var(--text-light);
    }

    /* Day in Life Section */
    #day-in-life {
      background: linear-gradient(135deg, var(--white) 0%, var(--primary-extra-light) 100%);
      position: relative;
    }

    #day-in-life:before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(24, 114, 249, 0.1) 0%, rgba(24, 114, 249, 0) 70%);
      border-radius: 50%;
    }

    .day-in-life-card {
      border: none;
      border-radius: 15px;
      box-shadow: var(--shadow);
      transition: var(--transition);
      height: 100%;
      padding: 25px 20px;
      background: white;
      position: relative;
      overflow: hidden;
      border-left: 4px solid var(--primary-blue);
      margin-bottom: 20px;
    }

    .day-in-life-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
      border-left-color: var(--primary-dark);
    }

    .day-time {
      font-weight: 600;
      color: var(--primary-blue);
      margin-bottom: 15px;
      font-size: 1.1rem;
    }

    .day-in-life-card h4 {
      color: var(--text-dark);
      margin-bottom: 15px;
      font-size: 1.3rem;
    }

    /* Video Section */
    #campus-video {
      background: linear-gradient(135deg, var(--primary-extra-light) 0%, var(--white) 100%);
    }

    .video-container {
      position: relative;
      padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
      height: 0;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: var(--shadow);
    }

    .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* Activities Section */
    .activity-card {
      border: none;
      border-radius: 15px;
      box-shadow: var(--shadow);
      padding: 30px 20px;
      text-align: center;
      height: 100%;
      transition: var(--transition);
      background: white;
      position: relative;
      overflow: hidden;
      margin-bottom: 25px;
    }

    .activity-card:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(to right, var(--primary-blue), var(--primary-light));
    }

    .activity-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
    }

    .activity-icon {
      font-size: 3rem;
      margin-bottom: 20px;
      color: var(--primary-blue);
    }

    .activity-card h3 {
      margin-bottom: 15px;
      color: var(--text-dark);
      font-size: 1.4rem;
    }

    .activity-card p {
      color: var(--text-light);
      margin-bottom: 20px;
    }

    /* Custom Button Styles - Renamed to avoid conflicts */
    .life-btn-primary {
      background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
      border: none;
      border-radius: 30px;
      padding: 10px 25px;
      font-weight: 500;
      transition: var(--transition);
      color: white;
      text-decoration: none;
      display: inline-block;
    }

    .life-btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(24, 114, 249, 0.3);
      background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
      color: white;
    }

    .life-btn-outline {
      border: 2px solid var(--primary-blue);
      color: var(--primary-blue);
      border-radius: 30px;
      padding: 8px 20px;
      font-weight: 500;
      transition: var(--transition);
      background: transparent;
      text-decoration: none;
      display: inline-block;
    }

    .life-btn-outline:hover {
      background: var(--primary-blue);
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(24, 114, 249, 0.2);
    }

    /* Events Timeline Section */
    #annual-events {
      background: linear-gradient(135deg, var(--white) 0%, var(--primary-extra-light) 100%);
      position: relative;
    }

    #annual-events:before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(24, 114, 249, 0.1) 0%, rgba(24, 114, 249, 0) 70%);
      border-radius: 50%;
    }

    .event-timeline {
      position: relative;
      padding-left: 30px;
    }

    .event-timeline:before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(to bottom, var(--primary-blue), var(--primary-light));
      border-radius: 2px;
    }

    .event-item {
      position: relative;
      margin-bottom: 40px;
      padding-left: 30px;
      background: white;
      padding: 25px;
      border-radius: 10px;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

    .event-item:hover {
      transform: translateX(5px);
      box-shadow: var(--shadow-hover);
    }

    .event-item:before {
      content: '';
      position: absolute;
      left: -37px;
      top: 30px;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--primary-blue);
      border: 4px solid white;
      box-shadow: 0 0 0 3px var(--primary-blue);
    }

    .event-item h3 {
      color: var(--primary-blue);
      margin-bottom: 10px;
      font-size: 1.3rem;
    }

    .event-item .text-muted {
      font-style: italic;
      margin-bottom: 15px;
      display: block;
      color: var(--text-light);
    }

    /* Gallery Section */
    #gallery {
      background: linear-gradient(135deg, var(--primary-extra-light) 0%, var(--white) 100%);
    }

    .gallery-item {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      margin-bottom: 25px;
    }

    .gallery-item:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
    }

    .gallery-item img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: var(--transition);
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    .gallery-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(24, 114, 249, 0.8));
      color: white;
      padding: 20px;
      transform: translateY(100%);
      transition: var(--transition);
    }

    .gallery-item:hover .gallery-overlay {
      transform: translateY(0);
    }

    /* Mobile card styles */
    @media (max-width: 768px) {
      .day-in-life-card {
        height: 40vh;
        width: 60vw;
        margin: 0 auto 20px;
      }
      
      /* Student Activities cards with 60vw width on mobile */
      .activity-card {
        width: 60vw;
        margin-left: auto;
        margin-right: auto;
      }
      
      .text-content-section {
        padding: 25px;
      }

      /* Hero Section Mobile */
      .hero-section {
        padding: 120px 0 80px;
      }

      .hero-section h1 {
        font-size: 2.5rem;
      }

      .hero-section p {
        font-size: 1.1rem;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }

      .hero-btn {
        width: 80%;
        justify-content: center;
      }
    }

    /* Responsive Adjustments */
    @media (max-width: 1200px) {
      .section-title {
        font-size: 1.8rem;
      }
      
      .stats-container h3 {
        font-size: 1.8rem;
      }
    }

    @media (max-width: 992px) {
      section {
        padding: 50px 0;
      }
      
      .section-title {
        margin-bottom: 30px;
        font-size: 1.7rem;
      }
      
      .stats-container .text-center {
        margin-bottom: 15px;
        min-width: 140px;
      }
      
      .day-in-life-card {
        margin-bottom: 15px;
      }
      
      .activity-card {
        margin-bottom: 20px;
      }
      
      .gallery-item {
        margin-bottom: 20px;
      }
    }

    @media (max-width: 768px) {
      section {
        padding: 40px 0;
      }
      
      .section-title {
        margin-bottom: 25px;
        font-size: 1.6rem;
      }
      
      .stats-container {
        justify-content: center;
      }
      
      .stats-container .text-center {
        margin-bottom: 15px;
        min-width: 130px;
        padding: 15px 10px;
      }
      
      .stats-container h3 {
        font-size: 1.6rem;
      }
      
      .static-gallery {
        height: 300px;
      }
      
      .day-in-life-card {
        padding: 20px 15px;
      }
      
      .day-time {
        font-size: 1rem;
      }
      
      .day-in-life-card h4 {
        font-size: 1.2rem;
      }
      
      .activity-card {
        padding: 25px 15px;
      }
      
      .activity-icon {
        font-size: 2.5rem;
      }
      
      .activity-card h3 {
        font-size: 1.3rem;
      }
      
      .event-timeline {
        padding-left: 20px;
      }
      
      .event-item:before {
        left: -27px;
      }
    }

    @media (max-width: 576px) {
      .section-title {
        font-size: 1.5rem;
      }
      
      .stats-container .text-center {
        min-width: 120px;
        padding: 12px 8px;
      }
      
      .stats-container h3 {
        font-size: 1.4rem;
      }
      
      .static-gallery {
        height: 250px;
      }
      
      .day-in-life-card {
        padding: 15px 12px;
      }
      
      .day-time {
        font-size: 0.9rem;
      }
      
      .day-in-life-card h4 {
        font-size: 1.1rem;
      }
      
      .activity-card {
        padding: 20px 12px;
      }
      
      .activity-icon {
        font-size: 2rem;
      }
      
      .activity-card h3 {
        font-size: 1.2rem;
      }
      
      .event-item {
        padding: 20px 15px;
      }
      
      .event-item h3 {
        font-size: 1.2rem;
      }
      
      .gallery-item img {
        height: 200px;
      }
    }

    /* Animation Enhancements */
    [data-aos] {
      opacity: 0;
      transition-property: transform, opacity;
    }

    [data-aos].aos-animate {
      opacity: 1;
    }