﻿/* ====================================================
   PALLIKOODAM EXACT DESIGN CLONE
   Colors: #f1aa00 (amber) | #ff236c (pink) | #a5c347 (green)
   Fonts: Raleway (body) | Quicksand (headings)
   ==================================================== */

/* ── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: #808080;
  background: #ffffff;
  margin: 0;
  padding: 0;
}

a { color: #f0aa00; text-decoration: none; transition: color .3s; }
a:hover, a:focus { color: #ff236c; text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: #000000;
  margin-top: 0;
  line-height: 1.2;
}
h1 { font-size: 56px; }
h2 { font-size: 42px; }
h3 { font-size: 30px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 16px; }

img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }

/* ── TOP BAR ──────────────────────────────────────── */
.toparea {
  background-color: #32373c;
  padding: 8px 0;
  font-size: 13px;
  font-family: 'Raleway', sans-serif;
}
.toparea .top-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.toparea .top-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.75);
}
.toparea .top-list li i { color: #f1aa00; font-size: 12px; }
.toparea .top-list a { color: rgba(255,255,255,.75); }
.toparea .top-list a:hover { color: #f1aa00; }

/* news ticker */
.newscontent {
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
}
.newstab {
  background: #f1aa00;
  color: #fff;
  padding: 3px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.newscontent marquee { flex: 1; color: rgba(255,255,255,.75); font-size: 12px; }
.newscontent marquee ul { display: inline-flex; gap: 30px; }
.newscontent marquee li { display: inline; }
.newscontent marquee li a { color: rgba(255,255,255,.75); }
.newscontent marquee li a:hover { color: #f1aa00; }

/* ── NAVBAR ───────────────────────────────────────── */
#navbar_top header, #navbar_top > header { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.08); }
#navbar_top .container { padding: 0 15px; }
.navbar { position: relative; margin-bottom: 0; border: none; border-radius: 0; background: transparent; min-height: 70px; }
.navbar-brand.logo { padding: 10px 0; height: 70px; display: flex; align-items: center; }
.navbar-brand.logo img { max-height: 50px; }
.navbar .navbar-nav > li > a {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #32373c;
  padding: 24px 16px;
  line-height: 1;
  transition: color .3s;
}
.navbar .navbar-nav > li > a:hover,
.navbar .navbar-nav > li.active > a { color: #f1aa00; background: transparent !important; }
.navbar .navbar-nav > li.active > a::after {
  content: '';
  display: block;
  height: 3px;
  background: #f1aa00;
  margin-top: 4px;
}
.navbar .navbar-toggle { border-color: #f1aa00; margin-top: 18px; }
.navbar .navbar-toggle .icon-bar { background-color: #f1aa00; }
.navbar .dropdown-menu { border-top: 3px solid #f1aa00; border-radius: 0; box-shadow: 0 5px 20px rgba(0,0,0,.1); }
.navbar .dropdown-menu li a { color: #32373c; padding: 10px 20px; font-size: 14px; font-weight: 500; }
.navbar .dropdown-menu li a:hover { color: #f1aa00; background: #fef8e6; }

/* ── HERO SLIDER ──────────────────────────────────── */
.hero-wrapper { position: relative; overflow: hidden; }
.bs-slider { position: relative; }
.bs-slider .item { position: relative; overflow: hidden; min-height: 600px; }
.bs-slider .item img { width: 100%; height: 600px; object-fit: cover; display: block; }
.bs-slider .carousel-inner { min-height: 600px; }

/* hero caption overlay */
.hero-caption {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  z-index: 10;
  max-width: 520px;
  color: #fff;
}
.hero-caption .tagline {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  background: #f1aa00;
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.hero-caption h1 {
  font-family: 'Quicksand', sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 15px;
}
.hero-caption p.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,.9);
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1aa00;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 30px;
  border-radius: 30px;
  transition: all .3s;
  border: 2px solid #f1aa00;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-btn:hover { background: #ff236c; border-color: #ff236c; color: #fff; }
.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 30px;
  border-radius: 30px;
  border: 2px solid rgba(255,255,255,.7);
  transition: all .3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-btn-outline:hover { background: rgba(255,255,255,.15); color: #fff; border-color: #fff; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* slider decorative shapes */
.slider-shape { position: absolute; z-index: 5; pointer-events: none; }
.slider-shape.yellow { bottom: 20px; left: 60px; }
.slider-shape.shapebar { top: 30px; right: 100px; }
.slider-shape.colorbars { bottom: 40px; right: 40px; }

/* carousel controls */
.bs-slider .carousel-control {
  width: 44px;
  background: rgba(241,170,0,.85);
  top: 50%;
  transform: translateY(-50%);
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  opacity: 0;
  transition: opacity .3s;
}
.hero-wrapper:hover .carousel-control { opacity: 1; }
.bs-slider .carousel-control.left { left: 20px; right: auto; }
.bs-slider .carousel-control.right { right: 20px; left: auto; }
.bs-slider .carousel-control span { font-size: 22px; top: auto; left: auto; margin: 0; line-height: 44px; }
.bs-slider .carousel-indicators li { border-color: rgba(255,255,255,.5); }
.bs-slider .carousel-indicators .active { background: #f1aa00; border-color: #f1aa00; }

/* ── FEATURES STRIP ───────────────────────────────── */
.features-strip { padding: 70px 0 50px; background: #fff; }
.feature-card {
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid #def5ff;
  background: linear-gradient(180deg, #def5ff 0%, rgba(255,255,255,0) 40%);
  box-shadow: 0 0 30px rgba(0,0,0,.05) inset;
  text-align: center;
  margin-bottom: 30px;
  transition: box-shadow .3s, transform .3s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(100,200,255,.15); }
.feature-card.amber { background: linear-gradient(180deg, #fff4dc 0%, rgba(255,255,255,0) 40%); border-color: #fff4dc; }
.feature-card.amber:hover { box-shadow: 0 10px 30px rgba(240,170,0,.15); }
.feature-card.purple { background: linear-gradient(180deg, #eee1ff 0%, rgba(255,255,255,0) 40%); border-color: #f2e8ff; }
.feature-card.purple:hover { box-shadow: 0 10px 30px rgba(136,0,255,.1); }
.feature-card.green { background: linear-gradient(180deg, #d6ece5 0%, rgba(255,255,255,0) 40%); border-color: #d6ece5; }
.feature-card.green:hover { box-shadow: 0 10px 30px rgba(165,195,71,.15); }
.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #64c8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: #fff;
}
.feature-card.amber .feature-icon { background: #f0aa00; }
.feature-card.purple .feature-icon { background: #8800ff; }
.feature-card.green .feature-icon { background: #a5c347; }
.feature-card h4 { font-size: 18px; font-weight: 700; color: #000; margin-bottom: 12px; }
.feature-card p { font-size: 14px; color: #808080; margin-bottom: 16px; line-height: 1.7; }
.feature-card a { color: #f1aa00; font-weight: 700; font-size: 14px; }
.feature-card a:hover { color: #ff236c; }

/* ── SECTION HEADINGS ─────────────────────────────── */
.sec-head { text-align: center; margin-bottom: 40px; }
.sec-head h2 { font-size: 38px; color: #000; margin-bottom: 10px; }
.sec-head h2 span { color: #f1aa00; }
.sec-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, #a5c347, #f1aa00);
  margin: 12px auto;
  border-radius: 3px;
}
.sec-head p { color: #808080; font-size: 15px; max-width: 600px; margin: 0 auto; }

/* ── CURRICULUM SECTION ───────────────────────────── */
.curriculum-section { padding: 80px 0; background: #f9fafb; }
.curriculum-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  margin-bottom: 30px;
  transition: transform .3s, box-shadow .3s;
}
.curriculum-card:hover { transform: translateY(-6px); box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.curriculum-card .card-img { position: relative; overflow: hidden; }
.curriculum-card .card-img img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform .5s; }
.curriculum-card:hover .card-img img { transform: scale(1.05); }
.age-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #f1aa00;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.curriculum-card .card-body { padding: 22px; }
.curriculum-card .card-body h4 { font-size: 18px; color: #000; margin-bottom: 10px; }
.curriculum-card .card-body p { font-size: 14px; color: #808080; margin-bottom: 16px; line-height: 1.7; }
.curriculum-card .card-body a { color: #f1aa00; font-weight: 700; font-size: 14px; }
.curriculum-card .card-body a:hover { color: #ff236c; }

/* ── WHY CHOOSE US ────────────────────────────────── */
.whychoose-section { padding: 80px 0; background: #fff; }
.why-point { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f1aa00;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}
.why-point h5 { font-size: 16px; font-weight: 700; color: #000; margin-bottom: 6px; }
.why-point p { font-size: 14px; color: #808080; margin: 0; line-height: 1.6; }

.inquiry-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 30px rgba(0,0,0,.06);
}
.inquiry-card h3 { font-size: 22px; color: #000; margin-bottom: 22px; }
.inquiry-card .form-control {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  height: 46px;
  font-size: 14px;
  font-family: 'Raleway', sans-serif;
  color: #444;
}
.inquiry-card textarea.form-control { height: 90px; }
.inquiry-card .form-control:focus { border-color: #f1aa00; box-shadow: 0 0 0 3px rgba(241,170,0,.15); }
.inquiry-card .btn-submit {
  width: 100%;
  background: #f1aa00;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 13px;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background .3s;
}
.inquiry-card .btn-submit:hover { background: #ff236c; }

/* ── TEAM SECTION ─────────────────────────────────── */
.team-section { padding: 80px 0; background: #f9fafb; }
.team-card {
  text-align: center;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  margin-bottom: 30px;
  transition: transform .3s, box-shadow .3s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.team-card .team-img { position: relative; overflow: hidden; }
.team-card .team-img img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform .5s; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-card .team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(241,170,0,.9);
  padding: 10px;
  display: flex;
  justify-content: center;
  gap: 14px;
  transform: translateY(100%);
  transition: transform .3s;
}
.team-card:hover .team-overlay { transform: translateY(0); }
.team-card .team-overlay a { color: #fff; font-size: 15px; }
.team-card .team-overlay a:hover { color: #32373c; }
.team-card .team-info { padding: 20px 16px 24px; }
.team-card .team-info h4 { font-size: 17px; color: #000; margin-bottom: 5px; }
.team-card .team-info p { font-size: 13px; color: #f1aa00; margin-bottom: 4px; }
.team-card .team-info a.phone { font-size: 13px; color: #808080; }
.team-card .team-info a.phone:hover { color: #f1aa00; }

/* ── TESTIMONIALS ─────────────────────────────────── */
.testimonials-section { padding: 80px 0; background: #fff; }
.testi-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  text-align: center;
  margin-bottom: 30px;
}
.testi-card .testi-img img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f1aa00;
  margin: 0 auto 16px;
  display: block;
}
.testi-card .testi-quote { font-size: 15px; color: #555; font-style: italic; line-height: 1.7; margin-bottom: 16px; }
.testi-card .testi-name { font-size: 15px; font-weight: 700; color: #000; font-family: 'Quicksand', sans-serif; }
.testi-card .testi-role { font-size: 12px; color: #f1aa00; text-transform: uppercase; letter-spacing: 1px; }
.testi-card .quote-icon { color: #f1aa00; font-size: 30px; line-height: 1; margin-bottom: 10px; }
.owl-carousel .owl-nav button { background: #f1aa00 !important; color: #fff !important; border-radius: 50% !important; }

/* ── STATS COUNTER ────────────────────────────────── */
.stats-section { padding: 80px 0; background: #32373c; position: relative; overflow: hidden; }
.stats-section::before { content: ''; position: absolute; inset: 0; background: rgba(241,170,0,.05); }
.stats-section .stripe-man {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  opacity: .15;
  pointer-events: none;
}
.stat-item { text-align: center; margin-bottom: 30px; position: relative; }
.stat-icon { font-size: 40px; color: #f1aa00; margin-bottom: 12px; }
.stat-item h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1;
}
.stat-item p { font-size: 14px; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 2px; margin: 0; }

/* ── BLOG SECTION ─────────────────────────────────── */
.blog-section { padding: 80px 0; background: #f9fafb; }
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  margin-bottom: 30px;
  transition: transform .3s, box-shadow .3s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.blog-card .blog-img img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform .5s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-card .blog-body { padding: 22px; }
.blog-card .blog-date { font-size: 12px; color: #f1aa00; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.blog-card .blog-body h4 { font-size: 17px; color: #000; margin-bottom: 10px; line-height: 1.4; }
.blog-card .blog-body p { font-size: 13px; color: #808080; line-height: 1.7; margin-bottom: 16px; }
.blog-card .blog-body a.readmore { color: #f1aa00; font-weight: 700; font-size: 13px; }
.blog-card .blog-body a.readmore:hover { color: #ff236c; }

/* ── PARTNERS SECTION ─────────────────────────────── */
.partners-section { padding: 60px 0; background: #fff; border-top: 1px solid #f0f0f0; }
.partner-logo { text-align: center; padding: 10px 20px; }
.partner-logo img { max-height: 60px; width: auto; filter: grayscale(1); opacity: .5; transition: all .3s; margin: 0 auto; }
.partner-logo img:hover { filter: grayscale(0); opacity: 1; }

/* ── NEWSLETTER SECTION ───────────────────────────── */
.newsletter-section {
  background: linear-gradient(135deg, #f1aa00 0%, #ff236c 100%);
  padding: 60px 0;
  text-align: center;
}
.newsletter-section h2 { color: #fff; font-size: 32px; margin-bottom: 8px; }
.newsletter-section h4 { color: rgba(255,255,255,.9); font-size: 18px; margin-bottom: 25px; font-weight: 500; }
.newsletter-section p { color: rgba(255,255,255,.85); }
.newsletter-section .subscribe-form { display: flex; max-width: 450px; margin: 0 auto; gap: 0; }
.newsletter-section .subscribe-form input {
  flex: 1;
  border: none;
  border-radius: 30px 0 0 30px;
  padding: 14px 20px;
  font-size: 14px;
  outline: none;
  font-family: 'Raleway', sans-serif;
}
.newsletter-section .subscribe-form button {
  background: #32373c;
  color: #fff;
  border: none;
  border-radius: 0 30px 30px 0;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Raleway', sans-serif;
  cursor: pointer;
  transition: background .3s;
}
.newsletter-section .subscribe-form button:hover { background: #000; }
.newsletter-social { display: flex; justify-content: center; gap: 12px; margin-top: 25px; }
.newsletter-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all .3s;
}
.newsletter-social a:hover { background: rgba(255,255,255,.2); border-color: #fff; }

/* ── FOOTER ───────────────────────────────────────── */
footer {
  background: #32373c;
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
  font-family: 'Raleway', sans-serif;
}
footer .footer-brand img { max-height: 60px; margin-bottom: 16px; }
footer .footer-brand h3 { color: #fff; font-size: 22px; margin-bottom: 12px; }
footer .footer-brand p { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.7; }
footer .fo-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(241,170,0,.3);
  position: relative;
}
footer .fo-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #f1aa00;
}
footer .f1-list li { margin-bottom: 8px; }
footer .f1-list li a { color: rgba(255,255,255,.65); font-size: 14px; transition: color .3s; display: flex; align-items: center; gap: 6px; }
footer .f1-list li a:hover { color: #f1aa00; padding-left: 4px; }
footer .f1-list li a::before { content: '\f0da'; font-family: FontAwesome; color: #f1aa00; font-size: 12px; }
footer .co-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
footer .co-list li i { color: #f1aa00; margin-top: 4px; flex-shrink: 0; }
footer .co-list li span, footer .co-list li a { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.5; }
footer .co-list li a:hover { color: #f1aa00; }
footer .company-social { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
footer .company-social a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  transition: all .3s;
}
footer .company-social a:hover { background: #f1aa00; color: #fff; }

/* recent posts in footer */
.footer-post { display: flex; gap: 10px; margin-bottom: 14px; align-items: flex-start; }
.footer-post .fp-thumb { width: 60px; height: 55px; overflow: hidden; border-radius: 6px; flex-shrink: 0; }
.footer-post .fp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.footer-post .fp-info h6 { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85); margin-bottom: 3px; line-height: 1.4; }
.footer-post .fp-info h6 a { color: rgba(255,255,255,.85); }
.footer-post .fp-info h6 a:hover { color: #f1aa00; }
.footer-post .fp-info p { font-size: 11px; color: rgba(255,255,255,.4); margin: 0; }

/* footer bottom */
.footer-bottom {
  background: rgba(0,0,0,.3);
  padding: 15px 0;
  margin-top: 40px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.footer-bottom p { margin: 0; }

/* ── SCROLL TO TOP ────────────────────────────────── */
.scrollToTop {
  position: fixed;
  bottom: 30px;
  right: 90px;
  width: 42px;
  height: 42px;
  background: #f1aa00;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 999;
  opacity: 0;
  transition: opacity .3s, background .3s;
}
.scrollToTop:hover { background: #ff236c; color: #fff; opacity: 1 !important; }

/* ── WHATSAPP BUTTON ──────────────────────────────── */
.bootom-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 52px;
  height: 52px;
  z-index: 999;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37,211,102,.4);
  transition: transform .3s;
}
.bootom-whatsapp:hover { transform: scale(1.1); }
.bootom-whatsapp svg { width: 38px; height: 38px; }

/* ── COOKIE CONSENT ───────────────────────────────── */
.cookieConsent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #32373c;
  color: #fff;
  padding: 16px 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.cookieConsentOK {
  background: #f1aa00;
  color: #fff;
  padding: 8px 22px;
  border-radius: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: background .3s;
  font-size: 13px;
  white-space: nowrap;
}
.cookieConsentOK:hover { background: #ff236c; }

/* ── INNER PAGES ──────────────────────────────────── */
.main-content { padding: 50px 0; }
.spacet50 { padding-top: 50px; }
.spaceb50 { padding-bottom: 50px; }

/* breadcrumb */
.page-header-section {
  background: url('../images/breadcrumb-bg.jpg') center/cover no-repeat;
  padding: 50px 0;
  position: relative;
  text-align: center;
}
.page-header-section::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.page-header-section h1 { position: relative; color: #fff; font-size: 36px; margin: 0 0 8px; }
.page-header-section .breadcrumb { position: relative; background: transparent; justify-content: center; font-size: 14px; }
.page-header-section .breadcrumb a { color: #f1aa00; }
.page-header-section .breadcrumb li.active { color: rgba(255,255,255,.7); }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1200px) { .hero-caption h1 { font-size: 40px; } }
@media (max-width: 992px) {
  .hero-caption { left: 30px; max-width: 420px; }
  .hero-caption h1 { font-size: 32px; }
  h2 { font-size: 34px; }
  .bs-slider .item { min-height: 480px; }
  .bs-slider .item img { height: 480px; }
}
@media (max-width: 768px) {
  .hero-caption { left: 15px; right: 15px; max-width: 100%; transform: translateY(-40%); }
  .hero-caption h1 { font-size: 26px; }
  .hero-caption p.hero-desc { font-size: 14px; }
  .bs-slider .item { min-height: 380px; }
  .bs-slider .item img { height: 380px; }
  h2 { font-size: 28px; }
  h1 { font-size: 36px; }
  .toparea .row > div:last-child { display: none; }
}
@media (max-width: 480px) {
  .hero-caption h1 { font-size: 22px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .stat-item h3 { font-size: 36px; }
}

/* ── RTL SUPPORT ──────────────────────────────────── */
[dir="rtl"] .hero-caption { left: auto; right: 60px; }
[dir="rtl"] .hero-caption h1 { text-align: right; }
[dir="rtl"] footer .fo-title::after { left: auto; right: 0; }
[dir="rtl"] footer .f1-list li a { flex-direction: row-reverse; padding-left: 0; }
[dir="rtl"] footer .f1-list li a:hover { padding-left: 0; padding-right: 4px; }
[dir="rtl"] footer .f1-list li a::before { content: '\f0d9'; }
[dir="rtl"] .why-point { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .sec-head h2 { text-align: right; }
[dir="rtl"] .sec-divider { margin: 12px 0; }
[dir="rtl"] .team-card .team-overlay { flex-direction: row-reverse; }
[dir="rtl"] @media (max-width:768px) { [dir="rtl"] .hero-caption { right: 15px; left: 15px; } }
