

* {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  max-width: 100%;
  background-color:#171C43;
  overflow-x: hidden; /* prevent sideways scroll */
}
main {
  padding: 0; /* optional if you want the image to truly touch edges */
  text-align: center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #5F6895;
  padding: 0.5rem 2rem;
  position: sticky; /* keeps navbar visible on scroll */
  top: 0;
  z-index: 1000;
  font-family: 'Inter', sans-serif;


}

.logo-img {
  height: 100px;  /* adjust size as needed */
  width: auto;
  display: block;
}

.logo-img:hover {
  transform: scale(1.05);
  transition: transform 0.3s;
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Inter', sans-serif;

}

.nav-links li a:hover {
  text-decoration: underline;
}

.home-banner {
  width: 100%;
  height: auto;
}

.about-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem; /* equal spacing between items */
  font-family: 'Judson';
  color: white;
  font-size: 6rem; 
  text-transform: uppercase;
  text-align: center;
  font-size: 5.0rem; /* adjust as needed */
}

.about-text {
  font-family: 'Inter', sans-serif;
  color: white;
  font-size: 1.35rem;
  text-align: center;
  max-width: 1100px;
  margin: 60px auto;
  line-height: 1.6;

  /* Fancy background with frosted glass */
  background: rgba(95, 104, 149, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  /* Border + glow */
  border-radius: 25px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);

  padding: 50px 70px;
  position: relative;
  z-index: 1;
}

/* Highlighted words */
.about-text .highlight {
  color: #FFD700; /* gold */
  font-weight: 600;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .about-text {
    font-size: 1rem;
    padding: 30px 20px;
  }
}


.body1{
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('/images/WhiteBackground.png');
  background-size: cover;
  margin-bottom: 50px;
}
.image-showcase {
  position: relative;
  width: 1500px;
  height: 900px;
}

.image-box {
  position: absolute;
  width: 60%;
  height: 60%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.image1 {
  top: 0;
  left: 0;
  transform: rotate(-5deg);
}

.image2 {
  bottom: 0;
  right: 0;
  transform: rotate(5deg);
}


.stars2 {
  height: 400px;
  margin-left: 100px; /* remove side margins */
  margin-right: 100px; /* remove side margins */
}




.carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin: 5rem auto;
  gap: 1rem; /* space between arrows and images */
}

.carousel-track-container {
  overflow: hidden;
  flex: 1; /* take remaining space */
  border-radius: 10px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 10px; /* space between images */
  height: 250px;  
  height: 600px;
}

.carousel-img {
  flex-shrink: 0; /* prevent shrinking */
  border-radius: 8px;
}

.carousel-arrow {
  background-color: white;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  padding: 0.8rem 1rem;
  margin-left: 10px;
  margin-right: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-arrow:hover {
  background-color: #ddd;
}


/* SPONSOR PAGE ============================= */

.sponsor-banner {
  width: 100%;
  height: auto;
}


.sponsor-container {
  position: relative;
  width: 100%;
}

.sponsor-planet {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: transform 0.3s;
}

.sponsor-planet img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.sponsor-planet:hover {
  transform: scale(1.2);
}

.hover-info {
  display: none;
  position: absolute;
  bottom: -40px;
  width: max-content;
  padding: 5px 10px;
  background: white;
  color: black;
  border-radius: 5px;
  font-size: 14px;
}

.sponsor-planet:hover .hover-info {
  display: block;
}

.hero-section {
  text-align: center;
  margin-top: 100px;
}

.hero-image-container {
  position: relative;
  display: inline-block;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  z-index: 2;

}

.hero-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3rem;
  font-family: 'Istok Web', sans-serif;
}

.sponsor-banner-container {
  margin-top: -300px; /* move banner closer to the image above */
  text-align: center;
}

.sponsor-banner {
  width: 100%;
  height: auto;
  display: block;
  z-index: 1;

}
.banner-container {
  position: relative; /* lets button overlay the image */
  display: inline-block;
  width: 100%;
}

.home-banner {
  width: 100%;
  height: auto;
  display: block;
}

.invis-button {
  position: absolute;
  top: 83%;       /* move vertically where you want */
  left: 66%;      /* move horizontally where you want */
  width: 22%;     /* size of clickable area */
  height: 90px;   /* height of clickable area */
  display: block;
  background-color: transparent; /* fully invisible */
  cursor: pointer;
}


/* EXECUTIVE PAGE ============================= */

.exec-main{
  background-image: url('/images/execbackground1.png');
  font-family: 'Inter', sans-serif;
  padding-bottom: 20px;
}


.execpic { 
  max-width: 80%;
  margin-bottom: 3rem;
  margin-top: 3rem;
  border-radius: 20px;
}

.exec-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.exec-card {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 60px;
  padding: 1.5rem;
  max-width: 520px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.exec-card:hover {
  transform: translateY(-8px);
}

.exec-img {
  width: 100%;
  max-width: 500px;
  border-radius: 40px;
  margin-bottom: 1rem;
}

.exec-name {
  font-size: 1.4rem;
  margin: 0.5rem 0;
  color: #fff;
  font-family: 'Inter' sans-serif;

}

.exec-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 1rem;
  text-align: center;

}

.exec-position {
  font-size: 1.5rem;
  font-weight: bold;
  color: #b2bae4;
  margin-bottom: 1rem;
  text-align: center;

}

.exec-desc {
  text-align: center;
  color: #eee;
  font-size: 1.2rem;
}

.exec-desc p {
  text-align: center;
}

.department {
  font-size: 2.5rem;
  color: white;
  text-align: center;
  margin-bottom: 2rem;
}


/* UPDATES PAGE ============================= */

.stars3{
    margin: 0 auto; /* center */

}:root {
  --frame-width: 1400px;   /* adjust this to scale the whole thing */
  --border-size: 12px;     /* frame border thickness */
  --circle-size: 28px;     /* circle diameter */
}

.slideshow-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
  width: var(--frame-width);
  aspect-ratio: 16/9; /* keeps it proportional */
}

/* Decorative rectangle background */
.decorative-frame {
  position: absolute;
  inset: 0;
  border: var(--border-size) solid #cfd6f6;
  background-color: #0b0e3a;
  z-index: 1;
}

/* Corner circles */
.circle {
  position: absolute;
  width: var(--circle-size);
  height: var(--circle-size);
  background: white;
  border-radius: 50%;
}

/* Small screen adjustments (iPhone / small phones) */
@media (max-width: 480px) {
  .slideshow-wrapper { margin: 1.5rem 8px; }
  .slideshow-container { aspect-ratio: 4 / 3; } /* a bit taller for legibility */
  .slideshow-container iframe { /* ensure slides scale cleanly */
    transform-origin: center center;
  }
}

/* iPad / Tablet */
@media (min-width: 481px) and (max-width: 1024px) {
  .slideshow-wrapper { max-width: 980px; }
  .slideshow-container { aspect-ratio: 16 / 9; }
}

/* Reduce size on very short viewports (avoid overflow) */
@media (max-height: 520px) {
  .slideshow-container { max-height: calc(100vh - 120px); }
}
.top-left    { top: var(--border-size); left: var(--border-size); }
.top-right   { top: var(--border-size); right: var(--border-size); }
.bottom-left { bottom: var(--border-size); left: var(--border-size); }
.bottom-right{ bottom: var(--border-size); right: var(--border-size); }

/* Slideshow container on top */
.slideshow-container {
  position: relative;
  width: 90%;   /* slideshow smaller to reveal frame */
  height: 90%;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border-radius: 6px;
  overflow: hidden;
  background: #000;
}

.slideshow-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}


/* FAQ UPDATE PAGE ============================= */
.faq-section {
  position: relative;
  max-width: 1300px;
  margin: 3rem auto;
  padding: 0 1rem;
  font-family: "Inter", sans-serif;
  z-index: 1;
}


.faq-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: white;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 50px;
  overflow: hidden;
  background: #e3e9ff;
}

.faq-question {
  width: 100%;
  padding: 2rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: bold;
  background: linear-gradient(to right, #ffffff 0%, #5F6895 100%);
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: left;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #d4dcff;
}

.arrow {
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: linear-gradient(to right, #ffffff 0%, #5F6895 100%);
  padding: 0 1.5rem;
  transition: max-height 0.6s ease, padding 0.6s ease;
  text-align: left;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.5rem;
}


/*Footer*/
/* Footer Base */
.site-footer {
  background-color: #5F6895; /* deep DECA blue */
  color: white;
  padding: 40px 20px 20px;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

/* Logo Section */
.footer-logo {
  text-align: center;
}
.footer-logo img {
  width: 100px;
  margin-bottom: 10px;
}
.footer-logo p {
  font-weight: bold;
  font-size: 1.2rem;
}

/* Footer Sections */
.footer-section h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  border-bottom: 2px solid #ffffff33;
  padding-bottom: 5px;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin: 8px 0;
}
.footer-section ul li a {
  text-decoration: none;
  color: #ffffffcc;
  transition: color 0.3s;
}
.footer-section ul li a:hover {
  color: white;
}

/* Contact Links */
.footer-section p {
  margin: 8px 0;
}
.footer-section a {
  color: #ffffffcc;
  text-decoration: none;
}
.footer-section a:hover {
  color: white;
}

/* Social Links */
.social-links a {
  display: inline-block;
  margin-right: 15px;
  font-size: 1.3rem;
  color: #ffffffcc;
  transition: color 0.3s;
}
.social-links a:hover {
  color: white;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 30px;
  text-align: left;
  font-size: 0.9rem;
  color: #ffffff99;
  border-top: 1px solid #ffffff33;
  padding-top: 10px;
}


/* LOGIN PAGE */
/* LOGIN PAGE */
.lockscreen-wrap {
  position: relative;
  min-height: calc(100vh - 60px);
  width: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  font-family: 'Inter', sans-serif;
  background: url("/images/Executive\ Team-2.jpg") center/cover no-repeat fixed;
  z-index: 0;

}
.lockscreen-bg {
  position: absolute;
  inset: 0;
  filter: blur(10px) saturate(110%);
  transform: scale(1.05);
  z-index: -2;
}
.lockscreen-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 800px at 50% 20%, rgba(0,0,0,0.25), rgba(0,0,0,0.55));
  z-index: -1;
}
.login-card {
  width: min(92vw, 440px);
  padding: 28px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
  color: #fff;
  text-align: center;
}
.login-logo {
  width: 88px; height: 88px; border-radius: 20px; object-fit: cover;
  display: block; margin: 0 auto 14px;
  background: rgba(255,255,255,0.15);
  padding: 10px;
}
.login-title { font-weight: 700; font-size: 1.4rem; margin-bottom: 4px; }
.login-subtitle { opacity: 0.85; margin-bottom: 18px; font-size: 0.95rem; }

/* --- Center the form controls inside the card --- */
.login-card form{
  display: flex;
  flex-direction: column;
  align-items: center;    /* center children horizontally */
  gap: 12px;
  max-width: 380px;       /* controls the visual width of the field */
  margin: 0 auto;         /* centers the block in the card */
}

/* Make label/input/button share the same centered width */
.input-wrap,
.login-card .btn,
.login-card .error{
  width: 100%;
}

.input-wrap{
  display: grid;
  gap: 10px;
  text-align: left;
  margin: 14px 0 6px;
}
.input-wrap label{
  font-size: 0.85rem;
  opacity: 0.9;
  color: #fff;
  margin-left: 2px;       /* tiny nudge so text aligns nicely with input */
}

.input{
  display: block;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.25);
  color: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  outline: none;
  font-size: 0.98rem;
  /* removed align-items (does nothing on inputs) */
}
.input::placeholder { color: rgba(255,255,255,0.6); }

.btn {
  width: 100%;
  margin-top: 14px;
  border: 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, #2a6bff, var(--accent));
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }

.error {
  margin-top: 12px;
  color: #ffb4b4;
  font-size: 0.9rem;
  min-height: 1.2em;
}

.meta { margin-top: 12px; font-size: 0.8rem; opacity: 0.8; color: #fff; }


/* DASHBOARD PAGE ============================= */

.grid{
  font-family: 'Inter', sans-serif;
}
.an {
  font-family: 'Istok Web', sans-serif;
  font-size: 2.2rem;
  color: white;
}

.an1{
  font-family: 'Istok Web', sans-serif;
  font-size: 3.2rem;
  color: white;
}

.dash-hero {
  padding: clamp(16px, 3vw, 28px);
  display: grid; gap: 10px;
}
.dash-title { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 700; }
.dash-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-outline {
  border: 1px solid #d5d7de; padding: 8px 12px; border-radius: 10px; background: #fff; cursor: pointer;
  text-decoration: none; color: #111; font-weight: 600;
}


.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  padding: clamp(12px, 3vw, 24px);
}
.card {
  grid-column: span 12;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 2px 16px rgba(17, 24, 39, 0.04);
}
.card p { color: #444; }
.calendar-embed { position: relative; padding-top: 5px; }


/* CLUSTERS SECTION ===================== */
.clusters-section {
  padding: clamp(20px, 4vw, 40px);
  text-align: center;
}

.clusters-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 30px;
  font-weight: 700;
}

.clusters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
  gap: 24px;
  justify-items: center;
}

/* Tile styling */
.cluster-tile {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1; /* square */
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cluster-tile:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 32px rgba(0,0,0,0.25);
}

.cluster-bg1 {
  position: absolute;
  inset: 0;
  background: url('/images/ENT.webp') center/cover no-repeat;
  filter: brightness(0.8);
  transition: filter 0.3s ease;
}

.cluster-bg2 {
  position: absolute;
  inset: 0;
  background: url('/images/finance.webp') center/cover no-repeat;
  filter: brightness(0.8);
  transition: filter 0.3s ease;
}

.cluster-bg3 {
  position: absolute;
  inset: 0;
  background: url('/images/H&T.webp') center/cover no-repeat;
  filter: brightness(0.8);
  transition: filter 0.3s ease;
}

.cluster-bg4 {
  position: absolute;
  inset: 0;
  background: url('/images/Marketing.webp') center/cover no-repeat;
  filter: brightness(0.8);
  transition: filter 0.3s ease;
}

.cluster-bg5 {
  position: absolute;
  inset: 0;
  background: url('/images/writtens.png') center/cover no-repeat;
  filter: brightness(0.8);
  transition: filter 0.3s ease;
}

.cluster-bg6 {
  position: absolute;
  inset: 0;
  background: url('/images/pinc.png') center/cover no-repeat;
  filter: brightness(0.8);
  transition: filter 0.3s ease;
}

.cluster-bg7 {
  position: absolute;
  inset: 0;
  background: url('/images/businessM12.png') center/cover no-repeat;
  filter: brightness(0.8);
  transition: filter 0.3s ease;
}


.cluster-tile:hover .cluster-bg1,
.cluster-tile:hover .cluster-bg2,
.cluster-tile:hover .cluster-bg3,
.cluster-tile:hover .cluster-bg4,
.cluster-tile:hover .cluster-bg5,
.cluster-tile:hover .cluster-bg6,
.cluster-tile:hover .cluster-bg7 {
  filter: brightness(1);
}
.cluster-title {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  font-family: 'Istok Web', sans-serif;
}


/* ANNOUNCEMENTS SECTION ================== */
.announcements {
  height: 800px; /* Match calendar height */
  display: flex;
  flex-direction: column;
}


.announcements-list {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-right: 6px; /* space for scrollbar */
}

/* Individual announcement card */
.announcement {
  background: #f9fafc;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.announcement h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.announcement p {
  font-size: 0.9rem;
  color: #444;
}

.announcement:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  background: #ffffff;
}

.resources-section {
  text-align: center;
  padding: 40px 20px;
  background-image: url(/images/random44.jpg);
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.25); /* subtle border */

  
}

.an11{
  color:white;
  font-size:3.2rem
}
.resources-grid {
  display: flex;
  flex-direction: column; /* stack vertically */
  gap: 20px; /* spacing between items */
  align-items: center;
}

.resource-tile {
  text-decoration: none;
  width: 80%; /* controls pill length */
  max-width: 600px;
}

.resource-title {
  background: rgba(255, 255, 255, 0.15); /* transparent glass */
  border-radius: 50px; /* pill shape */
  padding: 20px 40px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.25); /* subtle border */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); /* depth */
  transition: transform 0.2s ease, background 0.2s ease;
}

.resource-title:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}


.logout {
  background: none;
  border: none;
  color: white;
  font-weight: bold;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  
}

.logout:hover {
  text-decoration: underline;
}


.mail1{
  color: white;
}









@media (min-width: 900px) {
  .card.span-6 { grid-column: span 6; }
  .card.span-8 { grid-column: span 8; }
  .card.span-4 { grid-column: span 4; }
}

/* ============================= */
/* 📱 iPhone (portrait) */
/* ============================= */
@media (max-width: 480px) {
  body, html {
    overflow-x: hidden;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .logo-img {
    height: 50px;
    margin-bottom: 0.5rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a,
  .logout {
    display: block;
    padding: 0.5rem;
    width: 100%;
    text-align: left;
  }

  .about-row {
    flex-direction: column;
    font-size: 1.8rem;
    gap: 1rem;
  }

  .about-text {
    font-size: 1rem;
    padding: 20px;
    margin: 20px;
  }

  .carousel-track {
    height: 200px;
  }

  .carousel-img {
    max-width: 100%;
    border-radius: 12px;
  }

  .clusters-grid {
    grid-template-columns: 1fr;
  }

  .resource-title {
    font-size: 1rem;
    padding: 14px 20px;
  }
}

/* ============================= */
/* 📱 iPad (landscape & portrait) */
/* ============================= */
@media (min-width: 481px) and (max-width: 1024px) {
  body, html {
    overflow-x: hidden;
  }

  .navbar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
  }

  .logo-img {
    height: 70px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    width: 100%;
  }

  .about-row {
    flex-direction: column;
    font-size: 2.4rem;
    gap: 1.2rem;
  }

  .about-text {
    font-size: 1.1rem;
    padding: 30px;
    margin: 30px;
  }

  .carousel-track {
    height: 300px;
  }

  .clusters-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .resource-title {
    font-size: 1.1rem;
    padding: 16px 28px;
  }
}

/* ============================= */
/* 💻 Small laptops / tablets landscape */
/* ============================= */
@media (min-width: 1025px) and (max-width: 1366px) {
  body, html {
    overflow-x: hidden;
  }

  .about-row {
    font-size: 3rem;
  }

  .carousel-track {
    height: 400px;
  }

  .clusters-grid {
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  }
}
