/* ============================================= */
/* 🎨 BLUE, ORANGE, AMBER & MAGENTA THEME      */
/* ABOUT MJEC PAGE - MOBILE FIRST               */
/* ============================================= */

:root {
  --blue: #2196F3;
  --blue-light: #BBDEFB;
  --blue-dark: #1565C0;
  
  --orange: #FF9800;
  --orange-light: #FFE0B2;
  --orange-dark: #EF6C00;
  
  --amber: #FFC107;
  --amber-light: #FFECB3;
  --amber-dark: #FF8F00;
  
  --magenta: #E91E63;
  --magenta-light: #F8BBD0;
  --magenta-dark: #C2185B;
  
  --gradient-main: linear-gradient(135deg, var(--blue), var(--magenta), var(--amber), var(--orange));
  --gradient-animated: linear-gradient(270deg, var(--blue), var(--magenta), var(--amber), var(--orange), var(--blue));
  
  --white: #ffffff;
  --bg: #FAFBFC;
  --muted: #F5F7FA;
  --card: #ffffff;
  
  --text: #1A237E;
  --text-light: #5C6BC0;
  
  --shadow: 0 4px 20px rgba(33, 150, 243, 0.15);
  --radius: 16px;
}


/* ============================================= */
/* ANIMATIONS */
/* ============================================= */
@keyframes gradientSlide {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes borderColorSlide {
  0% { border-color: var(--blue); }
  25% { border-color: var(--magenta); }
  50% { border-color: var(--amber); }
  75% { border-color: var(--orange); }
  100% { border-color: var(--blue); }
}

@keyframes textColorSlide {
  0% { color: var(--blue); }
  25% { color: var(--magenta); }
  50% { color: var(--amber-dark); }
  75% { color: var(--orange); }
  100% { color: var(--blue); }
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes splashPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes splashBounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
  40% { transform: scale(1.2); opacity: 1; }
}

@keyframes splashFade {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

@keyframes logoSpin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}


/* ============================================= */
/* RESET & BASE */
/* ============================================= */
* { 
  box-sizing: border-box; 
  -webkit-tap-highlight-color: transparent;
}

html { 
  scroll-behavior: smooth; 
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  font-size: 14px;
  line-height: 1.6;
  padding-bottom: 70px;
}

img { 
  max-width: 100%; 
  display: block; 
}

a { 
  color: inherit; 
  text-decoration: none; 
}


/* ============================================= */
/* SPLASH SCREEN */
/* ============================================= */
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, var(--blue), var(--magenta), var(--amber), var(--orange), var(--blue));
  background-size: 400% 400%;
  animation: gradientSlide 4s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.splash-content {
  text-align: center;
  padding: 20px;
}

.splash-logo {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  margin: 0 auto 20px;
  border: 4px solid white;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  animation: splashPulse 1.5s ease-in-out infinite;
  background: white;
}

.splash-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.splash-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.95);
  margin: 0 0 30px;
}

.splash-loader {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.loader-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  animation: splashBounce 1.4s ease-in-out infinite;
}

.loader-dot:nth-child(1) { 
  background: var(--blue-light);
  animation-delay: 0s; 
}
.loader-dot:nth-child(2) { 
  background: var(--magenta-light);
  animation-delay: 0.2s; 
}
.loader-dot:nth-child(3) { 
  background: var(--amber-light);
  animation-delay: 0.4s; 
}

.splash-text {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  margin: 0;
  animation: splashFade 1s ease-in-out infinite alternate;
}


/* ============================================= */
/* TOP HEADER */
/* ============================================= */
.topbar {
  background: linear-gradient(135deg, #ffffff 0%, #FFFEF5 100%);
  padding: 14px 16px;
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, var(--blue), var(--magenta), var(--amber), var(--orange)) 1;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 20px rgba(233, 30, 99, 0.15);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-container {
  position: relative;
  flex-shrink: 0;
}

.brand img.logo {
  width: 65px;
  height: 65px;
  object-fit: contain;
  border-radius: 14px;
  border: 3px solid;
  animation: borderColorSlide 4s ease infinite;
  background: white;
  padding: 4px;
  position: relative;
  z-index: 2;
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: conic-gradient(var(--blue), var(--magenta), var(--amber), var(--orange), var(--blue));
  border-radius: 50%;
  z-index: 1;
  animation: logoSpin 4s linear infinite;
  opacity: 0.5;
  filter: blur(10px);
}

.brand .name {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand .name h1 {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.3px;
}

.brand .name .location {
  font-size: 11px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

.brand .name .location i {
  color: var(--magenta);
  font-size: 10px;
  animation: iconBounce 2s ease infinite;
}

.brand .name .tagline {
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
  animation: textColorSlide 4s ease infinite;
}

.brand .name .tagline i {
  font-size: 8px;
  color: var(--amber);
  animation: iconBounce 1.5s ease infinite;
}


/* ============================================= */
/* NAVIGATION BAR - Warm Animated Gradient      */
/* ============================================= */
.navbar {
  background: linear-gradient(270deg, var(--blue), var(--amber), var(--orange), var(--amber), var(--blue));
  background-size: 400% 400%;
  animation: gradientSlide 6s ease infinite;
  padding: 0;
  position: sticky;
  top: 74px;
  z-index: 999;
}

.nav-inner {
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.nav-toggle {
  width: auto;
  background: transparent;
  color: #ffffff;
  border: none;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.nav-toggle i { 
  font-size: 18px;
}

/* ============================================= */
/* SIDE MENU - Opens from Right Side            */
/* ============================================= */
.side-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;

  max-height: calc(100vh - 60px);

  background: linear-gradient(180deg, var(--blue), var(--magenta), var(--orange));
  background-size: 100% 200%;
  animation: gradientSlide 6s ease infinite;
  z-index: 1001;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -5px 0 30px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
}

.side-menu.open {
  right: 0;
}

.side-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.side-menu-header span {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.close-btn {
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.close-btn:active {
  background: rgba(255,255,255,0.3);
  transform: scale(0.95);
}

.side-menu-content {
  flex: 1;
  padding: 15px 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.side-menu-content a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 24px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s ease;
  text-decoration: none;
}

.side-menu-content a:active {
  background: rgba(255,255,255,0.15);
  padding-left: 30px;
}

.side-menu-content a i {
  width: 24px;
  font-size: 16px;
  text-align: center;
}

/* Login Button Style */
.side-menu-content .login-btn {
  margin: 20px;
  justify-content: center;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 25px;
  padding: 14px 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.side-menu-content .login-btn:active {
  background: rgba(255,255,255,0.35);
  padding-left: 24px;
}

/* ============================================= */
/* OVERLAY                                       */
/* ============================================= */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* ============================================= */
/* ANIMATION FOR MENU ITEMS                     */
/* ============================================= */
.side-menu-content a {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.3s ease;
}

.side-menu.open .side-menu-content a {
  opacity: 1;
  transform: translateX(0);
}

.side-menu.open .side-menu-content a:nth-child(1) { transition-delay: 0.05s; }
.side-menu.open .side-menu-content a:nth-child(2) { transition-delay: 0.1s; }
.side-menu.open .side-menu-content a:nth-child(3) { transition-delay: 0.15s; }
.side-menu.open .side-menu-content a:nth-child(4) { transition-delay: 0.2s; }
.side-menu.open .side-menu-content a:nth-child(5) { transition-delay: 0.25s; }
.side-menu.open .side-menu-content a:nth-child(6) { transition-delay: 0.3s; }


/* ============================================= */
/* HERO SECTION (ABOUT) + VIDEO BACKGROUND       */
/* ============================================= */
.hero-about {
  position: relative;
  width: 100vw;
  height: 280px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-about .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, 
    transparent 0%, 
    rgba(0, 0, 0, 0.3) 30%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-about {
  position: relative;
  display: flex;
  align-items: flex-end;
}

.hero-about .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 20px;
  width: 100%;
}

.hero-about h2 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-about p {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}


/* ============================================= */
/* SECTIONS */
/* ============================================= */
section {
  padding: 32px 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.section-title-center {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
  text-align: center;
}

.section-sub-center {
  color: var(--text-light);
  margin: 0 0 24px;
  font-size: 13px;
  text-align: center;
}


/* ============================================= */
/* ABOUT SECTION */
/* ============================================= */
.about-section {
  background: transparent;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
}

.about-content p {
  margin-bottom: 16px;
}

.highlight {
  color: var(--blue-dark);
  font-weight: 600;
}


/* ============================================= */
/* STATS SECTION */
/* ============================================= */
.stats-section {
  background: linear-gradient(180deg, var(--magenta-light) 0%, var(--amber-light) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.stat-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  box-shadow: var(--shadow);
  border-bottom: 3px solid;
  transition: transform 0.2s ease;
}

.stat-box:nth-child(1) {
  border-color: var(--blue);
}
.stat-box:nth-child(2) {
  border-color: var(--magenta);
}
.stat-box:nth-child(3) {
  border-color: var(--amber);
}
.stat-box:nth-child(4) {
  border-color: var(--orange);
}

.stat-box:active {
  transform: scale(0.95);
}

.stat-icon {
  font-size: 32px;
  margin-bottom: 10px;
  display: block;
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
  display: block;
}

.stat-label {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}


/* ============================================= */
/* VISION & MISSION */
/* ============================================= */
.vision-mission {
  background: linear-gradient(180deg, var(--orange-light) 0%, #ffffff 100%);
}

.vm-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vm-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  border-left: 4px solid;
  animation: borderColorSlide 6s ease infinite;
}

.vm-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(270deg, var(--blue), var(--magenta), var(--amber), var(--orange));
  background-size: 300% 300%;
  animation: gradientSlide 4s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin-bottom: 16px;
}

.vm-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 12px;
}

.vm-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}


/* ============================================= */
/* TIMELINE */
/* ============================================= */
.timeline-section {
  background: linear-gradient(180deg, var(--blue-light) 0%, #ffffff 100%);
}

.timeline {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--magenta), var(--amber), var(--orange));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-content {
  background: white;
  padding: 16px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.timeline-dot {
  position: absolute;
  left: -24px;
  top: 20px;
  width: 16px;
  height: 16px;
  background: var(--magenta);
  border-radius: 50%;
  border: 3px solid white;
  z-index: 1;
}

.timeline-year {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 6px;
}

.timeline-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.timeline-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}


/* ============================================= */
/* WHY CHOOSE US */
/* ============================================= */
.why-choose {
  background: linear-gradient(180deg, var(--magenta-light) 0%, #ffffff 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.feature-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.feature-box:active {
  transform: scale(0.95);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(270deg, var(--blue), var(--magenta), var(--amber), var(--orange));
  background-size: 300% 300%;
  animation: gradientSlide 4s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin: 0 auto 12px;
}

.feature-box h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px;
}

.feature-box p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}


/* ============================================= */
/* TESTIMONIALS                                 */
/* ============================================= */
.testimonials-section {
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--magenta-light) 50%, #ffffff 100%);
  color: var(--text);
}

.testimonials-section .section-title-center {
  color: var(--text);
}

.testimonials-section .section-sub-center {
  color: var(--text-light);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 28px 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.9));
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(33, 150, 243, 0.18);
  border: 1px solid rgba(33, 150, 243, 0.2);
}

.testimonial-text {
  font-size: 15px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 18px;
  color: var(--text-light);
}

.testimonial-author {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--text);
}

.testimonial-role {
  font-size: 13px;
  color: var(--magenta-dark);
}


/* ============================================= */
/* CONTACT SECTION */
/* ============================================= */
#contact {
  background: linear-gradient(180deg, var(--amber-light) 0%, #ffffff 100%);
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--text);
  text-align: center;
}

.info-card {
  background: linear-gradient(135deg, #ffffff, #f5f7ff);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 4px 18px rgba(33, 150, 243, 0.12);
  margin: 0 auto;
  max-width: 500px;
  border-left: 4px solid rgba(33, 150, 243, 0.6);
}

.info-card strong {
  display: block;
  font-size: 15px;
  margin-bottom: 12px;
  color: var(--blue-dark);
}

.info-card p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  font-size: 13px;
  color: var(--text-light);
}

.info-card p i {
  width: 16px;
  color: var(--blue);
}


/* ============================================= */
/* FOOTER */
/* ============================================= */
footer {
  background: linear-gradient(135deg, #1A237E, #0D1442);
  color: #fff;
  padding: 24px 16px;
}

.map {
  margin-bottom: 20px;
}

.map iframe {
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.foot-card {
  background: linear-gradient(270deg, var(--blue), var(--magenta), var(--amber), var(--orange), var(--blue));
  background-size: 400% 400%;
  animation: gradientSlide 6s ease infinite;
  color: #ffffff;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.foot-card strong {
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
}

.foot-card p {
  font-size: 13px;
  margin: 6px 0;
  opacity: 0.95;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.socials a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  color: white;
  transition: transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.socials a:nth-child(1) {
  background: linear-gradient(135deg, #3b5998, #4267B2);
}

.socials a:nth-child(2) {
  background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
}

.socials a:nth-child(3) {
  background: linear-gradient(135deg, #FF0000, #CC0000);
}

.socials a:nth-child(4) {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.socials a:active {
  transform: scale(0.9);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  margin-top: 20px;
}

/* NEW: links in copyright */
.footer-links {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  margin: 0 4px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links .divider {
  color: rgba(255,255,255,0.5);
}

.footer-text {
  line-height: 1.6;
}

.copyright a {
  color: #ffffff;
  text-decoration: none;
}

.copyright a:hover {
  text-decoration: underline;
}


/* ============================================= */
/* QUICK ACTIONS BAR */
/* ============================================= */
.quick-actions {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  box-shadow: 0 -4px 25px rgba(0,0,0,0.1);
  z-index: 1000;
  border-top: 3px solid;
  border-image: linear-gradient(90deg, var(--blue), var(--magenta), var(--amber), var(--orange)) 1;
}

.quick-actions a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: var(--text-light);
  padding: 6px 12px;
}

.quick-actions a i {
  font-size: 22px;
}

.quick-actions a:nth-child(1) i {
  color: var(--blue);
}

.quick-actions a:nth-child(2) i {
  color: var(--magenta);
  animation: iconBounce 2s ease infinite;
}

.quick-actions a:nth-child(3) i {
  color: var(--amber-dark);
}

.quick-actions a:nth-child(4) i {
  color: var(--orange);
}

.quick-actions a:active {
  background: var(--muted);
  border-radius: 8px;
}


/* ============================================= */
/* BACK TO TOP BUTTON */
/* ============================================= */
#backToTop {
  position: fixed;
  right: 16px;
  bottom: 80px;
  z-index: 1000;
  background: linear-gradient(270deg, var(--blue), var(--magenta), var(--amber), var(--orange), var(--blue));
  background-size: 400% 400%;
  animation: gradientSlide 4s ease infinite;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(233, 30, 99, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  font-size: 20px;
}

#backToTop.show {
  opacity: 1;
  pointer-events: all;
}


/* ============================================= */
/* REVEAL ANIMATION */
/* ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================= */
/* 🖥️ DESKTOP / LAPTOP LAYOUT (MIN-WIDTH:1024px) */
/* ============================================= */
@media (min-width: 1024px) {

  /* GLOBAL */
  body {
    font-size: 17px;
    line-height: 1.8;
    padding-bottom: 0; /* desktop pe quick-actions ka gap nahi chahiye */
  }

  section {
    padding: 80px 0;
  }

  .container {
    max-width: 1200px;
    padding: 0 40px;
    margin: 0 auto;
  }

  .section-title-center {
    font-size: 34px;
    margin-bottom: 14px;
  }

  .section-sub-center {
    font-size: 17px;
    margin-bottom: 42px;
  }

  /* TOP HEADER */
  .topbar {
    padding: 18px 8%;
  }

  .brand img.logo {
    width: 80px;
    height: 80px;
  }

  .brand .name h1 {
    font-size: 28px;
  }

  .brand .name .location {
    font-size: 15px;
  }

  .brand .name .tagline {
    font-size: 13px;
  }

  /* NAVBAR */
  .navbar {
    padding: 0 8%;
    top: 100px;
  }

  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Menu button desktop pe bhi visible rahe */
  .nav-toggle {
    font-size: 16px;
    padding: 16px 20px;
  }

  /* HERO (ABOUT) */
  .hero-about {
    height: 520px;
  }

  .hero-about .hero-content {
    max-width: 900px;
    margin: 0 auto 60px;
  }

  .hero-about h2 {
    font-size: 46px;
    margin-bottom: 18px;
  }

  .hero-about p {
    font-size: 20px;
  }

  /* ABOUT SECTION */
  .about-section .container {
    max-width: 1000px;
  }

  .about-content {
    font-size: 18px;
    line-height: 1.9;
  }

  /* STATS */
  .stats-grid {
    max-width: 1000px;
    margin: 0 auto;
    gap: 24px;
  }

  .stat-box {
    padding: 28px 22px;
  }

  .stat-icon {
    font-size: 40px;
  }

  .stat-number {
    font-size: 42px;
  }

  .stat-label {
    font-size: 13px;
  }

  /* VISION & MISSION */
  .vm-cards {
    max-width: 1200px;
    margin: 0 auto;
    gap: 32px;
  }

  .vm-card {
    padding: 30px 26px;
  }

  .vm-card h4 {
    font-size: 22px;
  }

  .vm-card p {
    font-size: 15px;
  }

  /* TIMELINE */
  .timeline {
    max-width: 900px;
    margin: 0 auto;
  }

  .timeline-content {
    padding: 26px 28px;
  }

  .timeline-year {
    font-size: 20px;
  }

  .timeline-title {
    font-size: 18px;
  }

  .timeline-desc {
    font-size: 15px;
  }

  /* WHY CHOOSE US */
  .features-grid {
    max-width: 1100px;
    margin: 0 auto;
    gap: 24px;
  }

  .feature-box {
    padding: 32px 24px;
  }

  .feature-box h4 {
    font-size: 16px;
  }

  .feature-box p {
    font-size: 13px;
  }

  /* TESTIMONIALS */
  .testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
  }

  .testimonial-card {
    padding: 50px 70px;
  }

  .testimonial-text {
    font-size: 19px;
  }

  .testimonial-author {
    font-size: 18px;
  }

  /* CONTACT */
  #contact .container {
    max-width: 900px;
  }

  .info-card {
    padding: 36px 34px;
  }

  .info-card strong {
    font-size: 20px;
  }

  .info-card p {
    font-size: 15px;
  }

  /* FOOTER: Map + Card side-by-side, neeche copyright */
  footer {
    padding: 50px 8%;
    display: grid;
    grid-template-columns: 2fr 1.3fr;
    gap: 30px;
    align-items: stretch;
  }

  .map {
    margin-bottom: 0;
  }

  .map iframe {
    height: 260px;
  }

  .foot-card {
    align-self: stretch;
  }

  .copyright {
    grid-column: 1 / -1;
    margin-top: 30px;
    font-size: 13px;
  }

  /* Desktop pe bottom quick-actions bar hide */
  .quick-actions {
    display: none;
  }

  /* Back to top button desktop position */
  #backToTop {
    right: 30px;
    bottom: 30px;
  }
}
.developer-credit {
  display: flex;
  justify-content: center;   /* center me rakhega */
  align-items: center;       /* vertical alignment perfect */
  gap: 6px;
  font-size: 14px;
  color: #fff;
}

.developer-credit a {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: inherit;
}

.developer-credit img {
  height: 20px;
  width: auto;
}