/*
  ISG Website — new design system (Edumate-inspired)
  Scoped to preview pages only. Does not affect the live site's public/assets/*.
*/

:root{
  --isg-navy: #0b2545;
  --isg-navy-dark: #081a33;
  --isg-green: #1f9d55;
  --isg-green-dark: #167a41;
  --isg-blue: #2e6bd6;
  --isg-teal: #1aa6a0;
  --isg-cyan: #63c6d6;
  --isg-light: #f4f7fb;
  --isg-text: #33404f;
  --isg-muted: #7c8797;
  --isg-white: #ffffff;
  --isg-radius: 10px;
  --isg-shadow: 0 10px 30px rgba(11, 37, 69, .08);
  --isg-font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Applied per-section (not on body) so nothing bleeds into not-yet-redesigned pages */
.et-scope{
  font-family: var(--isg-font);
  color: var(--isg-text);
}

.et-scope h1, .et-scope h2, .et-scope h3, .et-scope h4, .et-scope h5{
  font-family: var(--isg-font);
  font-weight: 700;
  color: var(--isg-navy);
}

.et-scope a{ text-decoration: none; }

/* ---------- Buttons ---------- */
.et-btn{
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  transition: all .2s ease;
  border: 2px solid transparent;
}
.et-btn-primary{
  background: var(--isg-green);
  color: #fff;
}
.et-btn-primary:hover{ background: var(--isg-green-dark); color: #fff; }
.et-btn-outline{
  border-color: rgba(255,255,255,.6);
  color: #fff;
}
.et-btn-outline:hover{ background: rgba(255,255,255,.12); color: #fff; }
.et-btn-outline-primary{
  border-color: var(--isg-green);
  color: var(--isg-green);
  background: transparent;
}
.et-btn-outline-primary:hover{ background: var(--isg-green); color: #fff; }
.et-navbar .et-btn{ padding: 6px 16px; font-size: 13px; border-width: 1.5px; }

/* ---------- Topbar ---------- */
.et-topbar{
  background: var(--isg-navy-dark);
  color: #cfd8e3;
  font-size: 13.5px;
  padding: 8px 0;
}
.et-topbar a{ color: #cfd8e3; }
.et-topbar a:hover{ color: #fff; }

.et-social-list{
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.et-social-list a{
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: inherit;
  font-size: 15px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.et-social-list a:hover{
  background: var(--isg-green);
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- Navbar ---------- */
.et-navbar{
  background: #fff;
  box-shadow: 0 2px 12px rgba(11,37,69,.06);
  padding: 14px 0;
}
.et-navbar .navbar-brand img{ height: 46px; }
.et-navbar .nav-link{
  color: var(--isg-navy);
  font-weight: 600;
  font-size: 15px;
  margin: 0 4px;
}
.et-navbar .nav-link:hover,
.et-navbar .nav-link.active{ color: var(--isg-green); }
.et-navbar .navbar-toggler{
  border-color: rgba(11,37,69,.2);
}
.et-navbar .navbar-toggler-icon{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(11, 37, 69, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---------- Hero ---------- */
.et-hero{
  position: relative;
  background: linear-gradient(120deg, var(--isg-navy) 55%, var(--isg-navy-dark) 55%);
  color: #fff;
  padding: 90px 0 110px;
  overflow: hidden;
}
.et-hero::before, .et-hero::after{
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.et-hero::before{
  width: 340px; height: 340px;
  background: var(--isg-green);
  opacity: .18;
  top: -120px; right: -80px;
}
.et-hero::after{
  width: 260px; height: 260px;
  background: #ffffff;
  opacity: .06;
  bottom: -100px; left: 10%;
}
.et-hero .container{ position: relative; z-index: 1; }
.et-hero .hero-wave{
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  line-height: 0;
  z-index: 1;
}
.et-hero .hero-wave svg{ width: 100%; height: 60px; display: block; }

/* Subtle dot-grid texture + soft color blob behind default (white) sections, for visual richness without noise */
.et-section:not(.et-about){
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(circle, rgba(11,37,69,.06) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  background-position: -8px -8px;
}
.et-section:not(.et-about)::before{
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: var(--isg-blue);
  opacity: .05;
  filter: blur(70px);
  bottom: -80px; right: -60px;
  pointer-events: none;
}
.et-section:not(.et-about) > .container{ position: relative; z-index: 1; }
.et-hero .hero-photo{
  border-radius: var(--isg-radius);
  box-shadow: var(--isg-shadow);
  max-width: 100%;
}
.et-hero h1{
  color: #fff;
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 18px;
}
.et-hero p{
  color: #cfd8e3;
  font-size: 17px;
  margin-bottom: 30px;
  max-width: 480px;
}

/* ---------- Section titles ---------- */
.et-section{ padding: 70px 0; position: relative; }
.et-section-title{ margin-bottom: 45px; }
.et-section-title h2{ font-size: 32px; margin-bottom: 10px; }
.et-section-title p{ color: var(--isg-muted); font-size: 15px; }
.et-section-title .bar{
  width: 60px; height: 4px; background: var(--isg-green); margin: 14px auto 0;
  border-radius: 2px;
}
.et-section-title.text-start .bar{ margin-left: 0; }

/* ---------- About / stat box ---------- */
.et-about{ background: var(--isg-light); position: relative; overflow: hidden; }
.et-about::before{
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--isg-green);
  opacity: .06;
  filter: blur(60px);
  top: -60px; right: -60px;
  pointer-events: none;
}
.et-about > .container{ position: relative; z-index: 1; }
.et-about-photo{ position: relative; }
.et-about-stat{
  background: var(--isg-navy);
  color: #fff;
  border-radius: var(--isg-radius);
  padding: 30px 34px;
  position: relative;
  margin-top: -60px;
  margin-left: 30px;
  box-shadow: var(--isg-shadow);
  max-width: 300px;
}
.et-about-stat li{
  list-style: none;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-weight: 600;
}
.et-about-stat li:last-child{ border-bottom: none; }
.et-about-stat li:before{ content: "— "; color: var(--isg-green); }

/* ---------- Course cards ---------- */
.et-course-card{
  background: #fff;
  border-radius: var(--isg-radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(11,37,69,.07);
  border: 1px solid #eef1f6;
  transition: transform .25s ease, box-shadow .25s ease;
}
.et-course-card:hover{ transform: translateY(-8px); box-shadow: 0 20px 40px rgba(11,37,69,.14); }
.et-course-card .thumb{
  position: relative;
  height: 170px;
  overflow: hidden;
}
.et-course-card .thumb img{ width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.et-course-card:hover .thumb img{ transform: scale(1.06); }
.et-course-card .thumb.no-image{
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 40px;
}
.et-course-card .tag{
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,.95);
  color: var(--isg-navy);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  padding: 5px 12px;
  border-radius: 20px;
}
.et-course-card .body{
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.et-course-card h4{
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.4;
  min-height: 45px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.et-course-card .meta{
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: var(--isg-muted);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.et-course-card .meta span{ display: inline-flex; align-items: center; gap: 5px; }
.et-course-card .cta{
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eef1f6;
  padding-top: 16px;
}
.et-course-card .cta a{
  font-weight: 600;
  font-size: 14px;
  color: var(--isg-green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.et-course-card .cta a:hover{ color: var(--isg-green-dark); }
.et-course-card .price{ font-weight: 700; color: var(--isg-navy); }

.et-card-navy{ background: linear-gradient(135deg, var(--isg-navy), var(--isg-navy-dark)); }
.et-card-green{ background: linear-gradient(135deg, var(--isg-green), var(--isg-green-dark)); }
.et-card-blue{ background: linear-gradient(135deg, var(--isg-blue), #1d4ea8); }
.et-card-teal{ background: linear-gradient(135deg, var(--isg-teal), #0f7570); }
.et-card-cyan{ background: linear-gradient(135deg, var(--isg-cyan), #3a9fb0); }

/* ---------- Service cards ---------- */
.et-service-card{
  background: #fff;
  border-radius: var(--isg-radius);
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 18px rgba(11,37,69,.07);
  border: 1px solid #eef1f6;
  transition: transform .25s ease, box-shadow .25s ease;
  text-align: center;
}
.et-service-card:hover{ transform: translateY(-8px); box-shadow: 0 20px 40px rgba(11,37,69,.14); }
.et-service-card .thumb{
  height: 160px;
  overflow: hidden;
}
.et-service-card .thumb img{ width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.et-service-card:hover .thumb img{ transform: scale(1.06); }
.et-service-card .icon-wrap{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--isg-light);
  color: var(--isg-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 22px auto 0;
}
.et-service-card .body{ padding: 20px 22px 26px; }
.et-service-card h5{ font-size: 17px; margin-bottom: 10px; }
.et-service-card p{ font-size: 13.5px; color: var(--isg-muted); margin-bottom: 0; }

/* ---------- Feature highlight cards ---------- */
.et-feature-card{
  background: #fff;
  border-radius: var(--isg-radius);
  padding: 34px 28px;
  height: 100%;
  text-align: center;
  box-shadow: 0 4px 18px rgba(11,37,69,.07);
  border: 1px solid #eef1f6;
  transition: transform .25s ease, box-shadow .25s ease;
}
.et-feature-card:hover{ transform: translateY(-8px); box-shadow: 0 20px 40px rgba(11,37,69,.14); }
.et-feature-card .icon-badge{
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
  transition: transform .25s ease;
}
.et-feature-card:hover .icon-badge{ transform: scale(1.08) rotate(-4deg); }
.et-feature-card.et-feature-navy .icon-badge{ background: rgba(11,37,69,.08); }
.et-feature-card.et-feature-green .icon-badge{ background: rgba(31,157,85,.12); }
.et-feature-card.et-feature-blue .icon-badge{ background: rgba(46,107,214,.10); }
.et-feature-card h4{ font-size: 18px; margin-bottom: 12px; }
.et-feature-card p{ font-size: 14px; color: var(--isg-muted); margin-bottom: 0; line-height: 1.7; }
.et-feature-card .num{
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--isg-green);
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ---------- Stats band ---------- */
.et-stats{
  background: linear-gradient(135deg, var(--isg-navy), var(--isg-navy-dark));
  color: #fff;
  padding: 55px 0;
  position: relative;
  overflow: hidden;
}
.et-stats::before{
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: var(--isg-green);
  opacity: .12;
  filter: blur(80px);
  top: -140px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.et-stats .container{ position: relative; z-index: 1; }
.et-stats .icon{ font-size: 34px; color: var(--isg-green); margin-bottom: 10px; }
.et-stats .num{ font-size: 40px; font-weight: 700; color: var(--isg-green); transition: transform .25s ease; }
.et-stats .col-6:hover .num{ transform: scale(1.1); }
.et-stats .label{ color: #cfd8e3; font-size: 15px; }

/* ---------- Scroll-reveal animation ---------- */
.et-reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.et-reveal.et-in-view{
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Event / workshop cards ---------- */
.et-event-card{
  display: flex;
  gap: 16px;
  background: #fff;
  border-radius: var(--isg-radius);
  box-shadow: var(--isg-shadow);
  padding: 18px;
  margin-bottom: 18px;
}
.et-event-date{
  background: var(--isg-light);
  border-radius: 8px;
  min-width: 66px;
  height: 66px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--isg-navy);
  font-weight: 700;
}
.et-event-date .day{ font-size: 20px; line-height: 1; }
.et-event-date .mon{ font-size: 11px; text-transform: uppercase; color: var(--isg-green); }
.et-event-card h5{ font-size: 16px; margin-bottom: 6px; }
.et-event-card .meta{ font-size: 13px; color: var(--isg-muted); }

/* ---------- Teacher / testimonial cards ---------- */
.et-teacher-card{
  background: #fff;
  border-radius: var(--isg-radius);
  overflow: hidden;
  height: 100%;
  text-align: center;
  box-shadow: 0 4px 18px rgba(11,37,69,.07);
  border: 1px solid #eef1f6;
  transition: transform .25s ease, box-shadow .25s ease;
}
.et-teacher-card:hover{ transform: translateY(-8px); box-shadow: 0 20px 40px rgba(11,37,69,.14); }
.et-teacher-card .photo{ position: relative; overflow: hidden; aspect-ratio: 4/5; }
.et-teacher-card .photo img{ width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.et-teacher-card:hover .photo img{ transform: scale(1.08); }
.et-teacher-card .photo-empty{
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--isg-light), #e7ecf3);
  color: var(--isg-navy);
  opacity: .35;
  font-size: 54px;
}
.et-teacher-card .photo::after{
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 46%;
  background: linear-gradient(0deg, rgba(11,37,69,.55), rgba(11,37,69,0));
  opacity: 0;
  transition: opacity .25s ease;
}
.et-teacher-card:hover .photo::after{ opacity: 1; }
.et-teacher-card .accent{ height: 3px; background: linear-gradient(90deg, var(--isg-green), var(--isg-blue)); }
.et-teacher-card .body{ padding: 18px 16px 22px; }
.et-teacher-card h5{ margin-bottom: 4px; font-size: 16px; }
.et-teacher-card .role{
  color: var(--isg-green);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.et-testimonial{
  background: var(--isg-light);
  border-radius: var(--isg-radius);
  padding: 30px;
  height: 100%;
}
.et-testimonial p{ font-style: italic; color: var(--isg-text); }
.et-testimonial .name{ font-weight: 700; color: var(--isg-navy); }
.et-testimonial .role{ font-size: 13px; color: var(--isg-muted); }

/* ---------- Testimonial card (quote style) ---------- */
.et-quote-card{
  background: #fff;
  border-radius: var(--isg-radius);
  padding: 34px 30px 28px;
  height: 100%;
  box-shadow: 0 4px 18px rgba(11,37,69,.07);
  border: 1px solid #eef1f6;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.et-quote-card:hover{ transform: translateY(-6px); box-shadow: 0 20px 40px rgba(11,37,69,.12); }
.et-quote-card .quote-icon{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--isg-light);
  color: var(--isg-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 18px;
}
.et-quote-card .stars{ color: #f5b301; font-size: 13px; margin-bottom: 12px; }
.et-quote-card p{
  font-style: normal;
  color: var(--isg-text);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 22px;
  min-height: 96px;
}
.et-quote-card .author{ display: flex; align-items: center; gap: 12px; border-top: 1px solid #eef1f6; padding-top: 18px; }
.et-quote-card .avatar{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--isg-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  overflow: hidden;
}
.et-quote-card .avatar img{ width: 100%; height: 100%; object-fit: cover; }
.et-quote-card .name{ font-weight: 700; color: var(--isg-navy); font-size: 14.5px; }
.et-quote-card .role{ font-size: 12.5px; color: var(--isg-muted); }

/* ---------- Authorization card ---------- */
.et-auth-card{
  background: #fff;
  border-radius: var(--isg-radius);
  border: 1px solid #eef1f6;
  box-shadow: 0 4px 18px rgba(11,37,69,.06);
  padding: 26px 18px;
  text-align: center;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.et-auth-card:hover{ transform: translateY(-6px); box-shadow: 0 16px 32px rgba(11,37,69,.12); }
.et-auth-card .logo-wrap{
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.et-auth-card img{
  max-height: 80px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .75;
  transition: all .25s ease;
}
.et-auth-card:hover img{ filter: grayscale(0%); opacity: 1; }
.et-auth-card .title{
  font-size: 12.5px;
  font-weight: 600;
  color: var(--isg-navy);
  text-transform: uppercase;
  letter-spacing: .3px;
}

/* ---------- Newsletter ---------- */
.et-newsletter{ background: var(--isg-light); padding: 55px 0; }

/* ---------- Offer & Discount banner ---------- */
.et-offer-banner{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(120deg, var(--isg-navy) 0%, var(--isg-green-dark) 130%);
  box-shadow: 0 20px 50px rgba(11,37,69,.2);
}
.et-offer-banner::before{
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: var(--isg-green);
  opacity: .25;
  filter: blur(90px);
  top: -160px; right: -60px;
  pointer-events: none;
}
.et-offer-info{
  padding: 52px 46px;
  position: relative;
  z-index: 1;
}
.et-offer-info .eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.et-offer-info h2{
  color: #fff;
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 22px;
  max-width: 460px;
}
.et-offer-photo{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 240px;
  padding: 28px;
  background: rgba(255,255,255,.06);
}
.et-offer-photo img{
  max-width: 100%;
  max-height: 260px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
}
.et-offer-photo-empty{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  font-size: 90px;
  color: rgba(255,255,255,.18);
}

/* Countdown timer (styled output of the site's existing jquery.countdown plugin) */
.et-countdown{
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.et-countdown .cdown{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
  min-width: 68px;
}
.et-countdown .time-count{
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.et-countdown p{
  margin: 4px 0 0;
  font-size: 10.5px;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .4px;
}

.et-offer-form-card{
  background: #fff;
  border-radius: var(--isg-radius);
  box-shadow: 0 4px 18px rgba(11,37,69,.07);
  border: 1px solid #eef1f6;
  padding: 30px;
  margin-top: 24px;
}
.et-offer-form-card h5{ margin-bottom: 4px; }
.et-offer-form-card .sub{ color: var(--isg-muted); font-size: 13.5px; margin-bottom: 18px; }

@media (max-width: 991px){
  .et-offer-info{ padding: 40px 28px; text-align: center; }
  .et-offer-info h2{ max-width: 100%; }
  .et-countdown{ justify-content: center; }
  .et-offer-photo{ min-height: 200px; }
}

/* ---------- Footer ---------- */
.et-footer{ background: var(--isg-navy-dark); color: #b9c4d3; padding: 60px 0 0; }
.et-footer h5{ color: #fff; margin-bottom: 20px; font-size: 16px; }
.et-footer ul{ list-style: none; padding: 0; margin: 0; }
.et-footer li{ margin-bottom: 10px; }
.et-footer a{ color: #b9c4d3; }
.et-footer a:hover{ color: var(--isg-green); }
.et-footer .bottom-bar{
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 40px;
  padding: 18px 0;
  font-size: 13.5px;
  text-align: center;
}

/* ---------- Owl-carousel nav restyle (used by course/service/testimonial/authorization/event/workshop sliders) ---------- */
.et-scope .owl-theme .owl-nav{ margin-top: 20px; text-align: center; }
.et-scope .owl-theme .owl-nav [class*="owl-"]{
  background: var(--isg-light) !important;
  color: var(--isg-navy) !important;
  width: 40px;
  height: 40px;
  line-height: 38px;
  border-radius: 50%;
  margin: 0 6px !important;
  font-size: 20px !important;
  transition: all .2s ease;
}
.et-scope .owl-theme .owl-nav [class*="owl-"]:hover{
  background: var(--isg-green) !important;
  color: #fff !important;
}
/* Arrows are the only nav control shown — dots are hidden to avoid two stacked controls under each slider */
.et-scope .owl-theme .owl-dots{ display: none; }
.et-scope .owl-carousel .item{ padding: 6px; height: 100%; }
/* Equal-height cards: owl's stage/item wrappers don't stretch to match siblings by default */
.et-scope .owl-carousel .owl-stage{ display: flex; align-items: stretch; }
.et-scope .owl-carousel .owl-stage .owl-item{ height: auto; display: flex; }
.et-scope .owl-carousel .owl-item > .item{ width: 100%; }

@media (max-width: 991px){
  .et-hero{ background: var(--isg-navy); text-align: center; }
  .et-hero p{ margin-left: auto; margin-right: auto; }
  .et-about-stat{ margin-left: 0; margin-top: 20px; }
}

/* ---------- Inner-page header (About/Contact/Events/Gallery/etc.) ---------- */
.et-page-header{
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--isg-navy) 55%, var(--isg-navy-dark) 55%);
  color: #fff;
  padding: 60px 0 85px;
  text-align: center;
}
.et-page-header::before, .et-page-header::after{
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.et-page-header::before{ width: 300px; height: 300px; background: var(--isg-green); opacity: .18; top: -110px; right: -60px; }
.et-page-header::after{ width: 220px; height: 220px; background: #fff; opacity: .06; bottom: -90px; left: 8%; }
.et-page-header .container{ position: relative; z-index: 1; }
.et-page-header h1{ color: #fff; font-size: 36px; margin-bottom: 12px; }
.et-page-header .breadcrumb{ background: transparent; justify-content: center; padding: 0; margin: 0; }
.et-page-header .breadcrumb-item, .et-page-header .breadcrumb-item a{ color: rgba(255,255,255,.75); font-size: 14px; }
.et-page-header .breadcrumb-item.active{ color: #fff; }
.et-page-header .breadcrumb-item + .breadcrumb-item::before{ color: rgba(255,255,255,.5); }
.et-page-header .hero-wave{ position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; z-index: 1; }
.et-page-header .hero-wave svg{ width: 100%; height: 50px; display: block; }

/* ---------- Video play button ---------- */
.et-video-box{ position: relative; border-radius: var(--isg-radius); overflow: hidden; box-shadow: var(--isg-shadow); }
.et-video-box img{ width: 100%; height: 100%; object-fit: cover; }
.et-video-box .play-btn{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 66px; height: 66px;
  border-radius: 50%;
  background: var(--isg-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 0 0 12px rgba(255,255,255,.25);
  transition: transform .25s ease;
}
.et-video-box .play-btn:hover{ transform: translate(-50%, -50%) scale(1.08); color: #fff; }

/* ---------- Director / spotlight card ---------- */
.et-spotlight{
  background: var(--isg-light);
  border-radius: 18px;
  padding: 44px;
  position: relative;
  overflow: hidden;
}
.et-spotlight::before{
  content: "";
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: var(--isg-green);
  opacity: .08;
  filter: blur(70px);
  top: -80px; right: -40px;
}
.et-spotlight .quote-icon{ font-size: 34px; color: var(--isg-green); margin-bottom: 14px; }
.et-spotlight p{ font-size: 16px; line-height: 1.8; color: var(--isg-text); }
.et-spotlight .name{ font-weight: 700; color: var(--isg-navy); font-size: 18px; margin-top: 18px; }
.et-spotlight .role{ font-size: 13.5px; color: var(--isg-muted); }
.et-spotlight-photo{ border-radius: 18px; overflow: hidden; box-shadow: var(--isg-shadow); }
.et-spotlight-photo img{ width: 100%; height: 100%; object-fit: cover; }

/* ---------- Post card (events / workshops list) ---------- */
.et-post-card{
  background: #fff;
  border-radius: var(--isg-radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(11,37,69,.07);
  border: 1px solid #eef1f6;
  transition: transform .25s ease, box-shadow .25s ease;
}
.et-post-card:hover{ transform: translateY(-8px); box-shadow: 0 20px 40px rgba(11,37,69,.14); }
.et-post-card .thumb{ position: relative; height: 200px; overflow: hidden; }
.et-post-card .thumb img{ width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.et-post-card:hover .thumb img{ transform: scale(1.06); }
.et-post-card .thumb.no-image{
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 44px;
}
.et-post-card .date-badge{
  position: absolute;
  top: 14px; left: 14px;
  background: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  text-align: center;
  min-width: 56px;
  box-shadow: 0 4px 12px rgba(0,0,0,.14);
}
.et-post-card .date-badge .day{ font-size: 18px; font-weight: 700; color: var(--isg-navy); line-height: 1; }
.et-post-card .date-badge .mon{ font-size: 10px; text-transform: uppercase; color: var(--isg-green); font-weight: 700; }
.et-post-card .body{ padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.et-post-card .meta{ font-size: 12.5px; color: var(--isg-muted); margin-bottom: 10px; display: flex; gap: 14px; flex-wrap: wrap; }
.et-post-card .meta span{ display: inline-flex; align-items: center; gap: 5px; }
.et-post-card h4{ font-size: 17px; margin-bottom: 10px; line-height: 1.4; }
.et-post-card p{ font-size: 13.5px; color: var(--isg-muted); margin-bottom: 16px; flex: 1; }
.et-post-card .readmore{ font-weight: 600; font-size: 13.5px; color: var(--isg-green); display: inline-flex; align-items: center; gap: 6px; }
.et-post-card .readmore:hover{ color: var(--isg-green-dark); }
.et-card-navy .thumb.no-image, .et-post-card .thumb.no-image.et-card-navy{ background: linear-gradient(135deg, var(--isg-navy), var(--isg-navy-dark)); }
.et-post-card .thumb.no-image{ background: linear-gradient(135deg, var(--isg-navy), var(--isg-navy-dark)); }

/* ---------- Detail page (event / workshop single) ---------- */
.et-detail-card{
  background: #fff;
  border-radius: var(--isg-radius);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(11,37,69,.07);
  border: 1px solid #eef1f6;
}
.et-detail-card .cover{ width: 100%; max-height: 420px; object-fit: contain; background: var(--isg-light); }
.et-detail-card .cover-empty{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
  background: linear-gradient(135deg, var(--isg-navy), var(--isg-navy-dark));
  color: rgba(255,255,255,.3);
  font-size: 60px;
}
.et-detail-card .body{ padding: 36px; }
.et-detail-card .meta-row{ display: flex; gap: 22px; flex-wrap: wrap; margin-bottom: 20px; }
.et-detail-card .meta-row .chip{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--isg-light);
  color: var(--isg-navy);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 30px;
}
.et-detail-card h1{ font-size: 28px; margin-bottom: 18px; }
.et-detail-card .content{ font-size: 15.5px; line-height: 1.9; color: var(--isg-text); }

/* ---------- Sidebar widgets (courses list, course detail) ---------- */
.et-widget{
  background: #fff;
  border-radius: var(--isg-radius);
  box-shadow: 0 4px 18px rgba(11,37,69,.07);
  border: 1px solid #eef1f6;
  padding: 26px;
  margin-bottom: 24px;
}
.et-widget h5{ font-size: 15px; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--isg-light); }
.et-widget ul{ list-style: none; padding: 0; margin: 0; }
.et-widget li{ padding: 9px 0; border-bottom: 1px solid #f0f2f6; }
.et-widget li:last-child{ border-bottom: none; }
.et-widget li a{ color: var(--isg-text); font-size: 14px; display: flex; justify-content: space-between; }
.et-widget li a:hover{ color: var(--isg-green); }
.et-widget-course{ display: flex; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid #f0f2f6; }
.et-widget-course:last-child{ border-bottom: none; }
.et-widget-course img{ width: 56px; height: 56px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.et-widget-course a{ font-size: 13.5px; font-weight: 600; color: var(--isg-navy); line-height: 1.4; }
.et-widget-course a:hover{ color: var(--isg-green); }

/* ---------- Horizontal course row (courses list page) ---------- */
.et-course-row{
  background: #fff;
  border-radius: var(--isg-radius);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(11,37,69,.07);
  border: 1px solid #e3e8f0;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.et-course-row:last-child{ margin-bottom: 0; }
.et-course-row:hover{ box-shadow: 0 16px 34px rgba(11,37,69,.12); border-color: var(--isg-green); transform: translateY(-3px); }
.et-course-row .thumb{ width: 260px; flex-shrink: 0; min-height: 180px; background: var(--isg-light); }
.et-course-row .thumb img{ width: 100%; height: 100%; object-fit: contain; }
.et-course-row .thumb.no-image{ display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--isg-navy), var(--isg-navy-dark)); color: #fff; font-size: 36px; }
.et-course-row .body{ padding: 24px 26px; flex: 1; min-width: 240px; }
.et-course-row .badge-type{ background: var(--isg-light); color: var(--isg-navy); font-size: 11.5px; font-weight: 700; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; margin-bottom: 10px; display: inline-block; }
.et-course-row h4{ font-size: 18px; margin-bottom: 10px; }
.et-course-row p{ font-size: 13.5px; color: var(--isg-muted); margin-bottom: 14px; }
.et-course-row .meta{ font-size: 12.5px; color: var(--isg-muted); margin-bottom: 14px; display: flex; gap: 16px; flex-wrap: wrap; }
.et-course-row .meta span{ display: inline-flex; align-items: center; gap: 5px; }
@media (max-width: 767px){
  .et-course-row .thumb{ width: 100%; min-height: 200px; }
}

/* ---------- Gallery grid ---------- */
.et-gallery-nav{ display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.et-gallery-nav li{
  list-style: none;
  cursor: pointer;
  padding: 9px 20px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
  background: var(--isg-light);
  color: var(--isg-navy);
  transition: all .2s ease;
}
.et-gallery-nav li:hover{ background: #e5eaf1; }
.et-gallery-nav li.active{ background: var(--isg-green); color: #fff; }
.et-gallery-card{
  position: relative;
  border-radius: var(--isg-radius);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(11,37,69,.07);
  aspect-ratio: 1/1;
}
.et-gallery-card img{ width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.et-gallery-card:hover img{ transform: scale(1.1); }
.et-gallery-card .overlay{
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11,37,69,.75), rgba(11,37,69,0) 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s ease;
  padding-bottom: 20px;
  pointer-events: none;
}
.et-gallery-card:hover .overlay{ opacity: 1; }
.et-gallery-card .overlay a{
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--isg-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  pointer-events: auto;
}

/* ---------- Certificate verify card ---------- */
.et-verify-card{
  background: #fff;
  border-radius: var(--isg-radius);
  box-shadow: 0 4px 18px rgba(11,37,69,.07);
  border: 1px solid #eef1f6;
  overflow: hidden;
}
.et-verify-card .head{ background: var(--isg-navy); color: #fff; padding: 22px 26px; }
.et-verify-card .head h3{ color: #fff; font-size: 18px; margin: 0; }
.et-verify-card .body{ padding: 26px; }
.et-verify-result{
  background: #fff;
  border-radius: var(--isg-radius);
  box-shadow: 0 4px 18px rgba(11,37,69,.07);
  border: 1px solid #eef1f6;
  padding: 30px;
}
.et-verify-result .row-item{ display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #f0f2f6; font-size: 14px; }
.et-verify-result .row-item:last-child{ border-bottom: none; }
.et-verify-result .row-item .k{ color: var(--isg-muted); }
.et-verify-result .row-item .v{ font-weight: 600; color: var(--isg-navy); }
.et-verify-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(31,157,85,.1);
  color: var(--isg-green-dark);
  font-weight: 700;
  font-size: 13.5px;
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}

/* ---------- Blog like button ---------- */
.et-like-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--isg-light);
  color: var(--isg-navy);
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s ease;
}
.et-like-btn:hover{ background: #e5eaf1; }
.et-like-btn.liked{ background: rgba(220,53,69,.1); color: #dc3545; }
.et-like-btn i{ font-size: 17px; }
.et-share-row{ display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.et-share-row a{
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--isg-light);
  color: var(--isg-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all .2s ease;
}
.et-share-row a:hover{ background: var(--isg-green); color: #fff; }

/* ---------- Blog comments ---------- */
.et-comment{
  display: flex;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid #f0f2f6;
}
.et-comment:last-child{ border-bottom: none; }
.et-comment .avatar{
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--isg-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.et-comment .name{ font-weight: 700; color: var(--isg-navy); font-size: 14.5px; }
.et-comment .date{ font-size: 12px; color: var(--isg-muted); margin-left: 8px; }
.et-comment .text{ font-size: 14px; color: var(--isg-text); margin: 6px 0 8px; line-height: 1.7; }
.et-comment .reply-btn{ font-size: 12.5px; font-weight: 600; color: var(--isg-green); cursor: pointer; }
.et-comment .reply-btn:hover{ color: var(--isg-green-dark); }
.et-comment .replies{ margin-top: 16px; padding-left: 20px; border-left: 2px solid var(--isg-light); }
.et-reply-form{ margin-top: 14px; display: none; }
.et-comment-form .form-control{ margin-bottom: 12px; }

/* Sticky contact widget: WhatsApp / Quick Enquiry / Call — fixed on the right, vertically centered */
.et-sticky-contact{
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.et-sticky-btn{
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  border: none;
  box-shadow: var(--isg-shadow);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.et-sticky-btn:hover{ transform: scale(1.08); color: #fff; }
.et-sticky-whatsapp{ background: #25D366; }
.et-sticky-call{ background: var(--isg-navy); }
.et-sticky-enquiry{ background: var(--isg-green); }
@media (max-width: 576px){
  .et-sticky-contact{ right: 10px; gap: 10px; }
  .et-sticky-btn{ width: 44px; height: 44px; font-size: 18px; }
}

/* Nested dropdown (Courses -> Category -> Course) — Bootstrap 4 has no built-in multi-level support */
.et-navbar .dropdown-submenu{ position: relative; }
.et-navbar .dropdown-submenu > .dropdown-menu{
  top: 0;
  left: 100%;
  margin-top: -4px;
  display: none;
}
.et-navbar .dropdown-submenu:hover > .dropdown-menu{ display: block; }
.et-navbar .dropdown-submenu > a.dropdown-toggle::after{
  float: right;
  margin-top: 7px;
  transform: rotate(-90deg);
}
@media (max-width: 991px){
  .et-navbar .dropdown-submenu > .dropdown-menu{
    position: static;
    display: block;
    left: 0;
    margin-top: 0;
    padding-left: 16px;
    border: none;
    box-shadow: none;
  }
  .et-navbar .dropdown-submenu > a.dropdown-toggle::after{ transform: none; }
}

/* FAQ accordion */
.et-faq-item{
  border: 1px solid var(--isg-light);
  border-radius: var(--isg-radius);
  margin-bottom: 14px;
  overflow: hidden;
}
.et-faq-question{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--isg-light);
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
  color: var(--isg-navy);
  cursor: pointer;
}
.et-faq-question i{ transition: transform .25s ease; flex-shrink: 0; color: var(--isg-green); }
.et-faq-question[aria-expanded="true"] i{ transform: rotate(180deg); }
.et-faq-question[aria-expanded="true"]{ background: rgba(31,157,85,.08); }
.et-faq-answer{
  padding: 18px 22px;
  color: var(--isg-text);
  line-height: 1.8;
  font-size: 14.5px;
}
