@font-face {
  font-family: 'Circular Std';
  src: url('../fonts/FontsFree-Net-Circular-Std-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Circular Book';
  src: url('../fonts/FontsFree-Net-Circular-Std-Book.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Nunito Extra Light */
@font-face {
  font-family: 'Nunito ExtraLight';
  src: url('../fonts/Nunito-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

/* Nunito Extra Light Italic */
@font-face {
  font-family: 'Nunito ExtraLight Italic';
  src: url('../fonts/Nunito-ExtraLightItalic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Nunito Light */
@font-face {
  font-family: 'Nunito Light';
  src: url('../fonts/Nunito-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Nunito Light Italic */
@font-face {
  font-family: 'Nunito Light Italic';
  src: url('../fonts/Nunito-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  --primary-color: #00b659;
  --secondary-color: #063235;
  --font-main: 'Circular Std', Arial, sans-serif;
}

body {
  font-family: var(--font-main);
  background-color: #000;
  color: white;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background-color: #000000;
  padding: 30px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav ul {
  margin-bottom: 0;
  margin-top: 10px;
}

.logo {
  height: 50px;
  width: auto;
}

.logo-image {
  height: 50px;
}

.msg-image {
  height: 30px;
  padding-left: 30px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  padding-bottom: 0;
  align-items: center;
}

.nav-menu a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  font-family: 'Nunito Light';
  font-weight: 300;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-icons {
  display: flex;
  gap: 10px;
}

.nav-icon {
  width: 20px;
  height: 20px;
  background-color: #333;
  border-radius: 3px;
}

.cta-button {
  background: linear-gradient(45deg, var(--primary-color), var(--primary-color));
  color: white;
  padding: 5px 15px;
  border: 1px solid #ffffffb5;
  border-radius: 6px;
  font-weight: 400;
  line-height: 1;
  font-size: 12px;
  cursor: pointer;
  transition: transform 0.2s;
}

.cta-button:hover {
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url("/assets/images/banner1.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
  border: #ffffffb5 1px solid;
}

.hero-content {
  max-width: 600px;
  padding: 0 50px;
}

.hero h1 {
  font-size: 30px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.hero-description {
  font-size: 14px;
  font-family: 'Nunito ExtraLight', 'Nunito', sans-serif;
  font-weight: 200;
  color: #ccc;
  max-width: 450px;
  margin-bottom: 60px;
  line-height: 1.6;
}

.quote {
  font-size: 12px;
  font-family: 'Nunito Light Italic', 'Nunito', sans-serif;
  font-style: normal;
  font-weight: normal;
  margin-right: 40px;
}

.explore-button {
  background: transparent;
  color: white;
  border: 1px solid #ffffffb5;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 400;
  font-size: 12px;
  overflow: hidden;
  line-height: 1;

  cursor: pointer;
  transition: all 0.3s;
}

.explore-button:hover {
  background: white;
  color: #000;
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 60px;
  margin-top: 30px;
}

.slider-wrapper {
  bottom: 30px;
  left: 40px;
  right: 40px;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.slider-arrow {
  background: #000;
  color: white;
  border: none;
  font-size: 20px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-thumbnails {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  flex-grow: 1;
  scroll-behavior: smooth;
}

.thumbnail {
  width: 100px;
  height: 60px;
  background-color: #000;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  background-position: center;
  background-size: cover;
  border: #ffffffb5 1px solid;
  transition: border-color 0.3s;
}

.thumbnail.active {
  border: #ffffffb5 2px solid;
}

.courses {
  position: relative;
  padding: 80px 0;
  background: url("/assets/images/balloon.png") center / cover no-repeat;
  color: #fff;
  border: 1px solid #ffffffb5;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.courses-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.courses h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.courses p {
  font-size: 1.2rem;
  font-family: 'Nunito Light ', 'Nunito', sans-serif;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.note {
  margin-top: 1.5rem;
  font-family: 'Nunito Light ', 'Nunito', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  color: #ccc;
}

/* programs Section */
.programs {
  background: #000;
  padding: 80px 0;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.program-card {
  background: #000;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.program-card:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 20px 40px rgba(0, 212, 170, 0.1); */
}

.program-image {
  width: 100%;
  height: 250px;
  background-size: cover;
  border-radius: 15px;
  border: 1px solid #ffffffb5;
  background-position: center;
  position: relative;
  z-index: 1;
}

.program-content {
  position: relative;
  z-index: 0;
  padding: 25px 10px;
  
}
.program-content::before {
  content: url("/assets/images/pattern.svg");
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.program-title {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.program-subtitle {
  color: #ccc;
  font-family: "circular book";
  font-size: 20px;
  margin-bottom: 15px;
}

.program-description {
  font-size: 14px;
  font-family: 'Nunito ExtraLight', 'Nunito', sans-serif;
  color: #aaa;
  margin-bottom: 20px;
}

.program-button {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid #ffffffb5;
  padding: 10px 25px;
  border-radius: 6px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s;
}

.program-button:hover {
  background: var(--primary-color);
  color: white;
}

.thumb-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
}

.thumbnail-scroller {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-top: 20px;
  padding-bottom: 10px;
}

.thumbnail {
  cursor: pointer;
  border: 1px solid #ffffffb5;
  border-radius: 6px;
  transition: 0.3s;
}


.thumbnail img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}
.kaalam{
  color: white;
  text-align: right;
  font-size: 24px;
  font-weight: bold;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
}
.kaalam-bg {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  min-width: 1200px;
  height: 100%;
  z-index: 0;
  
}
.kaalam .highlight {
  color: var(--primary-color);
} 
/* We Breath Section */
.we-breath-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.we-breath-section .bg {
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
}

.we-breath-section .bg img {
  width: 100%;
}

.we-breath-content .flame-logo {
  height: 145px;
  margin-bottom: 40px;
  opacity: 1;
  z-index: 2;
}

.we-breath-content .flame-logo-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}

.we-breath-content .flame-logo-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 220px;
  background: radial-gradient(circle, rgb(0 0 0) 0%, rgb(0 0 0 / 41%) 70%);
  z-index: 0;
  border-radius: 50%;
}

.we-breath-content .flame-logo {
  height: 145px;
  z-index: 1;
  position: relative;
}


.we-breath-title {
  font-size: 32px;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.5;
  font-weight: 500;
}

.we-breath-text {
  max-width: 600px;
  margin: 0 auto;
  color: #bbb;
  font-family: 'Nunito ExtraLight', 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

/* Mentor Section */
.mentor-section {
  padding: 80px 0;
  padding-top: 0;
}

.mentor-details {
  background-color: var(--secondary-color);
  border: 1px solid #ffffffb5;
  color: white;
  padding: 40px;
  border-radius: 15px;
  position: relative;
}

.mentor-details::after {
  content: "";
  position: absolute;
  top: 25%;
  right: -78px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 42px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 80px solid #ffffffb5;
  z-index: -1;
}

.mentor-details::before {
  content: "";
  position: absolute;
  top: 25%;
  right: -76px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 40px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 80px solid var(--secondary-color);
  z-index: 1;
}

.meet-mentor-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.meet-mentor {
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 1px;
  white-space: nowrap;
  margin-bottom: 0;
}

.mentor-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.mentor-details {
  position: relative;
}

.mentor-details h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.mentor-details h3 span {
  color: var(--primary-color);
  font-size: 12px;

}

.mentor-details .mentor-role {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 25px;
  font-style: italic;
}

.mentor-details .mentor-bio {
  font-size: 14px;
  font-family: 'Nunito ExtraLight ', 'Nunito', sans-serif;
  color: #ccc;
  max-width: 600px;
  margin-bottom: 50px;
  line-height: 1.7;
}

.mentor-details .read-more {
  color: white;
  text-decoration: none;
  border: 1px solid #ffffffb5;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1;
  transition: all 0.3s;
  display: inline-block;
}

.mentor-details .read-more:hover {
  background-color: white;
  color: black;
}

.mentor-photo img {
  max-width: 100%;
  padding-left: 40px;
  border-radius: 15px;
  height: 100%;
}

.mentor-bg {
  position: absolute;
  top: 0;
  right: -50%;
  bottom: 0;
  z-index: -1;
}

.mentor-bg img {
  height: 100%;
  transform: translateY(0) !important;
}

.msg-box {
  position: absolute;
  top: 0;
  right: -50%;
  bottom: 0;
  z-index: -1;
  width: -webkit-fill-available;
}

.msg-box-img {
  height: 100%;
}

.world-map-section {
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 50%),
    url("/assets/images/map.svg");
  background-color: #000;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: center;
  position: relative;
  margin: 0 0 60px 0;
}


.waving-text {
  position: absolute;
  bottom: 0;
  left: 50%;
  font-weight: 300;
  font-family: 'Nunito Light ', 'Nunito', sans-serif;
  transform: translate(-50%);
  margin-top: 20px;
}

.waving-text p:first-child {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 5px;
}

.waving-text p:last-child {
  font-size: 16px;
  color: #ccc;
}

/* Pre-footer Section */
.pre-footer-section {
  background-color: #000;
  padding: 100px 0;
  border-top: 1px solid #222;
}

.pre-footer-content {
  font-family: 'Nunito Light ', 'Nunito', sans-serif;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 1px;
  font-weight: 300;
  margin-bottom: 0;
}

.pre-footer-content p {
  font-style: italic;
  font-size: 18px;
}

.pre-footer-apps-wrap {
  display: flex;
  justify-content: end;
}

.pre-footer-apps {
  width: 100%;
  font-family: 'Nunito Light ', 'Nunito', sans-serif;
  max-width: 140px;
  font-size: 10px;
}

.pre-footer-apps img {
  width: 100%;
  height: auto;
  display: block;
}
.pre-footer-apps p{
  font-size: 14px;
}

/* Footer Styles */
.site-footer {
  background-color: var(--secondary-color);
  color: #ccc;
  padding: 120px 0 20px;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  font-family: 'Nunito Light ', 'Nunito', sans-serif;
  font-weight: 300;
}

.site-footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 2fr 3fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--secondary-color);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.social-links {
  text-align: left;
}

.social-icons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-icons li {
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-icons img {
  height: 20px;
}

.social-icons a {
  color: var(--primary-color);
  font-size: 18px;
  text-decoration: none;
}

.social-handle,
.footer-email {
  margin: 10px 0;
  font-size: 14px;
}

.pre-footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
}

.footer-email {
  color: #ccc;
  text-decoration: none;
  display: block;
}

.footer-bottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-right: 15px;
}