:root {
            --monaco-blue: #004B9B;
            --monaco-orange: #F8991D;
            --monaco-text: #333;
            --light-gray: #f8f9fa;
            --dark-gray: #666;
            --success-green: #4CAF50;
            --shadow-light: 0 5px 15px rgba(0,0,0,0.08);
            --shadow-hover: 0 15px 35px rgba(0,0,0,0.15);
            --gradient-blue: linear-gradient(135deg, #004B9B, #0066CC);
            --gradient-orange: linear-gradient(135deg, #F8991D, #FF8C00);
            --gradient-green: linear-gradient(135deg, #4CAF50, #45A049);
        }

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}


/* Top Bar */
.top-bar {
  background-color: var(--monaco-blue);
  color: white;
  font-size: 14px;
  padding: 15px 0;
   position: sticky;
      top: 0;
      
}

.top-bar .contact-info {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar .top-buttons {
  margin-left: auto;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.material-icons {
  font-size: 16px;
  vertical-align: middle;
  margin-right: 4px;
}

.sign-in {
  background-color: var(--monaco-orange);
  color: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s;
 
}

.sign-in:hover {
  background-color: #df800d;
}

.apply-btn {
  background-color: var(--monaco-orange);
  color: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s;
}

.apply-btn:hover {
  color: rgb(255, 255, 255);
 
}

/* Navbar */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 10px 0;
  position: sticky;
      top: 0;
      z-index: 100;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 60px;
  width: auto;
}

.logo-area h2 {
  margin: 0;
  font-size: 20px;
  color: var(--monaco-blue);
}

.logo-area p {
  margin: 0;
  font-size: 13px;
  color: gray;
}

.nav-menu {
  list-style-type: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: var(--monaco-text);
  padding: 10px;
  display: block;
}

.nav-menu a:hover {
  color: var(--monaco-hover);
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: #f7f7f7;
  top: 40px;
  left: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  border-radius: 4px;
  z-index: 1000;
  min-width: 180px;
}

.dropdown-menu li a {
  padding: 10px 15px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}



* Adjust hero section for fixed headers */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(0, 75, 155, 0.9), rgba(0, 75, 155, 0.7)), 
              url('hero.jpg') center center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
  margin-top: -75px; /* Pull up to compensate for fixed headers */
  padding-top: 120px; /* Match body padding */
}

/* ENHANCED HERO SECTION */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(0, 75, 155, 0.9), rgba(0, 75, 155, 0.7)), 
              url('hero.jpg') center center/cover no-repeat; 
  height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
  
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(248, 153, 29, 0.1) 0%, rgba(0, 75, 155, 0.2) 100%);
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 40px;
  backdrop-filter: blur(2px);
}

.hero-content {
  text-align: left;
  max-width: 900px;
  animation: slideInUp 1s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 0.5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.02em;
}

.hero-content h1 .highlight {
  color: #F8991D;
  position: relative;
  display: inline-block;
}


.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.5;
  margin: 20px 0 30px;
  color: #F0F8FF;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  max-width: 650px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-btn {
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.hero-btn:hover::before {
  left: 100%;
}

.hero-btn.primary {
  background: linear-gradient(135deg, #F8991D, #FF6B35);
  color: white;
  box-shadow: 0 4px 15px rgba(248, 153, 29, 0.4);
}

.hero-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(248, 153, 29, 0.6);
}

.hero-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* CLEAN HERO STATS */
.hero-stats {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  max-width: 800px;
  margin-top: 5px;
}

.stat {
  text-align: center;
  background: none;
  padding: 0;
  border: none;
  transition: all 0.3s ease;
  flex: 1;
}

.stat:hover {
  transform: translateY(-3px);
}

.stat h3 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 5px 0;
  color: #F8991D;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1;
}

.stat p {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.stat:nth-child(1) { animation: float 3s ease-in-out infinite; }
.stat:nth-child(2) { animation: float 3s ease-in-out infinite 0.5s; }
.stat:nth-child(3) { animation: float 3s ease-in-out infinite 1s; }
.stat:nth-child(4) { animation: float 3s ease-in-out infinite 1.5s; }

/* Responsive Design */
@media screen and (max-width: 768px) {
  .hero-overlay {
    padding: 0 20px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
    gap: 15px;
  }
  
  .hero-btn {
    font-size: 14px;
    padding: 12px 24px;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
  }
  
  .stat {
    min-width: 120px;
  }
  
  .stat h3 {
    font-size: 2.5rem;
  }
  
  .stat p {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 25px;
    max-width: 200px;
    margin: 40px auto 0;
  }
  
  .stat h3 {
    font-size: 2.2rem;
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) rotate(45deg) translateY(0);
  }
  40% {
    transform: translateX(-50%) rotate(45deg) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) rotate(45deg) translateY(-5px);
  }
}
 
/* About Section Styles */
.about-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.about-section h2 {
  text-align: center;
  color: var(--monaco-blue);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.about-section .subtitle {
  text-align: center;
  color: var(--monaco-text);
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.about-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.about-story {
  flex: 1;
  min-width: 300px;
}

.about-story h3,
.mission-box h3,
.vision-box h3 {
  color: var(--monaco-blue);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.about-story p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #555;
}

.about-story ul {
  margin-bottom: 30px;
  padding-left: 20px;
}

.about-story li {
  margin-bottom: 10px;
  color: #555;
}

.learn-more-btn {
  display: inline-block;
  background-color: var(--monaco-orange);
  color: white;
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.learn-more-btn:hover {
  background-color: #d87e0f;
}

.mission-vision {
  flex: 1;
  min-width: 300px;
}

.mission-box,
.vision-box {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.mission-box p,
.vision-box p {
  color: #555;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.stat-item {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--monaco-orange);
  margin-bottom: 5px;
}

.stat-item p {
  font-weight: 600;
  color: var(--monaco-blue);
  margin-bottom: 5px;
}

.stat-desc {
  font-size: 0.9rem;
  color: #666;
  font-weight: normal;
  margin-top: 10px;
}


/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* Header */
.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.about-header .highlight {
    color: var(--monaco-blue);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main Content Layout */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Column - Our Story */
.about-story {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.about-story h3 {
    font-size: 1.8rem;
    color: var(--monaco-blue);
    margin-bottom: 25px;
    font-weight: 600;
}

.about-story p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.about-story ul {
    margin: 20px 0 30px 0;
    padding-left: 0;
    list-style: none;
}

.about-story li {
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 0.95rem;
    padding-left: 20px;
    position: relative;
}

.about-story li::before {
    content: "•";
    color: var(--monaco-orange);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--monaco-orange), #ff6b35);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(248, 153, 29, 0.3);
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 153, 29, 0.4);
}

/* Right Column - Features */
.features-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-box {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-top: 3px solid var(--monaco-blue);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--monaco-blue), #0066cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon .material-icons {
    color: white;
    font-size: 28px;
}

.feature-box h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--monaco-blue);
    margin-bottom: 12px;
}

.feature-box p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Mission and Vision Grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.mission-box,
.vision-box {
    background: white;
    padding: 1px 5px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 95%;
    margin-left: 10%;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--monaco-blue), #0066cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0;
    box-shadow: 0 4px 15px rgba(0, 75, 155, 0.3);
    margin-top: 20px;
}

.mission-icon .material-icons,
.vision-icon .material-icons {
    color: white;
    font-size: 32px;
}

.mission-box h4,
.vision-box h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.mission-box p,
.vision-box p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 400px;
    margin: 0 auto;
}

/* Academic Programmes Section */
.academic-programmes {
  padding: 0 0;
  background-color: #f9f9f9;
  margin-top: 5px;
}

.academic-programmes .container {
  max-width: 2000px; /* Increased to accommodate 4 cards */
  margin: 0 auto;
  padding: 0 10px;
}

.academic-programmes h2 {
  text-align: center;
  color: var(--monaco-blue);
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.academic-programmes .subtitle {
  text-align: center;
  color: var(--monaco-text);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 10px;
  line-height: 1.6;
}

.programmes-grid {
  display: flex; /* Changed to flex for horizontal layout */
  gap: 5px;
  margin-bottom: 5px;
  overflow-x: auto; /* Allows horizontal scrolling on small screens */
  padding-bottom: 10px; /* Space for scrollbar */
}

.programme-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  min-width: 300px; /* Minimum width for each card */
  flex: 1; /* Each card takes equal width */
}

.programme-card:hover {
  transform: translateY(-5px);
}

.programme-header {
  background-color: var(--monaco-blue);
  color: white;
  padding: 20px;
  position: relative;
}

.programme-header h3 {
  margin: 0;
  font-size: 1.5rem;
}

.duration {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--monaco-orange);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.description {
  padding: 20px;
  color: #555;
  margin: 0;
  border-bottom: 1px solid #eee;
  min-height: 80px; /* Ensures consistent height */
}

.courses {
  padding: 20px;
  min-height: 220px; /* Ensures consistent height */
}

.courses h4 {
  color: var(--monaco-blue);
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.courses ul {
  margin: 0;
  padding-left: 20px;
}

.courses li {
  margin-bottom: 8px;
  color: #555;
}

.learn-more-btn {
  display: block;
  text-align: center;
  background-color: var(--monaco-orange);
  color: white;
  padding: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.learn-more-btn:hover {
  background-color: #e08a17;
}

.cta-section {
  text-align: center;
  width: 90%;
  margin: 20px auto 0;
  padding: 30px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.cta-section h3 {
  color: var(--monaco-blue);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.cta-section p {
  color: #555;
  margin-bottom: 20px;
}

.apply-btn {
  display: inline-block;
  background-color: var(--monaco-blue);
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.apply-btn:hover {
  background-color: #003366;
}

    /*  student activities */
        .student-activities {
            padding: 5px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
        }

        .student-activities::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 150px;
            background: linear-gradient(135deg, rgba(0, 75, 155, 0.02), rgba(248, 153, 29, 0.02));
            z-index: 1;
        }

        .container {
            max-width: 2000px;
            margin: 0 auto;
            padding: 0 10px;
            position: relative;
            z-index: 2;
        }

        .section-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .section-header h2 {
            color: var(--monaco-blue);
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-orange);
            border-radius: 2px;
        }

        .section-intro {
            color: var(--dark-gray);
            font-size: 1.3rem;
            max-width: 1000px;
            margin: 10px auto 0;
            font-weight: 400;
            line-height: 1.8;
        }

        .activities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1.5fr));
            gap: 40px;
            margin-bottom: 80px;
        }

        .activity-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .activity-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: var(--shadow-hover);
        }

        .card-image {
            height: 220px;
            background: linear-gradient(135deg, #e9ecef, #dee2e6);
            position: relative;
            overflow: hidden;
        }

        .sports .card-image {
            background: var(--gradient-orange);
        }

        .clubs .card-image {
            background: var(--gradient-blue);
        }

        .events .card-image {
            background: var(--gradient-green);
        }

        .card-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(1px);
        }

        .image-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .image-placeholder svg {
            width: 60px;
            height: 60px;
            margin-bottom: 10px;
            opacity: 0.9;
        }

        .card-content {
            padding: 35px;
        }

        .activity-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: -50px auto 25px;
            position: relative;
            z-index: 3;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .sports .activity-icon {
            background: var(--gradient-orange);
        }

        .clubs .activity-icon {
            background: var(--gradient-blue);
        }

        .events .activity-icon {
            background: var(--gradient-green);
        }

        .activity-icon svg {
            width: 35px;
            height: 35px;
            fill: white;
        }

        .activity-card h3 {
            color: var(--monaco-blue);
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 10px;
            text-align: center;
        }

        .activity-card p {
            color: var(--dark-gray);
            margin-bottom: 20px;
            line-height: 1.7;
            text-align: center;
        }

        .activity-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }

        .activity-highlights span {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: default;
        }

        .sports .activity-highlights span {
            background: rgba(248, 153, 29, 0.1);
            color: var(--monaco-orange);
            border: 1px solid rgba(248, 153, 29, 0.2);
        }

        .clubs .activity-highlights span {
            background: rgba(0, 75, 155, 0.1);
            color: var(--monaco-blue);
            border: 1px solid rgba(0, 75, 155, 0.2);
        }

        .events .activity-highlights span {
            background: rgba(76, 175, 80, 0.1);
            color: var(--success-green);
            border: 1px solid rgba(76, 175, 80, 0.2);
        }

        .activity-highlights span:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        /* Community CTA Enhanced */
        .community-cta {
    background: var(--gradient-blue);
    border-radius: 15px; /* Reduced from 25px */
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 75, 155, 0.2); /* Reduced shadow */
    position: relative;
    margin: 0 auto; /* Added margin */
    max-width: 1500px; /* Limit maximum width */
}
/* Adjust the content wrapper height */
.cta-content-wrapper {
    display: flex;
    align-items: center;
    min-height: 200px; /* Reduced from 400px */
    position: relative;
    z-index: 2;
}

      /* Reduce padding in content area */
.cta-content {
    flex: 1.2;
    padding: 10px; /* Reduced from 50px */
    color: white;
}

        /* Adjust image container size */
.cta-image {
    flex: 1;
    height: 200px; /* Reduced from 400px */
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
}

        .cta-image-placeholder {
            width: 99%;
            height: 100%;
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            text-align: center;
            border: 2px dashed rgba(255,255,255,0.3);
        }

        /* Reduce font sizes */
.community-cta h3 {
    font-size: 1.8rem; /* Reduced from 2.2rem */
    margin-bottom: 5px; /* Reduced from 20px */
}

        .community-cta p {
    margin-bottom: 10px; /* Reduced from 35px */
    font-size: 1rem; /* Reduced from 1.1rem */
}

        /* Adjust button sizes */
.cta-btn {
    padding: 10px 15px; /* Reduced from 15px 30px */
    font-size: 0.9rem; /* Reduced from 1rem */
}

        .cta-btn {
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .cta-btn.primary {
            background: var(--monaco-orange);
            color: white;
            box-shadow: 0 5px 15px rgba(248, 153, 29, 0.3);
        }

        .cta-btn.primary:hover {
            background: #e08a17;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(248, 153, 29, 0.4);
        }

        .cta-btn.secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255,255,255,0.8);
        }

        .cta-btn.secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: white;
            transform: translateY(-3px);
        }

       

        .activity-card {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .activity-card:nth-child(1) { animation-delay: 0.1s; }
        .activity-card:nth-child(2) { animation-delay: 0.2s; }
        .activity-card:nth-child(3) { animation-delay: 0.3s; }
   
    /* news */
.news-updates {
  padding: 60px 0;
  background: #f9f9f9;
}

.news-updates .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.news-updates .highlight-blue {
  color: var(--monaco-blue);
}

.news-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  position: relative;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--monaco-blue);
  color: white;
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 10;
}

.news-tag.green {
  background: var(--success-green);
}

.news-tag.orange {
  background: var(--monaco-orange);
}

.news-tag.blue {
  background: var(--monaco-blue);
}

.news-card h3 {
  font-size: 1.2rem;
  color: var(--monaco-text);
  margin: 15px 20px 10px;
  font-weight: 700;
}

.news-meta {
  font-size: 0.85rem;
  color: gray;
  margin: 0 20px 10px;
  display: flex;
  gap: 15px;
}

.news-card p {
  color: #555;
  font-size: 0.95rem;
  margin: 0 20px 20px;
  line-height: 1.6;
}

.read-more-btn {
  display: block;
  margin: 0 20px 20px;
  font-weight: 600;
  color: var(--monaco-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more-btn:hover {
  color: var(--monaco-orange);
}

.view-all-news {
  text-align: center;
  margin-top: 40px;
}


/* ========================================
   MODAL OVERLAY (shared by all popups)
======================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeInOverlay 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ========================================
   MODAL BOX
======================================== */
.modal-box {
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    animation: slideUpModal 0.35s ease;
    font-family: inherit;
}

.modal-box.small {
    max-width: 550px;
}

@keyframes slideUpModal {
    from { transform: translateY(40px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

/* Scrollbar styling inside modal */
.modal-box::-webkit-scrollbar {
    width: 6px;
}
.modal-box::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.modal-box::-webkit-scrollbar-thumb {
    background: #4a90e2;
    border-radius: 10px;
}

/* ========================================
   MODAL CLOSE BUTTON
======================================== */
.modal-close-btn {
    position: absolute;
    top: 14px;
    right: 18px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    transition: background 0.2s ease;
    z-index: 10;
}
.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* ========================================
   MODAL TOP BANNER (About Us)
======================================== */
.modal-banner {
    background: linear-gradient(135deg, #1a1a2e, #4a90e2);
    padding: 40px 40px 30px;
    border-radius: 16px 16px 0 0;
    text-align: center;
    color: #fff;
}

.modal-banner h2 {
    margin: 0 0 8px;
    font-size: 26px;
    letter-spacing: 1px;
}

.modal-banner p {
    margin: 0;
    font-size: 14px;
    opacity: 0.85;
}

.modal-banner-meta {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
}
/* ========================================
   FOOTER
======================================== */
.monaco-footer {
  background: #004B9B;
  color: #c8d8f0;
  font-family: 'Segoe UI', sans-serif;
  margin-top: 0;
  position: relative;
}

.footer-main {
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
}

/* Brand Column */
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-logo-wrap h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
}

.footer-logo-wrap span {
  display: block;
  font-size: 0.72rem;
  color: #7ca0cc;
  margin-top: 2px;
  line-height: 1.3;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #8aabcf;
  margin: 0 0 22px;
  max-width: 290px;
}

/* Social Icons */
.footer-socials {
  display: flex;
  gap: 10px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #c8d8f0;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

.social-icon:hover {
  background: var(--monaco-orange);
  border-color: var(--monaco-orange);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(248,153,29,0.4);
}

/* Column Headings */
.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--monaco-orange);
  display: inline-block;
}

/* Links List */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-links-list a {
  color: #8aabcf;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer-links-list a::before {
  content: '›';
  margin-right: 7px;
  color: var(--monaco-orange);
  opacity: 0.7;
}

.footer-links-list a:hover {
  color: #ffffff;
  padding-left: 4px;
}

/* Contact List */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #8aabcf;
}

.footer-contact-list .material-icons {
  font-size: 18px;
  color: var(--monaco-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-list a {
  color: #8aabcf;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-list a:hover {
  color: var(--monaco-orange);
}

/* Bottom Bar */
.footer-bottom {
  background: rgba(0,0,0,0.35);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: #5a7a9f;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: #5a7a9f;
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--monaco-orange);
}

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-tagline {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}