/* =============================================================================
   Raj Vidyalaya International School — Website Redesign v2.0
   Loaded after mystyle.css. Overrides only; does not edit legacy CSS files.
   Sections: (1) Design Tokens (2) Typography (3) Top Bar (4) Navigation
   (5) Page Banner (6) Step Flow (7) Cards & Layout (8) Sidebar (9) Footer
   (10) Buttons (11) Animations
   ============================================================================= */

/* -----------------------------------------------------------------------------
   (1) Design Tokens
   ----------------------------------------------------------------------------- */
:root {
  --color-navy: #0c2d62;
  --color-amber: #e89900;
  --color-white: #ffffff;
  --color-text: #444444;
  --color-muted: #666666;

  --skin-color: var(--color-amber);
  --dark-grey-color: var(--color-navy);

  --gradient-brand: linear-gradient(135deg, #0c2d62 0%, #1a4a9f 60%, #e89900 100%);
  --gradient-footer: linear-gradient(135deg, #0a1f44 0%, #0c2d62 100%);
  --gradient-banner-overlay: linear-gradient(to bottom, rgba(12, 45, 98, 0.65) 0%, rgba(12, 45, 98, 0.35) 100%);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;

  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);

  --font-h1: 2.5rem;
  --font-h2: 2.25rem;
  --font-h3: 1.625rem;
  --font-h4: 1.375rem;
  --font-h5: 1.125rem;
  --font-h6: 1rem;
}

/* -----------------------------------------------------------------------------
   (2) Typography
   ----------------------------------------------------------------------------- */
h2,
.section-title .title-header h2.title {
  font-size: 36px !important;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-navy);
}

h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-navy);
}

h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-navy);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

.col-md-9 p,
.col-md-9 .featured-title p,
.ttm-row.about-section p {
  font-size: 15px;
  line-height: 1.75;
  font-weight: 400;
  color: var(--color-text);
}

.section-title .title-header h2.title {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 24px;
}

.section-title .title-header h2.title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-amber);
  margin-top: 12px;
}

@media (max-width: 767px) {
  h2,
  .section-title .title-header h2.title {
    font-size: 28px !important;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 18px;
  }
}

/* -----------------------------------------------------------------------------
   (3) Top Bar
   ----------------------------------------------------------------------------- */
.header .top_bar.ttm-bgcolor-darkgrey {
  background: var(--gradient-brand) !important;
  background-color: transparent !important;
}

.top_bar .top_bar_content,
.top_bar .top_bar_content a,
.top_bar .top_bar_contact_item {
  font-size: 13px;
  letter-spacing: 0.3px;
}

.ttm-header-style-01 .top_bar_contact_item {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 14px;
  margin-left: 6px;
}

.ttm-header-style-01 .top_bar_contact_item:first-child {
  border-left: none;
  padding-left: 0;
  margin-left: 0;
}

.top_bar .social-icons li a {
  transition: background-color 0.25s ease, color 0.25s ease;
}

.top_bar .social-icons li a:hover {
  background-color: var(--color-amber) !important;
  color: var(--color-white) !important;
}

/* -----------------------------------------------------------------------------
   (4) Navigation
   ----------------------------------------------------------------------------- */
.site-header-menu-inner.ttm-stickable-header.fixed-header,
.ttm-stickable-header.fixed-header {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.10);
}

nav.main-menu ul.menu li > ul.mega-submenu {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--color-amber);
  overflow: hidden;
  background: var(--color-white);
}

nav.main-menu ul.menu li > ul.mega-submenu li a {
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
  border-left: 3px solid transparent;
}

nav.main-menu ul.menu li > ul.mega-submenu li a:hover {
  color: var(--color-navy) !important;
  border-left-color: var(--color-amber);
  background: rgba(12, 45, 98, 0.04);
}

.kalai-text {
  font-size: 18px !important;
  line-height: 1.25 !important;
}

@media (max-width: 991px) {
  .kalai-text {
    font-size: 14px !important;
  }
}

/* -----------------------------------------------------------------------------
   (5) Page Banner
   ----------------------------------------------------------------------------- */
.ttm-page-title {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  border-bottom: 4px solid var(--color-amber);
  background-size: cover;
  background-position: center;
}

.ttm-page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-banner-overlay);
  z-index: 0;
}

.ttm-page-title > .container {
  position: relative;
  z-index: 1;
}

.ttm-page-title .page-title-heading .title,
.ttm-page-title h4.title {
  font-size: 32px !important;
  font-weight: 700;
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.ttm-page-title .breadcrumb-wrapper span,
.ttm-page-title .breadcrumb-wrapper a {
  color: #ffffff;
  opacity: 0.85;
}

.ttm-page-title .breadcrumb-wrapper span:last-child {
  color: var(--color-amber);
  opacity: 1;
  font-weight: 600;
}

@media (max-width: 767px) {
  .ttm-page-title {
    min-height: 150px;
  }

  .ttm-page-title .page-title-heading .title,
  .ttm-page-title h4.title {
    font-size: 24px !important;
  }
}

/* -----------------------------------------------------------------------------
   (6) Step Flow
   ----------------------------------------------------------------------------- */
.v2-step-flow {
  position: relative;
  margin: 8px 0 32px;
  padding-left: 0;
  list-style: none;
}

.v2-step-flow::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 48px;
  border-left: 2px dashed var(--color-amber);
  z-index: 0;
}

.v2-step {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px 28px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.v2-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.v2-step-badge {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-navy);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-step-body {
  flex: 1;
  min-width: 0;
}

.v2-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.v2-step-header i {
  font-size: 24px;
  color: var(--color-amber);
}

.v2-step-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
}

.v2-step-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text);
}

.v2-step-body ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.v2-step-body ul li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-muted);
}

@media (max-width: 767px) {
  .v2-step-flow::before {
    display: none;
  }

  .v2-step {
    margin-bottom: 16px;
    padding: 20px;
  }
}

/* -----------------------------------------------------------------------------
   (7) Cards & Layout
   ----------------------------------------------------------------------------- */
.v2-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  padding: 28px;
  transition: all 0.3s ease;
}

.v2-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
  transform: translateY(-3px);
}

.v2-icon-box {
  text-align: center;
  padding: 24px 16px;
}

.v2-icon-box i {
  font-size: 40px;
  color: var(--color-amber);
  display: block;
  margin-bottom: 12px;
}

.v2-icon-box h3,
.v2-icon-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.v2-icon-box p {
  font-size: 14px;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.6;
}

.v2-section {
  padding: 60px 0;
}

.ttm-page-title + .container,
.ttm-page-title + .v2-section,
.ttm-page-title + div.container {
  padding-top: 48px;
}

@media (max-width: 767px) {
  .v2-section {
    padding: 40px 0;
  }
}

/* Soft lift for common content blocks on inner pages */
.col-md-9 .section-title,
.col-md-9 .featured-icon-box,
.col-md-9 .featured-imagebox {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* -----------------------------------------------------------------------------
   (8) Sidebar
   ----------------------------------------------------------------------------- */
.p_ul {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md) !important;
  background: #fff;
  padding-left: 0 !important;
  margin-bottom: 20px;
}

.p_ul h5 {
  background: var(--color-navy) !important;
  color: #fff !important;
  border-bottom: 3px solid var(--color-amber);
  padding: 16px 20px !important;
  font-size: 13px !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}

.p_ul li {
  padding: 14px 16px !important;
  margin: 0 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 14px !important;
  font-weight: 600;
  line-height: 1.4 !important;
  transition: background-color 0.2s ease;
}

.p_ul li:last-child {
  border-bottom: none;
}

.p_ul li:hover {
  background: rgba(12, 45, 98, 0.06);
}

.p_ul li:hover i {
  color: var(--color-amber);
  transition: color 0.2s ease;
}

.p_ul li i {
  margin-right: 8px;
  transition: color 0.2s ease;
}

.p_ul li.active,
.p_ul li.is-active {
  background: rgba(232, 153, 0, 0.10);
  border-left: 3px solid var(--color-amber);
  font-weight: 700;
}

.p_ul li a {
  color: inherit;
  text-decoration: none;
}

.v2-sidebar-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--color-amber);
  color: #fff !important;
  border-radius: 6px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none !important;
  transition: all 0.25s ease;
  border: none;
  box-shadow: var(--shadow-sm);
}

.v2-sidebar-cta:hover {
  background: #d18700;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 153, 0, 0.35);
}

/* -----------------------------------------------------------------------------
   (9) Footer
   ----------------------------------------------------------------------------- */
footer.footer.widget-footer {
  border-top: 4px solid var(--color-amber);
  margin-top: 40px;
}

.footer .second-footer.bg-footer,
.footer .second-footer.ttm-bgimage-yes.bg-footer {
  background-color: #0a1f44 !important;
  background-image: none !important;
  background: var(--gradient-footer) !important;
  color: rgba(255, 255, 255, 0.88);
  padding: 56px 0 0 !important;
}

.footer .ttm-bgimage-yes.bg-footer > .ttm-bg-layer,
.footer .second-footer > .ttm-bg-layer {
  background: transparent !important;
  opacity: 0 !important;
  display: none !important;
}

.footer .second-footer > .container {
  position: relative;
  z-index: 1;
  padding-bottom: 40px;
}

.footer .second-footer .widget-area {
  margin-bottom: 28px;
}

.footer .second-footer .widget-area .widget {
  padding: 0 !important;
}

/* Align second link column with titled columns (empty h3 hack) */
.footer .widget_nav_menu.mt-50,
.footer .widget_nav_menu.mt--50 {
  margin-top: 0 !important;
}

.footer .widget .widget-title:empty {
  display: block !important;
  height: auto !important;
  margin-bottom: 20px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-amber) !important;
  line-height: 1.4 !important;
}

.footer .widget .widget-title:empty::before {
  content: "Explore";
}

.footer .widget .widget-title {
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-amber) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  padding-bottom: 12px !important;
  margin-bottom: 20px !important;
  display: block !important;
  width: 100%;
  line-height: 1.4 !important;
}

.footer .widget h6.text-white {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 16px;
  color: #fff !important;
}

/* Quick links */
.footer .widget ul#menu-footer-quick-links li {
  padding: 0 0 10px 0 !important;
}

.footer .widget ul#menu-footer-quick-links li a {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  padding-left: 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer .widget ul#menu-footer-quick-links li a::before {
  content: "→";
  color: var(--color-amber);
  margin-right: 8px;
  font-size: 12px;
}

.footer .widget ul#menu-footer-quick-links li a:hover {
  color: var(--color-amber) !important;
  padding-left: 4px;
}

.footer .widget ul#menu-footer-quick-links li a i {
  display: none !important;
}

/* Map */
.footer .widget-area iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  height: 260px !important;
  border: 0 !important;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  background: rgba(0, 0, 0, 0.2);
}

/* Address / contact list */
.footer .widget ul.ttm-recent-post-list > li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0 0 14px !important;
  margin: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
}

.footer .widget ul.ttm-recent-post-list > li:last-child {
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.footer .ttm-recent-post-list i {
  flex-shrink: 0;
  color: var(--color-amber) !important;
  font-size: 16px !important;
  line-height: 1.4 !important;
  margin-top: 2px;
}

.footer .widget ul.ttm-recent-post-list a {
  color: rgba(255, 255, 255, 0.85) !important;
  word-break: break-word;
  transition: color 0.2s ease;
}

.footer .widget ul.ttm-recent-post-list a:hover {
  color: var(--color-amber) !important;
}

/* Social icons */
.footer .widget_social {
  margin-top: 20px;
  padding-top: 4px;
}

.footer .social-icons.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer .social-icons li {
  margin: 0 !important;
  padding: 0 !important;
}

.footer .social-icons li a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.footer .social-icons li a i {
  color: #fff !important;
  font-size: 14px;
  line-height: 1;
}

.footer .social-icons li a:hover {
  background: var(--color-amber) !important;
  border-color: var(--color-amber);
  transform: translateY(-2px);
}

.footer .social-icons li a:hover i {
  color: #fff !important;
}

/* Copyright bar */
.footer .bottom-footer-text.copyright,
.bottom-footer-text.copyright {
  background: rgba(0, 0, 0, 0.35) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0 !important;
  margin: 0;
}

.bottom-footer-text .cpy-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.bottom-footer-text .cpy-text a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease;
  text-decoration: none;
}

.bottom-footer-text .cpy-text a:hover {
  color: var(--color-amber);
}

@media (max-width: 991px) {
  .footer .second-footer.bg-footer {
    padding-top: 40px !important;
  }

  .footer .widget-area iframe {
    height: 220px !important;
  }
}

/* -----------------------------------------------------------------------------
   (10) Buttons
   ----------------------------------------------------------------------------- */
.v2-btn-primary {
  display: inline-block;
  background: var(--color-amber);
  color: #fff !important;
  border: none;
  border-radius: 6px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none !important;
  transition: all 0.25s ease;
  cursor: pointer;
}

.v2-btn-primary:hover {
  background: #d18700;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 153, 0, 0.35);
  color: #fff !important;
}

.v2-btn-outline {
  display: inline-block;
  border: 2px solid var(--color-navy);
  color: var(--color-navy) !important;
  border-radius: 6px;
  padding: 10px 26px;
  background: transparent;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.25s ease;
  cursor: pointer;
}

.v2-btn-outline:hover {
  background: var(--color-navy);
  color: #fff !important;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.v2-btn-primary:focus-visible,
.v2-btn-outline:focus-visible,
.v2-sidebar-cta:focus-visible {
  outline: 2px solid var(--color-amber);
  outline-offset: 3px;
}

/* -----------------------------------------------------------------------------
   (11) Animations
   ----------------------------------------------------------------------------- */
.v2-fade-up,
.v2-fade-in,
.v2-slide-left {
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.v2-fade-up {
  transform: translateY(28px);
}

.v2-fade-in {
  transform: translateY(12px);
}

.v2-slide-left {
  transform: translateX(-28px);
}

.v2-fade-up.v2-visible,
.v2-fade-in.v2-visible,
.v2-slide-left.v2-visible {
  opacity: 1;
  transform: none;
}

.v2-delay-1 { transition-delay: 0.1s; }
.v2-delay-2 { transition-delay: 0.2s; }
.v2-delay-3 { transition-delay: 0.3s; }
.v2-delay-4 { transition-delay: 0.4s; }
.v2-delay-5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .v2-fade-up,
  .v2-fade-in,
  .v2-slide-left {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .v2-step,
  .v2-card,
  .v2-btn-primary,
  .v2-btn-outline,
  .v2-sidebar-cta {
    transition: none;
  }

  .v2-step:hover,
  .v2-card:hover,
  .v2-btn-primary:hover {
    transform: none;
  }
}

/* -----------------------------------------------------------------------------
   Responsive helpers
   ----------------------------------------------------------------------------- */
@media (max-width: 575px) {
  .v2-card {
    padding: 20px;
  }
}

/* =============================================================================
   (12) Homepage — light v2.0 polish
   ============================================================================= */

/* Hide empty announcement strip when marquee has no content */
.bottom-header .bottom_bar_contact_item marquee:empty,
.bottom-header:has(marquee:empty) {
  display: none;
}

.bottom-header {
  background: var(--color-navy);
  min-height: 0;
}

.bottom-header:has(marquee:empty) {
  display: none !important;
}

/* ---- Banner / carousel ---- */
.as_banner_wrapper {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.as_banner_wrapper .carousel-item img {
  width: 100%;
  height: auto;
  display: block;
}

.as_banner_wrapper .carousel-control-prev,
.as_banner_wrapper .carousel-control-next {
  width: 52px;
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  opacity: 1;
  background: rgba(12, 45, 98, 0.55);
  border-radius: 50%;
  margin: 0 16px;
  transition: background-color 0.25s ease;
}

.as_banner_wrapper .carousel-control-prev:hover,
.as_banner_wrapper .carousel-control-next:hover {
  background: var(--color-amber);
}

.as_banner_wrapper .carousel-control-prev-icon,
.as_banner_wrapper .carousel-control-next-icon {
  width: 1.1rem;
  height: 1.1rem;
}

/* ---- Shared section rhythm ---- */
body.home .ttm-row,
.page > .ttm-row,
section.ttm-row.Lifestyle-section,
section.ttm-row.top-section,
section.ttm-row.service-one-section,
section.ttm-row.team-member-section,
section.ttm-row.team-section,
section.ttm-row.toppers-home,
#counter-stats {
  padding-top: 70px;
  padding-bottom: 70px;
}

@media (max-width: 767px) {
  section.ttm-row.Lifestyle-section,
  section.ttm-row.top-section,
  section.ttm-row.service-one-section,
  section.ttm-row.team-member-section,
  section.ttm-row.team-section,
  section.ttm-row.toppers-home,
  #counter-stats {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .as_banner_wrapper .carousel-control-prev,
  .as_banner_wrapper .carousel-control-next {
    width: 40px;
    height: 40px;
    margin: 0 8px;
  }
}

/* ---- Section eyebrow + title ---- */
.section-title .title-header h3 {
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-amber) !important;
  margin-bottom: 8px;
}

.section-title.title-style-center_text .title-header h2.title::after {
  margin-left: auto;
  margin-right: auto;
}

.ttm-bgcolor-darkgrey .section-title .title-header h2.title,
.service-one-section .section-title .title-header h2.title {
  color: #fff !important;
}

.service-one-section .section-title .title-header h2.title::after {
  background: var(--color-amber);
}

.service-one-section .section-title .title-header h3 {
  color: var(--color-amber) !important;
}

/* ---- Buttons ---- */
.ttm-btn.ttm-btn-style-fill.ttm-btn-color-skincolor {
  background: var(--color-amber) !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 12px 26px !important;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 14px rgba(232, 153, 0, 0.25);
}

.ttm-btn.ttm-btn-style-fill.ttm-btn-color-skincolor:hover {
  background: #d18700 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232, 153, 0, 0.35);
}

.ttm-btn.ttm-btn-style-fill.ttm-btn-color-skincolor i {
  margin-left: 8px;
}

/* ---- About section ---- */
.Lifestyle-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.Lifestyle-section .section-title .title-header h2.title {
  font-size: 28px !important;
  line-height: 1.35 !important;
  max-width: 34ch;
}

.Lifestyle-section .title-desc p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text);
  margin-bottom: 14px;
  text-align: justify;
}

.Lifestyle-section .ttm_single_image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 100%;
  height: auto;
}

.Lifestyle-section .mbl-btn {
  margin-top: 8px;
}

/* ---- Video + News ---- */
#counter-stats {
  background: #fff;
}

#counter-stats .newsand_event_sec .event-inner-area {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  padding: 24px;
  height: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

#counter-stats .newsand_event_sec .event-inner-area:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

#counter-stats .hme_newsevents_title,
#counter-stats font h5 {
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-navy) !important;
  margin-bottom: 16px !important;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--color-amber);
  display: inline-block;
}

#counter-stats iframe {
  border-radius: var(--radius-md);
  border: 0;
  box-shadow: var(--shadow-sm);
}

#counter-stats .event-calender-holder {
  background: var(--color-navy);
  color: #fff;
  border-radius: var(--radius-md);
  text-align: center;
  min-width: 64px;
  padding: 10px 8px;
}

#counter-stats .event-calender-holder h5 {
  color: var(--color-amber) !important;
  font-size: 22px;
  margin: 0;
  font-weight: 700;
}

#counter-stats .event-calender-holder p,
#counter-stats .event-calender-holder span {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: 12px;
}

#counter-stats .event-wrapper li,
#counter-stats .custom_eventlisting > li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

#counter-stats .event-content-holder h5 {
  font-size: 15px;
  margin-bottom: 6px;
}

#counter-stats .event-content-holder h5 a {
  color: var(--color-navy);
  font-weight: 700;
}

#counter-stats .event-content-holder h5 a:hover {
  color: var(--color-amber);
}

#counter-stats .event-content-holder p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-muted);
  margin: 0;
}

#counter-stats .mbl-btn {
  margin-top: 16px;
}

/* ---- Mission / Vision ---- */
.top-section .ttm-bgcolor-darkgrey {
  background: var(--gradient-footer) !important;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden;
}

.top-section .col-title h2 {
  font-size: 28px !important;
  line-height: 1.35 !important;
  color: #fff !important;
  margin-bottom: 16px;
}

.top-section .col-title h2 span {
  color: var(--color-amber);
  display: inline;
}

.top-section .col-title p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.7;
}

.top-section .featured-icon-box.style1 {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 28px 22px !important;
  height: 100%;
  margin: 10px;
  border-top: 3px solid var(--color-amber);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.top-section .featured-icon-box.style1:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.top-section .featured-icon-box.style1 .ttm-icon i {
  color: var(--color-amber) !important;
  font-size: 36px;
}

.top-section .featured-icon-box.style1 .featured-title h3 {
  font-size: 20px;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.top-section .featured-icon-box.style1 .featured-desc p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-muted);
  text-align: justify;
}

@media (max-width: 991px) {
  .top-section .ttm-bgcolor-darkgrey {
    border-radius: var(--radius-lg);
  }
}

/* ---- Facilities ---- */
.service-one-section {
  position: relative;
}

.service-one-section .featured-icon-box.style2 {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 28px 18px 22px !important;
  margin-bottom: 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.service-one-section .featured-icon-box.style2:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.service-one-section .featured-icon-box.style2 .faci-img img {
  max-height: 72px;
  width: auto;
  margin: 0 auto 14px;
  display: block;
  transition: transform 0.3s ease;
}

.service-one-section .featured-icon-box.style2:hover .faci-img img {
  transform: scale(1.08);
}

.service-one-section .featured-icon-box.style2 .featured-title h3 {
  font-size: 16px !important;
  font-weight: 700;
  color: var(--color-navy) !important;
  margin: 0;
}

/* ---- Courses ---- */
.team-member-section .section-title .title-header h2.title {
  color: var(--color-navy);
}

.team-member-section .featured-imagebox-team.style2 {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px 18px;
  height: 100%;
  margin-bottom: 20px;
  border-bottom: 3px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.team-member-section .featured-imagebox-team.style2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--color-amber);
}

.team-member-section .featured-thumbnail i {
  font-size: 36px;
  color: var(--color-amber);
  display: block;
  margin-bottom: 12px;
}

.team-member-section .featured-title h5 a {
  color: var(--color-navy);
  font-weight: 700;
  font-size: 16px;
}

.team-member-section .team-position {
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-text);
  margin: 8px 0;
}

.team-member-section .text-thm {
  font-size: 13px;
  color: var(--color-muted);
  display: block;
  line-height: 1.5;
}

/* ---- Toppers ---- */
.toppers-home {
  background: linear-gradient(180deg, #f5f7fb 0%, #ffffff 100%);
}

.toppers-home .featured-imagebox-team.style1 {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.toppers-home .featured-imagebox-team.style1:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.toppers-home .featured-imagebox img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
}

.toppers-home .featured-imagebox h6 {
  text-align: center;
  padding: 14px 12px 18px;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.45;
}

.toppers-home .featured-imagebox h6 span {
  color: var(--color-amber);
  font-size: 18px;
  display: inline-block;
  margin-top: 4px;
}

/* ---- Gallery ---- */
.team-section:not(.toppers-home) .featured-imagebox-team.style1 {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-section:not(.toppers-home) .featured-imagebox-team.style1:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.team-section:not(.toppers-home) .featured-thumbnail img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.team-section:not(.toppers-home) .featured-imagebox-team.style1:hover .featured-thumbnail img {
  transform: scale(1.05);
}
