*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Color Variables */
:root {
  --primary-color: #11aee7;
  --text-dark: #1a1a1a;
  --text-light: #555555;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #e0e0e0;
  --hover-color: #1ca9d0;
}

body {
  /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
  color: var(--text-dark);
  /* line-height: 1.6; */
  overflow-x: hidden;
}

/* ===== HEADER STYLING ===== */
.navbar-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.navbar-header .navbar {
  padding: 1.3rem 1rem;
}

.navbar-header .logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.navbar-header .nav-link {
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-dark) !important;
  margin: 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  position: relative;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.navbar-header .nav-link:hover {
  color: var(--primary-color) !important;
}

.navbar-header .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0px;
  left: 50%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-header .nav-link:hover::after {
  width: 100%;
}

/* Dropdown Styles */
.navbar-header .dropdown {
  position: relative;
}

.navbar-header .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Remove underline from dropdown toggles */
.navbar-header .dropdown-toggle::after {
  border: none;
}

.navbar-header .dropdown-toggle i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.navbar-header .dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.navbar-header .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  min-width: 220px;
  padding: 0.5rem 0;
  /* margin-top: 0.5rem; */
  border: none;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  display: none;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar-header .dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-header .dropdown-item {
  padding: 0.7rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: capitalize;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.navbar-header .dropdown-item:hover {
  background-color: #f8f8f8;
  color: var(--primary-color);
  border-left-color: var(--primary-color);
  padding-left: 1.7rem;
}

/* CTA Button */
.btn-cta {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0.65rem 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(227, 30, 36, 0.15);
}

.btn-cta:hover {
  background-color: var(--hover-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(227, 30, 36, 0.3);
  color: var(--white);
}

/* Hide sidebar close button on desktop */
.sidebar-close {
  display: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
  position: relative;
  overflow: hidden;
  padding: 40px 150px 40px 150px;
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  /* max-width: 1400px; */
  margin: 0;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 20px;
}

.hero-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background-color: #f5f5f5;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  margin-bottom: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  animation: fadeInUp 0.6s ease 0.2s both;
  border: 1px solid #efefef;
  width: fit-content;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 2rem 0;
  color: var(--text-dark);
  animation: fadeInUp 0.6s ease 0.3s both;
  letter-spacing: -1.5px;
}

.hero-title .period {
  color: var(--text-dark);
  font-size: 1em;
}

.hero-title .hero-accent {
  color: var(--primary-color);
  display: block;
}

.hero-description {
  font-size: 1.05rem;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 580px;
  animation: fadeInUp 0.6s ease 0.4s both;
  font-weight: 400;
}

.desc-highlight {
  color: var(--primary-color);
  font-weight: 700;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 0.6s ease 0.5s both;
  flex-wrap: wrap;
}

.btn-hero {
  padding: 0.9rem 2.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  border: none;
}

.btn-hero-primary {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(30, 168, 227, 0.25);
}

.btn-hero-primary:hover {
  background-color: var(--hover-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(30, 204, 227, 0.35);
  color: var(--white);
}

.btn-hero-outline {
  border: 2.5px solid var(--text-dark);
  color: var(--text-dark);
  background-color: transparent;
}

.btn-hero-outline:hover {
  background-color: var(--text-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-profile-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  animation: fadeInRight 0.8s ease 0.4s both;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  /* background-color: #000; */
  background: url(../images/bg/bg-gray.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 20px 40px;
  position: relative;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.about-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-profile-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 0;
}

.about-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-label {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: capitalize;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.about-description {
  font-size: 1rem;
  color: #d3d2d2;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: justify;
}

.btn-about {
  display: inline-block;
  background-color: #fff;
  /* border: 5px solid #000; */
  color: #000;
  padding: 0.85rem 2.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  width: fit-content;
  text-align: center;
}

.btn-about:hover {
  background-color: #fff;
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(190, 189, 189, 0.25);
}

/* ===== WORKED WITH SECTION ===== */
.worked-with-section {
  background-color: #f5f5f5;
  padding: 60px 40px;
  overflow: hidden;
}

.worked-with-title {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}

.logo-item img {
  max-height: 50px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background-color: var(--white);
  padding: 40px 150px;
  position: relative;
}

.testimonials-header {
  text-align: center;
  /* margin-bottom: 60px; */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.testimonials-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.testimonials-description {
  font-size: 1rem;
  color: #666666;
  line-height: 1.8;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  flex: 1;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
  -webkit-user-select: none;
  user-select: none;
  scroll-behavior: smooth;
}

.testimonial-card {
  flex: 0 0 100%;
  background-color: #f9f9f9;
  padding: 50px 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.testimonials-container {
  display: flex;
  align-items: center;
  gap: 30px;
  /* margin-bottom: 40px; */
}

.testimonial-nav-btn {
  background-color: var(--text-dark);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.3rem;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.testimonial-nav-btn:hover {
  background-color: var(--primary-color);
  transform: scale(1.1);
}

.testimonial-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d0d0d0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--primary-color);
  width: 30px;
  border-radius: 6px;
}

.testimonial-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.testimonial-rating i {
  color: #ffc107;
  font-size: 1.2rem;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.author-position {
  font-size: 0.9rem;
  color: #888888;
  margin: 0;
}

/* Remove old navigation styles */
.testimonials-navigation {
  display: none;
}

/* ===== FOOTER SECTION ===== */
.footer-section {
  background-color: #0a0a0a;
  color: var(--white);
  padding: 60px 40px 30px 40px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  /* margin-bottom: 60px; */
  padding-bottom: 30px;
  border-bottom: 1px solid #333333;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-item i {
  font-size: 1.2rem;
  color: var(--white);
  margin-top: 3px;
}

.contact-details p {
  font-size: 0.9rem;
  color: #cccccc;
  margin: 0;
  line-height: 1.6;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: capitalize;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  font-size: 0.95rem;
  color: #aaaaaa;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #888888;
  margin: 0;
}

.footer-policies {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-policies a {
  font-size: 0.85rem;
  color: #888888;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-policies a:hover {
  color: var(--white);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-right {
    justify-content: center;
    display: none;
  }
  .hero-left{
    padding-left: 0;
  }

  .hero-profile-img {
    max-width: 400px;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-profile-img {
    max-width: 350px;
  }

  .about-title {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .services-title {
    font-size: 2.5rem;
  }

  .testimonials-section {
    padding: 80px 40px;
  }

  .testimonials-title {
    font-size: 2.3rem;
  }

  .testimonial-card {
    padding: 40px 30px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .logo-track {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 20px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-hero {
    width: 100%;
    text-align: center;
  }

  .hero-profile-img {
    max-width: 300px;
  }

  .about-section {
    padding: 60px 20px;
  }

  .about-title {
    font-size: 1.75rem;
  }

  .about-description {
    font-size: 0.95rem;
    text-align: left;
  }

  .btn-about {
    width: 100%;
  }

  .services-section {
    padding: 80px 20px;
  }

  .services-title {
    font-size: 2rem;
  }

  .services-description {
    font-size: 0.95rem;
  }

  .service-card {
    padding: 40px 30px;
  }

  .service-card-title {
    font-size: 1.5rem;
  }

  .service-card-description {
    font-size: 0.95rem;
  }

  .testimonials-section {
    padding: 60px 20px;
  }

  .testimonials-title {
    font-size: 2rem;
  }

  .testimonials-container {
    gap: 20px;
  }

  .testimonials-slider {
    margin-bottom: 35px;
  }

  .testimonial-nav-btn {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .testimonial-card {
    padding: 35px 25px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .testimonial-text {
    font-size: 1rem;
    flex: 1;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 30px 15px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-cta {
    gap: 1rem;
  }

  .btn-hero {
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
  }

  .hero-profile-img {
    max-width: 250px;
  }

  .about-section {
    padding: 40px 15px;
  }

  .about-title {
    font-size: 1.5rem;
  }

  .about-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .about-label {
    font-size: 0.9rem;
  }

  .btn-about {
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
  }

  /* .services-section {
    padding: 60px 15px;
  }

  .services-header {
    margin-bottom: 40px;
  }

  .services-title {
    font-size: 1.75rem;
  }

  .services-description {
    font-size: 0.9rem;
  }

  .service-card {
    padding: 35px 25px;
  }

  .service-card-title {
    font-size: 1.3rem;
  }

  .service-card-description {
    font-size: 0.9rem;
  }

  .btn-services {
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
    width: 100%;
  } */

  .testimonials-section {
    padding: 40px 15px;
  }

  .testimonials-header {
    margin-bottom: 40px;
  }

  .testimonials-label {
    font-size: 0.8rem;
  }

  .testimonials-title {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .testimonials-description {
    font-size: 0.9rem;
  }

  .testimonials-container {
    gap: 15px;
  }

  .testimonials-slider {
    margin-bottom: 30px;
    flex: 1;
  }

  .testimonial-track {
    gap: 20px;
  }

  .testimonial-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .testimonial-nav-btn:active {
    transform: scale(0.95);
  }

  .testimonial-card {
    padding: 25px 15px;
    min-height: auto;
  }

  .testimonial-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .testimonial-rating {
    gap: 4px;
    margin-bottom: 15px;
  }

  .testimonial-rating i {
    font-size: 0.95rem;
  }

  .author-name {
    font-size: 0.95rem;
  }

  .author-position {
    font-size: 0.8rem;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .dot.active {
    width: 20px;
  }

  .footer-section {
    padding: 60px 20px 20px 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .footer-policies {
    gap: 20px;
  }

  .worked-with-section {
    padding: 40px 20px;
  }

  .worked-with-title {
    font-size: 0.8rem;
    margin-bottom: 30px;
  }

  .logo-track {
    gap: 40px;
  }

  .logo-item {
    height: 50px;
  }

  .logo-item img {
    max-height: 40px;
    max-width: 140px;
  }
}

/* Extra Small Devices (< 360px) */
@media (max-width: 360px) {
  .testimonials-section {
    padding: 30px 12px;
  }

  .testimonials-title {
    font-size: 1.3rem;
  }

  .testimonials-label {
    font-size: 0.75rem;
  }

  .testimonials-description {
    font-size: 0.85rem;
  }

  .testimonial-card {
    padding: 20px 12px;
    min-height: auto;
    border-radius: 10px;
  }

  .testimonial-text {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .testimonial-nav-btn {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .testimonial-rating i {
    font-size: 0.85rem;
  }

  .author-name {
    font-size: 0.85rem;
  }

  .author-position {
    font-size: 0.75rem;
  }

  .dot {
    width: 6px;
    height: 6px;
  }

  .dot.active {
    width: 16px;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== MOBILE SIDEBAR MENU ===== */
@media (max-width: 991px) {
  .navbar-header .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    z-index: 9999;
    transition: right 0.4s ease-in-out;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  }

  .navbar-header .navbar-collapse.show {
    right: 0;
  }

  .navbar-header .navbar-collapse.collapsing {
    right: -100%;
    transition: right 0.4s ease-in-out;
    height: 100vh;
  }

  /* Sidebar Close Button */
  .sidebar-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 10px;
    z-index: 10001;
    transition: all 0.3s ease;
  }

  .sidebar-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
  }

  .navbar-header .navbar-nav {
    padding: 80px 30px 30px;
    width: 100%;
  }

  .navbar-header .nav-item {
    margin-bottom: 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .navbar-header .nav-link {
    padding: 1rem 0;
    margin: 0;
    font-size: 0.9rem;
    display: block;
    color: var(--text-dark) !important;
  }

  /* Ensure sidebar nav links stay black when opened from transparent header */
  .navbar-header.transparent .navbar-collapse .nav-link {
    color: var(--text-dark) !important;
  }

  /* Ensure sidebar close button stays black */
  .sidebar-close {
    color: var(--text-dark) !important;
  }

  .navbar-cta-wrapper {
    padding: 0 30px;
    margin-top: 20px;
  }

  .navbar-header .btn-cta {
    margin: 0;
    width: 100%;
    text-align: center;
    display: block;
  }

  /* Mobile Menu Close Button */
  .navbar-header .navbar-toggler {
    position: relative;
    z-index: 10000;
    border: none;
    padding: 0.5rem;
  }

  .navbar-header .navbar-toggler:focus {
    box-shadow: none;
  }

  /* Hide hamburger when menu is open */
  body.menu-open .navbar-toggler {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .navbar-header .dropdown-menu {
    position: static;
    background-color: #f8f8f8;
    margin: 0;
    border: none;
    box-shadow: none;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0;
  }

  .navbar-header .dropdown.active .dropdown-menu {
    display: block;
    max-height: 500px;
    padding: 0.5rem 0;
  }

  .navbar-header .dropdown-item {
    padding: 0.7rem 1.5rem;
    font-size: 0.8rem;
    transition: all 0.2s ease;
  }

  .navbar-header .dropdown-item:hover {
    background-color: var(--bg-light);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-book,
  .btn-download {
    width: 100%;
    text-align: center;
    padding-left: 1.8rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .navbar-header .logo-text {
    font-size: 1.25rem;
  }

  .navbar-header .btn-cta {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 0.5rem 1rem;
  }

  .btn-book,
  .btn-download {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
  }
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 40px 150px;
  background-color: var(--white);
}

.services-header {
  text-align: center;
  margin-bottom: 80px;
}

.services-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.services-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  border: 1px solid var(--border-color);
}

.service-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.service-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5 0%, #e9e9e9 100%);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 20px 30px;
  position: relative;
}

.service-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.service-subheading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.3;
}

.service-description {
  font-size: 0.9rem;
  color: var(--text-light);
  /* line-height: 1.6; */
  font-weight: 500;
  margin-bottom: 25px;
  /* min-height: 120px; */
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  position: relative;
}

.service-btn:hover {
  background-color: var(--hover-color);
  transform: scale(1.1) rotate(45deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .services-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }

  .services-header {
    margin-bottom: 50px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-title {
    font-size: 1.8rem;
  }

  .service-content {
    padding: 30px 20px;
  }

  .service-image {
    height: 220px;
  }
}

/* ===== BOOK SECTION ===== */
.book-section {
  padding: 0;
  /* background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%); */
  background: url(../images/bg/bg-gray.png);
  min-height: 400px;
  display: flex;
  align-items: center;
}

.book-container {
  display: grid;
  grid-template-columns: 45% 55%;
  /* max-width: 1400px; */
  margin: 0 auto;
  width: 100%;
  align-items: center;
}

.book-left {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 40px;
}

.book-cover-wrapper {
  max-width: 450px;
  width: 100%;
  perspective: 1000px;
}

.book-cover {
  /* width: 100%; */
  height: auto;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

@media(max-width: 768px) {
  .book-cover{
    width: 300px;
  }
}
.book-cover:hover {
  transform: rotateY(-5deg) rotateX(2deg) scale(1.02);
}

.book-right {
  padding: 0px 80px 0px 40px;
  color: var(--white);
}

.book-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 30px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.book-description {
  /* font-size: 1.05rem; */
  /* line-height: 1.8; */
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  max-width: 650px;
}

.book-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-book-learn,
.btn-book-buy {
  padding: 14px 40px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-block;
  letter-spacing: 0.5px;
}

.btn-book-learn {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-book-learn:hover {
  background-color: var(--white);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.btn-book-buy {
  background-color: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--white);
}

.btn-book-buy:hover {
  background-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

/* Responsive Design for Book Section */
@media (max-width: 1200px) {
  .book-container {
    grid-template-columns: 40% 60%;
  }

  .book-right {
    padding: 60px 40px 60px 30px;
  }

  .book-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 992px) {
  .book-container {
    grid-template-columns: 1fr;
  }

  .book-left {
    padding: 60px 40px 30px;
  }

  .book-right {
    padding: 30px 40px 60px;
    text-align: center;
  }

  .book-cover-wrapper {
    max-width: 350px;
  }

  .book-title {
    font-size: 2.5rem;
  }

  .book-description {
    margin-left: auto;
    margin-right: auto;
  }

  .book-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .book-section {
    min-height: auto;
  }

  .book-left {
    padding: 40px 20px 20px;
  }

  .book-right {
    padding: 20px 20px 40px;
  }

  .book-cover-wrapper {
    max-width: 280px;
  }

  .book-title {
    font-size: 2rem;
  }

  .book-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .btn-book-learn,
  .btn-book-buy {
    padding: 14px 30px;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
  }
}

/* ===== COMMUNITY SECTION ===== */
.community-section {
  padding: 50px 0;
  background-color: #f5f5f5;
}

.community-container {
  /* max-width: 1400px; */
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.community-left {
  max-width: 600px;
}

.community-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.underline-text {
  position: relative;
  display: inline-block;
}

.underline-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 8px;
  background-color: var(--text-dark);
  z-index: -1;
}

.community-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark);
  /* margin-bottom: 30px; */
}

.community-benefits {
  list-style: none;
  padding: 0;
  /* margin: 0 0 35px 0; */
}

.community-benefits li {
  display: flex;
  align-items: flex-start;
  /* margin-bottom: 18px; */
  font-size: 1.05rem;
  color: var(--text-dark);
}

.community-benefits li i {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 700;
  margin-right: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.community-contact {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.community-email {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.community-email:hover {
  color: var(--hover-color);
  text-decoration: underline;
}

.community-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 40px; */
}

.phone-mockup {
  position: relative;
  width: 300px;
  height: 400px;
  background: linear-gradient(145deg, #2c2c2c 0%, #1a1a1a 100%);
  border-radius: 45px;
  padding: 15px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 30px;
  background: #000;
  border-radius: 0 0 20px 20px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--hover-color) 100%);
  border-radius: 35px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-content {
  text-align: center;
  color: white;
  padding: 20px;
}

.phone-text {
  font-size: 4rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.phone-icon {
  width: 60px;
  height: 60px;
  border: 3px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.8rem;
}

.community-testimonial {
  background: white;
  padding: 35px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  max-width: 500px;
  position: relative;
  margin-top: -70px;
}

.testimonial-quote {
  position: absolute;
  top: -15px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin: 0;
}

.read-more-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.read-more-link:hover {
  color: var(--hover-color);
  text-decoration: underline;
}

/* Responsive Design for Community Section */
@media (max-width: 1200px) {
  .community-container {
    gap: 60px;
  }

  .community-title {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .community-container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 30px;
  }

  .community-left {
    max-width: 100%;
  }

  .community-right {
    margin: 0 auto;
  }

  .phone-mockup {
    width: 280px;
    height: 540px;
  }

  .phone-text {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .community-section {
    padding: 60px 0;
  }

  .community-container {
    padding: 0 20px;
  }

  .community-title {
    font-size: 2.2rem;
  }

  .community-description,
  .community-benefits li,
  .community-contact {
    font-size: 0.95rem;
  }

  .phone-mockup {
    width: 250px;
    height: 480px;
  }

  .phone-text {
    font-size: 3rem;
  }

  .phone-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .community-testimonial {
    padding: 30px 25px;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }
}


/* Banner section  */

.banner-section {
  background: url(../images/bg/bg-gray.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* min-height: 200px; */
  padding: 70px 150px;
  /* border-radius: 12px; */
  text-align: center;
  color: var(--white);
  margin-top: 20px;
}

.banner-title{
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* ===== TRANSPARENT HEADER (for hero sections) ===== */
.navbar-header.transparent {
  background-color: transparent;
  box-shadow: none;
  position: absolute;
  width: 100%;
}

.navbar-header.transparent .logo-text {
  color: var(--white);
}

.navbar-header.transparent .nav-link {
  color: var(--white) !important;
}

.navbar-header.transparent .navbar-toggler {
  border-color: var(--white);
}

.navbar-header.transparent .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='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-header.transparent .btn-cta {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white) !important;
}

.navbar-header.transparent .btn-cta:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* ===== SPEAKING HERO SECTION ===== */
.hero-speaking-section {
  position: relative;
  /* min-height: 800px; */
  width: 100%;
  /* background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1600&h=900&fit=crop'); */
  background-image: url(../images/hero-section/rajesh-pai-standing.png);
  background-size: cover;
  /* background-position: center; */
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-speaking-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-speaking-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  width: 100%;
}

.hero-speaking-wrapper {
  padding: 170px 50px 100px 50px;
  display: flex;
  align-items: center;
  /* min-height: 800px; */
}

.hero-speaking-text {
  max-width: 700px;
  padding-left: 60px;
}

.hero-speaking-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  display: block;
}

.hero-speaking-title {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -1px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.hero-speaking-description {
  font-size: 1.2rem;
  /* line-height: 1.7; */
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-speaking-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-speaking {
  padding: 16px 45px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-block;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
}

.btn-speaking-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.btn-speaking-primary:hover {
  background-color: var(--hover-color);
  border-color: var(--hover-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(17, 159, 184, 0.3);
}

.btn-speaking-outline {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-speaking-outline:hover {
  background-color: var(--white);
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Responsive Design for Speaking Hero */
@media (max-width: 1200px) {
  .hero-speaking-section {
    min-height: 700px;
  }

  .hero-speaking-wrapper {
    padding: 150px 0 80px;
    min-height: 700px;
  }

  .hero-speaking-title {
    font-size: 3.5rem;
  }

  .hero-speaking-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 992px) {
  .hero-speaking-section {
    min-height: 600px;
  }

  .hero-speaking-wrapper {
    padding: 120px 0 60px;
    min-height: 600px;
    align-items: center;
  }

  .hero-speaking-text {
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-speaking-title {
    font-size: 3rem;
  }

  .hero-speaking-description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-speaking-section {
    min-height: 500px;
    background-attachment: scroll;
  }

  .hero-speaking-wrapper {
    padding: 100px 0 50px;
    min-height: 500px;
  }

  .hero-speaking-text {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-speaking-label {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
  }

  .hero-speaking-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .hero-speaking-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .btn-speaking {
    padding: 12px 35px;
    font-size: 0.9rem;
  }

  .hero-speaking-buttons {
    gap: 15px;
  }
}

/* ===== KEYNOTE SECTION (Video + Content) ===== */
.keynote-section {
  padding: 50px 0;
  background-color: var(--white);
}

.keynote-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.keynote-left {
  position: relative;
}

.video-container {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  background: #000;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: none;
}

.video-play-overlay i {
  font-size: 5rem;
  color: var(--white);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.video-container:hover .video-play-overlay {
  background: rgba(0, 0, 0, 0.2);
}

.video-container:hover .video-play-overlay i {
  transform: scale(1.1);
  opacity: 1;
}

.keynote-right {
  padding-left: 20px;
}

.keynote-content {
  max-width: 600px;
}

.keynote-subtitle {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.keynote-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.keynote-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 20px;
}

.keynote-features {
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 20px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--hover-color) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-text {
  flex: 1;
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
}

.keynote-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.btn-keynote {
  display: inline-block;
  padding: 18px 45px;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(35, 159, 197, 0.3);
}

.btn-keynote:hover {
  background-color: var(--hover-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(35, 159, 197, 0.4);
  color: var(--white);
}

/* Responsive Design for Keynote Section */
@media (max-width: 1200px) {
  .keynote-wrapper {
    gap: 40px;
  }

  .keynote-title {
    font-size: 2.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 992px) {
  .keynote-section {
    padding: 80px 0;
  }

  .keynote-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .keynote-left {
    max-width: 600px;
    margin: 0 auto;
  }

  .keynote-right {
    padding-left: 0;
  }

  .keynote-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .keynote-section {
    padding: 60px 0;
  }

  .keynote-wrapper {
    gap: 40px;
  }

  .keynote-title {
    font-size: 2rem;
  }

  .keynote-description {
    font-size: 1rem;
  }

  .feature-item {
    margin-bottom: 25px;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    font-size: 1.3rem;
  }

  .feature-title {
    font-size: 1.05rem;
  }

  .feature-desc {
    font-size: 0.9rem;
  }

  .keynote-stats {
    gap: 15px;
    padding: 25px 15px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .btn-keynote {
    width: 100%;
    text-align: center;
    padding: 16px 35px;
  }

  .video-play-overlay i {
    font-size: 4rem;
  }
}

/* ===== WHY CHOOSE ME SECTION ===== */
.why-choose-section {
  padding: 50px 0 0 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.why-choose-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.why-choose-subtitle {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.why-choose-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.why-choose-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-light);
  margin: 0;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-bottom: 70px;
}

.why-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid transparent;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--hover-color);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--hover-color) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--white);
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.why-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

.why-choose-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--hover-color) 100%);
  padding: 60px 50px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 15px 50px rgba(35, 159, 197, 0.25);
}

.cta-content {
  flex: 1;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
}

.btn-cta-large {
  display: inline-block;
  padding: 20px 50px;
  background-color: var(--white);
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-cta-large:hover {
  background-color: var(--text-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ===== MEET THE SPEAKER SECTION ===== */
.meet-speaker-section {
  padding: 50px 0;
  /* background-color: var(--white); */
  /* background: url(../images/bg/bg-gray.png); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.meet-speaker-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.meet-speaker-image img {
  width: 100%;
  border-radius: 18px;
  /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); */
  object-fit: cover;
  max-height: 450px;
}

.meet-speaker-content {
  max-width: 650px;
}

.meet-speaker-title {
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 15px;
}

.meet-speaker-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #000;
  margin-bottom: 35px;
}

.meet-speaker-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-meet {
  padding: 15px 38px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-meet-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  box-shadow: 0 12px 30px rgba(31, 148, 181, 0.25);
}

.btn-meet-primary:hover {
  background-color: var(--hover-color);
  border-color: var(--hover-color);
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(34, 165, 192, 0.32);
}

.btn-meet-outline {
  background-color: var(--white);
  color: #4a4a4a;
  border-color: #c6c6c6;
}

.btn-meet-outline:hover {
  color: var(--white);
  background-color: #4a4a4a;
  border-color: #4a4a4a;
  transform: translateY(-2px);
}

/* ===== MEDIA HERO SECTION ===== */
.media-hero {
  background: #0f0f0f;
  color: var(--white);
  padding: 120px 0 100px;
}

.media-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 100px;
}

.media-hero-header {
  text-align: center;
  margin-bottom: 60px;
}

.media-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.media-hero-title .underline {
  position: relative;
  display: inline-block;
}

.media-hero-title .underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 8px;
  background: var(--primary-color);
  z-index: -1;
}

.media-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.media-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  /* gap: 40px; */
  align-items: stretch;
}

.media-hero-image {
  position: relative;
  background: #171717;
  /* border-radius: 16px; */
  overflow: hidden;
  /* min-height: 420px; */
  /* max-height: 450px; */
}

.media-hero-image img {
  /* width: 100%; */
  /* height: 100%; */
  object-fit: cover;
  /* display: block; */
}

.media-source {
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
}

.media-arrow {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.media-arrow:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.media-hero-card {
  background: #1b1b1b;
  /* border-radius: 16px; */
  padding: 40px;
  width: 545px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.media-featured-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #cfcfcf;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.media-featured-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
}

.media-featured-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 28px;
}

.btn-media-read {
  align-self: flex-start;
  padding: 14px 30px;
  border-radius: 999px;
  background: transparent;
  border: 2px solid #cfcfcf;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.6px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-media-read:hover {
  background: var(--white);
  color: #0f0f0f;
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.12);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .media-hero-title {
    font-size: 3rem;
  }

  .media-featured-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 992px) {
  .media-hero {
    padding: 90px 0 80px;
  }

  .media-hero-grid {
    grid-template-columns: 1fr;
  }

  .media-hero-card {
    padding: 32px;
  }

  .media-arrow {
    width: 58px;
    height: 58px;
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .media-hero {
    padding: 70px 0 70px;
  }

  .media-hero-container {
    padding: 0 24px;
  }

  .media-hero-title {
    font-size: 2.4rem;
  }

  .media-featured-title {
    font-size: 1.8rem;
  }

  .media-featured-text {
    font-size: 0.98rem;
  }

  .btn-media-read {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .media-hero {
    padding: 60px 0 50px;
  }

  .media-hero-container {
    padding: 0 16px;
  }

  .media-hero-header {
    margin-bottom: 40px;
  }

  .media-hero-title {
    font-size: 1.8rem;
    letter-spacing: 0;
    margin-bottom: 10px;
  }

  .media-hero-title .underline::after {
    height: 6px;
    bottom: -4px;
  }

  .media-hero-subtitle {
    font-size: 0.95rem;
  }

  .media-hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .media-hero-image {
    min-height: 280px;
    max-height: 320px;
  }

  .media-hero-card {
    width: 100%;
    padding: 25px 20px;
    background: #1b1b1b;
    box-shadow: none;
  }

  .media-featured-label {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }

  .media-featured-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .media-featured-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .media-arrow {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    left: 12px;
    bottom: 12px;
  }

  .btn-media-read {
    padding: 12px 24px;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .media-hero {
    padding: 50px 0 40px;
  }

  .media-hero-container {
    padding: 0 12px;
  }

  .media-hero-header {
    margin-bottom: 30px;
  }

  .media-hero-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }

  .media-hero-subtitle {
    font-size: 0.9rem;
  }

  .media-hero-image {
    min-height: 240px;
  }

  .media-hero-card {
    padding: 20px 16px;
  }

  .media-featured-label {
    font-size: 0.75rem;
    margin-bottom: 10px;
  }

  .media-featured-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .media-featured-text {
    font-size: 0.85rem;
    margin-bottom: 15px;
  }

  .btn-media-read {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
}

/* ===== MEDIA REPORTS GRID ===== */
.media-reports {
  background: var(--white);
  padding: 70px 0 50px;
}

.media-reports-container {
  /* max-width: 1400px; */
  margin: 0 auto;
  padding: 0 100px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.media-card {
  position: relative;
}

.media-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.media-card-image {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #e9e9e9;
}

.media-card-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.media-chip {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--primary-color);
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}

.media-src {
  position: absolute;
  bottom: 12px;
  left: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.media-card-title {
  background: #0f0f0f;
  color: var(--white);
  margin-top: 10px;
  border-radius: 12px;
  padding: 18px 20px;
}

.media-card-title h3 {
  font-size: 1.4rem;
  line-height: 1.3;
  margin: 0;
}

.media-card-link:hover .media-card-image img {
  transform: scale(1.03);
  filter: grayscale(0%);
}

/* Responsive grid */
@media (max-width: 992px) {
  .media-reports-container { padding: 0 30px; }
  .media-grid { grid-template-columns: 1fr; }
  .media-card-image img { height: 230px; }
}

@media (max-width: 768px) {
  .media-reports { padding: 50px 0 70px; }
  .media-card-title h3 { font-size: 1.2rem; }
}

/* ===== CONNECT WITH ME SECTION ===== */
.connect-section {
  /* background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  color: var(--white); */
  color: var(--text-dark);
  padding: 40px 0;
  text-align: center;
}

.connect-content {
  max-width: 900px;
  margin: 0 auto;
}

.connect-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.connect-description {
  font-size: 1.15rem;
  line-height: 1.7;
  /* color: rgba(255, 255, 255, 0.8); */
  color: var(--text-dark);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.connect-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 120px;
  height: 120px;
  /* background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1); */
  border-radius: 16px;
  border: 2px solid #000;
  /* color: var(--white); */
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 600;
}

.social-link i {
  font-size: 2rem;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
  color: var(--white);
}

.social-link.linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
}

.social-link.twitter:hover {
  background: #000000;
  border-color: #000000;
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
}

.social-link.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
}

.social-link.email:hover {
  background: #ff4444;
  border-color: #ff4444;
}

.connect-cta {
  margin-top: 20px;
}

.btn-connect {
  display: inline-block;
  padding: 18px 50px;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(28, 143, 205, 0.3);
}

.btn-connect:hover {
  background-color: var(--hover-color);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(26, 157, 213, 0.4);
  color: var(--white);
}

/* Responsive Design */
@media (max-width: 992px) {
  .connect-title {
    font-size: 2.5rem;
  }

  .connect-social {
    gap: 15px;
  }

  .social-link {
    width: 100px;
    height: 100px;
  }

  .social-link i {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .connect-section {
    padding: 60px 0;
  }

  .connect-title {
    font-size: 2rem;
  }

  .connect-description {
    font-size: 1rem;
    margin-bottom: 35px;
  }

  .connect-social {
    gap: 12px;
  }

  .social-link {
    width: 85px;
    height: 85px;
    font-size: 0.8rem;
  }

  .social-link i {
    font-size: 1.5rem;
  }

  .btn-connect {
    padding: 16px 40px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .connect-section {
    padding: 40px 20px;
  }

  .connect-content {
    max-width: 100%;
    padding: 0 15px;
  }

  .connect-title {
    font-size: 1.5rem;
    letter-spacing: 0;
    margin-bottom: 15px;
  }

  .connect-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .connect-social {
    gap: 10px;
    margin-bottom: 35px;
  }

  .social-link {
    width: 70px;
    height: 70px;
    font-size: 0.7rem;
    gap: 8px;
    border-radius: 12px;
  }

  .social-link i {
    font-size: 1.2rem;
  }

  .social-link span {
    line-height: 1.2;
  }

  .btn-connect {
    display: block;
    padding: 14px 35px;
    font-size: 0.85rem;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .connect-cta {
    margin-top: 15px;
  }
}

@media (max-width: 360px) {
  .connect-section {
    padding: 30px 15px;
  }

  .connect-title {
    font-size: 1.25rem;
  }

  .connect-description {
    font-size: 0.85rem;
    margin-bottom: 25px;
  }

  .connect-social {
    gap: 8px;
    margin-bottom: 30px;
  }

  .social-link {
    width: 60px;
    height: 60px;
    font-size: 0.65rem;
  }

  .social-link i {
    font-size: 1rem;
  }

  .btn-connect {
    padding: 12px 30px;
    font-size: 0.8rem;
    max-width: 250px;
  }
}

/* ===== FAQ HERO SECTION ===== */
.faq-hero-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  color: var(--white);
  padding: 100px 0 80px;
  text-align: center;
}

.faq-hero-header {
  max-width: 900px;
  margin: 0 auto;
}

.faq-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.faq-hero-title .highlight-text {
  color: var(--primary-color);
}

.faq-hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 80px 0;
  background-color: var(--white);
}

.faq-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2f2f2f;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.faq-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  margin: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.faq-item {
  background: #fdfdfd;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: #303030;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: #f6f6f6;
}

.faq-question .que{
  width: 90%;
}

.faq-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 18px 20px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ===== FAQ CTA SECTION ===== */
.faq-cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0d9bc0 100%);
  padding: 80px 0;
  text-align: center;
}

.faq-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.faq-cta-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.faq-cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 32px;
}

.btn-faq-cta {
  display: inline-block;
  padding: 16px 50px;
  background-color: var(--white);
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-faq-cta:hover {
  background-color: var(--text-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .faq-hero-title {
    font-size: 2.8rem;
  }

  .faq-cta-title {
    font-size: 2.3rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .faq-hero-section {
    padding: 80px 0 60px;
  }

  .faq-hero-title {
    font-size: 2.2rem;
  }

  .faq-hero-subtitle {
    font-size: 1rem;
  }

  .faq-section {
    padding: 60px 0;
  }

  .faq-title {
    font-size: 2rem;
  }

  .faq-question {
    font-size: 0.95rem;
  }

  .faq-cta-section {
    padding: 60px 0;
  }

  .faq-cta-title {
    font-size: 2rem;
  }

  .faq-cta-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .faq-hero-section {
    padding: 60px 20px 50px;
  }

  .faq-hero-title {
    font-size: 1.8rem;
    letter-spacing: 0;
  }

  .faq-hero-subtitle {
    font-size: 0.95rem;
  }

  .faq-section {
    padding: 50px 20px;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 16px 18px;
  }

  .faq-icon {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 18px 16px 18px;
    font-size: 0.9rem;
  }

  .faq-cta-section {
    padding: 50px 20px;
  }

  .faq-cta-title {
    font-size: 1.6rem;
  }

  .faq-cta-text {
    font-size: 0.95rem;
  }

  .btn-faq-cta {
    padding: 14px 40px;
    font-size: 0.9rem;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .meet-speaker-title {
    font-size: 2.6rem;
  }
}

@media (max-width: 992px) {
  .meet-speaker-section {
    padding: 80px 0;
  }

  .meet-speaker-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .meet-speaker-content {
    max-width: 100%;
  }

  .meet-speaker-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .meet-speaker-section {
    padding: 60px 0;
  }

  .meet-speaker-title {
    font-size: 2rem;
  }

  .meet-speaker-text {
    font-size: 0.98rem;
  }

  .btn-meet {
    width: 100%;
    text-align: center;
    padding: 14px 30px;
  }
}

/* Responsive Design for Why Choose Section */
@media (max-width: 1200px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .why-choose-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 992px) {
  .why-choose-section {
    padding: 80px 0;
  }

  .why-choose-header {
    margin-bottom: 50px;
  }

  .why-choose-title {
    font-size: 2.5rem;
  }

  .why-choose-cta {
    flex-direction: column;
    text-align: center;
    padding: 50px 40px;
  }

  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 60px 0;
  }

  .why-choose-header {
    margin-bottom: 40px;
  }

  .why-choose-title {
    font-size: 2rem;
  }

  .why-choose-description {
    font-size: 1rem;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 50px;
  }

  .why-card {
    padding: 35px 25px;
  }

  .why-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .why-title {
    font-size: 1.2rem;
  }

  .why-choose-cta {
    padding: 40px 25px;
  }

  .cta-title {
    font-size: 1.6rem;
  }

  .cta-text {
    font-size: 1rem;
  }

  .btn-cta-large {
    width: 100%;
    text-align: center;
    padding: 18px 40px;
  }
}

/* ===== WHAT YOU'LL LEARN SECTION ===== */
.what-learn-section {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  padding: 40px 0 20px;
}

.what-learn-title {
  font-size: 2.8rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 70px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.what-learn-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.learn-card {
  text-align: center;
}

.learn-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--hover-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  margin: 0 auto 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.learn-card:hover .learn-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(43, 176, 224, 0.3);
}

.learn-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.learn-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* Responsive Design for What You'll Learn */
@media (max-width: 1200px) {
  .what-learn-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .what-learn-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .learn-icon {
    width: 85px;
    height: 85px;
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .what-learn-section {
    padding: 60px 0;
  }

  .what-learn-title {
    font-size: 2.2rem;
    margin-bottom: 50px;
  }

  .what-learn-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ===== ABOUT THE AUTHOR SECTION ===== */
.author-section {
  background: var(--white);
  padding: 100px 0;
}

.author-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.author-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  display: block;
}

.author-content {
  max-width: 650px;
}

.author-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.author-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 20px;
}

.author-text:last-of-type {
  margin-bottom: 30px;
}

.btn-author {
  display: inline-block;
  padding: 16px 40px;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(38, 169, 221, 0.3);
}

.btn-author:hover {
  background-color: var(--hover-color);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(25, 159, 189, 0.4);
  color: var(--white);
}

/* Responsive Design for About Author */
@media (max-width: 992px) {
  .author-section {
    padding: 80px 0;
  }

  .author-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .author-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .author-section {
    padding: 60px 0;
  }

  .author-title {
    font-size: 2rem;
  }

  .author-text {
    font-size: 1rem;
  }

  .btn-author {
    width: 100%;
    text-align: center;
    padding: 14px 30px;
  }
}

/* ===== BOOKS HERO SECTION ===== */
.books-hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  /* padding: 50px 0; */
  min-height: 600px;
  display: flex;
  align-items: center;
}

.books-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.books-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.books-hero-left {
  max-width: 600px;
}

.books-hero-title {
  font-size: 5rem;
  font-weight: 700;
  line-height: 0.95;
  margin-bottom: 30px;
  color: var(--text-dark);
  letter-spacing: -2px;
}

.books-hero-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 500px;
}

.btn-books-subscribe {
  display: inline-block;
  padding: 16px 40px;
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-books-subscribe:hover {
  background-color: var(--hover-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(38, 169, 221, 0.3);
}

.books-hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.books-image-wrapper {
  position: relative;
  max-width: 500px;
  width: 100%;
}

.books-cover {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.25));
}

.books-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--hover-color) 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(39, 186, 222, 0.4);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  line-height: 1.2;
}

.badge-cta {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .books-hero-title {
    font-size: 4.5rem;
  }

  .books-badge {
    width: 160px;
    height: 160px;
    right: -20px;
  }

  .badge-cta {
    font-size: 1.2rem;
  }
}

@media (max-width: 992px) {
  .books-hero {
    padding: 80px 0;
  }

  .books-hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .books-hero-left {
    max-width: 100%;
    text-align: center;
  }

  .books-hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .books-image-wrapper {
    max-width: 400px;
  }

  .books-badge {
    top: -10px;
    right: -10px;
  }
}

@media (max-width: 768px) {
  .books-hero {
    padding: 60px 0;
    min-height: auto;
  }

  .books-hero-container {
    padding: 0 20px;
  }

  .books-hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
  }

  .books-hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .btn-books-subscribe {
    padding: 14px 35px;
    font-size: 0.95rem;
  }

  .books-image-wrapper {
    max-width: 320px;
  }

  .books-badge {
    width: 140px;
    height: 140px;
    right: -5px;
    top: -5px;
  }

  .badge-text {
    font-size: 0.65rem;
  }

  .badge-cta {
    font-size: 1.1rem;
  }
}

/* ===== WHO SHOULD READ THIS SECTION ===== */
.who-read-section {
  background: var(--white);
  padding: 50px 0 20px;
}

.who-read-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

.who-read-left {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  /* min-height: 500px; */
}

.who-read-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: -1px;
}

.who-read-right {
  display: flex;
  flex-direction: column;
  /* gap: 40px; */
  padding-top: 20px;
}

.audience-item {
  border-bottom: 1px solid #e0e0e0;
  /* padding-bottom: 30px; */
}

.audience-item:last-child {
  border-bottom: none;
}

.audience-label {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.audience-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* Responsive Design for Who Should Read This */
@media (max-width: 992px) {
  .who-read-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .who-read-left {
    min-height: auto;
  }

  .who-read-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .who-read-section {
    padding: 60px 0;
  }

  .who-read-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }

  .who-read-right {
    gap: 30px;
  }

  .audience-item {
    padding-bottom: 25px;
  }

  .audience-label {
    font-size: 0.9rem;
  }

  .audience-text {
    font-size: 1rem;
  }
}


/* ===== SPEAKING HERO SECTION ===== */
.hero-about-section {
  position: relative;
  /* min-height: 800px; */
  /* width: 100%; */
  /* background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1600&h=900&fit=crop'); */
  background-image: url(../images/hero-section/rajesh-pai-standing.png);
  background-repeat: no-repeat;
  background-size: cover;
  /* background-position: center; */
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-about-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  width: 100%;
}

.hero-about-wrapper {
  padding: 170px 50px 100px 50px;
  display: flex;
  align-items: center;
  /* min-height: 800px; */
}

.hero-about-text {
  max-width: 700px;
  padding-left: 60px;
}

.hero-about-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  display: block;
}

.hero-about-title {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -1px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.hero-about-description {
  font-size: 1rem;
  /* line-height: 1.7; */
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-about-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-about {
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-block;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
}

.btn-about-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.btn-about-primary:hover {
  background-color: var(--hover-color);
  border-color: var(--hover-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(17, 159, 184, 0.3);
}

.btn-about-outline {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-about-outline:hover {
  background-color: var(--white);
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Responsive Design for Speaking Hero */
@media (max-width: 1200px) {
  .hero-about-section {
    min-height: 700px;
  }

  .hero-about-wrapper {
    padding: 150px 0 80px;
    min-height: 700px;
  }

  .hero-about-title {
    font-size: 3.5rem;
  }

  .hero-about-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 992px) {
  .hero-about-section {
    min-height: 600px;
  }

  .hero-about-wrapper {
    padding: 120px 0 60px;
    min-height: 600px;
    align-items: center;
  }

  .hero-about-text {
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-about-title {
    font-size: 3rem;
  }

  .hero-about-description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-about-section {
    min-height: 500px;
    background-attachment: scroll;
  }

  .hero-about-wrapper {
    padding: 100px 0 50px;
    min-height: 500px;
  }

  .hero-about-text {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-about-label {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
  }

  .hero-about-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .hero-about-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .btn-about {
    padding: 12px 35px;
    font-size: 0.9rem;
  }

  .hero-about-buttons {
    gap: 15px;
  }
}

/* ===== FEATURED BLOG SECTION ===== */
.featured-blog-section {
  background: var(--white);
  padding: 80px 0;
  border-bottom: 1px solid #e0e0e0;
}

.featured-blog-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: flex-start;
}

.featured-blog-left {
  padding-top: 20px;
}

.blog-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.featured-blog-title {
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.underline-text {
  position: relative;
  text-decoration: underline;
  text-decoration-color: var(--primary-color);
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}

.featured-blog-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
}

.featured-blog-right {
  position: relative;
}

.featured-blog-card {
  background: #f8f8f8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.featured-blog-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.featured-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-blog-card:hover .featured-blog-image img {
  transform: scale(1.05);
}

.featured-blog-content {
  padding: 35px;
}

.featured-blog-category {
  font-size: 0.85rem;
  font-weight: 800;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.featured-blog-excerpt {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 20px;
}

.btn-read-more {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-read-more:hover {
  background-color: var(--hover-color);
  color: var(--white);
}

.featured-blog-arrow {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--hover-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 15px 40px rgba(24, 173, 207, 0.3);
}

.featured-blog-arrow:hover {
  transform: translateY(-50%) translateX(10px);
  box-shadow: 0 20px 50px rgba(32, 206, 219, 0.4);
}

/* ===== ALL BLOGS SECTION ===== */
.all-blogs-section {
  background: #f5f5f5;
  padding: 80px 0;
}

.blogs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
}

.blogs-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin: 0;
}

.blog-filter-wrapper {
  flex-shrink: 0;
}

.blog-category-filter {
  padding: 12px 30px;
  border: 2px solid var(--text-dark);
  border-radius: 50px;
  background: transparent;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  padding-right: 50px;
}

.blog-category-filter:hover {
  background-color: var(--text-dark);
  color: var(--white);
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #f0f0f0;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.08);
}

.blog-card-content {
  padding: 20px 35px;
}

.blog-category-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.blog-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 15px;
}

.blog-card-excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* Responsive Design for Blog Sections */
@media (max-width: 1200px) {
  .featured-blog-arrow {
    right: -30px;
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .featured-blog-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .featured-blog-title {
    font-size: 2.5rem;
  }

  .featured-blog-arrow {
    position: static;
    transform: none;
    width: 70px;
    height: 70px;
    margin-top: 30px;
    display: inline-flex;
  }

  .featured-blog-arrow:hover {
    transform: scale(1.1);
  }

  .blogs-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .blogs-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .featured-blog-section {
    padding: 60px 0;
  }

  .featured-blog-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .featured-blog-card {
    border-radius: 8px;
  }

  .featured-blog-image {
    height: 220px;
  }

  .featured-blog-content {
    padding: 25px;
  }

  .all-blogs-section {
    padding: 60px 0;
  }

  .blogs-title {
    font-size: 1.8rem;
  }

  .blog-category-filter {
    padding: 10px 25px;
    font-size: 0.85rem;
    padding-right: 40px;
  }

  .blogs-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .blog-card-image {
    height: 200px;
  }

  .blog-card-content {
    padding: 25px;
  }

  .blog-card-title {
    font-size: 1.1rem;
  }
}


/* ===== THE PROBLEM SECTION ===== */
.problem-section {
  background: #f9f9f9;
  padding: 40px 0;
  border-bottom: 1px solid #e0e0e0;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.problem-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-image {
  width: 100%;
  max-width: 400px;
  max-height: 500px;
  object-fit: cover;
  /* height: auto; */
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.problem-right {
  max-width: 650px;
}

.problem-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.problem-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.problem-subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

.problem-content {
  display: flex;
  flex-direction: column;
  /* gap: 20px; */
}

.problem-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin: 0;
}

.problem-content strong {
  color: var(--text-dark);
  font-weight: 700;
}

/* Responsive Design for Problem Section */
@media (max-width: 1200px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .problem-left {
    order: 2;
  }

  .problem-right {
    order: 1;
  }
}

@media (max-width: 992px) {
  .problem-section {
    padding: 80px 0;
  }

  .problem-title {
    font-size: 2.5rem;
  }

  .problem-content p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .problem-section {
    padding: 60px 0;
  }

  .problem-grid {
    gap: 30px;
  }

  .problem-label {
    font-size: 0.85rem;
  }

  .problem-title {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .problem-subtitle {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .problem-content {
    gap: 15px;
  }

  .problem-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .problem-image {
    border-radius: 8px;
  }
}

/* ===== TRAINING GAINS SECTION ===== */
.training-gains-section {
  background: #ffffff;
  padding: 50px 0;
}

.training-gains-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.gains-left {
  position: sticky;
  top: 100px;
}

.gains-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.gains-subtext {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--text-light);
}

.gains-right {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.gain-row {
  display: grid;
  grid-template-columns: 0.8fr 2fr;
  /* gap: 16px; */
  /* padding: 18px 0; */
  border-bottom: 1px solid #e8e8e8;
}

.gain-row:last-child {
  border-bottom: none;
}

.gain-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.gain-text {
  /* font-size: 1.05rem;
  line-height: 1.7; */
  color: var(--text-dark);
}

.gain-text strong {
  color: var(--text-dark);
  font-weight: 700;
}

@media (max-width: 1200px) {
  .training-gains-grid {
    grid-template-columns: 1fr;
  }

  .gains-left {
    position: static;
  }
}

@media (max-width: 768px) {
  .training-gains-section {
    padding: 70px 0;
  }

  .gains-title {
    font-size: 2.2rem;
  }

  .gain-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .gain-label {
    font-size: 0.95rem;
  }

  .gain-text {
    font-size: 0.98rem;
  }
}
/* ===== TRAINING TYPES SECTION ===== */
.training-types-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.training-types-header {
  text-align: center;
  margin-bottom: 60px;
}

.training-types-header .section-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.training-types-header .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.training-types-header .section-description {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.training-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.training-type-card {
  background: var(--white);
  border-radius: 16px;
  padding: 45px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.training-type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(17, 174, 231, 0.15);
  border-color: var(--primary-color);
}

.training-type-card.featured {
  /* background: linear-gradient(135deg, #11aee7 0%, #1ca9d0 100%);
  color: var(--white);
  border-color: var(--primary-color); */
  color: var(--text-dark);
}

.training-type-card.featured .training-type-title,
.training-type-card.featured .training-type-description,
.training-type-card.featured .training-type-features li {
  color: var(--text-dark);
}

.featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffd700;
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.training-type-icon {
  width: 80px;
  height: 80px;
  background: rgba(17, 174, 231, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.training-type-card.featured .training-type-icon {
  background: rgba(17, 174, 231, 0.1);
}

.training-type-icon i {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.training-type-card.featured .training-type-icon i {
  color: var(--primary-color);
}

.training-type-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.training-type-description {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.6;
}

.training-type-features {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.training-type-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.training-type-features i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.training-type-card.featured .training-type-features i {
  color: var(--primary-color);
}

.btn-training-type {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-training-type:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(17, 174, 231, 0.3);
}

.btn-training-type.btn-primary {
  background: var(--white);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-training-type.btn-primary:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

@media (max-width: 992px) {
  .training-types-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .training-types-header .section-title {
    font-size: 2.3rem;
  }

  .training-type-card {
    padding: 35px 30px;
  }
}

@media (max-width: 768px) {
  .training-types-section {
    padding: 70px 0;
  }

  .training-types-header .section-title {
    font-size: 2rem;
  }

  .training-types-header .section-description {
    font-size: 1rem;
  }

  .training-type-title {
    font-size: 1.5rem;
  }

  .training-type-description {
    font-size: 1rem;
  }

  .training-type-icon {
    width: 70px;
    height: 70px;
  }

  .training-type-icon i {
    font-size: 2rem;
  }
}


/* ===== BUILDING WINNING TEAMS SECTION ===== */
.building-teams-section {
  padding: 50px 0;
  background-color: var(--white);
}

.building-teams-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.teams-left {
  position: relative;
  /* border-radius: 16px; */
}

.teams-image {
  width: 100%;
  /* height: auto; */
  max-height: 400px;
  object-fit: cover;
  border-radius: 20px;
  /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12); */
  /* object-fit: cover; */
}

.teams-right {
  padding-left: 20px;
}

.teams-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 30px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.teams-content p {
  font-size: 1.1rem;
  /* line-height: 1.8; */
  color: var(--text-dark);
  /* margin-bottom: 20px; */
}

.teams-content p strong {
  color: var(--primary-color);
  font-weight: 700;
}

.teams-subtitle {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  /* margin-top: 35px; */
  /* margin-bottom: 20px; */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.teams-benefits {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.teams-benefits li {
  position: relative;
  padding-left: 30px;
  /* margin-bottom: 16px; */
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.teams-benefits li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 1.8rem;
  line-height: 1;
  top: -2px;
}

@media (max-width: 992px) {
  .building-teams-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .teams-right {
    padding-left: 0;
  }

  .teams-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .building-teams-section {
    padding: 70px 0;
  }

  .teams-title {
    font-size: 2rem;
  }

  .teams-content p {
    font-size: 1rem;
  }

  .teams-subtitle {
    font-size: 1.1rem;
  }

  .teams-benefits li {
    font-size: 1rem;
  }
}

/* ===== CONTACT/BOOK A CALL SECTION ===== */
.contact-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  min-height: 100vh;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* Left Side - Contact Info */
.contact-info {
  padding: 40px 30px;
}

.contact-heading {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.3rem;
  color: var(--white);
}

.contact-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-text p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 4px;
  line-height: 1.6;
}

.contact-social {
  margin-top: 45px;
}

.contact-social h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.contact-social .social-links .social-link {
  width: 45px;
  height: 45px;
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.contact-social .social-links .social-link i {
  font-size: 1.2rem;
}

.contact-social .social-links .social-link:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

/* Right Side - Form */
.contact-form-wrapper {
  background: var(--white);
  padding: 45px 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group .required {
  color: #ef4444;
}

.form-control {
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(17, 174, 231, 0.1);
}

.form-control::placeholder {
  color: #999;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.btn-submit {
  padding: 16px 40px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-submit:hover {
  background: var(--hover-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 174, 231, 0.3);
}

.btn-submit:active {
  transform: translateY(0);
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 70px 0;
  }

  .contact-heading {
    font-size: 2rem;
  }

  .contact-form-wrapper {
    padding: 30px 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .social-links {
    gap: 12px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* ===== REAL TALK HERO SECTION ===== */
.real-talk-hero {
  padding: 80px 0 100px;
  background-color: var(--white);
}

.real-talk-header {
  text-align: center;
  margin-bottom: 60px;
}

.real-talk-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 2px;
  margin-bottom: 15px;
  line-height: 1.2;
}

.underline-red {
  position: relative;
  display: inline-block;
}

.underline-red::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 8px;
  background-color: #ff3b3b;
  z-index: -1;
}

.real-talk-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin: 0;
}

.real-talk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.real-talk-card {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.real-talk-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.real-talk-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background-color: #f5f5f5;
}

.real-talk-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.real-talk-card:hover .real-talk-image {
  transform: scale(1.05);
}

.real-talk-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #ff3b3b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.real-talk-card:hover .real-talk-arrow {
  transform: scale(1.1);
  background-color: #e62e2e;
}

.real-talk-content {
  padding: 35px 30px;
}

.real-talk-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ff3b3b;
  margin-bottom: 15px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.real-talk-card-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-watch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff3b3b;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-watch i {
  font-size: 1.2rem;
}

.btn-watch:hover {
  color: #e62e2e;
  gap: 12px;
}

/* Responsive Design for Real Talk Section */
@media (max-width: 992px) {
  .real-talk-title {
    font-size: 3rem;
  }

  .real-talk-grid {
    gap: 30px;
  }

  .real-talk-content {
    padding: 30px 25px;
  }

  .real-talk-card-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .real-talk-hero {
    padding: 60px 0 80px;
  }

  .real-talk-title {
    font-size: 2.5rem;
  }

  .underline-red::after {
    height: 6px;
    bottom: 5px;
  }

  .real-talk-subtitle {
    font-size: 1rem;
  }

  .real-talk-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .real-talk-card-title {
    font-size: 1.1rem;
  }

  .real-talk-card-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .real-talk-hero {
    padding: 40px 0 60px;
  }

  .real-talk-header {
    margin-bottom: 40px;
  }

  .real-talk-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .underline-red::after {
    height: 5px;
    bottom: 3px;
  }

  .real-talk-subtitle {
    font-size: 0.9rem;
  }

  .real-talk-grid {
    gap: 25px;
  }

  .real-talk-content {
    padding: 25px 20px;
  }

  .real-talk-card-title {
    font-size: 1rem;
  }

  .real-talk-card-text {
    font-size: 0.85rem;
    -webkit-line-clamp: 3;
  }

  .real-talk-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    bottom: 15px;
    right: 15px;
  }

  .btn-watch {
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .real-talk-title {
    font-size: 1.6rem;
  }

  .real-talk-content {
    padding: 20px 15px;
  }

  .real-talk-card-title {
    font-size: 0.9rem;
  }

  .real-talk-card-text {
    font-size: 0.8rem;
  }
}

/* ===== PODCASTS SECTION ===== */
.podcasts-hero-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.podcasts-hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(17, 174, 231, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.podcasts-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.podcasts-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.podcasts-title .highlight-blue {
  color: var(--primary-color);
}

.podcasts-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Podcasts Filter Section */
.podcasts-section {
  padding: 80px 0;
  background-color: var(--white);
}

.podcasts-filter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 25px;
  border: 2px solid var(--primary-color);
  background-color: transparent;
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.filter-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Podcasts Grid */
.podcasts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.podcast-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
}

.podcast-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(17, 174, 231, 0.2);
}

.podcast-card-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.podcast-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.podcast-card:hover .podcast-img {
  transform: scale(1.1);
}

.podcast-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 174, 231, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.podcast-card:hover .podcast-overlay {
  opacity: 1;
}

.play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.play-btn:hover {
  transform: scale(1.1);
}

.podcast-card-content {
  padding: 30px;
}

.podcast-category {
  display: inline-block;
  padding: 6px 12px;
  background-color: rgba(17, 174, 231, 0.1);
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 15px;
}

.podcast-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.podcast-description {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.podcast-meta {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: #999;
}

.podcast-duration,
.podcast-date {
  display: flex;
  align-items: center;
  gap: 6px;
}

.podcast-meta i {
  color: var(--primary-color);
}

/* Hidden by default for filter */
.podcast-card {
  display: block;
}

.podcast-card.hidden {
  display: none;
}

/* Podcasts CTA Section */
.podcasts-cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0a8fb8 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.podcasts-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 12px 35px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
  background-color: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--white);
}

.cta-buttons .btn-primary:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.cta-buttons .btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cta-buttons .btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

/* Responsive Design for Podcasts Section */
@media (max-width: 992px) {
  .podcasts-title {
    font-size: 2.8rem;
  }

  .podcasts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .podcast-card-image {
    height: 240px;
  }

  .podcast-card-content {
    padding: 25px;
  }

  .podcast-title {
    font-size: 1.1rem;
  }

  .podcast-description {
    font-size: 0.9rem;
  }

  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .podcasts-hero-section {
    padding: 60px 0 80px;
  }

  .podcasts-title {
    font-size: 2.2rem;
  }

  .podcasts-subtitle {
    font-size: 1rem;
  }

  .podcasts-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
  }

  .podcast-card-image {
    height: 300px;
  }

  .podcast-card-content {
    padding: 20px;
  }

  .podcast-title {
    font-size: 1rem;
  }

  .podcast-description {
    font-size: 0.85rem;
  }

  .podcasts-filter {
    gap: 10px;
    margin-bottom: 40px;
  }

  .filter-btn {
    padding: 8px 18px;
    font-size: 0.75rem;
  }

  .podcasts-section {
    padding: 60px 0;
  }

  .podcasts-cta-section {
    padding: 60px 0;
  }

  .cta-title {
    font-size: 1.6rem;
  }

  .cta-subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .cta-buttons .btn {
    padding: 10px 25px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .podcasts-hero-section {
    padding: 40px 0 60px;
  }

  .podcasts-hero-section::before {
    width: 300px;
    height: 300px;
    top: -30%;
    right: -15%;
  }

  .podcasts-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    letter-spacing: 0;
  }

  .podcasts-subtitle {
    font-size: 0.9rem;
  }

  .podcasts-section {
    padding: 40px 0;
  }

  .podcasts-filter {
    gap: 8px;
    margin-bottom: 30px;
  }

  .filter-btn {
    padding: 7px 15px;
    font-size: 0.7rem;
    border-width: 1.5px;
  }

  .podcasts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }

  .podcast-card-image {
    height: 220px;
  }

  .podcast-card-content {
    padding: 18px;
  }

  .podcast-category {
    padding: 5px 10px;
    font-size: 0.7rem;
    margin-bottom: 10px;
  }

  .podcast-title {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .podcast-description {
    font-size: 0.8rem;
    margin-bottom: 15px;
  }

  .podcast-meta {
    flex-direction: column;
    gap: 8px;
    font-size: 0.8rem;
  }

  .play-btn {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .podcasts-cta-section {
    padding: 40px 0;
  }

  .podcasts-cta-section::before {
    width: 250px;
    height: 250px;
    top: -40%;
    left: -20%;
  }

  .cta-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .cta-subtitle {
    font-size: 0.85rem;
    margin-bottom: 25px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .cta-buttons .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.75rem;
  }
}

@media (max-width: 360px) {
  .podcasts-title {
    font-size: 1.5rem;
  }

  .podcasts-subtitle {
    font-size: 0.85rem;
  }

  .podcast-card-image {
    height: 180px;
  }

  .podcast-card-content {
    padding: 15px;
  }

  .podcast-title {
    font-size: 0.9rem;
  }

  .podcast-description {
    font-size: 0.75rem;
  }

  .cta-title {
    font-size: 1.2rem;
  }

  .cta-subtitle {
    font-size: 0.8rem;
  }
}
