/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --primary: #ff0000;
  --secondary: #e53e3e;
  --accent: #38b2ac;
  --light: #f7fafc;
  --dark: #272c35;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--dark);
  max-width: 1200px;
  margin: 0 auto;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary);
  margin: 15px auto 0;
  border-radius: 2px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #ffd200, #fe0b00);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 2px 10px #ffd00054;
}

.btn:hover {
  background: #fe0b00;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(193, 40, 40, 0.1);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* Header Styles - FIXED */
header {
  background: linear-gradient(135deg, #ffd200, #fe0b00);
  color: white;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container.container {
  max-width: 100% !important;
  width: 100% !important;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 20px;
  gap: 15px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  color: white;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  white-space: nowrap;
}

.logo img {
  height: 3rem;
  width: 3rem;
  margin-right: 8px;
}

/* Search Bar - FIXED */
.search-container {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin: 0 50px;
}

.search-form {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  padding: 4px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 180px;
}

.search-form:focus-within {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
}

.search-input {
  background: transparent;
  border: none;
  outline: none;
  color: white;
  padding: 6px 12px;
  font-size: 0.85rem;
  width: 120px;
  border-radius: 20px;
  flex: 1;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.search-btn {
  background: transparent;
  border: none;
  color: white;
  padding: 6px 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.search-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Navigation - FIXED */
.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 12px;
  justify-content: flex-end;
  flex: 1;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  padding: 6px 10px;
  white-space: nowrap;
  display: block;
  font-size: 1rem;
}

.nav-links a:hover {
  color: rgb(0, 0, 255);
}

.nav-links a.active {
  color: rgb(0, 0, 255);
  border-bottom: 2px solid rgb(0, 0, 255);
}

.mobile-menu {
  display: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: white;
  margin: 0;
  flex-shrink: 0;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 255, 0.5), rgba(0, 0, 255, 0.55)),
    url("/images/hero-image.webp");
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  text-align: center;
  margin-top: 80px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* About Section */
.about {
  background: white;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
  order: 1;
}

.about-text h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  order: 2;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-cta a{
    order: 3;
}

/* Stats Section */
.stats-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 7px;
}

.stat-card {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 0 10px 1px #c530306d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(135deg, #ffd200, #fe0b00);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(226, 7, 7, 0.293);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--secondary-color);
  font-weight: 600;
}

/* Notice Board Section - Updated with CTA button */
.notice {
  height: 75vh;
  width: 80vw;
  margin-left: 8.8rem;
  margin-bottom: 4rem;
  border-radius: 2rem;
  background: linear-gradient(rgb(0, 0, 255, 0.8), rgba(0, 0, 255, 0.7));
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
}

.notice .container {
  width: 100%;
}

.notice .section-title h2,
.notice .section-title p {
  color: white;
}

.notice .section-title::after {
  background: var(--accent);
}

.notice-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.notice-slide {
  padding: 40px 30px;
  display: none;
  animation: fade 1s ease;
}

.notice-slide.active {
  display: block;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.notice-content h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: white;
  font-weight: 700;
}

.notice-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.9;
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 15px;
}

.dot {
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.dot.active {
  background: white;
  transform: scale(1.2);
  border-color: var(--accent);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* Responsive adjustments for notice board */
@media (max-width: 768px) {
  .notice {
    width: 90vw;
    margin-left: 5vw;
    height: 65vh;
  }

  .notice-slide {
    padding: 30px 20px;
  }

  .notice-content h3 {
    font-size: 1.8rem;
  }

  .notice-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .notice {
    height: 60vh;
  }

  .notice-content h3 {
    font-size: 1.5rem;
  }

  .notice-content p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .notice-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }

  .slider-dots {
    margin-top: 30px;
  }
}

/* Programs Section */
.programs {
  background: #f8f9fa;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.program-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.program-img {
  height: 200px;
  overflow: hidden;
}

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

.program-card:hover .program-img img {
  transform: scale(1.1);
}

.program-content {
  padding: 25px;
}

.program-content h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.program-content p {
  margin-bottom: 15px;
  color: #666;
}

/* Campus Life Section */
.campus-life {
  background: white;
}

.campus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(320px, 1fr));
  gap: 60px;
  justify-content: center;
}

.campus-card {
  height: 300px;
  width: 400px;
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  background: #f8f9fa;
  transition: var(--transition);
  box-shadow: inset 0 -70px 50px rgba(0, 0, 0, 0.8);
}

/* Add your campus card background images here */
#sports {
  background-image: url("campus_life/sports.webp");
  background-size: cover;
}
#alumni {
  background-image: url("campus_life/almuni.webp");
  background-size: cover;
}
#fresher {
  background-image: url("campus_life/fresher.webp");
  background-size: cover;
}
#industry_visit {
  background-image: url("campus_life/industrial_visit.webp");
  background-size: cover;
}
#tvaran {
  background-image: url("campus_life/tvaran.webp");
  background-size: cover;
}
#job {
  background-image: url("campus_life/job_fair.webp");
  background-size: cover;
}
#trip {
  background-image: url("campus_life/trip.webp");
  background-size: cover;
}
#girl_game {
  background-image: url("campus_life/girls_competition.webp");
  background-size: cover;
}
#play {
  background-image: url("campus_life/nukkad_play.webp");
  background-size: cover;
}
#star_night {
  background-image: url("campus_life/star_night.webp");
  background-size: cover;
}
#women_empower {
  background-image: url("campus_life/women_empowerment.webp");
  background-size: cover;
}
#farewell {
  background-image: url("campus_life/farewell_party.webp");
  background-size: cover;
}
#winners {
  background-image: url("campus_life/winners.webp");
  background-size: cover;
}
#guest_visit {
  background-image: url("campus_life/guests.webp");
  background-size: cover;
}
#jagrukta {
  background-image: url("campus_life/jagrukta_karyakram.webp");
  background-size: cover;
}
#seminar {
  background-image: url("campus_life/seminars.webp");
  background-size: cover;
}
#supportive_faculty {
  background-image: url("campus_life/supportive_faculty.webp");
  background-size: cover;
}
#yoga {
  background-image: url("campus_life/yoga.webp");
  background-size: cover;
}
#lovely_faculty {
  background-image: url("campus_life/lovely_faculty.webp");
  background-size: cover;
}
#parents_felicitation {
  background-image: url("campus_life/parents_felicitation_ceremoney.webp");
  background-size: cover;
}
#moot_court {
  background-image: url("campus_life/moot_court_competition.webp");
  background-size: cover;
}

.campus-card:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-5px);
}

.campus-card h3 {
  font-size: 1.5rem;
  margin-top: 200px;
  color: white;
}

/* Testimonials Section */
.testimonials {
  height: 75vh;
  width: 80vw;
  margin-left: 8.8rem;
  margin-bottom: 4rem;
  border-radius: 2rem;
  background: linear-gradient(rgb(0, 0, 255, 0.8), rgba(0, 0, 255, 0.7));
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.testimonials .section-title h2,
.testimonials .section-title p {
  color: white;
}

.testimonials .section-title::after {
  background: var(--accent);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  padding: 30px;
  display: none;
  animation: fade 1s ease;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-content {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  font-size: 1.1rem;
}

.testimonial-role {
  color: var(--accent);
  font-size: 0.9rem;
}

/* CTA Section */
.cta {
  background: var(--secondary);
  color: white;
  text-align: center;
  padding: 100px 0;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta .btn {
  background: white;
  color: var(--secondary);
}

.cta .btn:hover {
  background: var(--primary);
  color: white;
}

/* Footer */
footer {
  background: var(--dark  );
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.footer-column p,
.footer-column a {
  color: #ccc;
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
  transition: var(--transition);
}

.footer-column a:hover {
  color: white;
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-5px);
}

#newsletter-form {
  padding: 10px;
  width: 100%;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
}
.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #999;
}

/* Responsive Styles*/
/* Improved Responsive Styles */
@media (max-width: 1200px) {
  .nav-links {
    gap: 10px;
  }
  
  .nav-links a {
    padding: 6px 8px;
    font-size: 0.9rem;
  }
  
  .search-input {
    width: 120px;
  }
}

@media (max-width: 992px) {
  .header-container {
    padding: 0 15px;
    gap: 10px;
  }
  
  .logo {
    font-size: 1.3rem;
  }
  
  .logo img {
    height: 2.5rem;
    width: 2.5rem;
  }
  
  .search-container {
    margin: 0 20px;
  }
  
  .search-form {
    min-width: 160px;
  }
  
  .search-input {
    width: 100px;
    font-size: 0.85rem;
  }
  
  .nav-links a {
    font-size: 0.85rem;
    padding: 5px 8px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
}

/* Tablet and Mobile Fixes */
@media (max-width: 768px) {
  .header-container {
    padding: 0 15px;
    flex-wrap: nowrap;
    gap: 15px;
  }
  
  .logo {
    font-size: 1.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
  }
  
  .logo img {
    height: 2rem;
    width: 2rem;
    margin-right: 5px;
  }
  
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #ffd200, #fe0b00);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    gap: 0;
    z-index: 1001;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links li {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .nav-links li:last-child {
    border-bottom: none;
  }
  
  .nav-links a {
    font-size: 1.1rem;
    padding: 15px 20px;
    text-align: left;
    width: 100%;
    display: block;
  }
  
  .mobile-menu {
    display: block;
    font-size: 1.5rem;
    padding: 5px;
  }
  
  .hero {
    margin-top: 70px;
    height: 60vh;
    min-height: 400px;
  }
  
  .hero h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .hero p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .hero-btns {
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    align-items: center;
  }
  
  .btn {
    padding: 12px 25px;
    font-size: 0.95rem;
    width: 200px;
    text-align: center;
  }

  /* About Section */
.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.about-text {
  flex: 1;
  order: 1;
  width: 100%;
  text-align: center;
}

.about-text h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.about-text p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-image {
  flex: 1;
  order: 2;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}
  
  /* Notice Board Fix */
  .notice {
    width: 95vw;
    margin: 0 auto 2rem;
    height: auto;
    min-height: 300px;
    border-radius: 1rem;
    padding: 20px;
  }
  
  .notice-slide {
    height: 300px;
  }
  
  .notice-content {
    padding: 20px;
  }
  
  .notice-content h3 {
    font-size: 1.3rem;
  }
  
  .notice-content p {
    font-size: 0.9rem;
  }
  
  /* Campus Grid Fix */
  .campus-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  
  .campus-card {
    width: 100%;
    height: 250px;
    margin: 0;
  }
  
  .campus-card h3 {
    margin-top: 180px;
    font-size: 1.2rem;
  }
  
  /* Testimonials Fix */
  .testimonials {
    height: auto;
    width: 95vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    border-radius: 1rem;
    padding: 30px 20px;
  }
  
  .testimonials .section-title h2 {
    font-size: 1.8rem;
  }
  
  .testimonials .section-title p {
    font-size: 0.95rem;
  }
  
  .testimonial-slider {
    max-width: 100%;
  }
  
  .testimonial-slide {
    padding: 20px;
  }
  
  .testimonial-content {
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  .testimonial-author {
    font-size: 1rem;
  }
  
  .testimonial-role {
    font-size: 0.85rem;
  }
  
  /* Stats Section Fix */
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .stat-card {
    padding: 20px 15px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
}

/* Mobile Small Screens */
@media (max-width: 576px) {
  .header-container {
    padding: 0 10px;
  }
  
  .logo {
    font-size: 1rem;
    max-width: 120px;
  }
  
  .logo img {
    height: 1.8rem;
    width: 1.8rem;
  }
  
  .mobile-menu {
    font-size: 1.3rem;
  }
  
  .hero {
    height: 50vh;
    min-height: 350px;
    margin-top: 60px;
  }
  
  .hero h1 {
    font-size: 1.6rem;
  }
  
  .hero p {
    font-size: 0.9rem;
  }
  
  .section-title h2 {
    font-size: 1.6rem;
  }
  
  .section-title p {
    font-size: 0.9rem;
  }
  
  .about-content {
    gap: 30px;
  }
  
  .about-text h3 {
    font-size: 1.5rem;
  }
  
  /* Notice Board */
.notice {
  width: 95%;
  margin: 0 auto 2rem;
  padding: 20px;
  border-radius: 1rem;
  height: auto;
}
.notice-slide {
  height: auto;
}

  
  .notice-content h3 {
    font-size: 1.3rem;
  }
  
  .notice-content p {
    font-size: 0.9rem;
  }
  
  /* Stats */
  .stats-container {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .stat-card {
    padding: 25px 20px;
  }
  
  /* Programs */
  .programs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Testimonials */
  .testimonials {
    width: 95%;
    margin: 0;
    padding: 30px 20px;
    height: auto;
    min-height: 350px;
    border-radius: 1rem;
  }
  .testimonial-slide {
  height: auto;
}
  .testimonial-content {
    font-size: 1rem;
  }
  
  /* Campus Life */
  .campus-life .container {
  width: 100%;
  padding: 0 15px;
}

.campus-grid {
  grid-template-columns: 1fr;
  gap: 20px;
}

.campus-card {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.campus-card img {
  width: 100%;
  height: auto;
  display: block;
}

.campus-card h3 {
  display: none;
}

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-column h3 {
    font-size: 1.2rem;
  }
}

/* iPhone Specific Fixes */
@media (max-width: 428px) and (max-height: 926px) {
  /* iPhone 14 Pro Max specific adjustments */
  .hero {
    height: 55vh;
  }
  
.notice {
  width: 95%;
  margin: 0 auto 2rem;
  padding: 20px;
  border-radius: 1rem;
  height: auto;
}
.notice-slide {
  height: auto;
}

  
  .campus-card {
    height: 180px;
  }
  
  .campus-card h3 {
    margin-top: 130px;
    font-size: 1.2rem;
  }
}

/* Landscape Mode Fixes */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    height: 100vh;
    min-height: 300px;
  }
  
  .notice {
    height: 80vh;
  }
  
  .nav-links {
    top: 60px;
  }
  
  .nav-links a {
    padding: 10px 20px;
  }
}

/* High DPI Screen Improvements */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* Global FIXES */
* {
  box-sizing: border-box;
}

section {
  width: 100%;
  height: auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Force responsiveness on all phones */
@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }

  .notice,
  .campus-life,
  .testimonials {
    width: 100%;
  }
}
