:root {
  --primary-color: #4ac58f;
  --secondary-color: #5cb390;
  --accent-color: #99e454;
  --highlight-color: #4bbb8b;
  --dark-color: #1a2e35;
  --darker-color: #0f1f24;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-primary-custom {
  background-color: var(--primary-color);
}

.bg-dark-custom {
  background-color: var(--dark-color);
}

.bg-darker-custom {
  background-color: var(--darker-color);
}

.text-primary-custom {
  color: var(--primary-color);
}

.btn-primary-custom {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.btn-primary-custom:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* Offcanvas Menu */
.offcanvas-header {
  background-color: var(--dark-color);
  color: white;
}

.offcanvas-body {
  /* background-color: var(--darker-color); */
  color: white;
}

.nav-item .nav-link {
  color: white;
  font-weight: 500;
  padding: 10px 20px !important;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.nav-item .nav-link:hover {
  color: var(--primary-color);
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(26, 46, 53, 0.85), rgba(26, 46, 53, 0.9));

  color: white;
  padding: 140px 0 120px;
  position: relative;
  overflow: hidden;
}

.profile-img {
  width: 100%;
  height: 600px;
  object-fit: contain;
  /* border: 5px solid white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
  z-index: 2;
  object-position: bottom;
  position: relative;
}

.logo-placeholder {
  width: 120px;
  height: 120px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  position: relative;
  margin-bottom: 60px;
}

/* .section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
} */

/* Photo Highlights */
.photo-highlights {
  background-color: #f8f9fa;
  position: relative;
}

.photo-highlights::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
}

.highlight-card {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--primary-color);
  background: white;
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stat-box {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  background-color: white;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

/* Experience Section */
.experience-section {
  background: linear-gradient(135deg, var(--dark-color) 0%, #1a2e35 100%);
  color: white;
  position: relative;
}

.experience-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23f8f9fa'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
}

.experience-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23f8f9fa'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  transform: rotate(180deg);
}

/* Intro Section */
.intro-section {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: white;
  position: relative;
}

.intro-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23f6f9f8'%3E%3C/path%3E%3C/svg%3E");

  background-size: cover;
  background-repeat: no-repeat;
}

/* Key Highlights */
.highlights-section {
  background-color: #f8f9fa;
  position: relative;
}

.highlights-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
}

/* Footer */
.footer {
  background-color: var(--darker-color);
  color: white;
  padding: 70px 0 20px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23f8f9fa'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  transform: rotate(180deg);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

/* Gallery Images */
.gallery-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

.gallery-img:hover {
  transform: scale(1.03);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section {
    padding: 150px 0 80px;
  }

  .profile-img {
    width: 180px;
    height: 180px;
  }

  .section-padding {
    padding: 70px 0;
  }

  .swiper {
    height: 350px;
  }
}

.navbar-brand img {
  height: 100px;
}

.navbar-expand-lg .offcanvas .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
  justify-content: center;
}

.profile-img1 img {
  border-radius: 7px;
}

.hero-headings h1 {
  font-size: 70px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 5px;
  color: transparent;
  -webkit-text-stroke: 3px #d9d9d9;
  text-shadow: 0 0 15px rgba(74, 197, 143, 0.8);
}

.hero-headings h2 {
  font-size: 45px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
}

.hero-headings h2 span {
  color: #4ac58f; /* your portfolio accent color - your logo set */
  position: relative;
  font-size: 70px;
}

.hero-headings h2 span::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #4ac58f;
  border-radius: 10px;
  animation: underlineAni 2s infinite ease-in-out alternate;
}

@keyframes underlineAni {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.hero-section {
  position: relative;
  width: 100%;
  height: auto;
  padding: 140px 0 0px;
  overflow: hidden;
  color: #fff;
}

/* video bg */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* colored overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(26, 46, 53, 0.85), rgba(26, 46, 53, 0.9));
  z-index: 1;
}

/* content above */
.hero-content {
  position: relative;
  z-index: 2;
}

.photo-highlights::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23f8f9fa'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
}

.my-hero-slider-item img {
  border-radius: 12px;
  width: 100%;
  height: 260px;
  object-fit: cover;
  cursor: pointer;
  transition: 0.3s;
}
.my-hero-slider-item img:hover {
  transform: scale(1.03);
}

.heroCertSlider .swiper-slide img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}
.heroCert-prev,
.heroCert-next {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 12;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.heroCert-prev:hover,
.heroCert-next:hover {
  background: #4ac58f;
}

.heroCert-prev {
  left: -15px;
}
.heroCert-next {
  right: -15px;
}

.heroCert-prev::after,
.heroCert-next::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 18px;
  color: #fff;
}

.heroCert-prev::after {
  content: "\f104";
}
.heroCert-next::after {
  content: "\f105";
}

.my-about {
  background: #f8f9fa;
  position: relative;
}

.my-about-img img {
  border-radius: 12px;
  width: 100%;
  height: 450px;
  object-fit: cover;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.my-about-title {
  color: #4ac58f;
  font-size: 45px;
  font-weight: 800;
}

.my-about-desc {
  color: #333;
  font-size: 18px;
  line-height: 1.7;
}

.my-about-list {
  margin: 0;
  padding-left: 10px;
  margin-top: 15px;
}

.my-about-list ul {
  padding-left: 0;
}

.my-about-list li {
  margin-bottom: 12px;
  color: #222;
  font-size: 17px;
  line-height: 1.6;
  list-style: none;
  position: relative;
}

.my-about-list li::before {
  content: "•";
  color: #4ac58f;
  font-weight: bold;
  margin-right: 6px;
}

.my-about-btns .btn-outline-light {
  border-color: #4ac58f;
  color: #4ac58f;
}

.my-about-btns .btn-outline-light:hover {
  background: #4ac58f;
  color: #fff;
}

.my-about-list li {
  position: relative;
  padding-left: 28px;
}

.my-about-list li::before {
  content: "\f00c"; /* check icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
  color: #4ac58f;
  font-size: 18px;
}

.my-counter-section-dark {
  /* background:#0f1f24; */
  color: #ffffff;
}

.my-counter-box-dark {
  padding: 35px 20px;
  background: #1a2e35;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: 0.3s;
}

.my-counter-box-dark:hover {
  transform: translateY(-8px);
}

.my-counter-box-dark i {
  font-size: 45px;
  color: #4ac58f;
  margin-bottom: 15px;
}

.my-counter-box-dark h3 {
  font-size: 48px;
  font-weight: 800;
  color: #4ac58f;
  margin-bottom: 8px;
}

.my-counter-box-dark p {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.my-testi-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}

.my-testi {
  background: #0f1f24;
  color: #fff;
}

.testi-prev,
.testi-next {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  cursor: pointer;
}

.testi-prev {
  left: -20px;
}
.testi-next {
  right: -20px;
}

.testi-prev::after {
  content: "\f104";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
}
.testi-next::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
}

/* ===== Testimonial Section Base ===== */
.my-testi {
  background: #0d161a;
  position: relative;
  overflow: hidden;
}

/* Animated gradient blobs */
.my-testi::before,
.my-testi::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle at center, #4ac58f66, transparent 70%);
  filter: blur(90px);
  animation: floatAni 7s ease-in-out infinite alternate;
  z-index: 1;
}
.my-testi::before {
  top: -80px;
  left: -80px;
}
.my-testi::after {
  bottom: -100px;
  right: -120px;
}
@keyframes floatAni {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(40px);
  }
}

.my-testi .container {
  position: relative;
  z-index: 3;
}

/* Card */
.testi-card {
  background: #0f1f24;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.testi-img img {
  display: block;
  width: 100%;
  height: 220px;
  object-position: left;
  object-fit: cover;
}
.testi-body {
  padding: 20px 18px;
  color: #e5f2ec;
}
.testi-text {
  margin: 0 0 10px;
  color: #cfe5dc;
}
.testi-meta strong {
  display: block;
  color: #4ac58f;
}
.testi-meta span {
  font-size: 0.9rem;
  color: #a6c8be;
}

/* Swiper sizing */
.testiSwiper {
  padding: 10px 20px;
}
.testiSwiper .swiper-slide {
  height: auto;
}

/* Custom nav buttons (REAL elements, not ::after) */
.testi-prev,
.testi-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  background: rgba(74, 197, 143, 0.2);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s ease;
}
.testi-prev {
  left: 6px;
}
.testi-next {
  right: 6px;
}
.testi-prev i,
.testi-next i {
  font-size: 18px;
  color: #fff;
  line-height: 1;
}

.testi-prev:hover,
.testi-next:hover {
  background: #4ac58f;
  border-color: #4ac58f;
  transform: translateY(-50%) scale(1.08);
}

/* Custom pagination */
.testi-pagination {
  position: relative;
  margin-top: 14px;
  text-align: center;
}
.testi-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.6);
  opacity: 1;
  margin: 0 6px !important;
  transition: 0.25s ease;
}
.testi-pagination .swiper-pagination-bullet-active {
  background: #4ac58f;
  border-color: #4ac58f;
  transform: scale(1.15);
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .testiSwiper {
    padding: 10px 32px;
  }
  .testi-prev {
    left: 2px;
  }
  .testi-next {
    right: 2px;
  }
}

.my-achievements {
  background: #f6f9f8;
}

.my-achievements h2 {
  font-weight: 700;
  color: #1a2e35;
}

.achieve-list li {
  list-style: none;
  font-size: 17px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 35px;
  color: #1a2e35;
  font-weight: 500;
}

.achieve-list li i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #4ac58f;
}
.achieve-image-box img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.my-achieve-expan {
  display: flex;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.my-achieve-expan .achieve-col {
  flex: 1;
  transition: all 0.4s ease;
  cursor: pointer;
}

.my-achieve-expan .achieve-col img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: all 0.4s ease;
  border-radius: 12px;
}

.my-achieve-expan .achieve-col:hover {
  flex: 5; /* 80% approx */
}

.my-achieve-expan:hover .achieve-col:not(:hover) {
  flex: 0.5; /* others become small */
  filter: brightness(0.6);
}

.my-achievements ul {
  padding-left: 0;
}

.blog-section-light {
  background: #f6f9f8;
  position: relative;
}

.blog-section-light .section-title {
  margin-bottom: 10px;
}

.blog-sub {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.blog-card2 {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.blog-card2:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.blog-card2 img {
  height: 210px;
  width: 100%;
  object-fit: cover;
}

.blog-body {
  padding: 25px;
}

.blog-body h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a2e35;
}

.blog-body p {
  font-size: 16px;
  color: #707070;
  margin-bottom: 18px;
  line-height: 1.6;
}

.blog-read {
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  color: #4ac58f;
  transition: 0.3s;
}

.blog-read:hover {
  color: #1a2e35;
}

:root {
  --primary-color: #4ac58f;
  --secondary-color: #5cb390;
  --accent-color: #99e454;
  --highlight-color: #4bbb8b;
  --dark-color: #1a2e35;
  --darker-color: #0f1f24;
}

.my-footer {
  background: linear-gradient(rgba(15, 31, 36, 0.85), rgba(15, 31, 36, 0.9)),
    url("https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80")
      center/cover no-repeat;
  color: white;
  padding: 80px 0 30px;
  position: relative;
}

.my-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23f8f9fa'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  /* transform: rotate(180deg); */
}

.my-footer .my-footer-heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--primary-color);
  position: relative;
}

.my-footer .my-footer-heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

.my-footer .my-footer-about p {
  color: #ccc;
  margin-bottom: 20px;
}

.my-footer .my-footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.my-footer .my-footer-links li {
  margin-bottom: 12px;
}

.my-footer .my-footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.my-footer .my-footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.my-footer .my-footer-contact p {
  color: #ccc;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.my-footer .my-footer-contact i {
  color: var(--primary-color);
  margin-right: 10px;
  margin-top: 5px;
  width: 20px;
}

.my-footer .my-footer-map {
  height: 200px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.my-footer .my-footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.my-footer .my-footer-map-placeholder {
  text-align: center;
  color: #ccc;
}

.my-footer .my-footer-map-placeholder i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.my-footer .my-footer-social {
  margin-top: 20px;
}

.my-footer .my-footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  color: white;
  text-decoration: none;
}

.my-footer .my-footer-social-icon:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.my-footer .my-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  color: #999;
}

.my-footer-bottom a {
  text-decoration: none;
  color: white;
}

@media (max-width: 992px) {
  .my-footer .my-footer-col {
    margin-bottom: 40px;
  }

  .my-footer .my-footer-map {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .my-footer {
    padding: 60px 0 20px;
  }

  .my-footer .my-footer-heading {
    font-size: 1.3rem;
  }
}

.section-title {
  position: relative;
  font-weight: 800;
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
  color: #1a2e35;
  z-index: 2;
}

.section-title::before {
  content: attr(data-title);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0.08);
  text-transform: uppercase;
  letter-spacing: 5px;
  z-index: 1;
  pointer-events: none;
  line-height: 1;
}

.experience-section .section-title::before {
  content: attr(data-title);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  letter-spacing: 6px;
  z-index: 1;
  pointer-events: none;
  line-height: 1;
}

.my-testi .section-title::before {
  content: attr(data-title);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.197);
  text-transform: uppercase;
  letter-spacing: 6px;
  z-index: 1;
  pointer-events: none;
  line-height: 1;
}

.intro-section .section-title::before {
  content: attr(data-title);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.197);
  text-transform: uppercase;
  letter-spacing: 6px;
  z-index: 1;
  pointer-events: none;
  line-height: 1;
}

.testi-meta {
  display: flex;
}

.testi-meta img {
  height: 50px;
  width: 50px;
  margin-right: 10px;
  border-radius: 50%;
}

:root {
  --primary: #4ac58f;
  --secondary-color: #5cb390;
  --accent-color: #99e454;
  --highlight-color: #4bbb8b;
  --dark-color: #1a2e35;
  --darker-color: #0f1f24;
  --light-color: #f5f5f5;
  --white: #ffffff;
}

.my-banner-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.my-banner-slider .swiper {
  width: 100%;
  height: 100%;
}

.my-banner-slider .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.my-banner-slider .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.my-banner-slider .slide-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 0 20px;
  top: 7%;
  color: var(--white);
}

.my-banner-slider .name {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.my-banner-slider .title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.my-banner-slider .certification {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--light-color);
}

.my-banner-slider .highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.my-banner-slider .highlight-item {
  background-color: rgba(26, 46, 53, 0.7);
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.my-banner-slider .highlight-item strong {
  color: var(--accent-color);
}

.my-banner-slider .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.my-banner-slider .cta-button {
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: var(--darker-color);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.my-banner-slider .cta-button:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.my-banner-slider .cta-button.secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.my-banner-slider .cta-button.secondary:hover {
  background-color: var(--primary-color);
  color: var(--darker-color);
}

/* Custom navigation buttons */
.my-banner-slider .swiper-button-next,
.my-banner-slider .swiper-button-prev {
  color: var(--primary-color);
  background-color: rgba(26, 46, 53, 0.7);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.my-banner-slider .swiper-button-next:after,
.my-banner-slider .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.my-banner-slider .swiper-button-next:hover,
.my-banner-slider .swiper-button-prev:hover {
  background-color: var(--primary-color);
  color: var(--darker-color);
}

/* Custom pagination */
.my-banner-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--light-color);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.my-banner-slider .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  opacity: 1;
  transform: scale(1.2);
}

/* Responsive styles */
@media (max-width: 768px) {
  .my-banner-slider .name {
    font-size: 2.2rem;
  }

  .my-banner-slider .title {
    font-size: 1.4rem;
  }

  .my-banner-slider .certification {
    font-size: 1rem;
  }

  .my-banner-slider .highlight-item {
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  .my-banner-slider .cta-buttons {
    flex-direction: row;
    align-items: center;
  }

  .my-banner-slider .cta-button {
    width: 200px;
  }
}

@media (max-width: 480px) {
  .my-banner-slider .name {
    font-size: 1.8rem;
  }

  .my-banner-slider .title {
    font-size: 1.2rem;
  }

  .my-banner-slider .highlights {
    gap: 10px;
  }

  .my-banner-slider .highlight-item {
    width: 100%;
  }
}

.hero-headings h2 {
  font-weight: 700;
}

.hero-qual {
  margin-top: 50px;
  font-weight: 500;
  margin-left: 10px;
  font-size: 20px;
  color: #44ff4abe; /* linkedin blue or your theme color */
}

.hero-headings {
  display: flex;
}

:root {
  --primary-color: #4ac58f;
  --secondary-color: #5cb390;
  --accent-color: #99e454;
  --highlight-color: #4bbb8b;
  --dark-color: #1a2e35;
  --darker-color: #0f1f24;
}

/* Example usage of vars */

.navbar-nav .nav-link.active {
  color: var(--primary-color);
}
.dropdown-nav .drop-toggle {
  color: white;
}

/* Layout for the custom dropdown */
.navbar-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
.nav-item {
  position: relative;
}
.dropdown-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

/* Arrow button */
.drop-toggle {
  background: transparent;
  border: 0;
  padding: 6px 8px;
  cursor: pointer;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
.drop-toggle:focus {
  outline: 2px solid var(--highlight-color);
}

/* Submenu base (hidden) */
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 275px;
  background: #1a2e35;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 0px 0;
  /* border-radius:10px; */
  opacity: 0;
  color: white;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 999;
}
.sub-menu li {
  list-style: none;
}
.sub-menu a {
  display: block;
  padding: 10px 14px;
  color: var(--darker-color);
  text-decoration: none;
  font-size: 15px;
}
/* .sub-menu a:hover{ background:#f5f7f9; color:var(--primary-color); } */

/* Show when .open set by JS */
.dropdown-nav.open .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Desktop: show on HOVER of the ARROW only (≥992px) */
@media (min-width: 992px) {
  .dropdown-nav:hover > .drop-toggle ~ .sub-menu,
  .drop-toggle:hover + .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.sub-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: white;
  font-size: 15px;
}
.sub-menu li a:hover {
  /* background:#f3f3f3; */
  color: #4ac58f;
  background-color: #00435b;
  /* border-bottom: 2px solid white;
  border-top: 2px solid white; */
}

.drop-toggle i {
  transition: transform 0.25s ease;
}

.drop-toggle i {
  transition: transform 0.25s ease;
}

.dropdown-nav:hover .drop-toggle i {
  transform: rotate(180deg);
}

.left-fixed-socials {
  position: fixed;
  left: 18px;
  bottom: 20px;
  /* transform: translateY(-50%); */
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.left-fixed-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--dark-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s;
}
.left-fixed-socials a:hover {
  background: var(--primary-color);
}

.left-fixed-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s;
}

.left-fixed-socials a:nth-child(1) {
  background: #25d366;
} /* WhatsApp */
.left-fixed-socials a:nth-child(2) {
  background: #0a66c2;
} /* LinkedIn */
.left-fixed-socials a:nth-child(3) {
  background: linear-gradient(
    45deg,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
  );
}

#backToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  /* opacity:0; */

  pointer-events: none;
  transition: 0.3s;
  z-index: 999999;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

a {
  text-decoration: none;
}

.heroCertSlider .swiper-slide a {
  display: block;
  cursor: pointer;
  pointer-events: auto;
}

.heroCertSlider .swiper-slide img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.heroCertSlider .swiper-slide img:hover {
  transform: scale(1.05);
}

:root {
  --primary: #4ac58f;
  --accent: #99e454;
  --dark: #0f1f24;
  --white: #ffffff;
}

.prog-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: white;
  overflow: hidden;
  transition: color 0.4s ease;
  z-index: 1;
  border: 2px solid var(--primary);
  cursor: pointer;
  background: #4ac58f;
}

.prog-btn i {
  font-size: 1.1rem;
}

/* Animated gradient background layer */
.prog-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: -1;
  transition: all 0.6s ease;
  border-radius: 50px;
}

/* On hover: background fills slowly left → right */
.prog-btn:hover::before {
  left: 0;
}

.prog-btn:hover {
  color: var(--white);
  box-shadow: 0 4px 20px rgba(74, 197, 143, 0.5);
  /* transform: translateY(-2px); */
}

/* ===============================
         DARK SECTION BUTTON VARIANT
      =============================== */
.dark-section {
  background: transparent;
  color: #fff;
}

.prog-btn-dark {
  border: 2px solid #fff;
  color: #fff;
  background-color: transparent;
}

.prog-btn-dark::before {
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.prog-btn-dark:hover {
  color: var(--dark);
  border: 2px solid #4ac58f !important;
  box-shadow: 0 4px 25px rgba(153, 228, 84, 0.5);
}

/* Optional glow pulse for extra elegance */
.prog-btn:hover {
  animation: subtleGlow 1.5s infinite alternate;
}

@keyframes subtleGlow {
  from {
    box-shadow: 0 4px 15px rgba(74, 197, 143, 0.3);
  }
  to {
    box-shadow: 0 6px 25px rgba(153, 228, 84, 0.6);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .prog-btn {
    display: block;
    width: 80%;
    /* margin: 10px auto; */
  }
}
@media (max-width: 991px) {
  [data-aos="fade-left"],
  [data-aos="fade-right"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Optional: Disable any custom animations */
  .animate-left,
  .animate-right {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
.intro-section img {
  width: 100%;
}

:root {
  --primary-color: #4ac58f;
  --secondary-color: #5cb390;
  --accent-color: #99e454;
  --highlight-color: #4bbb8b;
  --dark-color: #1a2e35;
  --darker-color: #0f1f24;
}

.my-breacum-section {
  position: relative;
  width: 100%;
  margin-top: 120px;
  min-height: 300px;
  background-image: url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  margin-bottom: 0px;
}

.my-breacum-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 46, 53, 0.85);
  z-index: 1;
}

.my-breacum-section .my-breacum-section-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.my-breacum-section .my-breacum-section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.my-breacum-section .my-breacum-section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #e0e0e0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.my-breacum-section .my-breacum-section-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.my-breacum-section .my-breacum-section-breadcrumb-item {
  display: flex;
  align-items: center;
  color: #ccc;
  font-size: 1rem;
}

.my-breacum-section .my-breacum-section-breadcrumb-item a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.my-breacum-section .my-breacum-section-breadcrumb-item a:hover {
  color: var(--highlight-color);
}

.my-breacum-section .my-breacum-section-breadcrumb-item.active {
  color: var(--primary-color);
  font-weight: 600;
}

.my-breacum-section .my-breacum-section-breadcrumb-separator {
  margin: 0 8px;
  color: var(--secondary-color);
}

.my-breacum-section .my-breacum-section-cta {
  margin-top: 30px;
}

.my-breacum-section .my-breacum-section-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.my-breacum-section .my-breacum-section-button:hover {
  background-color: var(--highlight-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.content-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.content-section h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 2rem;
}

.content-section p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #e0e0e0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .my-breacum-section {
    min-height: 250px;
    padding: 30px 15px;
  }

  .my-breacum-section .my-breacum-section-title {
    font-size: 2rem;
  }

  .my-breacum-section .my-breacum-section-subtitle {
    font-size: 1rem;
  }

  .my-breacum-section .my-breacum-section-breadcrumb-item {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .my-breacum-section {
    min-height: 200px;
    padding: 20px 10px;
  }

  .my-breacum-section .my-breacum-section-title {
    font-size: 1.7rem;
  }

  .my-breacum-section .my-breacum-section-subtitle {
    font-size: 0.9rem;
  }

  .my-breacum-section .my-breacum-section-breadcrumb {
    gap: 5px;
  }

  /* .my-breacum-section .my-breacum-section-breadcrumb-separator {
    display: none;
  } */
}

/* Section Styling */
.my-aboutme-inn {
  padding: 100px 0;
  position: relative;
}

.my-aboutme-inn-1 {
  /* background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%); */
  overflow: hidden;
  padding: 50px 0;
}

.my-aboutme-inn-1::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(74, 197, 143, 0.1) 0%,
    rgba(74, 197, 143, 0) 70%
  );
  top: -150px;
  right: -150px;
  z-index: 1;
}

.my-aboutme-inn-1::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(91, 179, 144, 0.1) 0%,
    rgba(91, 179, 144, 0) 70%
  );
  bottom: -100px;
  left: -100px;
  z-index: 1;
}

.my-aboutme-inn-2 {
  background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}

.my-aboutme-inn-2::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(74, 197, 143, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(91, 179, 144, 0.05) 0%,
      transparent 50%
    );
  top: 0;
  left: 0;
  z-index: 1;
}

.my-aboutme-inn-3 {
  background: linear-gradient(135deg, #4ac58f 0%, var(--darker) 100%);
  position: relative;
  overflow: hidden;
}

.my-aboutme-inn-3::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%234ac58f' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  top: 0;
  left: 0;
  z-index: 1;
}

.my-aboutme-inn-4 {
  /* background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%); */
  position: relative;
  overflow: hidden;
  background-color: white;
  box-shadow: none;
}

/* .my-aboutme-inn-4::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(74, 197, 143, 0.05) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(91, 179, 144, 0.05) 0%,
      transparent 40%
    );
  top: 0;
  left: 0;
  z-index: 1;
} */

/* Section Content Styling */
.section-content {
  position: relative;
  z-index: 2;
}

/* Section 1 - Introduction */
.my-aboutme-inn-1 .profile-img-container {
  /* position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); */
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.my-aboutme-inn-1 .profile-img-container:hover {
  transform: perspective(1000px) rotateY(0deg);
  /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4); */
}

.my-aboutme-inn-1 .profile-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 550px;
  transition: transform 0.5s ease;
}

.my-aboutme-inn-1 .profile-img-container:hover .profile-img {
  transform: scale(1.05);
}

.my-aboutme-inn-1 h1 {
  /* color: var(--light); */
  font-size: 3rem;
  /* margin-bottom: 25px; */
  position: relative;
  /* padding-bottom: 15px; */
  font-weight: 700;
}

/* .my-aboutme-inn-1 h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 2px;
} */

.my-aboutme-inn-1 h2 {
  /* color: var(--light); */
  font-size: 1.8rem;
  margin: 30px 0 10px;
  font-weight: 600;
}

.my-aboutme-inn-1 p {
  font-size: 1.1rem;
  /* color: #b0b8c5; */
  margin-bottom: 20px;
  line-height: 1.8;
}

.highlight {
  color: var(--secondary);
  font-weight: 600;
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--secondary);
  opacity: 0.3;
}

/* Section 2 - Vision & Philosophy */
.my-aboutme-inn-2 h2 {
  color: var(--light);
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-align: center;
  font-weight: 700;
  position: relative;
}

.my-aboutme-inn-2 h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 2px;
}

.vision-box,
.philosophy-box {
  background: rgba(26, 46, 53, 0.7);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(74, 197, 143, 0.1);
  position: relative;
  overflow: hidden;
}

.vision-box::before,
.philosophy-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.vision-box:hover,
.philosophy-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vision-box h3,
.philosophy-box h3 {
  color: var(--light);
  font-size: 1.8rem;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.vision-box h3 i,
.philosophy-box h3 i {
  margin-right: 15px;
  color: var(--secondary);
  font-size: 1.5rem;
}

.philosophy-motto {
  background: linear-gradient(
    135deg,
    rgba(74, 197, 143, 0.1) 0%,
    rgba(91, 179, 144, 0.1) 100%
  );
  padding: 20px;
  border-radius: 10px;
  margin: 25px 0;
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--light);
  border-left: 4px solid var(--secondary);
  position: relative;
  overflow: hidden;
}

.philosophy-motto::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.philosophy-motto:hover::before {
  transform: translateX(100%);
}

.belief-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: var(--light);
  padding: 25px;
  border-radius: 10px;
  margin-top: 30px;
  text-align: center;
  font-style: italic;
  position: relative;
  border: 1px solid rgba(74, 197, 143, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.belief-box::before {
  content: '"';
  font-size: 5rem;
  color: rgba(74, 197, 143, 0.2);
  position: absolute;
  top: -20px;
  left: 20px;
  line-height: 1;
}

.my-aboutme-inn-2 p {
  color: white;
}

/* Section 3 - Expertise & Achievements */
.my-aboutme-inn-3 h2 {
  color: var(--light);
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-align: center;
  font-weight: 700;
  position: relative;
}

.my-aboutme-inn-3 h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 2px;
}

.expertise-list {
  list-style: none;
}
.expertise-list p {
  margin-bottom: 0 !important;
}

.expertise-item {
  padding: 20px 25px;
  margin-bottom: 20px;
  background: rgba(26, 46, 53, 0.7);
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.4s ease;
  border-left: 4px solid transparent;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(74, 197, 143, 0.1);
  position: relative;
  overflow: hidden;
}

.expertise-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(74, 197, 143, 0.1),
    transparent
  );
  transition: left 0.6s;
}

.expertise-item:hover::before {
  left: 100%;
}

.expertise-item:hover {
  transform: translateX(10px);
  border-left: 4px solid var(--secondary);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.expertise-item.active {
  border-left: 4px solid var(--secondary);
  background: rgba(26, 46, 53, 0.9);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.expertise-item h4 {
  color: var(--light);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.3rem;
}

.expertise-item h4 i {
  margin-right: 15px;
  color: var(--secondary);
  font-size: 1.2rem;
}

.expertise-img-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  height: 100%;
  min-height: 350px;
}

.expertise-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.expertise-img-container:hover .expertise-img {
  transform: scale(1.05);
}

.expertise-content {
  display: none;
  height: 100%;
}

.expertise-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.my-aboutme-inn-3 li {
  color: white;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Section 4 - Notable Collaborations */
.my-aboutme-inn-4 h2 {
  /* color: var(--light); */
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-align: center;
  font-weight: 700;
  position: relative;
}

.my-aboutme-inn-4 h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 2px;
}

.collaboration-list {
  list-style: none;
}

.collaboration-item {
  padding: 20px 25px;
  margin-bottom: 20px;
  background: rgba(26, 46, 53, 0.079);
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.4s ease;
  border-left: 4px solid transparent;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(74, 197, 143, 0.1);
  position: relative;
  overflow: hidden;
}

.collaboration-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(91, 179, 144, 0.1),
    transparent
  );
  transition: left 0.6s;
}

.collaboration-item:hover::before {
  left: 100%;
}

.collaboration-item:hover {
  transform: translateX(10px);
  border-left: 4px solid var(--accent);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.collaboration-item.active {
  border-left: 4px solid var(--accent);
  background: rgba(26, 46, 53, 0);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.collaboration-item h4 {
  /* color: var(--light); */
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.3rem;
}

.collaboration-item h4 i {
  margin-right: 15px;
  color: var(--accent);
  font-size: 1.2rem;
}

.collaboration-img-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  height: 100%;
  min-height: 350px;
}

.collaboration-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collaboration-img-container:hover .collaboration-img {
  transform: scale(1.05);
}

.collaboration-content {
  display: none;
  height: 100%;
}

.collaboration-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

/* Responsive Design */
@media (max-width: 992px) {
 

  .my-aboutme-inn {
    padding: 80px 0;
  }

  .my-aboutme-inn-1 h1 {
    font-size: 2.5rem;
  }

  .expertise-img-container,
  .collaboration-img-container {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .my-aboutme-inn {
    padding: 60px 0;
  }

  .vision-box,
  .philosophy-box {
    padding: 30px;
  }

  .philosophy-motto {
    font-size: 1.3rem;
  }

  .my-aboutme-inn-1 h1 {
    font-size: 2.2rem;
  }

  .my-aboutme-inn-2 h2,
  .my-aboutme-inn-3 h2,
  .my-aboutme-inn-4 h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .my-aboutme-inn-1 h1 {
    font-size: 2rem;
  }

  .my-aboutme-inn-2 h2,
  .my-aboutme-inn-3 h2,
  .my-aboutme-inn-4 h2 {
    font-size: 1.8rem;
  }

  .vision-box,
  .philosophy-box {
    padding: 25px;
  }

  .expertise-item,
  .collaboration-item {
    padding: 15px 20px;
  }
}

:root {
  --secondary: #4ac58f;
  --accent: #5cb390;
  --highlight: #4bbb8b;
  --light: #f8f9fa;
  --dark: #0f1f24;
  --darker: #0a161b;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --white: #ffffff;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --card-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Section Styling */
.my-work-exp-inn {
  padding: 100px 0;
  position: relative;
}

.my-work-exp-inn-1 {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow: hidden;
}

.my-work-exp-inn-1::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(74, 197, 143, 0.1) 0%,
    rgba(74, 197, 143, 0) 70%
  );
  top: -150px;
  right: -150px;
  z-index: 1;
}

.my-work-exp-inn-2 {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.my-work-exp-inn-2::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(74, 197, 143, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(91, 179, 144, 0.05) 0%,
      transparent 50%
    );
  top: 0;
  left: 0;
  z-index: 1;
}

.my-work-exp-inn-3 {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.my-work-exp-inn-3::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%234ac58f' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  top: 0;
  left: 0;
  z-index: 1;
}

.section-content {
  position: relative;
  z-index: 2;
}

/* Section 1 - Profile Overview */
.my-work-exp-inn-1 h2 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  font-weight: 700;
  text-align: center;
}

.my-work-exp-inn-1 h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 2px;
}

.profile-overview p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.8;
}

.highlight {
  color: var(--secondary);
  font-weight: 600;
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--secondary);
  opacity: 0.3;
}

.master-campaigns {
  background: linear-gradient(
    135deg,
    rgba(74, 197, 143, 0.1) 0%,
    rgba(91, 179, 144, 0.1) 100%
  );
  padding: 20px;
  border-radius: 10px;
  margin: 25px 0;
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  border-left: 4px solid var(--secondary);
  position: relative;
  overflow: hidden;
}

.master-campaigns::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(74, 197, 143, 0.1),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.master-campaigns:hover::before {
  transform: translateX(100%);
}

.photo-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
  justify-content: center;
}

.photo-item {
  /* width: 150px;
  height: 100px; */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Section 2 - Core Competencies */
.my-work-exp-inn-2 h2 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-align: center;
  font-weight: 700;
  position: relative;
}

.my-work-exp-inn-2 h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 2px;
}

.competencies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

.competency-item {
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  transition: all 0.4s ease;
  border: 1px solid rgba(74, 197, 143, 0.1);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.competency-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--secondary), var(--accent));
}

.competency-item:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: var(--card-hover);
}

.competency-item h4 {
  color: var(--primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.competency-item h4 i {
  margin-right: 10px;
  color: var(--secondary);
}

.competency-item p {
  color: var(--gray);
  font-size: 0.95rem;
}

.my-work-exp-inn-3 {
  background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
  position: relative;
  overflow: hidden;
}

.my-work-exp-inn-3::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%234ac58f' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  top: 0;
  left: 0;
  z-index: 1;
}

.section-content {
  position: relative;
  z-index: 2;
}

/* Section 3 - Timeline */
.my-work-exp-inn-3 h2 {
  color: var(--light);
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-align: center;
  font-weight: 700;
  position: relative;
}

.my-work-exp-inn-3 h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 2px;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background: linear-gradient(to bottom, var(--secondary), var(--accent));
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  border-radius: 3px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-content {
  padding: 20px 30px;
  background: rgba(26, 46, 53, 0.7);
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(74, 197, 143, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.timeline-content::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background: var(--secondary);
  top: 22px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item:nth-child(even) .timeline-content::after {
  left: -10px;
}

.timeline-period {
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.timeline-company {
  font-weight: 600;
  color: var(--light);
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.timeline-role {
  font-weight: 500;
  color: #b0b8c5;
  margin-bottom: 10px;
}

.timeline-projects {
  margin-top: 10px;
  color: white;
}

.timeline-projects ul {
  list-style-type: none;
  padding-left: 0;
}

.timeline-projects li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
  color: #b0b8c5;
}

.timeline-projects li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: var(--secondary);
}

.timeline-award {
  background: rgba(74, 197, 143, 0.1);
  padding: 10px 15px;
  border-radius: 5px;
  margin-top: 10px;
  border-left: 3px solid var(--secondary);
}

/* Responsive Design */
@media (max-width: 992px) {
  .col-lg-6,
  .col-lg-8 {
    flex: 0 0 100%;
    max-width: 100%;
    /* margin-bottom: 40px; */
  }

  .my-work-exp-inn {
    padding: 80px 0;
  }

  .my-work-exp-inn-1 h1 {
    font-size: 2.5rem;
  }

  .timeline::after {
    left: 31px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-item:nth-child(even) {
    left: 0;
  }

  .timeline-content::after {
    left: -10px;
  }
}

@media (max-width: 768px) {
  .my-work-exp-inn {
    padding: 60px 0;
  }

  .profile-overview {
    padding: 25px;
  }

  .master-campaigns {
    font-size: 1.3rem;
  }

  .my-work-exp-inn-1 h1 {
    font-size: 2.2rem;
  }

  .my-work-exp-inn-2 h2,
  .my-work-exp-inn-3 h2 {
    font-size: 2rem;
  }

  .competencies-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 576px) {
  .my-work-exp-inn-1 h1 {
    font-size: 2rem;
  }

  .my-work-exp-inn-2 h2,
  .my-work-exp-inn-3 h2 {
    font-size: 1.8rem;
  }

  .profile-overview {
    padding: 20px;
  }

  .competencies-grid {
    grid-template-columns: 1fr;
  }

  .photo-item {
    width: 120px;
    height: 80px;
  }
}

.environ-camp-inn .photo-item img {
  height: 250px;
  object-fit: cover;
}

.environ-camp-inn .photo-item {
  margin-bottom: 30px;
}

/* Environmental Campaigns Section Styling */
.environ-camp-inn {
  position: relative;
}

.environ-camp-inn.section-padding {
  padding: 80px 0;
}

.environ-camp-inn-1 {
  background: linear-gradient(
    135deg,
    var(--darker-color) 0%,
    var(--dark-color) 100%
  );
  color: white;
}

.environ-camp-inn:not(.environ-camp-inn-1) {
  background-color: #f8f9fa;
}

.environ-camp-inn .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.environ-camp-inn .row.align-items-center {
  align-items: center;
}

/* Typography */
.environ-camp-inn h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--dark-color);
}

.environ-camp-inn-1 h2 {
  color: white;
}

.environ-camp-inn h2.text-center {
  text-align: center;
}

.environ-camp-inn h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
  line-height: 1.3;
}

.environ-camp-inn-1 h3 {
  color: var(--primary-color);
}

.environ-camp-inn p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #555;
}

.environ-camp-inn-1 p {
  color: rgba(255, 255, 255, 0.9);
}

/* Images */
.environ-camp-inn img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.environ-camp-inn img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Photo Gallery */
.environ-camp-inn .photo-gallery {
  margin-top: 3rem;
}

.environ-camp-inn .photo-item {
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.environ-camp-inn .photo-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.environ-camp-inn .photo-item a {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.environ-camp-inn .photo-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 12px;
}

.environ-camp-inn .photo-item:hover img {
  transform: scale(1.05);
}

.environ-camp-inn .photo-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--highlight-color)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  border-radius: 12px;
}

.environ-camp-inn .photo-item:hover::before {
  opacity: 0.1;
}

/* Fancybox Customization */
.environ-camp-inn .fancybox__container {
  --fancybox-bg: rgba(26, 46, 53, 0.95);
}

.environ-camp-inn .fancybox__toolbar {
  --fancybox-color: white;
  background: rgba(26, 46, 53, 0.8);
}

.environ-camp-inn .fancybox__nav {
  --fancybox-color: white;
}

/* Impact Metrics Section */
.environ-camp-inn .impact-metrics {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--highlight-color) 100%
  );
  color: white;
  padding: 60px 0;
  border-radius: 20px;
  margin: 40px 0;
}

.environ-camp-inn .impact-metrics h3 {
  color: white;
  text-align: center;
  margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 992px) {


  .environ-camp-inn.section-padding {
    padding: 60px 0;
  }

  .environ-camp-inn h2 {
    font-size: 2rem;
  }

  .environ-camp-inn h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  

  .environ-camp-inn .photo-item img {
    height: 200px;
  }

  .environ-camp-inn.section-padding {
    padding: 40px 0;
  }

  .environ-camp-inn h2 {
    font-size: 1.8rem;
  }

  .environ-camp-inn h3 {
    font-size: 1.3rem;
  }

  .environ-camp-inn p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .environ-camp-inn .container {
    padding: 0 15px;
  }

  .environ-camp-inn .row {
    margin: 0 -10px;
  }

  .environ-camp-inn .col-lg-6,
  .environ-camp-inn .col-lg-12,
  .environ-camp-inn .col-lg-3,
  .environ-camp-inn .col-md-4,
  .environ-camp-inn .col-6 {
    padding: 0 10px;
  }

  .environ-camp-inn .photo-item {
    margin-bottom: 1rem;
  }
}

/* Animation for section entrance */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.environ-camp-inn .row > div {
  animation: fadeInUp 0.6s ease-out;
}

.environ-camp-inn .row > div:nth-child(2) {
  animation-delay: 0.2s;
}

.environ-camp-inn .photo-item {
  animation: fadeInUp 0.6s ease-out;
}

/* Hover effects for better interactivity */
.environ-camp-inn .photo-item a::after {
  content: "\f00e"; /* FontAwesome zoom-in icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* required for solid icons */

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 1.6rem;
  color: white;
  background: rgba(74, 197, 143, 0.8);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  z-index: 2;
}

.photo-item a::after {
  content: "\f00e"; /* FontAwesome zoom-in icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* required for solid icons */

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 1.6rem;
  color: white;
  background: rgba(74, 197, 143, 0.8);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  z-index: 2;
}

.environ-camp-inn .photo-item:hover a::after {
  transform: translate(-50%, -50%) scale(1);
}

.environ-camp-inn-3 {
  background: rgb(224, 224, 224) !important;
}

/* Impact Metrics Section */
.environ-camp-inn.impt-metri {
  background: linear-gradient(
    135deg,
    var(--darker-color) 0%,
    var(--dark-color) 100%
  );
  color: white;
  position: relative;
  overflow: hidden;
}

.environ-camp-inn.impt-metri::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%234ac58f" opacity="0.03"><circle cx="50" cy="50" r="2"/></svg>')
    repeat;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
  }
  100% {
    transform: translateY(-100px) translateX(50px);
  }
}

.environ-camp-inn.impt-metri .container {
  position: relative;
  z-index: 2;
}

.environ-camp-inn.impt-metri h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.environ-camp-inn.impt-metri h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--highlight-color)
  );
  border-radius: 2px;
}

.environ-camp-inn.impt-metri p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Metrics Grid */
.environ-camp-inn.impt-metri .metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.environ-camp-inn.impt-metri .metric-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(74, 197, 143, 0.2);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.environ-camp-inn.impt-metri .metric-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(74, 197, 143, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.environ-camp-inn.impt-metri .metric-item:hover::before {
  left: 100%;
}

.environ-camp-inn.impt-metri .metric-item:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(74, 197, 143, 0.15);
}

.environ-camp-inn.impt-metri .metric-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(74, 197, 143, 0.3);
}

.environ-camp-inn.impt-metri .metric-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  font-weight: 500;
}

.environ-camp-inn.impt-metri .metric-highlight {
  color: var(--highlight-color);
  font-weight: 600;
}

/* Detailed Metric Items */
.environ-camp-inn.impt-metri .metric-detail {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(74, 197, 143, 0.2);
  border-radius: 15px;
  padding: 2rem;
  margin-top: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.environ-camp-inn.impt-metri .metric-detail:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(74, 197, 143, 0.1);
}

.environ-camp-inn.impt-metri .metric-detail-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.environ-camp-inn.impt-metri .metric-detail-title::before {
  content: "✓";
  color: var(--highlight-color);
  font-weight: bold;
}

.environ-camp-inn.impt-metri .metric-detail-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

/* Icon Styling */
.environ-camp-inn.impt-metri .metric-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 992px) {
  .environ-camp-inn.impt-metri .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .environ-camp-inn.impt-metri .metric-number {
    font-size: 2.5rem;
  }

  .environ-camp-inn.impt-metri h3 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .environ-camp-inn.impt-metri .metrics-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .environ-camp-inn.impt-metri .metric-item {
    padding: 1.5rem;
  }

  .environ-camp-inn.impt-metri .metric-detail {
    padding: 1.5rem;
  }

  .environ-camp-inn.impt-metri .metric-number {
    font-size: 2rem;
  }

  .environ-camp-inn.impt-metri .metric-text {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .environ-camp-inn.impt-metri .metric-item {
    padding: 1.25rem;
  }

  .environ-camp-inn.impt-metri .metric-detail {
    padding: 1.25rem;
  }

  .environ-camp-inn.impt-metri h3 {
    font-size: 1.8rem;
  }
}

/* Animation for metrics */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.environ-camp-inn.impt-metri .metric-item {
  animation: countUp 0.6s ease-out;
}

.environ-camp-inn.impt-metri .metric-item:nth-child(2) {
  animation-delay: 0.1s;
}

.environ-camp-inn.impt-metri .metric-item:nth-child(3) {
  animation-delay: 0.2s;
}

.environ-camp-inn.impt-metri .metric-item:nth-child(4) {
  animation-delay: 0.3s;
}

.environ-camp-inn.impt-metri .metric-detail {
  animation: countUp 0.6s ease-out 0.4s both;
}

.envi-testi .testi-card {
  background: white;
  color: black;
  box-shadow: none;
  border: 2px dotted var(--primary);
}

.envi-testi .testi-text {
  margin: 0 0 10px;
  color: #070707;
}

.envi-testi .testi-meta span {
  font-size: 0.9rem;
  color: #10382c;
}

/* Upcoming Campaigns Section - Simple Version */
.environ-camp-inn.future-campaigns {
  background: #f8f9fa;
  padding: 80px 0;
}

.environ-camp-inn.future-campaigns h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 3rem;
  font-weight: 700;
}

.environ-camp-inn.future-campaigns .campaign-list {
  padding-right: 2rem;
}

.environ-camp-inn.future-campaigns .campaign-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--primary-color);
}

.environ-camp-inn.future-campaigns .campaign-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.environ-camp-inn.future-campaigns .campaign-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.environ-camp-inn.future-campaigns .campaign-description {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.environ-camp-inn.future-campaigns .campaign-location {
  display: inline-block;
  background: rgba(74, 197, 143, 0.1);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

.environ-camp-inn.future-campaigns .campaign-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .environ-camp-inn.future-campaigns .campaign-list {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .environ-camp-inn.future-campaigns h2 {
    font-size: 2rem;
  }

  .environ-camp-inn.future-campaigns .campaign-item {
    padding: 1rem;
  }
}

.poster-section {
  width: 100%;
  max-width: 1200px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  /* border-radius: 20px; */
  overflow: hidden;
  /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3); */
  position: relative;
  margin: 0 auto;
  clip-path: inset(0 round 40px);
}

.poster-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%234ac58f" opacity="0.03"><circle cx="50" cy="50" r="2"/></svg>')
    repeat;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
  }

  100% {
    transform: translateY(-100px) translateX(50px);
  }
}

.poster-content {
  position: relative;
  z-index: 2;
  padding: 40px 40px;
  color: white;
  text-align: center;
}

.poster-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.4;
  background: linear-gradient(to right, var(--secondary), var(--highlight));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.poster-subtitle {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.poster-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-text {
  color: var(--secondary);
  font-weight: 600;
}

.cta-container {
  margin-top: 50px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, var(--secondary), var(--highlight));
  color: white;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(74, 197, 143, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(74, 197, 143, 0.6);
}

.cta-button i {
  font-size: 1.5rem;
}

.icon-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.icon-circle {
  width: 80px;
  height: 80px;
  background: rgba(74, 197, 143, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--secondary);
  transition: all 0.3s ease;
}

.icon-item:hover .icon-circle {
  background: rgba(74, 197, 143, 0.3);
  transform: scale(1.1);
}

.icon-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
  .poster-content {
    padding: 60px 40px;
  }

  .poster-title {
    font-size: 3rem;
  }

  .poster-subtitle {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .poster-content {
    padding: 50px 30px;
  }

  .poster-title {
    font-size: 2.5rem;
  }

  .poster-subtitle {
    font-size: 1.4rem;
  }

  .poster-text {
    font-size: 1.1rem;
  }

  .icon-grid {
    gap: 20px;
  }

  .icon-circle {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .poster-content {
    padding: 40px 20px;
  }

  .poster-title {
    font-size: 2rem;
  }

  .poster-subtitle {
    font-size: 1.2rem;
  }

  .poster-text {
    font-size: 1rem;
  }

  .cta-button {
    padding: 15px 35px;
    font-size: 1.1rem;
  }

  .icon-grid {
    flex-wrap: wrap;
    gap: 15px;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.poster-title,
.poster-subtitle,
.poster-text,
.icon-grid,
.cta-container {
  animation: fadeInUp 0.8s ease-out;
}

.poster-subtitle {
  animation-delay: 0.1s;
}

.poster-text {
  animation-delay: 0.2s;
}

.icon-grid {
  animation-delay: 0.3s;
}

.cta-container {
  animation-delay: 0.4s;
}

/* Blog View Styles */
.my-blog-view-inn {
  margin: 0 auto;
}

/* Main Blog Content */
.my-blog-view-inn .blog-main {
  background: white;
  border-radius: 10px;
  /* padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08); */
  margin-bottom: 30px;
}

.my-blog-view-inn .blog-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.my-blog-view-inn .blog-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.my-blog-view-inn .blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  color: #666;
  font-size: 0.9rem;
}

.my-blog-view-inn .blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.my-blog-view-inn .blog-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}

.my-blog-view-inn .blog-content p {
  margin-bottom: 20px;
}

/* Image Grid */
.my-blog-view-inn .image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

.my-blog-view-inn .grid-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

/* Sidebar */
.my-blog-view-inn .blog-sidebar {
  position: sticky;
  top: 130px;
}

.my-blog-view-inn .sidebar-widget {
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.my-blog-view-inn .widget-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--secondary);
}

/* Recent Posts */
.my-blog-view-inn .recent-post {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.my-blog-view-inn .recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.my-blog-view-inn .recent-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.my-blog-view-inn .recent-content {
  flex: 1;
}

.my-blog-view-inn .recent-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.my-blog-view-inn .recent-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.my-blog-view-inn .recent-title a:hover {
  color: var(--secondary);
}

.my-blog-view-inn .recent-desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}

/* Categories Widget */
.my-blog-view-inn .categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.my-blog-view-inn .category-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.my-blog-view-inn .category-item:last-child {
  border-bottom: none;
}

.my-blog-view-inn .category-link {
  color: #333;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.my-blog-view-inn .category-link:hover {
  color: var(--secondary);
}

.my-blog-view-inn .category-count {
  background: var(--secondary);
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
}

.recent-post p {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recent-post h4 {
  display: -webkit-box;
  -webkit-line-clamp: 1; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-inn {
  margin: 0 auto;
}

/* Header */
.contact-inn .contact-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 30px 0;
}

.contact-inn .professional-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-inn .page-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.contact-inn .page-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Content */
.contact-inn .contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

/* Contact Form */
.contact-inn .contact-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-inn .form-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.contact-inn .form-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.contact-inn .form-group {
  margin-bottom: 20px;
  position: relative;
}

.contact-inn .form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--primary);
}

.contact-inn .input-with-icon {
  position: relative;
}

.contact-inn .form-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary);
  font-size: 1.1rem;
  z-index: 2;
}

.contact-inn .form-control {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-inn .form-control:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(74, 197, 143, 0.2);
}

.contact-inn textarea.form-control {
  min-height: 120px;
  resize: vertical;
  padding-left: 45px;
}

.contact-inn .submit-btn {
  background: linear-gradient(135deg, var(--secondary), var(--highlight));
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-inn .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(74, 197, 143, 0.3);
}

/* Contact Info */
.contact-inn .contact-info {
  background: linear-gradient(135deg, #1e5c41, var(--dark));
  color: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-inn .contact-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%234ac58f" opacity="0.05"><circle cx="50" cy="50" r="2"/></svg>')
    repeat;
}

.contact-inn .info-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.contact-inn .info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.contact-inn .info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.contact-inn .info-content h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-inn .info-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.contact-inn .consultant-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: white;
}

.contact-inn .consultant-title {
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 20px;
  font-weight: 500;
}

.contact-inn .social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

.contact-inn .social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-inn .social-link:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

/* Map Section */
.contact-inn .map-section {
  margin-top: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-inn .map-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.contact-inn .map-placeholder i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--secondary);
}

/* Footer */
.contact-inn .contact-footer {
  text-align: center;
  padding: 30px 0;
  margin-top: 50px;
  border-top: 1px solid #e2e8f0;
  color: #666;
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-inn .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-inn .page-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .contact-inn .contact-form,
  .contact-inn .contact-info {
    padding: 30px;
  }

  .contact-inn .page-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .contact-inn .contact-form,
  .contact-inn .contact-info {
    padding: 25px;
  }

  .contact-inn .page-title {
    font-size: 1.8rem;
  }

  /* .contact-inn .info-item {
    flex-direction: column;
    text-align: center;
  } */

  .contact-inn .info-icon {
    align-self: center;
  }

  .contact-inn .social-links {
    justify-content: center;
  }
}

.my-map iframe {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

:root {
  --primary-color: #4ac58f;
  --secondary-color: #5cb390;
  --accent-color: #99e454;
  --highlight-color: #4bbb8b;
  --dark-color: #1a2e35;
  --darker-color: #0f1f24;
}

.pre-loader {
  background: var(--darker-color);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
}

.preloader-container {
  text-align: center;
  position: relative;
}

/* Leaf Spinner */
.leaf-spinner {
  width: 80px;
  height: 80px;
  position: relative;
  margin: 0 auto 30px;
}

.leaf {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: leaf-grow 2s infinite ease-in-out;
}

.leaf::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  transform-origin: center bottom;
  animation: leaf-rotate 2s infinite ease-in-out;
}

.leaf:nth-child(2) {
  animation-delay: -0.5s;
}

.leaf:nth-child(2)::before {
  background: var(--secondary-color);
  animation-delay: -0.5s;
}

.leaf:nth-child(3) {
  animation-delay: -1s;
}

.leaf:nth-child(3)::before {
  background: var(--accent-color);
  animation-delay: -1s;
}

.leaf:nth-child(4) {
  animation-delay: -1.5s;
}

.leaf:nth-child(4)::before {
  background: var(--highlight-color);
  animation-delay: -1.5s;
}

/* Loading Text */
.loading-text {
  color: white;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.loading-dots {
  display: inline-block;
  position: relative;
}

.loading-dots::after {
  content: "";
  animation: dots 1.5s infinite;
}

/* Progress Bar */
.progress-container {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin: 0 auto;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 10px;
  animation: progress 3s infinite ease-in-out;
}

/* Percentage Counter */
.percentage {
  color: white;
  font-size: 0.9rem;
  margin-top: 15px;
  font-weight: 300;
}

/* Animations */
@keyframes leaf-grow {
  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.7;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes leaf-rotate {
  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(90deg);
  }

  50% {
    transform: rotate(180deg);
  }

  75% {
    transform: rotate(270deg);
  }
}

@keyframes dots {
  0%,
  20% {
    content: ".";
  }

  40% {
    content: "..";
  }

  60%,
  100% {
    content: "...";
  }
}

@keyframes progress {
  0% {
    width: 0%;
  }

  50% {
    width: 70%;
  }

  100% {
    width: 100%;
  }
}

/* Alternative Spinner Style */
.nature-spinner {
  width: 80px;
  height: 80px;
  position: relative;
  margin: 0 auto 30px;
}

.nature-spinner::before,
.nature-spinner::after {
  content: "";
  position: absolute;
  border: 3px solid transparent;
  border-top: 3px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}

.nature-spinner::before {
  width: 100%;
  height: 100%;
  border-top-color: var(--primary-color);
  border-right-color: var(--secondary-color);
}

.nature-spinner::after {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  border-top-color: var(--accent-color);
  border-right-color: var(--highlight-color);
  animation-direction: reverse;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Pulse Animation */
.pulse-loader {
  width: 60px;
  height: 60px;
  margin: 0 auto 30px;
  position: relative;
}

.pulse-dot {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0.6;
  animation: pulse 2s infinite ease-in-out;
}

.pulse-dot:nth-child(2) {
  animation-delay: -1s;
  background: var(--accent-color);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }
}

/* Button to toggle preloaders */
.toggle-btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.toggle-btn:hover {
  background: var(--highlight-color);
  transform: translateX(-50%) translateY(-2px);
}

/* Hide class */
.hidden {
  display: none;
}

:root {
  --primary-color: #4ac58f;
  --secondary-color: #5cb390;
  --accent-color: #99e454;
  --highlight-color: #4bbb8b;
  --dark-color: #1a2e35;
  --darker-color: #0f1f24;
}

/* Preloader Styles */
.pre-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--darker-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.pre-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

/* Simple Spinner */
.simple-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.loading-text {
  color: white;
  font-size: 1.1rem;
  font-weight: 300;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.rewards-recognition-page {
  margin: 0 auto;
}

.page-divider {
  height: 3px;
  width: 100px;
  background: linear-gradient(to right, var(--secondary), var(--highlight));
  margin: 20px auto;
  border-radius: 3px;
}

/* Video Banner with Animated Play Button */
.video-banner {
  position: relative;
  width: 100%;
  height: 500px;
  background: linear-gradient(rgba(10, 22, 27, 0.7), rgba(10, 22, 27, 0.9)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-banner:hover {
  transform: translateY(-5px);
}

.play-button-container {
  text-align: center;
  z-index: 2;
}

.play-button {
  width: 100px;
  height: 100px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(74, 197, 143, 0.7);
  animation: pulse 2s infinite;
  transition: all 0.3s ease;
}

.play-button:hover {
  background: var(--highlight);
  transform: scale(1.1);
}

.play-button i {
  color: white;
  font-size: 2.5rem;
  margin-left: 5px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 197, 143, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(74, 197, 143, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(74, 197, 143, 0);
  }
}

.video-info {
  font-size: 1.2rem;
  color: white;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.certificate-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  background: var(--dark);
  cursor: pointer;
  position: relative;
}

.certificate-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.certificate-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, var(--secondary), var(--highlight));
  z-index: 1;
}

.certificate-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.certificate-content {
  padding: 20px;
}

.certificate-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--light);
}

.certificate-description {
  color: #a0aec0;
  font-size: 0.9rem;
}

/* Interview Section */
.interview-section {
  background: var(--dark);
  /* border-radius: 15px;
  padding: 30px;
  margin-bottom: 50px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-left: 5px solid var(--secondary); */
}

.interview-content {
  display: flex;
  flex-direction: row;
  
  align-items: center;
}

.interview-cover {
  flex: 0 0 200px;
  height: 280px;
  background: linear-gradient(135deg, var(--primary), var(--darker));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  text-align: center;
  padding: 20px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.interview-details {
  flex: 1;
  min-width: 300px;
}

.interview-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--light);
}

.interview-description {
  margin-bottom: 20px;
  color: #a0aec0;
  line-height: 1.7;
}

.pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--secondary);
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pdf-link:hover {
  background: var(--highlight);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(74, 197, 143, 0.4);
}

/* Testimonials Section */
.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.testimonial-item {
  background: var(--dark);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  border-top: 4px solid var(--accent);
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.testimonial-item::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 4rem;
  color: rgba(74, 197, 143, 0.2);
  font-family: Georgia, serif;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #e2e8f0;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: bold;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-author::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

/* Footer */
.page-footer {
  text-align: center;
  padding: 30px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #a0aec0;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-title {
    font-size: 2.2rem;
  }

  .video-banner {
    height: 350px;
  }

  .play-button {
    width: 80px;
    height: 80px;
  }

  .play-button i {
    font-size: 2rem;
  }

  .certificates-gallery {
    grid-template-columns: 1fr;
  }

  .interview-cover {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }

  .testimonials-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 1.8rem;
  }

  .video-banner {
    height: 300px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .interview-section {
    padding: 20px;
  }
}

/* Default – show only 3 lines */
.clamp-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

/* Expanded */
.clamp-text.expanded {
  -webkit-line-clamp: unset;
  max-height: none;
}

/* View More / Less button */
.view-toggle {
  /* display: inline-block; */
  color: #3a9e1e; /* your theme color */
  font-weight: 600;
  margin-top: 0;
  cursor: pointer;
  user-select: none;
  margin-bottom: 10px;
}

.testi-body span {
  display: flex !important;
  justify-content: flex-end !important;
}

.testi-meta span {
  justify-content: flex-start !important;
}

.view-toggle:hover {
  text-decoration: underline;
}

.pft-img-con {
  display: flex;
}

.pft-img-con img {
  aspect-ratio: 1/1;
  height: 100px;
  object-fit: cover;
  border-radius: 7px;
}

.pft-img-con {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
}

.timeline-item p {
  color: white;
}

.auto-play-video-sec video {
  aspect-ratio: 3/2 !important;
  height: 500px !important;
  width: 100% !important;
}

:root {
  --primary-color: #4ac58f;
  --secondary-color: #5cb390;
  --accent-color: #99e454;
  --highlight-color: #4bbb8b;
  --dark-color: #1a2e35;
  --darker-color: #0f1f24;
}

/* Section Wrapper */
.my-odd-section {
  background-color: #ffffff;
  border: 2px solid var(--primary-color);
  margin: 30px auto;
  padding: 30px ;
}

/* Content */
.my-odd-section__content h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 12px;
  margin-top: 0;
}

.my-odd-section__content p {
  font-size: 16px;
  color: var(--darker-color);
  line-height: 26px;
  margin-bottom: 20px;
  /* max-width: 520px; */
}

/* List Styling */
.my-odd-section__content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.my-odd-section__content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--dark-color);
  line-height: 24px;
}

/* li before */
.my-odd-section__content ul li::before {
  content: "➜";
  position: absolute;
  left: 5px;
  top: 0px;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 767px) {
  .my-odd-section {
    /* padding: 50px 0; */
  }

  .my-odd-section__content h2 {
    font-size: 28px;
  }
}

.my-odd-section {
  background-color: #ffffff;
  border: 2px solid var(--primary-color);
  margin: 30px auto;
  padding: 30px auto;
  border-radius: 14px;

  /* default shadow */
  box-shadow: 0 8px 25px rgba(74, 197, 143, 0.15);
  transition: all 0.4s ease;
}

/* Hover effect */
.my-odd-section:hover {
  transform: translateY(-6px);
  border-color: var(--highlight-color);
  box-shadow: 0 15px 40px rgba(74, 197, 143, 0.25),
    0 0 0 3px rgba(153, 228, 84, 0.15);
}

/* Add vertical line only on large screens */
/* @media (min-width: 992px) {
  .my-odd-section .row > .col-lg-6:first-child {
    position: relative;
  }

  .my-odd-section .row > .col-lg-6:first-child::after {
    content: "";
    position: absolute;
    top: 10%;
    right: 0;
    width: 2px;
    height: 80%;
    background-color: gray;
    opacity: 0.4;
  }
} */

.objectives-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.objectives-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.objectives-list li strong {
  color: lightgreen;
  font-size: 20px;
}

.objectives-list li::before {
  content: "➜";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-color, #ffffffff);
  /* fallback color */
  font-weight: bold;
}

















/* Your existing variables */
:root {
  --primary-color: #4ac58f;
  --secondary-color: #5cb390;
  --accent-color: #99e454;
  --highlight-color: #4bbb8b;
  --dark-color: #1a2e35;
  --darker-color: #0f1f24;
}

/* My Even Section Styles */
.my-even-section {
  /* background-color: var(--darker-color); */
  padding: 5rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.my-even-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.my-even-section .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.my-even-section .card {
  /* background: linear-gradient(145deg, var(--dark-color), var(--darker-color)); */
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(74, 197, 143, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* .my-even-section .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
} */

.my-even-section .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(74, 197, 143, 0.3);
}

.my-even-section .card:hover::before {
  transform: scaleX(1);
}

.my-even-section .card-image {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.my-even-section .card-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
  padding: 4px;
  /* background-color: var(--darker-color); */
  transition: all 0.3s ease;
}

.my-even-section .card:hover .card-image img {
  transform: scale(1.1);
  border-color: var(--accent-color);
  box-shadow: 0 0 20px rgba(153, 228, 84, 0.3);
}

.my-even-section .card-heading {
  /* color: white; */
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
  transition: color 0.3s ease;
}

.my-even-section .card:hover .card-heading {
  color: var(--accent-color);
}

.my-even-section .card-content {
  /* color: #b0b0b0; */
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  text-align: center;
}

.my-even-section .card-footer {
  text-align: center;
  margin-top: auto;
}

.my-even-section .card-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  background-color: rgba(74, 197, 143, 0.1);
}

.my-even-section .card-link:hover {
  color: var(--accent-color);
  background-color: rgba(153, 228, 84, 0.2);
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .my-even-section .grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .my-even-section {
    padding: 3rem 0;
  }
}

@media (max-width: 768px) {
  .my-even-section .grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.25rem;
  }
  
  .my-even-section .card {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .my-even-section .grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .my-even-section .container {
    padding: 0 1rem;
  }
  
  .my-even-section .card-image img {
    width: 90px;
    height: 90px;
  }
  
  .my-even-section .card-heading {
    font-size: 1.3rem;
  }
}

/* Animation for card entrance */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.my-even-section .card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.my-even-section .card:nth-child(1) { animation-delay: 0.1s; }
.my-even-section .card:nth-child(2) { animation-delay: 0.2s; }
.my-even-section .card:nth-child(3) { animation-delay: 0.3s; }
.my-even-section .card:nth-child(4) { animation-delay: 0.4s; }
.my-even-section .card:nth-child(5) { animation-delay: 0.5s; }
.my-even-section .card:nth-child(6) { animation-delay: 0.6s; }






.obl-light li strong{
  color: #10382c !important;
}



.spl-abt-sing .col-lg-12 {
  position: relative;
  margin-bottom: 30px;
  
}



.spl-abt-sing ul li::before {
    content: ".";
    position: absolute;
    left: 5px;
    top: -13px;
    color: darkgreen;
    font-size: 40px;
    font-weight: 700;
}










.spl-abt-sing .col-lg-12::after {
  content: "";
  position: absolute;
  bottom: 0;
  /* left: 50%;
  transform: translateX(-50%); */
  width: 100%;
  margin-top: 30px;
  height: 3px;
  background-color: gray;
}

.spl-abt-sing   {
  border:none ; 
  box-shadow: none;
  
}


.spl-abt-sing:hover  {
  
  box-shadow: none;
  
}