
/* ══════════════════════════════════════════
   EXACT COLOR TOKENS FROM ftpinstitute.com
   ══════════════════════════════════════════ */
:root {
  --red:        #e82127;   /* brand red — Elementor global color */
  --red-hover:  #c4181d;
  --black:      #000000;   /* topbar bg */
  --dark:       #1e1e1e;   /* headings */
  --white:      #ffffff;   /* page/nav bg */
  --offwhite:   #f9f9f9;   /* alternate section bg */
  --text:       #555555;   /* body copy */
  --muted:      #888888;   /* small text */
  --border:     #e8e8e8;   /* card borders */
  --gold:       #f5a623;   /* ratings */
  --green:      #25d366;   /* WhatsApp */
  --nav-h:      72px;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', 'Open Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
}
a { text-decoration: none; color: inherit; }
img, video { display: block; max-width: 100%; }

/* ══════════════════════════════════════════
   1. TOP SOCIAL BAR — black bg, white/grey text
   Same as ftpinstitute.com header top strip
   ══════════════════════════════════════════ */
.topbar {
  background: var(--black);
  padding: 0;
  border-bottom: 1px solid #1a1a1a;
}
.topbar-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 8px 20px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap;
}
.topbar-left { display: flex; gap: 22px; align-items: center; }
.topbar-left a {
  color: #b0b0b0; font-size: 12.5px;
  display: flex; align-items: center; gap: 5px;
  transition: color .2s;
}
.topbar-left a:hover { color: var(--gold); }
.topbar-right { display: flex; gap: 18px; }
.topbar-right a {
  color: #888; font-size: 12px; font-weight: 500;
  transition: color .2s; text-transform: capitalize;
}
.topbar-right a:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   2. NAV — white bg, red 3px bottom border
   Logo left, links center, CTA right
   ══════════════════════════════════════════ */
.site-header {
  background: var(--white);
  position: sticky; top: 0; z-index: 999;
  box-shadow: 0 1px 12px rgba(0,0,0,.09);
}
.nav-wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 0 20px;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 58px; width: auto; }
.nav-logo-text {
  font-weight: 900; font-size: 1.5rem; color: var(--red);
  font-family: 'Roboto', sans-serif; display: none;
}
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-links a {
  color: var(--dark); font-size: 13.5px; font-weight: 600;
  padding: 8px 14px; border-radius: 3px;
  text-transform: uppercase; letter-spacing: .4px;
  transition: color .2s, background .15s;
}
.nav-links a:hover { color: var(--red); background: #fff4f4; }
.nav-btns { display: flex; gap: 10px; }
.nbtn-red {
  background: var(--red); color: #fff;
  padding: 9px 20px; border-radius: 4px;
  font-size: 13px; font-weight: 700; letter-spacing: .3px;
  display: flex; align-items: center; gap: 6px;
  transition: background .2s;
}
.nbtn-red:hover { background: var(--red-hover); }
.nbtn-green {
  background: var(--green); color: #fff;
  padding: 9px 18px; border-radius: 4px;
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; gap: 6px;
  transition: background .2s;
}
.nbtn-green:hover { background: #1bb853; }
/* Red underline — the 3px red bar under the nav */
.nav-red-line { height: 3px; background: var(--red); }

/* ══════════════════════════════════════════
   3. HERO — full-width video, dark overlay
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%; height: 560px;
  background: #000; overflow: hidden;
}
.hero video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: .5;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.4) 55%, transparent 100%);
}
.hero-body {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  padding: 0 5%;
}
.hero-text { max-width: 580px; }
.hero-tag {
  display: inline-block;
  background: var(--red); color: #fff;
  padding: 4px 15px; border-radius: 2px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; margin-bottom: 18px;
}
.hero-text h1 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 900; color: #fff; line-height: 1.14;
  margin-bottom: 16px;
}
.hero-text h1 span { color: var(--gold); }
.hero-text p {
  color: rgba(255,255,255,.82); font-size: 15.5px;
  line-height: 1.72; margin-bottom: 26px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.cta-filled {
  background: var(--red); color: #fff;
  padding: 12px 28px; border-radius: 4px;
  font-weight: 700; font-size: 14px; letter-spacing: .3px;
  transition: background .2s, transform .15s;
}
.cta-filled:hover { background: var(--red-hover); transform: translateY(-1px); }
.cta-outline {
  border: 2px solid rgba(255,255,255,.7); color: #fff;
  padding: 10px 24px; border-radius: 4px;
  font-weight: 700; font-size: 14px;
  transition: all .2s;
}
.cta-outline:hover { background: #fff; color: var(--dark); }
.hero-ratings { display: flex; gap: 10px; flex-wrap: wrap; }
.rating-pill {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff; padding: 5px 13px; border-radius: 20px;
  font-size: 12px; display: flex; align-items: center; gap: 5px;
}
.rating-pill .stars { color: var(--gold); font-size: 10px; }

/* ══════════════════════════════════════════
   4. RED STATS BAR — #e82127 bg, white text
   Same bar directly below hero on ftpinstitute.com
   ══════════════════════════════════════════ */
.stats-bar {
  background: var(--red);
  padding: 24px 20px;
}
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: center; flex-wrap: wrap;
}
.stat-cell {
  text-align: center; padding: 10px 36px;
  border-right: 1px solid rgba(255,255,255,.22);
}
.stat-cell:last-child { border-right: none; }
.stat-n { font-size: 2rem; font-weight: 900; color: #fff; line-height: 1; }
.stat-l { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.72); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ══════════════════════════════════════════
   5. HERO LOWER — dark left + white form right
   Matches the dark section on the homepage
   ══════════════════════════════════════════ */
.hl-wrap { display: grid; grid-template-columns: 1fr 420px; }
.hl-left {
  background: #1a1a1a;
  padding: 52px 44px 52px 5%;
}
.hl-left h2 {
  font-size: 1.6rem; font-weight: 800; color: #fff;
  line-height: 1.3; margin-bottom: 22px;
}
.hl-left h2 em { color: var(--red); font-style: normal; }
/* Ratings row inside dark section */
.hl-ratings {
  display: flex; gap: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 5px; overflow: hidden; margin-bottom: 26px;
}
.hl-rat {
  flex: 1; padding: 14px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.12);
}
.hl-rat:last-child { border-right: none; }
.hl-rat-n { font-size: 1.45rem; font-weight: 900; color: var(--gold); line-height: 1; }
.hl-rat-l { font-size: 10.5px; color: #aaa; text-transform: uppercase; letter-spacing: .6px; margin-top: 3px; }
/* Promo video */
.promo-vid {
  width: 100%; border-radius: 7px;
  max-height: 500px; object-fit: cover;
  margin-bottom: 26px; background: #000;
}
/* Course list */
.clist { list-style: none; }
.clist li {
  color: #ccc; font-size: 14px;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: flex-start; gap: 10px;
}
.clist li:last-child { border: none; }
.clist li::before { content: '▶'; color: var(--red); font-size: 9px; margin-top: 5px; flex-shrink: 0; }

/* Enquiry form — white card */
.hl-right {
  background: var(--white);
  padding: 40px 34px;
  border-top: 4px solid var(--red);
  border-left: 1px solid var(--border);
  overflow-y: auto;
}
.hl-right h3 { font-size: 1.2rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.form-note { color: #aaa; font-size: 12.5px; margin-bottom: 20px; }
.form2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fg { margin-bottom: 13px; }
.fg label {
  display: block; font-size: 10.5px; font-weight: 700;
  color: #666; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 4px;
}
.fg input, .fg select {
  width: 100%; padding: 9px 12px;
  border: 1.5px solid var(--border); border-radius: 4px;
  font-size: 13.5px; color: var(--dark);
  font-family: 'Roboto', sans-serif; outline: none;
  transition: border-color .2s; background: #fff;
}
.fg input:focus, .fg select:focus { border-color: var(--red); }
.fcheck { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 15px; }
.fcheck input { margin-top: 3px; accent-color: var(--red); }
.fcheck label { font-size: 11.5px; color: #999; line-height: 1.5; }
.btn-form {
  width: 100%; background: var(--red); color: #fff; border: none;
  padding: 12px; border-radius: 4px; font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: .5px; cursor: pointer;
  font-family: 'Roboto', sans-serif; transition: background .2s;
}
.btn-form:hover { background: var(--red-hover); }

/* ══════════════════════════════════════════
   SECTION UTILITIES
   ══════════════════════════════════════════ */
/* white bg section */
.sec-white { background: var(--white); padding: 80px 20px; }
/* offwhite/grey bg section */
.sec-grey  { background: var(--offwhite); padding: 80px 20px; }
/* dark bg section */
.sec-dark  { background: #1a1a1a; padding: 80px 20px; }
.container { max-width: 1200px; margin: 0 auto; }

.sec-label {
  display: block; text-align: center;
  color: var(--red); font-size: 10.5px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase; margin-bottom: 9px;
}
.sec-title {
  text-align: center; font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800; color: var(--dark); line-height: 1.25; margin-bottom: 14px;
}
.sec-title-w { color: #fff; }
.sec-bar { width: 48px; height: 3px; background: var(--red); margin: 0 auto 16px; }
.sec-desc { text-align: center; color: var(--muted); max-width: 600px; margin: 0 auto 50px; font-size: 15px; line-height: 1.75; }
.sec-desc-w { color: rgba(255,255,255,.65); }

/* ══════════════════════════════════════════
   6. WHY CHOOSE — white bg
   2-col: student photos grid | bullet points
   ══════════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.why-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.why-photos img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 6px;
  transition: transform .3s;
}
.why-photos img:hover { transform: scale(1.03); }
.why-list { display: flex; flex-direction: column; gap: 13px; }
.why-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 15px 16px;
  background: var(--white); border: 1px solid var(--border); border-radius: 6px;
  border-left: 3px solid var(--red); transition: box-shadow .2s, transform .2s;
}
.why-item:hover { box-shadow: 0 4px 16px rgba(232,33,39,.09); transform: translateX(3px); }
.why-icon { font-size: 1.3rem; flex-shrink: 0; }
.why-item h4 { font-size: 13.5px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.why-item p  { font-size: 12.5px; color: var(--muted); line-height: 1.55; }

/* ══════════════════════════════════════════
   7. GALLERY STRIP — offwhite bg, red borders
   ══════════════════════════════════════════ */
.gal-strip {
  background: var(--offwhite);
  overflow: hidden;
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  padding: 0;
}
.gal-track {
  display: flex; gap: 0;
  animation: galScroll 42s linear infinite;
  width: max-content;
}
.gal-track:hover { animation-play-state: paused; }
@keyframes galScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.gal-track img {
  width: 280px; height: 210px;
  object-fit: cover; flex-shrink: 0;
  border-right: 3px solid #fff;
}

/* ══════════════════════════════════════════
   8. MASTER CLASS VIDEOS — dark #1a1a1a bg
   ══════════════════════════════════════════ */
.vid-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.vid-card { border-radius: 8px; overflow: hidden; background: #000; }
.vid-card video { width: 100%; display: block; max-height: 240px; object-fit: cover; }
/* YouTube iframe wrapper — 16:9 responsive */
.yt-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: #000; }
.yt-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.vid-tag {
  background: var(--red); color: #fff;
  padding: 10px 16px; font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px;
}

/* ══════════════════════════════════════════
   9. COURSES — offwhite bg, white cards
   ══════════════════════════════════════════ */
.course-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 26px; }
.course-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.05);
  transition: transform .25s, box-shadow .25s;
}
.course-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.11); }
.course-card img { width: 100%; height: 215px; object-fit: cover; }
.course-card-ph {
  width: 100%; height: 215px; background: linear-gradient(135deg,#2a0808,#111);
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.course-body { padding: 24px; }
.course-badge {
  display: inline-block; background: var(--red); color: #fff;
  padding: 3px 11px; border-radius: 2px; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 11px;
}
.course-body h3 { font-size: 1.02rem; font-weight: 800; color: var(--dark); line-height: 1.35; margin-bottom: 13px; }
.feat-ul { list-style: none; margin-bottom: 20px; }
.feat-ul li {
  padding: 5px 0; font-size: 13.5px; color: #555;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid #f4f4f4;
}
.feat-ul li:last-child { border: none; }
.ok  { color: #16a34a; font-weight: 700; }
.no  { color: #ccc;    font-weight: 700; }
.btn-enquire {
  display: block; text-align: center;
  background: var(--red); color: #fff;
  padding: 11px; border-radius: 4px;
  font-weight: 700; font-size: 13.5px;
  text-transform: uppercase; letter-spacing: .4px;
  transition: background .2s;
}
.btn-enquire:hover { background: var(--red-hover); }

/* ══════════════════════════════════════════
   10. MENTORS — white bg, circular red-bordered photos
   ══════════════════════════════════════════ */
.mentor-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px,1fr)); gap: 26px; }
.mentor-card { text-align: center; }
.mentor-img {
  width: 140px; height: 140px; border-radius: 50%; object-fit: cover;
  border: 4px solid var(--red); margin: 0 auto 13px; display: block;
  transition: transform .25s;
}
.mentor-img:hover { transform: scale(1.06); }
.mentor-ph {
  width: 140px; height: 140px; border-radius: 50%;
  background: #f0f0f0; border: 4px solid var(--red);
  margin: 0 auto 13px; display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; color: #ccc;
}
.mentor-card h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.mentor-card p  { font-size: 12px; color: var(--muted); line-height: 1.4; }
.mentor-role {
  display: inline-block;
  background: rgba(232,33,39,.09); color: var(--red);
  padding: 2px 9px; border-radius: 2px; font-size: 9.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; margin-top: 7px;
}

/* ══════════════════════════════════════════
   11. STUDENT VIDEOS — offwhite bg
   ══════════════════════════════════════════ */
.svid-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.svid-card { background: #000; border-radius: 8px; overflow: hidden; position: relative; }
.svid-card video { width: 100%; display: block; max-height: 320px; object-fit: cover; }
.svid-card .yt-wrap { padding-bottom: 177.78%; } /* 9:16 portrait for Shorts */
.svid-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(232,33,39,.9); color: #fff;
  padding: 4px 11px; border-radius: 2px;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}

/* ══════════════════════════════════════════
   12. REVIEWS — white bg, white cards
   ══════════════════════════════════════════ */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 18px; }
.review-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  padding: 22px; border-top: 3px solid var(--red);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.rev-stars { color: var(--gold); font-size: 14px; margin-bottom: 10px; }
.review-card p { font-size: 13.5px; color: #666; line-height: 1.72; }
.reviewer { display: flex; align-items: center; gap: 12px; margin-top: 15px; }
.rev-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--red); display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff; font-size: 14px; flex-shrink: 0;
}
.rev-name { font-weight: 700; font-size: 13.5px; color: var(--dark); }
.rev-course { font-size: 11.5px; color: #aaa; }

/* ══════════════════════════════════════════
   13. CTA — red bg, white text
   ══════════════════════════════════════════ */
.cta-sec {
  background: var(--red); text-align: center; padding: 72px 20px;
}
.cta-sec h2 { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 900; color: #fff; margin-bottom: 12px; }
.cta-sec p  { color: rgba(255,255,255,.85); font-size: 15.5px; margin-bottom: 28px; }
.btn-white-fill {
  display: inline-block; background: #fff; color: var(--red);
  padding: 12px 34px; border-radius: 4px; font-weight: 800; font-size: 14px;
  text-transform: uppercase; letter-spacing: .4px; margin: 5px;
  transition: transform .2s, box-shadow .2s;
}
.btn-white-fill:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }
.btn-white-out {
  display: inline-block; border: 2px solid #fff; color: #fff;
  padding: 10px 30px; border-radius: 4px; font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: .4px; margin: 5px;
  transition: all .2s;
}
.btn-white-out:hover { background: #fff; color: var(--red); }

/* ══════════════════════════════════════════
   14. FOOTER — very dark #111, red 4px top border
   ══════════════════════════════════════════ */
footer {
  background: #111111;
  border-top: 4px solid var(--red);
  padding: 60px 20px 28px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 46px;
  margin-bottom: 38px;
}
/* Footer logo — inverted white on dark bg */
.ftr-logo { height: 52px; margin-bottom: 17px; filter: brightness(0) invert(1); display: block; }
.ftr-logo-text { font-weight: 900; font-size: 1.5rem; color: var(--red); display: none; margin-bottom: 16px; }
footer p { color: #888; font-size: 13.5px; line-height: 1.82; }
.ftr-contact { margin-top: 14px; }
.ftr-contact a {
  display: flex; align-items: center; gap: 7px;
  color: #999; font-size: 13px; margin-bottom: 5px;
  transition: color .2s;
}
.ftr-contact a:hover { color: var(--red); }
.ftr-socials { display: flex; gap: 9px; margin-top: 17px; }
.fsoc {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: #999; font-size: 12px; font-weight: 700;
  transition: background .2s, border-color .2s, color .2s; text-decoration: none;
}
.fsoc:hover { background: var(--red); border-color: var(--red); color: #fff; }
footer h5 {
  font-size: 11px; font-weight: 700; letter-spacing: 2.2px; text-transform: uppercase;
  color: #fff; margin-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 9px;
}
.ftr-links a {
  display: block; color: #888; font-size: 13px;
  line-height: 2.25; transition: color .2s;
}
.ftr-links a:hover { color: var(--red); }
/* Working hours card */
.hours-ul { list-style: none; }
.hours-ul li {
  display: flex; justify-content: space-between;
  padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 12.5px;
}
.hours-ul li:last-child { border: none; }
.h-day  { font-weight: 600; color: #ccc; }
.h-time { color: #888; }
.h-closed { color: var(--red); font-weight: 700; }
/* Footer bottom strip */
.ftr-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,.07);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.ftr-bottom p { font-size: 12px; color: #555; }

/* ══════════════════════════════════════════
   WHATSAPP FLOAT
   ══════════════════════════════════════════ */
.wa-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: var(--green); width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.45);
  text-decoration: none;
  animation: waPulse 2.4s ease-in-out infinite;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 4px 32px rgba(37,211,102,.7), 0 0 0 10px rgba(37,211,102,.1); }
}
.wa-btn svg { width: 30px; height: 30px; fill: #fff; }

/* ══════════════════════════════════════════
   SCROLL FADE
   ══════════════════════════════════════════ */
.fade { opacity: 0; transform: translateY(22px); transition: opacity .65s, transform .65s; }
.fade.in { opacity: 1; transform: none; }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hl-wrap        { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: 1fr; }
  .vid-grid       { grid-template-columns: 1fr 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .nav-links      { display: none; }
}
@media (max-width: 640px) {
  .hero           { height: 360px; }
  .stats-inner    { flex-direction: column; gap: 2px; }
  .stat-cell      { border-right: none; border-bottom: 1px solid rgba(255,255,255,.18); padding: 8px 20px; }
  .stat-cell:last-child { border-bottom: none; }
  .footer-grid    { grid-template-columns: 1fr; }
  .svid-grid      { grid-template-columns: 1fr 1fr; }
  .vid-grid       { grid-template-columns: 1fr; }
  .form2          { grid-template-columns: 1fr; }
}




@import url('https://fonts.googleapis.com/css?family=Abril+Fatface|Anton|DM+Sans|Francois+One|Open+Sans|Open+Sans+Condensed:300|Orbitron|Oswald|Pathway+Gothic+One|Poppins|Quattrocento+Sans|Questrial|Righteous|Roboto|Roboto+Condensed|Saira+Stencil+One|Ubuntu+Condensed&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato|Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css?family=Coda&display=swap');
@import url('https://fonts.googleapis.com/css?family=Coda|Rubik&display=swap');
@import url('https://fonts.googleapis.com/css?family=Arimo:700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Quicksand&display=swap');
@import url('https://fonts.googleapis.com/css?family=Merriweather&display=swap');


body{
 margin:0px;
 padding:0px;
 list-style:none;
 box-sizing:border-box;
 overflow-x:hidden;
 font-family:'Roboto',sans-sarif;
 -webkit-overflow-x:hidden;
 -moz-overflow-x:hidden;
}

a {
  color: #50d8af;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #51d8af;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  padding: 0;
}

html{
 scroll-behavior:smooth;
}


/*-----modal- video----css----*/

 .form-box-wrap{
  width:100%;
  height:100%;
  border-radius:40px;
  border:6px solid #3a526a;
  overflow:hidden;
  background-color:rgba(199, 236, 238,1.0);
 }
 
 .modal-content{
  background-color:transparent;
  border:none;
  outline:none;
 }
 
 .modal-form-head{
  padding:0px 0px;
  background-color:rgba(255, 71, 87,1.0);
  position:relative;
 }
 
  .modal-form-head  > img{
   width:100%;
   height:100%;
  }
 
 .modal-form{
   padding:30px 50px;
 }
 
 .modal-form > h4{
 color:black;
 text-transform:uppercase;
 letter-spacing:0.7px;
 font-size:18px;
 margin:0px 0px 17px 0px;
 text-align:center;
 font-family:'oswald',sans-sarif;
 }
 
 #modal-submit{
    background-color:rgba(64, 115, 158,1.0);
   display:inline-block;
   font-size:14px;
   border-radius:30px;
   border:none;
   outline:none;
 color:white;
 text-transform:uppercase;
 text-decoration:none;
 padding:12px 20px;
 font-family:'Roboto',sans-sarif;
 }
 
 
 
 #modal-form-input{
  border:1px solid rgba(220, 221, 225,1.0);
  background-color:white;
  border-radius:30px;
 }
 
  #modal-form-input::placeholder{
   color:gray!important;
   font-family:'Roboto',sans-sarif;
   font-size:14px;
   font-weight:normal;
   font-style:italic;
  }
 

.modal-body .close {
    padding: 0rem;
    margin: 0rem 0rem 0rem auto; 
	opacity:1;
}

.modal-body button{
 position:absolute;
 top:-10px;
 right:-10px;
 width:40px;
 height:40px;
 background-color:red;
 border:2px solid white;
 opacity:1;
 z-index:88;
 border-radius:50%;
 text-align:center;
 line-height:30px;
}

.modal-body button:hover{
 opacity:1;
 z-index:99;
}

.modal-body  button > i:before{
 margin:0px;
 padding:0px;
 color:white;
 font-size:18px;
}

.modal {
    position: fixed;
    top: 86px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0;
}

/*-----modal--video -css----*/

/*-----scroll-bar--style---*/
::-webkit-scrollbar-thumb{
 background-color:gray;
 border-radius:0px;
}

::-webkit-scrollbar{
 width:5px;
 background-color:white;
}

::selection{
background-color:#033a63;
color:white;
}


/*-----scroll-bar--style---*/


 
 .bar{
    position:relative;
	width:40px;
	height:1px;
	top:50%;
	transform:translatey(-50%);
	background-color:white;
  }
  
  .bar:before{
   width:30px;
   height:1px;
   background-color:white;
   position:absolute;
   top:-6px;
   left:0;
   content:"";
   transition:0.3s;
   -webkit-transition:0.3s;
   -moz-transition:0.3s;
  }
  
  
  .bar:after{
   width:30px;
   height:1px;
   background-color:white;
   position:absolute;
   bottom:-6px;
   left:0;
   content:"";
      transition:0.3s;
   -webkit-transition:0.3s;
    -moz-transition:0.3s;
  }


.head-topper{
padding:4px 10px;
position:relative;
background:white;
}


.logo-section > a > img{
 height:75px;
}

.logo-section2 > a > img {
 position:relative;
 margin:14px 0px;
 display:inline-block;
}




/*----slider-controlers--styles-----*/
.left-control {
width:40px;
height:100px;
line-height:100px;
position:absolute;
background-color:transparent;
left:16px;
opacity:1;
transition:0.5s;
-webkit-transition:0.5s;
-moz-transition:0.5s;
z-index:200;
}

.left-control:hover {
background-color:transparent;
 border:black;
}

.left-control:hover i {
 color:#2f3640;
}

.right-control:hover {
background-color:transparent;
 border:black;
}

.right-control:hover i {
 color:black;
}

.left-control i {
 color:white;
 font-size:17px;
 line-height:100px;
}

.right-control i {
 color:white;
 font-size:17px;
 line-height:100px;
}

.right-control{
width:40px;
height:100px;
line-height:100px;
position:absolute;
background-color:transparent;
right:16px;
opacity:1;
z-index:200;
transition:0.5s;
-webkit-transition:0.5s;
-moz-transition:0.5s;
}

.carousel-control-prev{
 opacity:1;
 width:60px;
  z-index:888;
}


.carousel-control-next{
 opacity:1;
 width:60px;
 z-index:888;
}

/*----slider-controlers--styles-----*/


/*-------slider--start---*/


@keyframes reveal{
   0%
   {
     left:0;
	 width:0%;
   }
    50%
     {
     left:0;
	 width:100%;
   }
     100%
     {
     left:100%;
	 width:0%;
   }
 }


.slider-section{
 position:relative;
 width:100%;
 padding:0px;
 margin:0px;
}

.slider-section-bg{
   position:relative;
 width:100%;
 height:100vh;
 padding:0px;
 background:url(../img/slider/slider1.png);
 background-position:left center;
 background-size:cover;
 margin:0px; 
}


.banner-caption{
width:100%;
position:relative;
height:100%;
}

.banner-caption-inner{
 width:100%;
 height:100vh;
 position:relative;
}

.banner-caption-bottom {
  position:relative;
  width:100%;
  top:10%;
  transform:translatey(-10%);
}

.banner-caption-bottom > h4{
   font-weight:bold;
 font-family:'arial';  
  font-size:30px;
  color:white;
  position:relative;
  text-transform:uppercase;
}
.banner-caption-bottom > h4 > span{
 display:inline-block;
 font-size:20px;
 border-radius:50%;
 width:10px;
 margin-left:10px;
 height:10px;
 background-color:white;
}
.banner-caption-bottom >  p{
  font-weight:bold;
    font-size:20px;
  color:white;
  margin:30px 0px 30px 0px;
   text-transform:uppercase;
 font-family:'arial'; 
 
}
.banner-caption-bottom > h5 > a{
 font-size:50px;
 word-spacing:0px;
 color:#092755;
 background-color:white;
 padding:10px 20px;
 display:inline-block;
 font-weight:bold;
 font-family:'arial'; 
}


.contact-box-wrap{
	padding:40px 0px 20px 0px;
	position:fixed;
	bottom:0%;
	width: 270px;
	transform:translatex(270px);
	transition:all 0.5s ease-in;
	-webkit-transition:all 0.5s ease-in;
	right:0;
	z-index:999;
	}
	
.button-click{
  position:absolute;
  top:0;
  cursor:pointer;
  left:-34px;
  width:35px;
  height:112px;
  transition:all 0.5s ease-in;
	-webkit-transition:all 0.5s ease-in;
  background-color:white;
  display:block;
}

.form-active{
   transform:translatex(0px);
}

.form-inner{
background-color:white;
padding:20px 10px;
}
	
	
	.contact-form-in{
	 background-color:#e82127 !important;
	 padding:20px 10px;
	 width:100%;
	 position:relative;
	}
	
	.form-heading2{
	    font-family:'vardana',sans-sarif;
	  font-size:20px;
	  background-color:#e82127 !important;
	  padding:10px 20px!important;
	  text-align:center!important;
	  text-transform:capitalize;
	  font-weight:normal;
	  color:white;
	}
	
	.contact-form-in > .form-heading{
	  font-family:'vardana',sans-sarif;
	  font-size:18px;
	  text-transform:capitalize;
	  font-weight:normal;
	  color:white;
	}
	
	.contact-in > label{
	  font-family:'arial',sans-sarif;
	  font-size:14px;
	  margin:0px 0px 0px 0px;
	  padding:0px;
	  color:#444141;
	}
	
	#select-box{
	  background-color:#F5F5F5;
	  color:gray!important;
  font-size:14px;
   font-family: 'Roboto', sans-serif;
	  }
	  
	
	#select-box:focus{
	box-shadow:none;
	outline:none;
	}
	
#input-text{
   color:gray!important;
  font-size:14px;
  background-color:#F5F5F5;
  margin:5px 0px;
  text-transform:capitalize;
  font-family: 'Roboto', sans-serif;
}

#input-text::placeholder{
  color:gray!important;
   font-family: 'Roboto', sans-serif;
}

#input-text:focus{
	box-shadow:none;
	outline:none;
	}
	
	#message-box{
	 border:1px solid #ededed;
	 background-color:#fbfbfb;
	 height:140px;
	 width:100%;
	 padding:15px 0px 0px 15px;
	}
	
 
 .submit{
 padding:10px 30px;
 border-radius:3px;
 background-color:#072747;
 text-align:center;
 width:100%;
 color:white;
 cursor:pointer;
 border:none;
 outline:none;
 text-transform:capitalize;
 font-family:'Roboto',sans-serif;
 letter-spacing:1px;
}

 .submit:hover{
 background-color:#da136a;
 color:white;
 }
 
 
 
 
 /*--------------elementor_in---------------------
 -elementor_in-------------------------------*/
 
 .main-slider-section{
  position:relative;
  width:100%;
 }
 
 .experience-slider-content{
   position:relative;
  width:100%;
  height:100%;
  display:table;
  padding:20px 0px 20px 25px;
  background-color:#6d3e82;
 }
 
 .experience-content-in{
  position:relative;
  width:100%;
  display:table-cell;
 }
 
 .experience-content-in  > h5{
    font-family:'arial',sans-sarif;
	font-size: 2.7em;
	color:white;
	font-weight:bold;
	text-transform:uppercase;
 }
 
  .experience-content-in .extra-para{
     display:inline-block;
	 margin:15px 0px 0px 0px;
    font-family:'arial',sans-sarif;
	font-size: 26px;
	color:white;
	font-weight:bold;
    line-height: 27px;
	/*text-transform:uppercase;*/
 }
 .experience-content-in > h3 {
    font-family: 'arial',sans-sarif;
    font-size: 2.5em;
    color: white;
    font-weight: bold;
    line-height: 40px;
    /* text-transform: uppercase; */
}
 
 
 
 
 
 
 
 
 
 /*---------------elementor-content-box--programe--------------*/
 
 
 .program-wrap{
     overflow:hidden;
	  position:relative;
  width:100%;
 }
 
 .elementor-content-box{
  position:relative;
  width:100%;
  height:100%;
  padding:25px 60px 0px 20px;
  overflow:hidden;
  background:#6d3e82;
  box-sizing:border-box;
 }
 
  .elementor-content-box .program-inner {
  position:relative;
  width:100%;
  }
  
  .elementor-content-box .program-inner .programe-head > h4{
   font-family:'arial',sans-sarif;
	font-size: 45px;
	color:white;
	margin:15px 0px 40px 20px;
	font-weight:bold;
	text-transform:uppercase;
  }
  
   .elementor-content-box .program-inner .programe-head > h4 > span{
    text-transform:capitalize;
   }
  
  .program-list ul{
   margin:0px;
   padding:0px;
   list-style:none;
  }
 
   .program-list ul > li{
    position:relative;
	width:100%;
	padding:0px 0px 0px 50px;
	display:block;
	margin:15px 0px;
   }
   
     .program-list ul > li  > img{
	 width: 30px;
    height: 30px;
     position:absolute;
	 top:0;
	 left:0;
    margin-right: 12px;
	}
    .program-list ul > li > h3{
	       font-size: 24px;
		   text-transform:uppercase;
		   font-family:'arial',sans-sarif;
		   font-weight:lighter;
		   color:white;
		   margin:0px;
		   padding:0px;
	}
	
	    .program-list ul > li > h2{
		    font-size: 22px;
		   /*text-transform:capitalize;*/
		   font-family:'arial',sans-sarif;
		    font-weight:lighter;
		   color:white;
		   margin:0px;
		   padding:0px;
		 }
		 
		   .program-list ul > li > p{
		    font-size:16px;
			color:white;
			font-family:'arial',sans-sarif;
		   }
 
 /*-------------footer-section----------------*/
 
 
 /*--------------feature-section------------*/
  .heading-head  {
    padding:20px 0px;
   }
 .heading-head  h4{
   font-size:54px;
   color:#6d3e82;
   text-transform:uppercase;
   font-family:'arial',sans-sarif;
   font-weight:bold;
 }
 
 .feature-box-section{
    position:relative;
	width:100%;
	margin:10px 0px;
	background-color:white;
	padding:0px 0px;
 }
 
 #feature-box-section{
   	margin:10px 0px!important;
 }
 
 #feature-icon{
   width:100px;
   margin:0px auto;
 }

 .feature-box-inner .feature-icon{
   position:relative;
   margin:20px 0px 5px 0px;
 }
 
 .feature-content{
  position:relative;
  width:100%;
  padding:0px 0px;
 }
 
 #feature-content{
    padding:0px 10px;
 }
 
  #feature-content  .feature-para{
     font-size:17px;
  }
 
 .feature-content .feature-para{
     font-family:arial;
	 font-size:18px;
	 color:black;
	 /*text-transform:capitalize;*/
  }
 
 .feature-content .second-para{
   display:inline-block;
   text-align:center;
   font-family:arial;
    font-size:18px;
	text-transform:uppercase;
   font-weight:bold;
   color:#968C8C;
 }
 
 
 
 
 
 /*-----------------more-content-------------*/
 
 .more-wrap{
    position:relative;
  width:100%;
overflow:hidden;
padding:40px 0px;  
 }
 
 .more-content{
  position:relative;
  width:100%;
 }
 
  .more-content .more-content-head       h4{
    font-size:54px;
   color:#333333;
   font-family:'arial',sans-sarif;
   font-weight:bold;
   margin-bottom:20px;
   text-transform:uppercase;
 }
 
 .more-content-inner > span{
     font-size:30px;
   color:#333333;
   display:inline-block;
   margin:10px 0px 20px 0px;
   line-height:33px;
   text-transform:uppercase;
   font-family:'arial',sans-sarif;
   font-weight:lighter;
 }
 
  .more-content-inner > p{
      font-family:arial;
    font-size:22px;
	line-height:27px;
	margin:20px 0px 20x 0px;
   font-weight:lighter;
   /*text-transform:capitalize;*/
  color:#333333;
  }
 
 
 
 
 
 
 .footer-section{
  position:relative;
width:100%;
background-color:black;
padding:30px 0px;  
}

.copyright .copyright-right {
 font-family:'Roboto',sans-sarif;
 font-size:20px;
 text-transform:capitalize;
 color:white;
}



/*--------------experience-slider-image-----------*/

.experience-slider-image{
 width:100%;
 position:relative;
 height:100%;
 padding:70px 0px;
 margin:0px auto;
 overflow-x:scroll;
}

.experience-slider-image .client-box{
  width:30%!important;
  height:70px;
  display:inline-block;
  float:left;
  margin:8px 4px;
  border:2px solid #d3d1d1;
  overflow:hidden;
  position:relative;
}


.experience-slider-image .client-box > a > img{
 text-align:center;
 position:relative;
 top:50%;
 transform:translatey(-50%);
 cursor:pointer;
}




/*------------slider-dots-style------*/

 .service .owl-dots {
    text-align: center;
	position:absolute;
	bottom:0px;
	left:50%;
	transform:translatex(-50%);
    -webkit-tap-highlight-color: transparent;
}

.owl-dots button:focus{
 border:none!important;
 outline:none!important;
 box-shadow:none!important;
}

.owl-theme .owl-dots .owl-dot.active span,
 .owl-theme .owl-dots .owl-dot:hover span {
    background: red!important;
}
 .feature-slider .owl-dots {
    text-align: center;
	position:absolute;
	bottom:42px;
	left:50%;
	transform:translatex(-50%);
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot.active span,
 .owl-theme .owl-dots .owl-dot:hover span {
    background: red!important;
}



  /*-----------zoom-slider-----*/
   
  .service .owl-nav {
    position: absolute;
    width:100%;
	left:0%;
	transform:translatey(-50%);
	top:50%;
    margin:0px auto;
  }

.service-package-slider{
 padding:0px 20px;
}

 .service  .owl-nav .owl-prev {
    position: absolute;
    left:-0px;
    top:-32px;
}
 .service  .owl-nav .owl-next {
    position: absolute;
    right:-0px;
	top:-32px;
}

 .service .owl-nav .owl-prev span,
 .service .owl-nav .owl-next span{
	margin:0px;
	line-height:40px;
	border:1px solid gray;
	background-color:transparent;
	width:40px;
	border-radius:50%;
	height:40px;
	display:inline-block;
	font-size:0px;
	position:relative;
}


 .service .owl-nav .owl-prev:focus{
	outline:none;
	box-shadow:none!important;
}

 .service .owl-next:focus{
	outline:none;
	box-shadow:none!important;
}

 .service .owl-nav .owl-prev  span:after{
	color:gray;
	top:0;
	position:absolute;
	left:0;
	width:100%;
	height:100%;
	top:0;
	content:"\f053";
	font-size:20px;
	font-family: "Font Awesome 5 Free";
     font-weight: 900;
	 /*
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
	background:url(../img/left-arrow.png);
	-------*/
}


 .service .owl-nav .owl-next  span:after{
	top:0;
	position:absolute;
	right:0;
	width:100%;
	height:100%;
	color:gray;
	font-size:20px;
	font-family: "Font Awesome 5 Free";
     font-weight: 900;
	content:"\f054";
}


.service.owl-theme .owl-nav:hover button > span {
    background:transparent!important;
    color: #FFF;
    text-decoration: none;
}
.service.owl-theme .owl-nav [class*='owl-']:hover {
    background:transparent!important;
    /* color: #FFF; */
    text-decoration: none;
}





/*-------------team-slider---------------*/

.single-member{
 position:relative;
 width:100%;
 z-index:99;
}

.single-member-in{
 position:relative;
 margin:0px auto;
 z-index:99;
 border:1px solid red;
 width:150px;
}

.team-slider-wrap{
 width:100%;
 padding:40px 0px;
 position:relative;
 background-color:#6d3e82;
 border-bottom:1px solid white;
}

.team-slider-wrap:before{
 position:absolute;
 top:0;
 left:0;
 width:100%;
 height:100px;
 background-color:white;
 content:"";
}


.disination .name{
 font-size:14px;
 color:white;
 font-family:arial;
}

.disination .post{
  font-size:14px;
  font-family:arial;
 color:white;
}

.disination  p {
   font-size:14px;
  font-family:arial;
 color:white;
 }

 
 /*---------------------exl-box-------------*/
 
 .exl-box{
  background-color:#6d3e82;
  width:100%;
  height:100%;
  padding:50px 0px;
 }
 
 .experience-wrap{
  background-color:#fbfbfb;
  border-bottom:1px solid white;
 }
 
 
.experience-image{
background-color:white;
width:100%;
padding:20px 20px;
margin:20px 0px;
}

.exl-desc{
 padding:20px 40px 20px 20px;
}

.exl-desc > h5    {
     font-family:'arial',sans-sarif;
	font-size: 2.7em;
	color:white;
	font-weight:bold;
	text-transform:uppercase;
 }
 
 
  .exl-desc  .extra-para{
     display:inline-block;
	 margin:15px 0px 0px 0px;
    font-family:'arial',sans-sarif;
	font-size: 23px;
	color:white;
	font-weight:bold;
	text-transform:uppercase;
 }
.exl-desc  p{
     display:inline-block;
	 margin:15px 0px 0px 0px;
    font-family:'arial',sans-sarif;
	font-size: 20px;
	color:white;
	font-weight:lighter;
	/*text-transform:capitalize;*/
 }

 .exl-outer-box{
  width:100%;
  height:100%;
  position:relative;
 }

 .experience-other-image  {
  position:relative;
  top:50%;
  transform:translatey(-50%);
 }
 
 
 
 /*---------------------curiculum-wrapper----------------*/
 
 
 .curiculum-wrapper{
  width:100%;
padding:0px;
background-color:white;   
 }
 
 .curiculum-bg{
   background-color:#ebe4d9;
   width:100%;
   height:100%;
   padding:90px 0px 80px 80px;
 }
 
 
 .curiculum-bg > h4{
    text-transform:uppercase;
	font-size:56px;
	color:black;
	font-weight:bold;
	font-family:arial;
	
 }
 
 .curiculum-box{
  padding:0px 100px;
  position:relative;
  width:100%;
  height:100%;
 }
 
 .curiculum-in{
    position:relative;
	top:50%;
	transform:translatey(-50%);
 }
 
 .curiculum-box ul{
  margin:0px;
  padding:0px;
  list-style:none;
 }
 
  .curiculum-box ul  li{
   display:block;
   margin:-2px 0px 0px 0px;
   padding:0px;
  }
  
   .curiculum-box ul   li:nth-of-type(1){
    border-bottom:2px solid #dbd9d9;
   }
   
  .design-format{
   display:table;
   width:100%;
  }
  
  .left-format{
   display:table-cell;
   width:120px;
   padding:10px 20px;
  
  }
  
  .right-format{
   padding:24px 30px;
   border-left:2px solid #dbd9d9;
  }
 
 .design-format .right-format > p{
  font-size:16px;
  color:#333;
 }
 
 
 
 .curiculum-bottom{

  margin:60px 0px 60px 0px;
 }
 
 
 .footer-form-attr{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  height:35px;
  text-align:center;
  z-index:99;
  line-height:35px;
  background-color:#6d3e82;
  display:none;
 }
  .footer-form-attr > a{
   color:white;
   text-decoration:underline;
   font-size:17px;
   font-family:vardana;
  }

.form-check-label
{font-size:12px;}

#logom{ display:none;}

#logon{ display:none;}
#mobm{display:none;}

.row{
    margin-right:0px!important;
    margin-left: 0px!important;

}


.container {
    width: auto;
     padding-right: 0px; 
}

.button-click{
    display:block;
}

.img-fluid {
    max-width: 100%;
    height: none;
}