* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  color: #222;
  overflow-x: hidden;
}

#masthead {
  position: sticky;
  top: 0;
  z-index: 1050;
  width: 100%;
  transition: box-shadow 0.25s ease;
}

body.sticky #masthead {
  box-shadow: 0 8px 24px rgba(7, 26, 43, 0.18);
}

body.admin-bar #masthead {
  top: 32px;
}

.scrollup {
  position: fixed;
  right: 24px;
  bottom: 72px;
  z-index: 1040;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  color: #fff;
  background: #16284b;
  box-shadow: 0 8px 24px rgba(7, 26, 43, 0.25);
  transform: translateY(12px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease;
}

.scrollup.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.scrollup:hover,
.scrollup:focus-visible {
  color: #16284b;
  background: #c8a24d;
}

.scrollup:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.scrollup .bi {
  font-size: 1.25rem;
  line-height: 1;
}

@media (max-width: 782px) {
  body.admin-bar #masthead {
    top: 46px;
  }
}

@media (max-width: 575.98px) {
  .scrollup {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #masthead,
  .scrollup {
    transition: none;
  }
}

.navbar {
  background: #16284b;
  padding: 11px 0;
  border-bottom: 3px solid #c8a24d;
}
.navbar > .container {
  position: relative;
}
.navbar-brand img {
  height: 80px;
}
.nav-link {
  color: #fff !important;
  margin-left: 25px;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}
.nav-link:hover {
  color: #d5ad52 !important;
}
.dropdown-menu {
  padding: 8px;
  border: 1px solid rgba(200, 162, 77, 0.3);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(7, 26, 43, 0.2);
}
.dropdown-item {
  padding: 10px 14px;
  border-radius: 8px;
  color: #16284b;
  font-size: 14px;
  font-weight: 500;
}
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active,
.dropdown-item:active {
  color: #16284b;
  background: rgba(200, 162, 77, 0.2);
}
.mobile-menu-intro {
  display: none;
}
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover > .dropdown-menu,
  .navbar-nav .dropdown:focus-within > .dropdown-menu {
    display: block;
    margin-top: 0;
    animation: desktop-submenu-in 0.18s ease-out;
  }
  .navbar-nav .dropdown:hover > .dropdown-toggle,
  .navbar-nav .dropdown:focus-within > .dropdown-toggle {
    color: #d5ad52 !important;
  }
  .navbar-nav .dropdown:hover > .dropdown-toggle::after,
  .navbar-nav .dropdown:focus-within > .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}
@keyframes desktop-submenu-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero {
  background: url(../images/banner.jpeg) no-repeat center;
  background-size: cover;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  background: linear-gradient(90deg, #16284b, #16284b, transparent);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero .container {
  position: relative;
}
.hero-content {
  color: #fff;
}
.bg_f3{
    background: #f3f3f3 !important;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}
.hero-line {
  margin-top: 35px;
  width: 100%;
  height: 2px;
  background: #c8a24d;
}
.bnr_whiutepara{
    color: #ffffff;
    margin: 25px 0 0 0;
}
.btn-warning {
  background: #c8a24d;
  border: none;
  padding: 13px 28px;
  border-radius: 0;
  font-weight: 600;
}
.btn-warning:hover {
  background: #b18d3d;
}
.btn-outline-light {
  padding: 13px 28px;
  border-radius: 0;
}
.hero-image {
  position: relative;
}
.hero-image img {
  width: 100%;
  border-radius: 2px;
}
@media (max-width: 991px) {
  body.mobile-menu-open {
    overflow: hidden;
  }
  body.mobile-menu-open #masthead {
    z-index: 999999;
  }
  body.mobile-menu-open::before {
    content: "";
    position: fixed;
    z-index: 1040;
    inset: 0;
    background: rgba(7, 19, 36, 0.62);
    backdrop-filter: blur(3px);
    animation: mobile-menu-fade 0.2s ease-out;
  }
  .navbar {
    padding: 8px 0;
  }
  .navbar-brand {
    position: relative;
    z-index: 2;
    margin-right: 16px;
  }
  .navbar-brand img {
    width: auto;
    max-width: 210px;
    height: 64px;
  }
  .navbar-toggler {
    position: relative;
    z-index: 2;
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(200, 162, 77, 0.65);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none !important;
  }
  .navbar-toggler:hover,
  .navbar-toggler:focus-visible,
  .navbar-toggler[aria-expanded="true"] {
    border-color: #c8a24d;
    background: #c8a24d;
  }
  .navbar-toggler:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.9);
    outline-offset: 3px;
  }
  .navbar-toggler-box {
    position: relative;
    display: block;
    width: 23px;
    height: 18px;
  }
  .navbar-toggler-box span {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background: #fff;
    transition: transform 0.22s ease, top 0.22s ease, opacity 0.15s ease;
  }
  .navbar-toggler-box span:nth-child(1) {
    top: 0;
  }
  .navbar-toggler-box span:nth-child(2) {
    top: 8px;
  }
  .navbar-toggler-box span:nth-child(3) {
    top: 16px;
  }
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-box span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
  }
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-box span:nth-child(2) {
    opacity: 0;
  }
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-box span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
  }
  .navbar-collapse {
    position: fixed;
    z-index: 1;
    top: var(--mobile-menu-top, 105px);
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-height: none;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 22px;
    border: 1px solid rgba(200, 162, 77, 0.38);
    border-radius: 18px;
    background:
      radial-gradient(circle at 100% 0, rgba(200, 162, 77, 0.14), transparent 40%),
      #16284b;
    box-shadow: 0 24px 60px rgba(4, 15, 28, 0.4);
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-menu-intro {
    display: flex;
    margin-bottom: 14px;
    padding: 0 4px 14px;
    flex-direction: column;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .mobile-menu-intro span {
    color: #c8a24d;
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 700;
  }
  .mobile-menu-intro small {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    letter-spacing: 0.03em;
  }
  .navbar-nav {
    gap: 5px;
  }
  .navbar-nav .nav-link {
    display: flex;
    min-height: 48px;
    margin-left: 0;
    padding: 12px 14px;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 15px;
    letter-spacing: 0.01em;
    line-height: 1.35;
    white-space: normal;
  }
  .navbar-nav .nav-link::before {
    content: "";
    width: 5px;
    height: 5px;
    margin-right: 12px;
    flex: 0 0 5px;
    border-radius: 50%;
    background: rgba(200, 162, 77, 0.62);
  }
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus,
  .navbar-nav .nav-link.active {
    color: #fff !important;
    border-color: rgba(200, 162, 77, 0.3);
    background: rgba(255, 255, 255, 0.08);
  }
  .navbar-nav .nav-link.active::before {
    background: #c8a24d;
    box-shadow: 0 0 0 4px rgba(200, 162, 77, 0.15);
  }
  .navbar-nav .dropdown-toggle::after {
    margin-left: auto;
    transition: transform 0.2s ease;
  }
  .navbar-nav .dropdown-toggle.show::after {
    transform: rotate(180deg);
  }
  .navbar-nav .dropdown-menu {
    position: static !important;
    width: auto;
    margin: 5px 0 8px 18px;
    padding: 7px;
    transform: none !important;
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(5, 18, 34, 0.45);
    box-shadow: none;
  }
  .navbar-nav .dropdown-item {
    padding: 11px 13px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.4;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .navbar-nav .dropdown-item:hover,
  .navbar-nav .dropdown-item:focus,
  .navbar-nav .dropdown-item.active,
  .navbar-nav .dropdown-item:active {
    color: #fff;
    background: rgba(200, 162, 77, 0.18);
  }
  .hero {
    text-align: center;
    padding: 60px 0;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero-line {
    margin: auto;
    margin-top: 30px;
  }
  .hero-image {
    margin-top: 50px;
  }
  .nav-link {
    margin-left: 0;
    padding: 12px;
  }
}
@media (max-width: 991px) and (max-height: 650px) {
  .navbar-collapse {
    padding: 15px;
    border-radius: 14px;
  }
  .mobile-menu-intro {
    margin-bottom: 8px;
    padding-bottom: 9px;
  }
  .mobile-menu-intro small {
    display: none;
  }
  .navbar-nav {
    gap: 2px;
  }
  .navbar-nav .nav-link {
    min-height: 42px;
    padding: 9px 11px;
  }
  .navbar-nav .dropdown-item {
    padding: 9px 11px;
  }
}
@keyframes mobile-menu-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler-box span,
  body.mobile-menu-open::before {
    animation: none;
    transition: none;
  }
  .navbar-nav .dropdown-menu {
    animation: none !important;
  }
}
@media (max-width: 576px) {
  .hero h1 {
    font-size: 34px;
  }
  .btn {
    width: 100%;
    margin-bottom: 15px;
  }
}
.intro-section {
  padding: 80px 0;
  background: #ffffff;
  text-align: center;
}
.intro-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 25px;
  font-weight: 700;
  color: #1d2748;
  line-height: 1.45;
  margin-bottom: 25px;
}
.intro-section p {
  font-size: 20px;
  font-style: italic;
  color: #1b2a4a;
  font-weight: 600;
  line-height: 1.5;
  max-width: 100%;
  margin: auto;
  font-family: "Playfair Display", serif;
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
}
.section-title span {
  width: 120px;
  height: 3px;
  background: #cfcfcf;
}
.section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 700;
  color: #1d2748;
  margin: 0;
}
.program-section {
  padding: 90px 0;
  background: #f6f6f6;
}
.program-card {
  background: #fff;
  transition: 0.35s;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}
.program-title {
  padding: 22px;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 25px;
  font-weight: 400;
  color: #16284b;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.program-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.program-content {
  background: #16284b;
  padding: 22px;
  color: #fff;
  font-size: 16px;
  line-height: 1.8;
}
.program-content a {
  display: inline-block;
  margin-top: 0;
  color: #d4ad4c;
  text-decoration: none;
  font-weight: 600;
}
.program-content a:hover {
  letter-spacing: 1px;
}
@media (max-width: 991px) {
  .section-title h2 {
    font-size: 34px;
  }
  .program-title {
    font-size: 22px;
    min-height: auto;
  }
  .intro-section h2 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .section-title {
    flex-direction: column;
    gap: 12px;
  }
  .section-title span {
    width: 70px;
  }
  .section-title h2 {
    font-size: 30px;
  }
  .program-card img {
    height: 220px;
  }
}
@media (max-width: 576px) {
  .intro-section {
    padding: 60px 20px;
  }
  .intro-section h2 {
    font-size: 24px;
  }
  .intro-section p {
    font-size: 16px;
  }
  .program-section {
    padding: 60px 0;
  }
  .program-title {
    font-size: 20px;
    padding: 18px;
  }
  .program-content {
    font-size: 15px;
  }
}
.about-highlight {
  padding: 90px 0;
  background: #ffffff;
} 
.row_leader_reverse:nth-child(even) {
    flex-direction: row-reverse;
    padding: 80px 0;
}
.about-highlight .section-heading{
    justify-content: flex-start;
}
.video-box {
  position: relative;
  overflow: hidden;
  height: 500px;
}
.program-problems .video-box {
  box-shadow: -12px 12px 0px 0px #16284b;
  position: relative;
  z-index: 1;
}
.program-problems .video-box::before{
  content: '';
  position: absolute;
  inset: 0;
  background: #16284b;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}
.video-box.leaderimg{
  height: auto;
  overflow: hidden;
  margin: 0 0 14px 14px;
  box-shadow: -14px 14px 0 #16284b;
  z-index: 1;
}
.leadership-media-column {
  position: sticky;
  top: 160px;
  align-self: flex-start;
}
.workshop-content-section .workshop-sticky-content {
  position: sticky;
  top: 160px;
  align-self: flex-start;
}
.split-sticky-content {
  position: sticky;
  top: 160px;
  align-self: flex-start;
}
.row_leader_reverse:nth-child(even) .video-box.leaderimg {
  margin: 0 14px 14px 0;
  box-shadow: 14px 14px 0 #16284b;
}
.video-box img {
  width: 100%;
  display: block;
  transition: 0.5s;
  height: 100%;
  object-fit: cover;
}
.video-box:hover img {
  transform: scale(1.05);
}
.video-box.leaderimg img{
  max-width: 100% !important;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.22);
  border: 4px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 38px;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: 0.35s;
}
.play-btn:hover {
  background: #c8a24d;
  border-color: #c8a24d;
  color: #fff;
  transform: translate(-50%, -50%) scale(1.08);
}
.section-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.section-heading span {
  width: 80px;
  height: 2px;
  background: #c8a24d;
}
.section-heading h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
  color: #16284b;
}
.about-content h4 {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 28px;
  color: #333;
  margin-bottom: 18px;
}
.small-line {
  width: 90%;
  height: 2px;
  background: #d8d8d8;
  margin-bottom: 25px;
}
.about-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
}
.about-content blockquote {
  border-left: 4px solid #c8a24d;
  padding-left: 18px;
  margin-top: 25px;
  font-style: italic;
  font-size: 17px;
  color: #444;
}
@media (max-width: 991px) {
  .about-highlight {
    padding: 70px 0;
  }
  .leadership-media-column {
    position: relative;
    top: auto;
  }
  .workshop-content-section .workshop-sticky-content {
    position: relative;
    top: auto;
  }
  .split-sticky-content {
    position: relative;
    top: auto;
  }
  .video-box.leaderimg,
  .row_leader_reverse:nth-child(even) .video-box.leaderimg {
    margin: 0 0 14px 14px;
    box-shadow: -14px 14px 0 #16284b;
  }
  .section-heading {
    justify-content: center;
  }
  .about-content {
    text-align: center;
  }
  .small-line {
    margin: 25px auto;
  }
  .about-content blockquote {
    border-left: none;
    border-top: 4px solid #c8a24d;
    padding: 20px 0 0;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .section-heading {
    flex-direction: column;
    gap: 10px;
  }
  .section-heading span {
    width: 60px;
  }
  .section-heading h2 {
    font-size: 34px;
    text-align: center;
  }
  .about-content h4 {
    font-size: 24px;
  }
  .play-btn {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .about-highlight {
    padding: 55px 0;
  }
  .section-heading h2 {
    font-size: 28px;
  }
  .about-content h4 {
    font-size: 22px;
  }
  .about-content p {
    font-size: 15px;
    line-height: 1.8;
  }
  .play-btn {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}
.services-section {
  padding: 70px 0 90px;
  background: #f8f8f8;
}
.section-subtitle {
  max-width: 760px;
  margin: 20px auto 0;
  text-align: center;
  font-size: 17px;
  color: #666;
  line-height: 1.8;
}
.service-card {
  background: #fff;
  padding: 40px 30px;
  height: 100%;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #c8a24d;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.35s;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 85px;
  height: 85px;
  margin: auto;
  border-radius: 50%;
  background: #16284b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #fff;
  margin-bottom: 25px;
  transition: 0.35s;
}
.service-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.abtservices-section .service-icon {
  overflow: hidden;
  padding: 0;
}
.abtservices-section .service-icon img {
  width: 48px;
  height: 48px;
  border-radius: 0;
  object-fit: contain;
}
.service-card:hover .service-icon {
  background: #c8a24d;
  transform: rotate(8deg);
}
.service-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 25px;
  font-weight: 700;
  color: #16284b;
  margin-bottom: 18px;
}
.abtservices-section .service-card h4 {
  font-size: 20px;
}
.service-card p {
  font-size: 15px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 25px;
}
.service-card a {
  text-decoration: none;
  font-weight: 600;
  color: #c8a24d;
  transition: 0.3s;
}
.service-card a:hover {
  letter-spacing: 1px;
}
@media (max-width: 991px) {
  .services-section {
    padding: 80px 0;
  }
  .service-card {
    padding: 35px 25px;
  }
}
@media (max-width: 768px) {
  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
  .service-icon img {
    width: 36px;
    height: 36px;
  }
  .service-card h4 {
    font-size: 22px;
  }
  .section-subtitle {
    font-size: 16px;
    padding: 0 10px;
  }
}
@media (max-width: 576px) {
  .services-section {
    padding: 60px 0;
  }
  .service-card {
    padding: 30px 22px;
  }
  .service-card h4 {
    font-size: 20px;
  }
  .service-card p {
    font-size: 14px;
  }
}
.process-section {
  padding: 100px 0;
  background: #ffffff;
}
.process-card {
  position: relative;
  background: #fff;
  padding: 35px 25px;
  text-align: center;
  z-index: 2;
  transition: 0.35s;
}
.step-number {
  width: 45px;
  height: 45px;
  background: #16284b;
  color: #fff;
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  margin-bottom: 20px;
}
.step-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #f4f4f4;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #16284b;
  border: 2px solid #d9d9d9;
  transition: 0.35s;
}
.Approachinrparamain{
    font-size: 23px;
    font-style: italic;
    color: #1b2a4a;
    font-weight: 300;
    line-height: 1.8;
    max-width: 100%;
    margin: auto;
    font-family: "Playfair Display", serif;
}
.process-card:hover .step-icon {
  background: #c8a24d;
  color: #fff;
  border-color: #c8a24d;
  transform: scale(1.1);
}
.process-card h4 {
  margin-top: 25px;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: #16284b;
}
.process-card p {
  margin-top: 15px;
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}
.process-card:hover {
  transform: translateY(-10px);
}
@media (max-width: 991px) {
  .process-card {
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .process-section {
    padding: 60px 0;
  }
  .step-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
  .process-card h4 {
    font-size: 20px;
  }
}
.cta-box {
  background: #16284b;
  padding: 50px;
  color: #fff;
  border-radius: 8px;
}
.cta-box h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 20px;
}
.cta-box p {
  margin-bottom: 25px;
}
.process-section {
  background: #fff;
  padding: 90px 0;
}
.process-section .process_section_row {
  padding: 80px 0 0 0;
}
.process-box {
  position: relative;
  border: 2px solid #1d2b4f;
  background: #fff;
  text-align: center;
  padding: 75px 25px 35px;
  height: 100%;
  transition: 0.35s;
  overflow: visible;
}
.process-number {
  position: absolute;
  left: 50%;
  top: -38px;
  transform: translateX(-50%);
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #ececec;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.process-number span {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #c8a548;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
.process-box h3 {
  font-size: 21px;
  color: #13284b;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  font-family: "Inter", sans-serif;
}
.process-box .line {
  width: 95px;
  height: 2px;
  background: #d8d8d8;
  margin: 0 auto 18px;
}
.process-box p {
  color: #13284b;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  font-weight: 600;
}
.process-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.process-box:hover .process-number span {
  background: #13284b;
  transition: 0.35s;
}
@media (max-width: 991px) {
  .process-box {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .process-box {
    padding: 70px 20px 30px;
  }
  .process-box h3 {
    font-size: 18px;
  }
  .process-box p {
    font-size: 15px;
  }
  .process-number {
    width: 76px;
    height: 76px;
  }
  .process-number span {
    width: 54px;
    height: 54px;
    font-size: 24px;
  }
}
.cta-section {
  background: #f5f5f5;
  padding: 80px 0 90px;
  text-align: center;
}
.section-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-bottom: 18px;
}
.section-heading .line {
  width: 95px;
  height: 2px;
  background: #cfcfcf;
}
.cta-section .section-heading h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-style: italic;
  font-weight: 700;
  color: #16284b;
  line-height: 1.2;
}
.cta-subtitle {
  font-size: 20px;
  color: #444;
  margin-bottom: 38px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.btn-consult {
  background: #c8a548;
  color: #16284b;
  padding: 16px 34px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #1b2748;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: 0.35s;
}
.btn-consult:hover {
  background: #b48d33;
  color: #fff;
  transform: translateY(-4px);
}
.btn-contact {
  background: #16284b;
  color: #fff;
  padding: 16px 34px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #1b2748;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: 0.35s;
}
.btn-contact:hover {
  background: #0f1e39;
  transform: translateY(-4px);
  color: #fff;
}
@media (max-width: 991px) {
  .section-heading {
    flex-direction: column;
    gap: 15px;
  }
  .section-heading .line {
    display: none;
  }
  .section-heading h2 {
    font-size: 42px;
  }
  .cta-subtitle {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .cta-section {
    padding: 60px 20px;
  }
  .section-heading h2 {
    font-size: 30px;
  }
  .cta-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn-consult,
  .btn-contact {
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 16px;
  }
}
.footer-area {
  background: url(../images/ftrbg.png) no-repeat center;
  background-size: cover;
  padding: 35px 0 0;
  position: relative;
  overflow: hidden;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.footer-contact {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-contact a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
}
.footer-contact i {
  color: #d0aa47;
  margin-right: 10px;
}
.footer-social {
  display: flex;
  gap: 15px;
}
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: #16284b;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 18px;
  transition: 0.35s;
}
.footer-social a:hover {
  background: #d0aa47;
  color: #fff;
  transform: translateY(-4px);
}
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 28px 0;
}
.footer-tagline {
  text-align: center;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-style: italic;
  padding-bottom: 70px;
}
.footer-wave {
  width: 140%;
  height: 130px;
  border-top: 6px solid #d0aa47;
  border-radius: 50%;
  margin-left: -20%;
}
@media (max-width: 991px) {
  .footer-top {
    justify-content: center;
    text-align: center;
  }
  .footer-contact {
    justify-content: center;
  }
  .footer-tagline {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .footer-contact {
    flex-direction: column;
    gap: 18px;
  }
  .footer-tagline {
    font-size: 22px;
    line-height: 1.5;
    padding-bottom: 50px;
  }
  .footer-social {
    justify-content: center;
    width: 100%;
  }
  .footer-wave {
    height: 80px;
    border-top-width: 4px;
  }
}


/*====================================
OUR PHILOSOPHY
====================================*/

.philosophy-section{

    background:#16284b;

    padding:90px 0;

}

/* Heading */

.philosophy-title{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:25px;

    margin-bottom:40px;

}

.philosophy-title h2{

    margin:0;

    font-family:"Playfair Display", serif;

    font-size: 42px;

    font-style:italic;

    font-weight:700;

    color:#fff;

    line-height:1;

}

.title-line{

    width:150px;

    height:2px;

    background:rgba(255,255,255,.25);

}

/* Content Box */

.philosophy-box{

    max-width:1200px;

    margin:auto;

    padding:45px 60px;

    border:1px solid rgba(255,255,255,.18);

    text-align:center;

    transition:.35s;

}

.philosophy-box:hover{

    border-color:rgba(255,255,255,.35);

}

/* Paragraph */

.philosophy-box p{

    font-family:"Playfair Display", serif;

    font-size:26px;

    font-style:italic;

    font-weight:500;

    color:#fff;

    line-height:1.7;

    margin-bottom:22px;

}

.philosophy-box p:last-child{

    margin-bottom:0;

}


/*==========================
Responsive
==========================*/

@media(max-width:1200px){

.philosophy-title h2{

font-size:46px;

}

.philosophy-box{

padding:40px;

}

.philosophy-box p{

font-size:22px;

}

}

@media(max-width:768px){

.philosophy-section{

padding:70px 0;

}

.philosophy-title{

gap:15px;

}

.title-line{

width:70px;

}

.philosophy-title h2{

font-size:34px;

}

.philosophy-box{

padding:30px 20px;

}

.philosophy-box p{

font-size:18px;

line-height:1.8;

}

}

@media(max-width:576px){

.title-line{

display:none;

}

.philosophy-title h2{

font-size:30px;

text-align:center;

}

.philosophy-box{

padding:25px 18px;

}

.philosophy-box p{

font-size:17px;

}

}



/*=========================================
CONSULTATION SECTION
=========================================*/

.consultation-section{

    padding:90px 0;

    background:#ffffff;

}

.consultation-left{

    display:flex;

    align-items:center;

    gap:35px;

}

/*=========================
Icon
=========================*/

.consultation-icon{

    width:110px;

    height:110px;

    min-width:110px;

    border-radius:50%;

    background:#1b2d55;

    border:4px solid #d1aa47;

    display:flex;

    justify-content:center;

    align-items:center;

}

.consultation-icon i{

    font-size:42px;

    color:#d1aa47;

}

/*=========================
Content
=========================*/

.consultation-content h2 {
    font-family: "Playfair Display",serif;
    font-size: 30px;
    font-weight: 700;
    color: #16284b;
    margin-bottom: 11px;
}

.consultation-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #333;
    max-width: 720px;
}

/*=========================
Right
=========================*/

.consultation-right{

    border-left:2px solid #dddddd;

    text-align:center;

    padding-left:70px;

}

.consult-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:18px 34px;

    border:2px solid #d1aa47;

    color:#d1aa47;

    text-decoration:none;

    text-transform:uppercase;

    font-size:18px;

    font-weight:600;

    letter-spacing:.5px;

    transition:.35s;

}

.consult-btn i{

    font-size:18px;

}

.consult-btn:hover{

    background:#d1aa47;

    color:#fff;

}

.consultation-right p{

    margin-top:22px;

    font-size:20px;

    color:#333;

}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

.consultation-right{

border-left:none;

border-top:2px solid #ddd;

padding-left:0;

padding-top:45px;

margin-top:50px;

}

.consultation-left{

flex-direction:column;

text-align:center;

}

.consultation-content h2{

font-size:38px;

}

.consultation-content p{

font-size:18px;

}

}

@media(max-width:576px){

.consultation-section{

padding:60px 0;

}

.consultation-icon{

width:90px;

height:90px;

min-width:90px;

}

.consultation-icon i{

font-size:34px;

}

.consultation-content h2{

font-size:30px;

}

.consultation-content p{

font-size:16px;

}

.consult-btn{

width:100%;

justify-content:center;

font-size:15px;

padding:15px 20px;

}

.consultation-right p{

font-size:16px;

}

}






/*=========================================
CONTACT SECTION
=========================================*/

.contact-section{

    padding:90px 0;

    background:#fff;

}

/* Left */

.contact-form-area h2{

    font-family:'Playfair Display',serif;

    font-size:30px;

    color:#16284b;

    margin-bottom:15px;

}

.heading-line{

    width:70px;

    height:3px;

    background:#caa545;

    display:block;

    margin-bottom:28px;

}

.contact-desc {
    font-size: 17px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Form */

.form-control,

.form-select{

    height:58px;

    border-radius:0;

    border:1px solid #d9d9d9;

    box-shadow:none;

    font-size:17px;

}

textarea.form-control{

    height:170px;

    resize:none;

    padding-top:15px;

}

.form-control:focus,

.form-select:focus{

    border-color:#caa545;

    box-shadow:none;

}

/* Button */

.submit-btn{

    width:100%;

    height:60px;

    background:#16284b;

    color:#fff;

    border:none;

    font-size:18px;

    font-weight:600;

    transition:.35s;

}

.submit-btn i{

    margin-right:10px;

}

.submit-btn:hover{

    background:#0d1f3e;

}

/* Sidebar */

.contact-sidebar{

    background:#f6f6f6;

    padding:40px;

    height:100%;

}
.contact-sidebar h3 {
    font-size: 30px;
    color: #16284b;
    font-family: 'Playfair Display',serif;
    margin-bottom: 12px;
}

.info-item{

    display:flex;

    gap:18px;

    margin:28px 0;

    align-items:flex-start;

}

.icon{

    width:54px;

    height:54px;

    background:#16284b;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    flex-shrink:0;

}

.info-item h5{

    color:#16284b;

    font-size:22px;

    margin-bottom:6px;

}

.info-item p{

    margin:0;

    color:#444;

}

.follow-title{

    margin:25px 0 18px;

    font-size: 28px;

    color:#16284b;

    font-family:'Playfair Display',serif;

}

.social-icons{

    display:flex;

    gap:15px;

    margin-bottom:35px;

}

.social-icons a{

    width:52px;

    height:52px;

    border-radius:50%;

    background:#16284b;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:20px;

    transition:.3s;

}

.social-icons a:hover{

    background:#caa545;

}

.quote-box{

    background:#16284b;

    color:#fff;

    padding: 25px 35px;

    margin:-40px;

    margin-top:35px;

}

.quote-box i{

    color:#caa545;

    font-size:40px;

}

.quote-box p {
    margin-top: 0;
    font-size: 20px;
    line-height: 1.5;
    font-family: 'Playfair Display',serif;
    font-style: italic;
}

/* Responsive */

@media(max-width:991px){

.contact-form-area h2{

font-size:38px;

}

.contact-sidebar{

margin-top:40px;

}

}

@media(max-width:576px){

.contact-form-area h2{

font-size:30px;

}

.contact-sidebar{

padding:30px 20px;

}

.quote-box{

margin:-30px;

margin-top:30px;

padding:25px;

}

.quote-box p{

font-size:20px;

}

.social-icons{

justify-content:center;

}

}



/*=========================================
WHAT TO EXPECT
=========================================*/

.expect-section{

    padding:90px 0;
    background:#07081817;

}

/* Heading */

.expect-heading{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:25px;
    margin-bottom:15px;

}

.expect-heading .line{

    width:90px;
    height:2px;
    background:#d4d4d4;

}

.expect-heading h2{

    margin:0;
    font-family:'Playfair Display',serif;
    font-size: 42px;
    font-style:italic;
    color:#16284b;
    font-weight:700;

}

.expect-subtitle{

    text-align:center;
    color:#444;
    font-size:19px;
    margin-bottom:70px;

}

/* Item */

.expect-item{

    text-align:center;
    padding:10px 20px;
    transition:.35s;

}

.expect-item:hover{

    transform:translateY(-8px);

}

/* Icon */

.expect-icon{

    width:74px;
    height:74px;
    background:#16284b;
    border-radius:50%;
    margin:0 auto 28px;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;

}

.expect-icon i{

    color:#cba546;
    font-size:34px;

}

/* Number */

.expect-icon span{

    position:absolute;
    bottom:-12px;
    left:50%;
    transform:translateX(-50%);
    width:30px;
    height:30px;
    border-radius:50%;
    background:#cba546;
    color:#fff;
    font-size:16px;
    font-weight:700;
    display:flex;
    justify-content:center;
    align-items:center;
    border:3px solid #fff;

}

/* Heading */

.expect-item h4{

    font-family:'Playfair Display',serif;
    color:#16284b;
    font-size: 20px;
    margin-bottom:10px;

}

/* Text */

.expect-item p{

    font-size:17px;
    color:#333;
    line-height:1.6;
    margin:0;

}

/* Hover */

.expect-item:hover .expect-icon{

    background:#cba546;

}

.expect-item:hover .expect-icon i{

    color:#16284b;

}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

.expect-heading h2{

font-size:40px;

}

.expect-subtitle{

margin-bottom:50px;

}

.expect-item{

margin-bottom:25px;

}

}

@media(max-width:576px){

.expect-heading{

gap:15px;

}

.expect-heading .line{

width:50px;

}

.expect-heading h2{

font-size:30px;

}

.expect-subtitle{

font-size:16px;

}

.expect-item h4{

font-size:24px;

}

.expect-item p{

font-size:16px;

}

.expect-icon{

width:65px;
height:65px;

}

.expect-icon i{

font-size:28px;

}

}


/*=====================================
SERVICE LIST
======================================*/

.service-list, .service-list ul{

    margin:0;
    padding:0;
    list-style:none;

}

.service-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 600;
    color: #16284b;
    line-height: 1.5;
}

/* Outer Circle */

.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    border: 2px solid #c9a441;
    border-radius: 50%;
}

/* Inner Dot */

.service-list li::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #c9a441;
    border-radius: 50%;
}

/* Hover Effect */

.service-list li{

    transition:.3s;

}

.service-list li:hover{

    color:#c9a441;
    padding-left: 28px;

}

/* Responsive */

@media(max-width:991px){

.service-list li{

font-size:22px;

}

}

@media(max-width:576px){

.service-list li{

font-size:18px;
padding-left:34px;
margin-bottom:16px;

}

.service-list li::before{

width:16px;
height:16px;
top:7px;

}

.service-list li::after{

width:5px;
height:5px;

left:6px;
top:13px;

}

}




/*=====================================
PROGRAM DETAILS
======================================*/

.program_cardpdetails{

    background:#ffffff;
    border:1px solid #1d2f57;
    border-radius:12px;
    overflow:hidden;
    transition:all .35s ease;

}

.program_cardpdetails:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

/*=============================
Title
=============================*/

.program_titlepdetails{

    background:#1d2f57;

    color:#ffffff;

    min-height:82px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    padding:18px 20px;

    font-family:"Playfair Display", serif;

    font-size:20px;

    font-weight:700;

    line-height:1.4;

}

/*=============================
Image
=============================*/

.program_imagepdetails{

    overflow:hidden;

}

.program_imagepdetails img{

    width:100%;

    height:260px;

    object-fit:cover;

    display:block;

    transition:all .5s ease;

}

.program_cardpdetails:hover .program_imagepdetails img{

    transform:scale(1.08);

}

/*=============================
Responsive
=============================*/

@media (max-width:991px){

    .program_titlepdetails{

        font-size:18px;

        min-height:70px;

    }

    .program_imagepdetails img{

        height:230px;

    }

}

@media (max-width:767px){

    .program_titlepdetails{

        font-size:17px;

        min-height:65px;

        padding:15px;

    }

    .program_imagepdetails img{

        height:220px;

    }

}

@media (max-width:575px){

    .program_titlepdetails{

        font-size:16px;

    }

    .program_imagepdetails img{

        height:200px;

    }

}




/*======================================
PROGRAM INFO BOX
======================================*/

.program_infobox{

    background:transparent;

    border:1px solid rgba(255,255,255,.18);

    padding:55px 55px 45px;

    height:100%;

}

/*==============================
Title
==============================*/

.program_infobox_title{

    color:#ffffff;

    font-family:"Playfair Display", serif;

    font-size:28px;

    font-style:italic;

    font-weight:600;

    text-align:center;

    margin-bottom:20px;

}

/*==============================
Line
==============================*/

.program_infobox_line{

    width:250px;

    height:2px;

    background:rgba(255,255,255,.18);

    margin:0 auto 35px;

}

/*==============================
List
==============================*/

.program_infobox_list ul{

margin: 0 auto;

padding:0;

list-style:none;

max-width: max-content;
}

.program_infobox_list li{

    position:relative;

    padding-left:34px;

    margin-bottom:18px;

    color:#ffffff;

    font-size:18px;

    font-weight:600;

    line-height:1.6;

}

/* Gold Circle */

.program_infobox_list li::before{

    content:"";

    position:absolute;

    left:0;

    top:8px;

    width:18px;

    height:18px;

    border:3px solid #d0aa47;

    border-radius:50%;

}

/* Gold Dot */

.program_infobox_list li::after{

    content:"";

    position:absolute;

    left:6px;

    top:14px;

    width:6px;

    height:6px;

    background:#d0aa47;

    border-radius:50%;

}

/* Hover */

.program_infobox{

    transition:.35s;

}

.program_infobox:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 40px rgba(0,0,0,.20);

}

/*==============================
Responsive
==============================*/

@media(max-width:991px){

.program_infobox{

padding:40px 30px;

}

.program_infobox_title{

font-size:24px;

}

.program_infobox_line{

width:180px;

}

.program_infobox_list li{

font-size:17px;

}

}

@media(max-width:576px){

.program_infobox{

padding:30px 20px;

}

.program_infobox_title{

font-size:22px;

}

.program_infobox_line{

width:140px;

margin-bottom:25px;

}

.program_infobox_list li{

font-size:16px;

padding-left:30px;

margin-bottom:14px;

}

.program_infobox_list li::before{

width:16px;

height:16px;

top:6px;

}

.program_infobox_list li::after{

width:5px;

height:5px;

left:6px;

top:12px;

}

}
.workshop-detail,
.workshop-sections {
  padding: 80px 0;
}

.workshop-sections {
  padding-top: 0;
}

.workshop-section {
  padding: 70px 0;
  border-top: 1px solid rgba(26, 48, 71, 0.12);
}

.workshop-media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #d5e0eb;
  box-shadow: 0 18px 45px rgba(7, 26, 43, 0.14);
}

.workshop-media img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.workshop-media.has-video::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(6, 23, 37, 0.18);
  transition: background-color 0.25s ease;
}

.workshop-media.has-video:hover::after {
  background: rgba(6, 23, 37, 0.32);
}

.workshop-play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  color: #fff;
  background: #bd8f47;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.workshop-kicker {
  display: block;
  margin-bottom: 14px;
  color: #bd8f47;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.workshop-copy h2 {
  margin-bottom: 22px;
  color: #102c46;
}

.workshop-editor p:last-child,
.workshop-editor ul:last-child {
  margin-bottom: 0;
}

.workshop-editor ul {
  padding-left: 1.25rem;
}

.workshop-editor li {
  margin-bottom: 9px;
}

@media (max-width: 991.98px) {
  .workshop-detail,
  .workshop-sections {
    padding: 55px 0;
  }

  .workshop-sections {
    padding-top: 0;
  }

  .workshop-section {
    padding: 50px 0;
  }
}

.inner-page-hero .hero-buttons {
  display: flex;
  margin-top: 24px;
}
