/* ==========================================================================
   RYD Studio - Master Stylesheet
   Theme: Strictly WHITE, BLACK & YELLOW (No Red)
   Tagline: Musician-Born. Musician-Built.
   ========================================================================== */

/* --- CSS Variables & Theme Tokens --- */
:root {
  /* Radiant Electric Gold / Yellow */
  --color-yellow: #ffc700;
  --color-yellow-hover: #e5b200;
  --color-yellow-light: #ffdc4d;
  --color-yellow-glow: rgba(255, 199, 0, 0.4);
  --color-yellow-subtle: rgba(255, 199, 0, 0.1);
  
  /* Deep Premium Obsidian & Jet Blacks */
  --color-black: #080808;
  --color-black-pure: #000000;
  --color-black-card: #121212;
  --color-black-elevated: #1a1a1a;
  --color-border-dark: #262626;
  
  /* Crisp Whites & Grays */
  --color-white: #ffffff;
  --color-off-white: #f8f9fa;
  --color-border-light: #e5e5e5;
  --color-text-main: #1f1f1f;
  --color-text-muted: #666666;
  --color-text-light: #b0b0b0;
  
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  
  --container-max-width: 1240px;
  --container-padding: 20px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.3);
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-main);
  background-color: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

button, input {
  font-family: inherit;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.text-yellow {
  color: var(--color-yellow) !important;
}

.text-white {
  color: var(--color-white) !important;
}

.text-muted {
  color: var(--color-text-muted);
}

/* ==========================================================================
   1. TOP ANNOUNCEMENT BAR (MARQUEE)
   ========================================================================== */
.top-marquee-bar {
  background: #000000;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 9px 0;
  border-bottom: 2px solid var(--color-yellow);
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  animation: marqueeScroll 28s linear infinite;
  padding-left: 100%;
}

.marquee-content span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

@keyframes marqueeScroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

/* ==========================================================================
   2. HEADER & NAVIGATION (WITH SMOOTH ANIMATIONS)
   ========================================================================== */
.site-header {
  background-color: var(--color-black-pure);
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid var(--color-border-dark);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Sticky Header Animation (ONLY MENU APPEARS, NO LOGO) --- */
.site-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  box-shadow: none;
  border-bottom: none;
  animation: headerSlideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  z-index: 1000;
}

@keyframes headerSlideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Hide entire main bar (logo and widgets) when sticky */
.site-header.is-sticky .header-main-bar {
  display: none !important;
}

/* Make nav bar sticky with glassmorphism and yellow accent line */
.site-header.is-sticky .header-nav-bar {
  background: rgba(6, 6, 6, 0.96) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: none;
  border-bottom: 2px solid var(--color-yellow);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  padding: 2px 0;
}

.site-header.is-sticky .nav-menu .menu-item > a {
  padding: 14px 14px;
}

.header-main-bar {
  padding: 16px 0;
  transition: padding 0.3s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Link with Logo and Text */
.brand-link {
  display: flex;
  align-items: center;
  gap: 16px;
}

.main-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 10px rgba(255, 199, 0, 0.25));
}

.brand-link:hover .main-logo {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 15px rgba(255, 199, 0, 0.5));
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 1px;
  line-height: 1.1;
  transition: var(--transition);
}

.brand-motto {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

/* Header Info Badges */
.header-info-widgets {
  display: flex;
  align-items: center;
  gap: 30px;
  transition: all 0.3s ease;
}

.info-widget {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
  transition: var(--transition);
}

.info-widget:hover {
  transform: translateY(-3px);
}

.info-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.icon-yellow {
  border: 1px solid rgba(255, 199, 0, 0.4);
  color: var(--color-yellow);
  background-color: var(--color-yellow-subtle);
}

.info-widget:hover .icon-yellow {
  background-color: var(--color-yellow);
  color: var(--color-black-pure);
  box-shadow: 0 0 15px var(--color-yellow-glow);
  transform: scale(1.08) rotate(5deg);
}

.info-text {
  display: flex;
  flex-direction: column;
}

.info-title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-yellow);
  line-height: 1.2;
}

.info-desc {
  font-size: 0.8rem;
  color: #dddddd;
  line-height: 1.3;
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 199, 0, 0.3);
  color: var(--color-yellow);
  font-size: 1.4rem;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  background-color: var(--color-yellow);
  color: var(--color-black-pure);
  border-color: var(--color-yellow);
}

/* Nav Bar */
.header-nav-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background-color: #0c0c0c;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Social links in nav */
.header-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.header-social-links a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  color: #cccccc;
  background-color: #1a1a1a;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.header-social-links a:hover {
  transform: translateY(-3px) scale(1.1);
}

.header-social-links a.social-instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #ffffff;
}

.header-social-links a.social-whatsapp:hover {
  background-color: #25d366;
  color: #ffffff;
}

.header-social-links a.social-phone:hover {
  background-color: var(--color-yellow);
  color: var(--color-black-pure);
}

.header-social-links a.social-map:hover {
  background-color: var(--color-white);
  color: var(--color-black-pure);
}

/* Main nav links with animated sliding underline */
.main-navigation .nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu .menu-item {
  position: relative;
}

.nav-menu .menu-item > a {
  display: inline-block;
  padding: 16px 14px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-white);
  transition: color 0.3s ease, padding 0.3s ease;
  position: relative;
}

/* Sliding Underline Animation */
.nav-menu .menu-item > a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 14px;
  right: 14px;
  height: 2px;
  background-color: var(--color-yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-menu .menu-item.active > a::after,
.nav-menu .menu-item:hover > a::after {
  transform: scaleX(1);
}

.nav-menu .menu-item.active > a,
.nav-menu .menu-item:hover > a {
  color: var(--color-yellow);
}

.nav-arrow {
  font-size: 0.65rem;
  margin-left: 4px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.has-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
  color: var(--color-yellow);
}

/* Nav CTA Button */
.nav-cta-btn {
  background-color: var(--color-yellow) !important;
  color: var(--color-black-pure) !important;
  padding: 8px 18px !important;
  border-radius: 4px;
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
  transition: all 0.3s ease !important;
}

.nav-cta-btn::after {
  display: none !important;
}

.nav-cta-btn:hover {
  background-color: var(--color-white) !important;
  color: var(--color-black-pure) !important;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* Dropdown Menu Animation */
.has-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 320px;
  background-color: var(--color-black-card);
  border-top: 3px solid var(--color-yellow);
  box-shadow: 0 15px 35px rgba(0,0,0,0.7);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: #dddddd;
  transition: all 0.25s ease;
  position: relative;
}

.dropdown-menu a:hover {
  background-color: #1a1a1a;
  color: var(--color-yellow);
  padding-left: 28px;
}

/* ==========================================================================
   3. HERO SECTION (YELLOW, WHITE & BLACK)
   ========================================================================== */
.hero-section {
  position: relative;
  background-color: var(--color-black-pure);
  background-image: url('assets/images/newww.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  min-height: 660px;
  display: flex;
  align-items: center;
  padding: 90px 0 160px;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.96) 0%, rgba(8, 8, 8, 0.78) 45%, rgba(8, 8, 8, 0.25) 100%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-yellow-subtle);
  border: 1px solid rgba(255, 199, 0, 0.35);
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-yellow);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-yellow);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.hero-superheadline {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-yellow);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-title-primary {
  font-family: var(--font-heading);
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1.02;
  color: var(--color-yellow);
  letter-spacing: -1px;
  text-transform: uppercase;
  text-shadow: 0 4px 25px rgba(255, 199, 0, 0.3);
}

.hero-title-secondary {
  font-family: var(--font-heading);
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1.02;
  color: var(--color-white);
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-subtext {
  font-size: 1.05rem;
  color: #dddddd;
  line-height: 1.6;
  margin-bottom: 34px;
  max-width: 580px;
}

.hero-action {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-apply-now {
  display: inline-block;
  padding: 15px 42px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-black-pure);
  background-color: var(--color-yellow);
  border: 2px solid var(--color-yellow);
  border-radius: 50px;
  box-shadow: 0 6px 20px var(--color-yellow-glow);
  transition: var(--transition);
}

.btn-apply-now:hover {
  transform: translateY(-3px);
  background-color: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-black-pure);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.35);
}

.btn-instagram-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-white);
  background-color: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  transition: var(--transition);
}

.btn-instagram-hero:hover {
  background-color: var(--color-yellow);
  color: var(--color-black-pure);
  border-color: var(--color-yellow);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--color-yellow-glow);
}

/* ==========================================================================
   4. FEATURED 4 COURSE CARDS GRID (BLACK, WHITE & YELLOW)
   ========================================================================== */
.course-cards-section {
  position: relative;
  z-index: 10;
  margin-top: -95px;
  margin-bottom: 60px;
}

.course-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: var(--shadow-lg);
  border-radius: 6px;
  overflow: hidden;
}

.course-card {
  position: relative;
  padding: 38px 28px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition);
}

/* Card 1 & 3 Background Images */
.card-bg-image {
  background-size: cover;
  background-position: center;
  color: var(--color-white);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.86);
  transition: var(--transition);
}

.card-bg-image:hover .card-overlay {
  background: rgba(10, 10, 10, 0.74);
}

/* Card 2 & 4 Dark Obsidian */
.card-bg-dark {
  background-color: var(--color-black-card);
  color: var(--color-white);
  border-left: 1px solid var(--color-border-dark);
  border-right: 1px solid var(--color-border-dark);
}

.card-bg-dark:hover {
  background-color: #181818;
}

/* Accent Tabs */
.card-accent-tab {
  position: absolute;
  left: 0;
  top: 34px;
  width: 10px;
  height: 42px;
  border-radius: 0 4px 4px 0;
  z-index: 5;
}

.tab-yellow {
  background-color: var(--color-yellow);
  box-shadow: 2px 0 10px var(--color-yellow-glow);
}

.tab-white {
  background-color: var(--color-white);
  box-shadow: 2px 0 10px rgba(255, 255, 255, 0.3);
}

.course-card-inner {
  position: relative;
  z-index: 2;
}

.card-category {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-white);
  margin-bottom: 14px;
}

.card-desc {
  font-size: 0.84rem;
  line-height: 1.55;
  margin-bottom: 22px;
  color: #b5b5b5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

.card-btn.btn-yellow {
  color: var(--color-yellow);
}

.card-btn.btn-yellow:hover {
  color: #ffffff;
  gap: 12px;
}

.card-btn.btn-white {
  color: var(--color-white);
}

.card-btn.btn-white:hover {
  color: var(--color-yellow);
  gap: 12px;
}

/* ==========================================================================
   5. ABOUT US SECTION (RYD STUDIO BRANDING)
   ========================================================================== */
.about-section {
  padding: 70px 0 90px;
  background-color: var(--color-white);
}

.about-wrapper {
  display: flex;
  align-items: center;
  gap: 70px;
}

.about-logo-col {
  flex: 0 0 38%;
  display: flex;
  justify-content: center;
}

.about-logo-card {
  position: relative;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid #eeeeee;
  text-align: center;
}

.about-logo-img {
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
  object-fit: contain;
}

.logo-card-badge {
  margin-top: 15px;
}

.badge-tag {
  display: inline-block;
  background-color: var(--color-black-pure);
  color: var(--color-yellow);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 20px;
}

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

.section-tagline {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-heading-brand {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--color-black-pure);
  line-height: 1.1;
  margin-bottom: 12px;
}

.motto-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-yellow-subtle);
  border-left: 3px solid var(--color-yellow);
  padding: 8px 16px;
  border-radius: 0 4px 4px 0;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--color-black-pure);
  margin-bottom: 22px;
}

.about-paragraphs p {
  font-size: 0.96rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 16px;
}

/* Stats Grid */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border-light);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* ==========================================================================
   6. TESTIMONIALS SLIDER & SHOWCASE BLOG SECTION
   ========================================================================== */
.showcase-section {
  padding: 50px 0 90px;
  background-color: var(--color-off-white);
}

.showcase-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.showcase-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Left Slider Column */
.slider-column {
  flex: 0 0 35%;
  position: relative;
  padding: 20px 30px 20px 60px;
}

.slider-decor-quote {
  position: absolute;
  left: 10px;
  top: 15px;
  font-size: 2.2rem;
  opacity: 0.8;
}

.testimonial-slider-container {
  position: relative;
}

.testimonial-slider-track {
  position: relative;
  min-height: 190px;
}

.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

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

.slide-quote .quote-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  font-style: italic;
  color: var(--color-black-pure);
  margin-bottom: 14px;
  line-height: 1.35;
}

.slide-quote .quote-desc {
  font-size: 1rem;
  font-style: italic;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 22px;
}

.slide-quote .quote-enroll {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--color-black-pure);
  transition: var(--transition);
}

.slide-quote .quote-enroll:hover {
  color: var(--color-yellow-hover);
  gap: 14px;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  gap: 8px;
  margin-top: 25px;
}

.slider-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #cccccc;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active {
  background-color: var(--color-yellow);
  width: 22px;
  border-radius: 10px;
}

/* Right Blog Grid Column */
.blog-grid-column {
  flex: 1;
}

.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  box-shadow: var(--shadow-md);
  border-radius: 6px;
  overflow: hidden;
}

.blog-card {
  position: relative;
  background-color: var(--color-black-pure);
  height: 350px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  transition: var(--transition);
}

.blog-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.65);
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.08);
  filter: brightness(0.55);
}

.blog-accent-badge {
  position: absolute;
  left: 0;
  bottom: 24px;
  width: 8px;
  height: 52px;
  border-radius: 0 4px 4px 0;
  z-index: 3;
}

.badge-yellow {
  background-color: var(--color-yellow);
  box-shadow: 2px 0 10px var(--color-yellow-glow);
}

.badge-white {
  background-color: var(--color-white);
  box-shadow: 2px 0 10px rgba(255, 255, 255, 0.3);
}

.blog-content {
  position: relative;
  z-index: 2;
  padding-left: 10px;
}

.blog-author {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #eeeeee;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-white);
  text-transform: uppercase;
}

.blog-title a {
  color: var(--color-white);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-title a:hover {
  color: var(--color-yellow);
}

/* ==========================================================================
   7. VISIT US TODAY SECTION (100% RELIABLE DUAL GOOGLE MAPS)
   ========================================================================== */
.visit-section {
  padding: 80px 0 0;
  background-color: var(--color-white);
}

.visit-container {
  display: flex;
  align-items: stretch;
}

/* Left Contact Details */
.visit-info-col {
  flex: 0 0 48%;
  padding: 20px 50px 60px calc((100vw - 1240px) / 2 + 20px);
}

.visit-heading {
  font-family: var(--font-heading);
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-black-pure);
  margin-bottom: 12px;
}

.visit-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 35px;
}

.contact-quad-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
  margin-bottom: 30px;
}

.contact-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.icon-bg-yellow {
  background-color: var(--color-yellow-subtle);
  color: var(--color-yellow-hover);
  border: 1px solid rgba(255, 199, 0, 0.35);
}

.icon-bg-dark {
  background-color: #1a1a1a;
  color: var(--color-white);
  border: 1px solid #333333;
}

.contact-box-content h4 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--color-black-pure);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.contact-box-content p {
  font-size: 0.84rem;
  line-height: 1.55;
  color: #444444;
}

.plus-code-badge {
  display: inline-block;
  background-color: var(--color-black-pure);
  color: var(--color-white);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  margin-top: 8px;
}

.phone-link, .instagram-link {
  color: var(--color-black-pure);
  font-weight: 600;
}

.phone-link:hover {
  color: var(--color-yellow-hover);
}

.instagram-link:hover {
  color: #e1306c;
}

.map-action-row {
  margin-top: 15px;
}

.btn-gmaps {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-black-pure);
  color: var(--color-yellow);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 4px;
  border: 1px solid var(--color-yellow);
  transition: var(--transition);
}

.btn-gmaps:hover {
  background-color: var(--color-yellow);
  color: var(--color-black-pure);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--color-yellow-glow);
}

/* Right Interactive Map Wrapper */
.visit-map-col {
  flex: 1;
  position: relative;
  min-height: 520px;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.gmaps-embed-frame {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: none;
  filter: contrast(105%);
}

.map-floating-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--color-white);
  padding: 14px 18px;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 10;
  border-left: 4px solid var(--color-yellow);
}

.card-logo-mini img {
  height: 38px;
  width: auto;
}

.card-details {
  display: flex;
  flex-direction: column;
}

.card-details strong {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--color-black-pure);
}

.card-details span {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.card-details a {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-black-pure);
  margin-top: 2px;
}

.card-details a:hover {
  color: var(--color-yellow-hover);
}

/* ==========================================================================
   8. FOOTER SECTION (WHITE, BLACK & YELLOW)
   ========================================================================== */
.site-footer {
  position: relative;
  background-color: var(--color-black-pure);
  background-image: url('assets/images/footer_background-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-white);
  padding: 80px 0 30px;
  border-top: 3px solid var(--color-yellow);
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 8, 8, 0.92);
  pointer-events: none;
}

.footer-container {
  position: relative;
  z-index: 2;
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 1.2fr 1.3fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col-logo .footer-logo {
  max-width: 160px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 12px;
}

.footer-brand-tagline {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.footer-social-strip {
  display: flex;
  gap: 12px;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #222222;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-social-icon:hover {
  background-color: var(--color-yellow);
  color: var(--color-black-pure);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 22px;
}

/* Contact List */
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.84rem;
  color: #c0c0c0;
  margin-bottom: 14px;
  line-height: 1.5;
}

.footer-contact-list i {
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: #ffffff;
}

.footer-contact-list a:hover {
  color: var(--color-yellow);
}

/* Academics List */
.footer-nav-list li {
  margin-bottom: 12px;
}

.footer-nav-list a {
  font-size: 0.85rem;
  color: #c0c0c0;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.list-arrow {
  font-size: 0.65rem;
  color: var(--color-yellow);
}

.footer-nav-list a:hover {
  color: var(--color-yellow);
  transform: translateX(4px);
}

/* Newsletter Form */
.newsletter-subtext {
  font-size: 0.82rem;
  color: #999999;
  margin-bottom: 18px;
  line-height: 1.5;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-input-group input {
  width: 100%;
  background-color: #1f1f1f;
  border: 1px solid #333333;
  color: var(--color-white);
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-input-group input:focus {
  border-color: var(--color-yellow);
  background-color: #262626;
}

.btn-subscribe {
  width: 100%;
  background-color: var(--color-yellow);
  color: var(--color-black-pure);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  padding: 13px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-subscribe:hover {
  background-color: var(--color-white);
  color: var(--color-black-pure);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #777777;
}

.footer-bottom-bar strong {
  color: #bbbbbb;
}

/* ==========================================================================
   9. FLOATING CHAT WIDGET
   ========================================================================== */
.floating-chat-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 58px;
  height: 58px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  z-index: 9999;
  transition: var(--transition);
  animation: pulseChat 2.5s infinite;
}

.floating-chat-widget:hover {
  transform: scale(1.1);
  background-color: #1ebe5d;
}

.floating-chat-widget .chat-icon {
  color: var(--color-white);
  font-size: 1.8rem;
}

.chat-tooltip {
  position: absolute;
  right: 70px;
  background-color: var(--color-black-pure);
  color: var(--color-yellow);
  padding: 6px 12px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  border: 1px solid var(--color-yellow);
}

.floating-chat-widget:hover .chat-tooltip {
  opacity: 1;
  transform: translateX(-5px);
}

@keyframes pulseChat {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   10. RESPONSIVE DESIGN (TABLETS & MOBILE)
   ========================================================================== */
@media (max-width: 1100px) {
  .hero-title-primary,
  .hero-title-secondary {
    font-size: 3.6rem;
  }
  
  .course-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .showcase-row {
    flex-direction: column;
  }
  
  .slider-column {
    flex: 1;
    width: 100%;
    padding: 10px 20px 20px 40px;
  }
  
  .blog-grid-column {
    width: 100%;
  }

  .visit-container {
    flex-direction: column;
  }

  .visit-info-col {
    flex: 1;
    padding: 40px 20px;
  }

  .visit-map-col {
    min-height: 420px;
  }

  .footer-columns-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .header-info-widgets {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-nav-bar {
    display: none;
  }

  .header-nav-bar.mobile-open {
    display: block;
  }

  .nav-container {
    flex-direction: column;
    align-items: stretch;
    padding: 10px 20px;
  }

  .main-navigation .nav-menu {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .nav-menu .menu-item > a {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .has-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: #151515;
    padding-left: 15px;
    border-top: none;
    border-left: 2px solid var(--color-yellow);
  }

  .about-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .about-logo-col {
    flex: auto;
  }

  .motto-strip {
    border-radius: 4px;
    border-left: none;
    border-top: 3px solid var(--color-yellow);
  }

  .course-cards-section {
    margin-top: -40px;
  }

  .hero-section {
    min-height: 520px;
    padding: 70px 0 100px;
  }

  .hero-title-primary,
  .hero-title-secondary {
    font-size: 2.8rem;
  }
}

@media (max-width: 600px) {
  .hero-title-primary,
  .hero-title-secondary {
    font-size: 2.2rem;
  }

  .course-cards-grid {
    grid-template-columns: 1fr;
  }

  .blog-cards-grid {
    grid-template-columns: 1fr;
  }

  .contact-quad-grid {
    grid-template-columns: 1fr;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

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

  .footer-bottom-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .section-heading-brand {
    font-size: 2.4rem;
  }

  .visit-heading {
    font-size: 2.2rem;
  }
}

/* ==========================================================================
   11. DEDICATED ABOUT US PAGE STYLES (MATCHING SCREENSHOT)
   ========================================================================== */
/* About Hero */
.about-hero-section {
  position: relative;
  background-color: var(--color-black-pure);
  background-image: url('assets/images/inner_01.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 380px;
  display: flex;
  align-items: center;
  padding: 80px 0 90px;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.94) 0%, rgba(8, 8, 8, 0.75) 50%, rgba(8, 8, 8, 0.3) 100%);
  pointer-events: none;
}

.about-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.about-hero-text {
  max-width: 650px;
}

.about-hero-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.about-hero-subtitle {
  font-size: 1.05rem;
  color: #dddddd;
  line-height: 1.65;
}

/* About Detail Section */
.about-detail-section {
  padding: 90px 0 80px;
  background-color: var(--color-white);
}

.about-detail-grid {
  display: flex;
  align-items: center;
  gap: 70px;
}

.about-detail-logo {
  flex: 0 0 38%;
  display: flex;
  justify-content: center;
}

.about-emblem-img {
  max-width: 320px;
  width: 100%;
  object-fit: contain;
}

.about-detail-content {
  flex: 1;
}

.section-title-large {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-black-pure);
  margin-bottom: 22px;
}

.about-detail-paragraphs p {
  font-size: 0.96rem;
  line-height: 1.85;
  color: #4a4a4a;
  margin-bottom: 18px;
}

.about-detail-btn-wrap {
  margin-top: 28px;
}

.btn-contact-about {
  display: inline-block;
  padding: 13px 36px;
  background-color: var(--color-yellow);
  color: var(--color-black-pure);
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  border-radius: 50px;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 15px var(--color-yellow-glow);
}

.btn-contact-about:hover {
  background-color: var(--color-black-pure);
  color: var(--color-yellow);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Why RYD Studio Section */
.why-us-section {
  padding: 90px 0;
  background-color: #fafafa;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.why-us-heading {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  text-align: center;
  color: var(--color-black-pure);
  margin-bottom: 60px;
}

.why-us-layout {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  grid-template-rows: auto auto auto;
  gap: 30px 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.why-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--color-white);
  padding: 24px 22px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #eeeeee;
  transition: var(--transition);
}

.why-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 199, 0, 0.4);
}

.why-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-black-pure);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.why-feature-card:hover .why-icon-box {
  background-color: var(--color-yellow);
}

.why-feature-card:hover .why-icon-box i {
  color: var(--color-black-pure) !important;
}

.why-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-black-pure) !important;
}

.why-desc {
  font-size: 0.85rem;
  line-height: 1.55;
  color: #666666;
}

/* Placement in 3-column grid */
.feature-top-left {
  grid-column: 1;
  grid-row: 1;
}

.feature-top-right {
  grid-column: 3;
  grid-row: 1;
}

.why-center-emblem {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.emblem-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 4px solid var(--color-yellow);
  box-shadow: 0 10px 35px var(--color-yellow-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.emblem-circle img {
  max-width: 140px;
  max-height: 140px;
  object-fit: contain;
}

.feature-mid-left {
  grid-column: 1;
  grid-row: 2;
}

.feature-mid-right {
  grid-column: 3;
  grid-row: 2;
}

.feature-bottom-center {
  grid-column: 1 / span 3;
  max-width: 500px;
  margin: 10px auto 0;
}

/* Faculty Section */
.faculty-section {
  padding: 90px 0 100px;
  background-color: var(--color-white);
}

.faculty-heading-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 60px;
}

.faculty-accent-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--color-yellow);
  box-shadow: 0 0 15px var(--color-yellow);
}

.faculty-heading {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-black-pure);
}

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  text-align: center;
}

.faculty-card {
  padding: 10px;
  transition: var(--transition);
}

.faculty-photo-frame {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  border: 4px solid var(--color-yellow);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.faculty-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.faculty-card:hover .faculty-photo-frame {
  transform: scale(1.06);
  border-color: var(--color-black-pure);
  box-shadow: 0 10px 30px var(--color-yellow-glow);
}

.faculty-card:hover .faculty-photo-frame img {
  transform: scale(1.1);
}

.faculty-role {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #777777;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.faculty-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-black-pure);
  line-height: 1.3;
}

/* Get In Touch Banner */
.get-in-touch-banner {
  background-color: var(--color-black-pure);
  border-top: 3px solid var(--color-yellow);
  border-bottom: 3px solid var(--color-yellow);
  padding: 35px 0;
}

.git-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.git-heading {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-white);
}

.btn-git-contact {
  display: inline-block;
  padding: 13px 40px;
  background-color: var(--color-yellow);
  color: var(--color-black-pure);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  border-radius: 50px;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 15px var(--color-yellow-glow);
}

.btn-git-contact:hover {
  background-color: var(--color-white);
  color: var(--color-black-pure);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
}

/* Responsive adjustments for about page */
@media (max-width: 1024px) {
  .faculty-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .why-us-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .why-center-emblem {
    grid-column: 1;
    grid-row: auto;
    margin: 20px 0;
  }

  .feature-top-left, .feature-top-right, .feature-mid-left, .feature-mid-right, .feature-bottom-center {
    grid-column: 1;
    grid-row: auto;
    max-width: 100%;
  }

  .about-detail-grid {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .faculty-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .git-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .about-hero-title {
    font-size: 2.8rem;
  }

  .why-us-heading {
    font-size: 2.4rem;
  }

  .faculty-heading {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .faculty-grid {
    grid-template-columns: 1fr;
  }
}
