/* =============================================
   MITA IT Skills Academy — Main Stylesheet
   Colors: Orange #FF6B00, Dark #1A1A2E, Gold #FFC107
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  --orange:    #FF6B00;
  --orange-dk: #E05A00;
  --orange-lt: #FFF0E6;
  --gold:      #FFC107;
  --dark:      #1A1A2E;
  --dark2:     #16213E;
  --dark3:     #0F3460;
  --green:     #22C55E;
  --purple:    #6C3CE1;
  --pink:      #E91E8C;
  --white:     #FFFFFF;
  --gray:      #F8F9FA;
  --gray2:     #E9ECEF;
  --text:      #2D2D2D;
  --text-muted:#6C757D;
  --border:    #DEE2E6;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --font-main: 'Poppins', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
.footerlogo { height: 150px !important; }


body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-main); font-weight: 700; line-height: 1.25; }
.display-1,.display-2,.display-3 { font-family: var(--font-main); font-weight: 900; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ── Utility ── */
.text-orange  { color: var(--orange) !important; }
.text-gold    { color: var(--gold) !important; }
.text-dark    { color: var(--dark) !important; }
.text-green   { color: var(--green) !important; }
.bg-orange    { background: var(--orange) !important; }
.bg-dark-main { background: var(--dark) !important; }
.bg-orange-lt { background: var(--orange-lt) !important; }

.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

/* ── BUTTONS ── */
.btn-mita {
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(255,107,0,0.35);
}
.btn-mita:hover {
  background: linear-gradient(135deg, var(--orange-dk), var(--orange));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,0,0.45);
  color: #fff;
}
.btn-mita-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  padding: 10px 28px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-mita-outline:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--orange);
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--orange);
}

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header .tag {
  display: inline-block;
  background: var(--orange-lt);
  color: var(--orange);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1.5px solid rgba(255,107,0,0.2);
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--dark);
  margin-bottom: 16px;
}
.section-header h2 span { color: var(--orange); }
.section-header p { color: var(--text-muted); font-size: 16px; max-width: 600px; margin: 0 auto; }

/* ── NAVBAR ── */
.mita-navbar {
  background: rgba(26,26,46,0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  transition: var(--transition);
}
.mita-navbar .navbar-brand img { height: 65px; }
.mita-navbar .navbar-brand span {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  line-height: 1.2;
}
.mita-navbar .navbar-brand small {
  display: block;
  font-size: 10px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.mita-navbar .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.mita-navbar .nav-link:hover,
.mita-navbar .nav-link.active {
  color: var(--gold) !important;
  background: rgba(255,193,7,0.08);
}
.mita-navbar .nav-cta {
  background: var(--orange);
  color: #fff !important;
  border-radius: 50px;
  padding: 8px 22px !important;
  font-weight: 600;
  margin-left: 8px;
}
.mita-navbar .nav-cta:hover {
  background: var(--orange-dk);
  transform: translateY(-1px);
}
.navbar-toggler { border: 1.5px solid rgba(255,255,255,0.3) !important; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ── HERO SECTION ── */
.hero-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, var(--dark3) 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  /* min-height: 90vh; */
  display: flex;
  align-items: center;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,193,7,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.3);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-main);
  margin-bottom: 24px;
  letter-spacing: 1px;
}
.hero-section h1 {
  font-size: clamp(36px, 5.5vw, 68px);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-section h1 .highlight {
  color: var(--orange);
  position: relative;
}
.hero-section .hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat .num {
  display: block;
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 32px;
  color: var(--orange);
  line-height: 1;
}
.hero-stat .label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.hero-img-wrap {
  position: relative;
  z-index: 1;
}
.hero-circles {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--orange);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.hero-circle img { width: 100%; height: 100%; object-fit: cover; }
.hero-circle-1 { width: 200px; height: 200px; top: 0; left: 50%; transform: translateX(-50%); }
.hero-circle-2 { width: 160px; height: 160px; top: 120px; left: 10%; }
.hero-circle-3 { width: 160px; height: 160px; top: 120px; right: 10%; border-color: var(--gold); }
.hero-circle-4 { width: 180px; height: 180px; top: 260px; left: 50%; transform: translateX(-50%); border-color: var(--green); }
.hero-placeholder { min-height: 440px; }

/* ── MARQUEE STRIP ── */
.marquee-strip {
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-content {
  display: inline-block;
  animation: marquee 25s linear infinite;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.marquee-content span { margin: 0 30px; }
.marquee-content span::before { content: '⭐ '; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── COURSE CARDS ── */
.course-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,107,0,0.2);
}
.course-card:hover::before { transform: scaleX(1); }

.course-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  color: #fff;
}
.course-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-main);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.course-card h3 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 8px;
}
.course-meta {
  display: flex;
  gap: 16px;
  margin: 12px 0;
  flex-wrap: wrap;
}
.course-meta span {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.course-price {
  margin: 16px 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.course-price .price {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 26px;
  color: var(--orange);
}
.course-price .gst {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.course-price .free-tag {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 26px;
  color: var(--green);
}
.course-topics {
  list-style: none;
  margin: 12px 0;
  padding: 0;
}
.course-topics li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 3px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.course-topics li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── FEATURE CARD ── */
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  text-align: center;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--orange-lt);
  color: var(--orange);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

/* ── SUCCESS STORY CARD ── */
.story-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.story-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.story-card .story-media {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--dark2);
}
.story-card .story-media img { width: 100%; height: 100%; object-fit: cover; }
.story-card .story-media .play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 56px; height: 56px;
  background: rgba(255,107,0,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
}
.story-card .story-media .play-btn:hover { transform: translate(-50%,-50%) scale(1.1); }
.story-card .story-body { padding: 20px; }
.story-card .story-body h5 { font-size: 17px; color: var(--dark); margin-bottom: 6px; }
.story-card .story-body .company { font-size: 13px; color: var(--orange); font-weight: 600; }
.story-card .story-body p { font-size: 14px; color: var(--text-muted); margin-top: 8px; line-height: 1.6; }

/* ── PLACED CARD ── */
.placed-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.placed-card:hover { transform: translateY(-4px); border-color: var(--orange); }
.placed-card .avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--orange);
  margin-bottom: 12px;
}
.placed-card .avatar-placeholder {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 28px; font-weight: 700;
  border: 3px solid var(--orange);
  margin: 0 auto 12px;
  font-family: var(--font-main);
}
.placed-card h6 { font-size: 15px; color: var(--dark); margin-bottom: 4px; }
.placed-card .desig { font-size: 13px; color: var(--orange); font-weight: 600; }
.placed-card .loc { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* ── INSIGHT CARD ── */
.insight-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.insight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.insight-card .thumb {
  height: 200px;
  overflow: hidden;
  background: var(--gray2);
  position: relative;
}
.insight-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.insight-card:hover .thumb img { transform: scale(1.05); }
.insight-card .thumb .cat-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.insight-card .card-body { padding: 20px; }
.insight-card .date { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.insight-card h5 { font-size: 17px; color: var(--dark); margin-bottom: 8px; line-height: 1.4; }
.insight-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.insight-card .read-more { color: var(--orange); font-weight: 600; font-size: 13px; }

/* ── CONTACT SECTION ── */
.contact-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-item .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,107,0,0.15);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(255,107,0,0.25);
}
.contact-item .info .label { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.contact-item .info .val { font-size: 15px; color: #fff; font-weight: 600; margin-top: 2px; }

/* ── ENQUIRY FORM (Popup) ── */
.enquiry-modal .modal-content {
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  overflow: hidden;
}
.enquiry-modal .modal-header {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  border-bottom: none;
  padding: 24px 28px;
}
.enquiry-modal .modal-title { color: #fff; font-family: var(--font-main); font-weight: 700; }
.enquiry-modal .modal-body { padding: 28px; }
.enquiry-modal .form-label { font-weight: 600; font-size: 13px; color: var(--dark); margin-bottom: 6px; font-family: var(--font-main); }
.enquiry-modal .form-control,
.enquiry-modal .form-select {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  transition: var(--transition);
}
.enquiry-modal .form-control:focus,
.enquiry-modal .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.12);
}
.enquiry-modal .modal-footer { border-top: 1.5px solid var(--border); padding: 16px 28px; }

/* ── FOOTER ── */
.mita-footer {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}
.mita-footer h5 {
  color: #fff;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.mita-footer h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--orange);
}
.mita-footer .footer-links { list-style: none; padding: 0; }
.mita-footer .footer-links li { margin-bottom: 8px; }
.mita-footer .footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mita-footer .footer-links a:hover { color: var(--orange); padding-left: 4px; }
.mita-footer .social-links { display: flex; gap: 10px; margin-top: 16px; }
.mita-footer .social-links a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.mita-footer .social-links a:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.mita-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.mita-footer .footer-bottom span { color: var(--orange); }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  padding: 70px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 100%;
  background: radial-gradient(ellipse at right, rgba(255,107,0,0.12) 0%, transparent 70%);
}
.page-hero h1 { color: #fff; font-size: clamp(28px,4vw,48px); margin-bottom: 10px; }
.page-hero .breadcrumb-item { color: rgba(255,255,255,0.5); font-size: 14px; }
.page-hero .breadcrumb-item.active { color: var(--gold); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ── ABOUT PAGE ── */
.about-img-wrap { position: relative; }
.about-img-wrap .img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--orange);
  color: #fff;
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  font-family: var(--font-main);
}
.about-img-wrap .img-badge .num { font-size: 32px; font-weight: 900; display: block; }
.about-img-wrap .img-badge .text { font-size: 12px; font-weight: 600; opacity: 0.9; }

/* ── COUNTERS ── */
.counter-section { background: linear-gradient(135deg, var(--dark), var(--dark2)); padding: 60px 0; }
.counter-item { text-align: center; color: #fff; }
.counter-item .count { font-family: var(--font-main); font-weight: 900; font-size: 48px; color: var(--orange); display: block; line-height: 1; }
.counter-item .count-label { font-size: 14px; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; margin-top: 8px; }

/* ── ANIMATIONS ── */
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInLeft { from { opacity:0; transform:translateX(-30px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeInRight { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }
@keyframes pulse { 0%,100% { transform:scale(1); } 50% { transform:scale(1.05); } }
@keyframes float { 0%,100% { transform:translateY(0px); } 50% { transform:translateY(-12px); } }

.animate-fade-up { animation: fadeInUp 0.7s ease forwards; }
.animate-fade-left { animation: fadeInLeft 0.7s ease forwards; }
.animate-float { animation: float 3s ease-in-out infinite; }

/* ── SCROLL TOP ── */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--orange);
  color: #fff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255,107,0,0.4);
  transition: var(--transition);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 80px; right: 28px;
  width: 50px; height: 50px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: var(--transition);
  z-index: 999;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

/* ── SUCCESS ALERT ── */
.alert-mita {
  border-radius: var(--radius);
  border: none;
  font-family: var(--font-main);
  font-weight: 600;
}
.alert-mita-success { background: rgba(34,197,94,0.12); color: #15803d; border-left: 4px solid var(--green); }
.alert-mita-error { background: rgba(239,68,68,0.1); color: #dc2626; border-left: 4px solid #ef4444; }

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
  .hero-section { padding: 70px 0 50px; min-height: auto; }
  .hero-circles { display: none; }
  .section-pad { padding: 60px 0; }
  .mita-navbar .navbar-collapse { background: rgba(26,26,46,0.98);   border-radius: 12px; margin-top: 8px; }
}
@media (max-width: 767.98px) {
  .hero-section h1 { font-size: 30px; }
  .hero-stats { gap: 20px; }
  .section-pad { padding: 50px 0; }
  .contact-card { padding: 24px; }
}


.hero-banner-img{
  /* height:520px; */
  object-fit:cover;
  }
  
  @media(max-width:768px){
  
  .hero-banner-img{
  height:300px;
  }
  
  }

 