/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif !important;
    font-style: normal;
    font-weight: 400;
}
html {
  scroll-behavior: smooth;
}
ol, ul {
    list-style: none;
}
a{
  text-decoration: none;
}
iframe {
  width: 100%;
  height: 439px;
  border: none;
}
/* Navigation Header */
.nav-wrapper {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10000;
  background: transparent;
}
.nav-container {
  margin: 20px auto;
  padding: 0px 32px;
  background: #fff;
  width: fit-content;
  border-radius: 72px;
  height:78px;
  background: rgba(255, 255, 255, 0.72);
}
.nav-menu {
  list-style: none;
  display: flex;
  gap: 32px;
  margin:0px;
  align-items: center;
  justify-content: center;
    height: 78px;
}
.nav-menu li a {
    text-decoration: none;
    color: #1A1A1A;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 166.667% */
    text-transform: uppercase;
}
.nav-menu li a:hover {
  color:#D00000;
}
.nav-menu li a img{
  width:78px;
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 120px 20px 40px;
  height:711px;
  background: linear-gradient(104deg, #FAF5FF 3.81%, #FFF0C5 97.4%), linear-gradient(104deg, #F9FAFB 3.81%, #FFF7ED 97.4%), linear-gradient(104deg, #EEFEF0 3.81%, #FFFADE 97.4%), linear-gradient(120deg, #E6E6A3 3.38%, #D74F52 97.27%);
}
.inner-hero-section {
  text-align: center;
  padding: 100px 20px 72px 20px;
  height:344px;
  background: linear-gradient(104deg, #FAF5FF 3.81%, #FFF0C5 97.4%);
  display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
}
.inner-hero-section  h1{
  color: #1A1A1A;
  text-align: center;
  font-size: 72px;
  font-style: normal;
  font-weight: 600;
  line-height: 82px; /* 113.889% */
  letter-spacing: -1.44px;
  margin-bottom: 12px;
}
.inner-hero-section  h1 span{
  color:#D00000;
  text-align: center;
  font-size: 72px;
  font-style: normal;
  font-weight: 600;
  line-height: 82px; /* 113.889% */
  letter-spacing: -1.44px;
}
.inner-hero-section p{
  max-width:550px;
  margin:0 auto;
  text-align: center;
  color: #1A1A1A;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin:0px;
}
.inner-hero-section.contact-inner-section{
  height:auto;
  padding:100px 20px 0px 20px
}
.inner-hero-section.contact-inner-section h1{
  margin-top:60px;
}
.inner-hero-section.contact-inner-section .newsletter-card p{
  margin-bottom: 14px;
}
.inner-hero-section.contact-inner-section .newsletter-card p strong{
  font-size: 16px;
  line-height: 22px;
}
.inner-hero-section ul{
  margin:36px 0 0px 0;
  padding:0px;
  display:flex;
  align-items: center;
  justify-content: center;
  gap:20px;
}
.inner-hero-section ul li a{
  text-decoration: none;
}
.inner-hero-section ul li a img{
  width:20px;
  height:20px;
}
.logo {
  width: 202px;
  margin: 0 auto 40px auto;
}
.tagline {
  font-size: 10px;
  margin: 6px 0 20px;
}
.hero-section h1 {
    color: #1A1A1A;
    text-align: center;
    font-size: 72px;
    font-style: normal;
    font-weight: 600;
    line-height: 82px; /* 113.889% */
    letter-spacing: -1.44px;
    margin-bottom: 7px;
}
.hero-section h2 {
  font-size: 72px;
  font-weight: 600;
  line-height:82px;
  display:flex;
  align-items: center;
  justify-content: center;
}
.highlight-red {
  background-color: #d00000;
  color: white;
  padding: 5px 10px;
}
.highlight-yellow {
  background-color: #fecc00;
  color: #ffffff;
  padding: 5px 10px;
}

/* Slider Section */
.slider-section {
    margin: -218px auto 72px auto;
    max-width: 100%;
    position: relative;
    text-align: center;
    padding: 0px 103px;
}
.slider {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.slider img {
  display: none;
  width: 100%;
  transition: opacity 0.5s ease-in-out;
  border-radius:12px;
}
.slider img.active {
  display: block;
}
.slider-dots {
  margin-top: 12px;
}
.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #d70000;
  border-radius: 50%;
  margin: 0 4px;
  cursor: pointer;
}
.dot.active {
  background-color: white;
  border: 1px solid #d70000;
}

.about-section {
  padding: 72px 20px;
  background: white;
  display: flex;
  justify-content: center;
}
.about-container {
  max-width: 1080px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 55px;
}
.about-container .section-header {
  flex: 1 1 380px;
  align-items: flex-start;
  justify-content: flex-start;
}

.about-video {
  flex: 1 1 580px;
}
.video-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.video-thumb {
  width: 100%;
  display: block;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  opacity: 0.9;
}

.projects-section {
  padding: 72px 20px;
  background: linear-gradient(104deg, #F9FAFB 3.81%, #FFF7ED 97.4%);
  text-align: center;
}
.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.section-header .tag {
    padding: 0px 8px;
    border-radius: 40px;
    border: 1px solid #FECC00;
    background: #FECC00;
    display: flex;
    align-items: center;
    gap:8px;
    margin-bottom: 12px;
    color: #1A1A1A;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 166.667% */
    text-transform: uppercase;
}

.section-header .tag img{
    width:16px;
    height:16px;
}

.section-header h2 {
    color: #1A1A1A;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 42px; /* 131.25% */
    letter-spacing: -0.64px;
    margin-bottom: 12px;
}
.section-header.beacon-heading h2{
  margin-bottom: 20px;
}

.section-header.beacon-heading p{
  font-size:14px;
}

.section-header h2 .highlight {
    color: #D00000;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 42px; /* 131.25% */
    letter-spacing: -0.64px;
}

.section-header p {
    color: #1A1A1A;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin:0px;
}
.section-header a{
      display:flex;
      align-items: center;
      justify-content: center;
      gap:10px;
      color: #D00000;
      font-size: 14px;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
      text-decoration: none;
      margin-top:22px;
    }
.projects-section .slider-container {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  overflow: hidden;
  padding-top: 40px;
}
.projects-section .slider-viewport {
  overflow: hidden;
  max-width: 1080px; /* 320 * 3 + gaps */
  margin: 0 auto;
}
.projects-section .slider {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
  will-change: transform;
  scrollbar-width: none; /* Firefox */
}
.projects-section .slider::-webkit-scrollbar {
  display: none; /* Chrome */
}

.projects-section .card {
    flex: 0 0 346px;
    position: relative;
    overflow: hidden;
    padding: 14px 14px 24px 14px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, z-index 0.3s ease;
    border:none;
}
.projects-section .card h3{
    color: #111013;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin:0px;
    text-align: left;
    margin-bottom: 10px;
}

.projects-section .card p{
    color: #1A1A1A;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; 
    margin-bottom: 0px;
    text-align: left;
}

.projects-section .card .card-img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
  margin-bottom: 24px;
  border-radius: 12px;
  height:268px;
}

.projects-section .card-hover {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  padding: 20px 14px;
  transition: top 0.4s ease;
  overflow-y: auto;
}

.projects-section .card:hover {
  z-index: 10;
}

.projects-section .card:hover .card-hover {
  top: 0;
}

.projects-section .card:hover .card-img {
  opacity: 0;
}

.projects-section .card-content{
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    height:100%;
}

.projects-section .card-content h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
  text-align: left;
}

.projects-section .card-content p {
  font-size: 14px;
  color: #1a1a1a;
  margin-bottom: 10px;
  text-align: left;
}

.projects-section .know-more {
    display: block;
    margin-top: 0px;
    text-decoration: none;
    color: #D00000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; 
    text-align: left;
}

.projects-section .play-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0px;
  gap: 24px;
}

.projects-section .play-button {
  background: transparent;
  color: white;
  width: 68px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
}
.projects-section .play-button img{
  width: 68.972px;
  height: 64px;
  display: block;
}

.watch-label span {
  color: #111013;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 4px;
    display: block;
}

.watch-label small {
    display: block;
    color: #1A1A1A;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; 
    text-align: left;
}

.projects-section .slider-arrows {
    margin-top: 20px;
    text-align: left;
    padding-left: 0;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    
}

.projects-section .arrow-buttons{
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    border-radius: 100px;
    background: #FFF;
    align-items: flex-start;
    width:84px;
    
}

.projects-section .slider-arrows button {
  width: 36px;
      height: 36px;
      border-radius: 100px;
      border: none;
      background-color: #ffffff;
      cursor: pointer;
      box-shadow: none;
      color:#000000;
      font-size:15px;
      display:flex;
      align-items:center;
      justify-content:center;
}
.projects-section .slider-arrows button img{
  width:15px;
  height:15px;
}

.projects-section .slider-arrows button:hover {
  background-color: #D00000;
  color:#ffffff;
}
.projects-section .slider-arrows button:hover img.play-black-hoveroff{
    display: none !important;
  }
  .projects-section .slider-arrows button img.play-black-hoveroff{
    display: flex !important;
  }
  .projects-section .slider-arrows button img.play-white-hoveron{
    display: none !important;
  }
  .projects-section .slider-arrows button:hover img.play-white-hoveron{
    display: flex !important;
  }

.gallery{
    width:100%;
    padding:72px 0px;
    background:#ffffff;
    float:left;
}

.gallery .section-header p {
    max-width:590px;
    margin: 0 auto;
    text-align: center;
}

.photo-slide {
  display: inline-block;
  white-space: nowrap;
  animation: slide 500s linear infinite;
}
.marquee-wrapper{overflow:hidden;margin-top:0px;}
@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
.photo-slide{
    padding-top:40px;
}
.mesSend { background: #80da00;  padding: 20px 20px;  border-radius: 10px;  display: table;  margin: 20px 0px;  font-size: 15px;  font-weight: 600;}

.photo-slide img{  height:auto;  margin: 0 0px; border-radius: 8px;}
ul.listPhoto{display:flex; gap:20px;}
.twoPics{display:flex; flex-wrap: wrap; flex: 0 0 25% !important; overflow:hidden; gap:20px;max-width:346px;}
.twoPics a:first-child{margin-bottom:00px;}
.twoPics a img{height:252px;object-fit: cover; }
.twoPics a{display:flex;}
.listPhoto li{flex: 0 0 50%; display: flex;}
.listPhoto li a{width:100%; display: flex;}
.listPhoto li a img{object-fit: cover;border-radius: 8px;}

.onePic{flex: 0 0 50%; display: flex;max-width:370px;}
.onePic a{width:100%; display: flex;}
.onePic a img{object-fit: cover;border-radius: 8px; height:522px;}
.marquee-inner { display: flex;max-height:auto; gap:20px;}   

.fancybox-infobar{display:none;}

.video-gallery{
  width:100%;
  float:left;
  padding:72px 20px;
  background: linear-gradient(120deg, #EFF5FE 3.38%, #FAF5FF 97.27%);
}
.video-gallery .section-header p{
  max-width: 590px;
  margin:0 auto;
  text-align: center;
}

.video-container{
  max-width: 1080px;
  margin:0 auto;
  padding-top:40px;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.gallery-grid.home-gallery.mobile-video-slider{
    display: none;
  }
/* Video Card */
.video-card {
  overflow: hidden;
  transition: transform 0.3s ease;
  position: relative;
}

.video-card  a{
  text-decoration: none;
}

.video-card h4{
  color: #1A1A1A;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; /* 144.444% */
  letter-spacing: 0.045px;
  margin:0px;
}

.video-card:hover {
  transform: translateY(-5px);
}

.video-card .thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.video-card .thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  border-radius:12px;
  position: relative;
  transition: transform 0.4s ease-in-out;
}
.video-card .thumbnail:hover img{
  transform: scale(1.10);
}
.overlay-hover{
  background: rgba(0, 0, 0, 0.50);
  position: absolute;
  height:100%;
  display:none;
  align-items: center;
  justify-content: center;
  width:100%;
  top:0;
  border-radius:12px;
  transition: transform 0.3s ease;
}
.video-card .thumbnail:hover .overlay-hover{
  display:flex;
}
.video-card:hover .overlay-hover img{
  width:60px;
  height:60px;
}

.play-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 6px 8px;
  border-radius: 50%;
  font-size: 12px;
}

.meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 0 0;
  font-size: 14px;
  color: #555;
}
.meta .date{
  color: #1A1A1A;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 185.714% */
  letter-spacing: 0.035px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap:5px;
}

.meta .badge {
  border-radius: 6px;
  border: 1px solid #B9F8CF;
  background: #DCFCE7;
  padding: 3px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #008236;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.075px;
}


/* Section Styling */
.course-section {
  background: #ffffff;
  padding: 0px 20px 72px 20px;
  width:100%;
  float:left;
}
.course-section .section-header{
  text-align: left;
  align-items: flex-start;
  width:30%;
}

.course-container{
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 12px;
  background: linear-gradient(104deg, #FAF5FF 3.81%, #FFF0C5 97.4%), linear-gradient(120deg, #EFF5FE 3.38%, #FAF5FF 97.27%);
  padding: 72px;
  display:flex;
  align-items:center ;
  gap:40px;
}

/* Carousel */
.course-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  scroll-snap-type: x mandatory;
  padding: 10px 0;
  width:68%;
}

.course-card {
  flex: 0 0 auto;
  width: 290px;
  scroll-snap-align: start;
  overflow: hidden;
}

.course-card img {
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  position: relative;
}

.card-contentnew {
  padding: 10px;
  font-size: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.17);
  color: #1A1A1A;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  position: absolute;
  width:250px;
  margin-top:-50px;
}

/* Carousel Buttons */
.carousel-btn {
  background: #eee;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn.right {
  background-color: #d10000;
  color: #fff;
}
.inner-hero-section.project-banner-section {
  
  justify-content: flex-end;
}
.inner-hero-section.project-banner-section p{
  max-width:850px;

}
.news-letter-section.projects-sinner-section .section-header{
  align-items: flex-start;
  justify-content: flex-start;
}
.news-letter-section.projects-sinner-section .section-header p{
  width:100%;
  text-align: left;
  max-width: 100%;
}
.perma-model{
  margin:50px 0;
}
.news-letter-section{
  width:100%;
  float:left;
  padding:72px 20px;
  background-color: #fff0c530;
}
.news-letter-section.contact-section{
  width:100%;
  float:left;
  padding:60px 20px 72px 20px;
  background: linear-gradient(104deg, #FAF5FF 3.81%, #FFF0C5 97.4%);;
}

.news-letter-section .section-header p{
  max-width:52%;
  margin:0 auto;
  text-align: center;
}

.news-letter-container{
  max-width:1080px;
  margin:0 auto;
  padding-top:40px;
}
.slider-wraper-podcast.inner-paodcast{
  float:unset;
  padding:0px 0px 72px 0px;
  max-width:1080px;
  margin:0 auto;
  background: transparent !important;
}
.poadcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(256px, 1fr));
    gap: 18px;
}
.poadcast-grid .card{
  max-width:unset !important;
  min-width:unset !important;
  border-radius: 6.33px;
  border: 1px solid #FECC00 !important;
  background: #FFF;
  box-shadow: none !important;
}

/* Newsletter Cards */
.newsletter-card.project-card-inner{
  border-radius: 6.33px;
  border: 1px solid #FECC00;
  background: #FFF;
  box-shadow: 0 0 8px 0 rgba(254, 204, 0, 0.20);
  padding: 16px;
}
.newsletter-card.project-card-inner h4{
  color: #1A1A1A;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 16px;
}
.newsletter-card.project-card-inner .meta{
  gap:16px;
  justify-content: flex-start;
  margin:0px;
  align-items: flex-start;
}
.newsletter-card.project-card-inner .meta img{
  border-radius:12px;
}
.newsletter-card.project-card-inner .meta span{
  font-size:14px;
  font-weight:400;
  color:#1a1a1a;
}
.newsletter-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.newsletter-cards.innernews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(525px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
.newsletter-cards.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
.newsletter-cards.contact-info .newsletter-card{
  border-radius: 6.33px;
  border: 1px solid #FECC00;
  background: #FFF;
  box-shadow: 0 0 8px 0 rgba(254, 204, 0, 0.20);
  padding:16px;
}
.newsletter-cards.contact-info .newsletter-card .meta{
  margin-bottom: 12px;
}
.newsletter-cards.contact-info .newsletter-card h4 {
    color: #1A1A1A;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0.045px;
    margin-bottom: 8px;
}
.newsletter-cards.contact-info .newsletter-card .edition{
  color: #1A1A1A;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  border:none;
  padding:0px;
  border-radius:0px;
}
.newsletter-cards.contact-info .newsletter-card .btn.red{
  height:43px;
  width:100%;
  border-radius: 4px;
  background: #D00000;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display:flex;
  align-items: center;
  justify-content: center;
  padding:0px;
}
.newsletter-cards.contact-info .newsletter-card .btn.red img{
  margin-left:10px;
}

.newsletter-card {
  border-radius: 16px;
  border: 1px solid #FECC00;
  background: #FFF;
  box-shadow: 0 2px 8px 0 rgba(254, 204, 0, 0.16);
  padding: 30px;
  text-align: left;
  position: relative;
}
.newsletter-card .meta{
  padding:0px;
  margin-bottom: 16px;
}

.newsletter-card h4 {
  color: #1A1A1A;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px; /* 144.444% */
  letter-spacing: 0.045px;
  margin-bottom: 8px;
}
.newsletter-card p strong{
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}
.map-min{
  min-height:78px;
}
.newsletter-card p {
  color: #1A1A1A;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
  letter-spacing: 0.035px;
  margin-bottom: 8px;
}

.edition {
  display: inline-block;
  border-radius: 8px;
  border: 1px solid #E5E5E5;
  padding: 2px 8px;
  color: #1A1A1A;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
  letter-spacing: 0.035px;
  margin-bottom: 18px;
}

.buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.buttons .btn {
  flex: 1;
  padding: 10px;
  font-size: 14px;
  font-weight:500;
  text-align: center;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: 0.2s;
}

.buttons .btn img{
  margin-right:10px;
}

.btn.red {
  background: #D00000;
  color: white;
  border: none;
}

.btn.red:hover {
  background: #a80000;
  color:#ffffff;
}

.btn.outline {
  border: 1px solid #1A1A1A;
  color: #1A1A1A;
  background: white;
}

.btn.outline:hover {
  background: #f4f4f4;
}

/* Subscribe Box */
.subscribe-box {
  border-radius: 12px;
  background: linear-gradient(104deg, #FAF5FF 3.81%, #FFF0C5 97.4%), linear-gradient(120deg, #EFF5FE 3.38%, #FAF5FF 97.27%), linear-gradient(104deg, #F9FAFB 3.81%, #FFF7ED 97.4%);
  padding: 33px;
  text-align: left;
  display:flex;
  align-items: flex-end;
  gap:20px;
}

.subscribe-box .section-header{
  align-items: flex-start;
  width:32%;
}

.subscribe-box .section-header h2{
  color: #1A1A1A;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px; /* 150% */
  letter-spacing: -0.4px;
  margin:0px;
}

.subscribe-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width:65%;
  border-radius: 4px;
  background: #FFF;
  padding: 12px;
}
.message-box{
  border: 1px solid #000000;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap:10px;
  padding: 10px;
  width:75%;
}
.message-box img{

}
.subscribe-form input[type="email"] {
  flex: 1;
  padding: 0;
  font-size: 14px;
  border: none;
  border-radius: 0px;
  outline: none;
}

.subscribe-form button {
  padding: 12px 24px;
  background: #D00000;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  width:146px;
}

.subscribe-form button:hover {
  background: #a80000;
}

.podcast-section{
  width:100%;
  float:left;
  padding:72px 0 0 0;
  background: linear-gradient(104deg, #F9FAFB 3.81%, #FFF7ED 97.4%);
}

.podcast-section .section-header p{
  max-width: 550px;
  text-align: center;
}

.podcast-container{
  max-width: 1020px;
  margin:0 auto;
  padding-top:40px;
}

.slider-wraper-podcast{
      margin: 0 auto;
      padding: 40px 0px 72px 12%;
      position: relative;
      text-align: center;
      background:linear-gradient(104deg, #F9FAFB 3.81%, #FFF7ED 97.4%)
    }

    .slider-wraper-podcast .carousel {
      display: flex;
      align-items: center;
      gap: 10px;
      justify-content: center;
      position: relative;
    }

    .slider-wraper-podcast .carousel-wrapper {
      overflow: hidden;
      width: 100%;
    }

    .slider-wraper-podcast .carousel-track {
      display: flex;
      transition: transform 0.5s ease;
      gap: 20px;
    }

    .slider-wraper-podcast .card {
        min-width: 205px;
        max-width: 205px;
        border-radius: 6.33px;
        background: #FFF;
        box-shadow: 0 0 8px 0 rgba(254, 204, 0, 0.20);
        flex-shrink: 0;
        padding: 16px;
        height:309px;
        border:none;
        
    }
  .slider-wraper-podcast .card a{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height:100%;
  }
  /* .slider-wraper-podcast .card a .col-box{
    padding-bottom: 50px;
  } */

  .newsletter-card.project-card-inner .web-off{
    display:none;
  }
  .newsletter-card.project-card-inner .mobile-off{
    display:block;
  }
    .podcast-image-box{
        border-radius: 4.33px;
        height:104px;
        display:flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
    }
    .podcast-image-box img{
        width:81px;
        height:44px;
    }
    .backpod1{
        background: linear-gradient(120deg, #E6E6A3 3.38%, #D74F52 97.27%), rgba(0, 0, 0, 0.20);
    }
    .backpod2{
        background: linear-gradient(120deg, #B3E6A3 3.38%, #4FB3D7 97.27%), rgba(0, 0, 0, 0.20);
    }
    .backpod3{
        background: linear-gradient(120deg, #E1A3E6 3.38%, #524FD7 97.27%), rgba(0, 0, 0, 0.20);
    }
    .backpod4{
        background: linear-gradient(120deg, #E6A3A3 3.38%, #B04FD7 97.27%), rgba(0, 0, 0, 0.20);
    }

    .slider-wraper-podcast .col-box h4 {
        color: #1A1A1A;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 22px;
        margin:0px;
        text-align: left;
    }
    .slider-wraper-podcast .card .bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .slider-wraper-podcast .card .play-btn {
      background:transparent;
      height:50px;
      border: none;
      border-radius:0px;
      width: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 14px;
      box-shadow: none;
      padding:0px;
      position: initial;
      left: unset;
      top: unset;
      transform: unset;
    }
    .slider-wraper-podcast .card .bottom .play-btn-hoveron{
        width:50px;
        height:50px;
        display:none;
        border:none;
        background:transparent;
        box-shadow: none;
    }
    .slider-wraper-podcast .card .bottom .play-btn-hoveron img{
      width:50px;
        height:50px;
    }
    .slider-wraper-podcast .card:hover .bottom .play-btn-hoveron{
      display: block;
    }

    .slider-wraper-podcast .card:hover .bottom .play-btn.hoveroff{
      display: none;
    }

    .slider-wraper-podcast .card .play-btn img{
        width:40px;
        height:40px;
    }

    .slider-wraper-podcast .card span {
        color: #1A1A1A;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px; /* 185.714% */
        letter-spacing: 0.035px;
        display: flex;
        align-items: center;
        gap: 4px;
    }
    .slider-wraper-podcast .card span img{
        width: 16px;
        height: 16px;
    }

    .slider-wraper-podcast .nav-buttons {
        display: flex;
        gap: 10px;
        justify-content: center;
        margin-top: 20px;
        border-radius: 100px;
        background: #FFF;
        align-items: flex-start;
        width:84px;
    }

    .slider-wraper-podcast .nav-buttons button {
      width: 36px;
      height: 36px;
      border-radius: 100px;
      border: none;
      background-color: #ffffff;
      cursor: pointer;
      box-shadow: none;
      color:#000000;
      font-size:15px;
    }
    .slider-wraper-podcast .nav-buttons button:hover{
        background-color: #D00000 ;
        color:#ffffff;
    }

     .nav-buttons button:hover {
        background-color: #D00000 !important;
        color: #ffffff;
    }
    .nav-buttons button{
      display:flex;
      align-items:center;
      justify-content: center;
    }
   .nav-buttons button:hover img.play-black-hoveroff{
    display: none !important;
  }
   .nav-buttons button img.play-black-hoveroff{
    display: flex !important;
  }
   .nav-buttons button img.play-white-hoveron{
    display: none !important;
  }
   .nav-buttons button:hover img.play-white-hoveron{
    display: flex !important;
  }

    .testimonial-section{
      width:100%;
      float:left;
      padding:72px 0px;
      background: #ffffff;
    }
    .projects-section .section-header p{
      max-width:590px;
    }
    .testimonial-section .section-header p{
      max-width:620px;
      text-align: center;
      margin-bottom: 0px;
    }
    .testimonial-section .section-header a{
      display:flex;
      align-items: center;
      justify-content: center;
      gap:10px;
      color: #D00000;
      font-size: 14px;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
      text-decoration: none;
    }
    .testimonial-conatiner{
      max-width: 1080px;
      margin:0 auto;
      padding-top:40px;
    }
     .slick-initialized .slick-slide {
        display: flex !important;
    }
    .testimonial-conatiner.inner-testipage{
      padding:72px 20px 32px 20px;
    }
    .testimonial-conatiner.inner-testipage  .testimonial-card{
      border-radius: 12px;
      background: linear-gradient(270deg, #EFF5FF 0%, #FAF5FF 100%);
      padding:24px 24px 0px 24px;
      height:auto !important;
      flex-direction: column;
      gap:24px;
      margin-bottom: 40px;
    }
    .backcolor-gradiant{
      background: linear-gradient(104deg, #F9FAFB 3.81%, #FFF7ED 97.4%) !important;
    }
    .testimonial-conatiner.inner-testipage .testimonial-image img{
      width:187px;
      border-radius:12px;
      height:173px;
    }
    .testimonial-card {
      padding: 0px;
      display: flex;
      gap: 0px;
      align-items: flex-start;
      justify-content: center;
      height:456px !important;
    }
    .testimonial-card a{
      display:flex;

    }
    .testimonial-conatiner.inner-testipage .testimonial-image {
      flex-shrink: 0;
      height: auto;
      position: relative;
      height:auto;
    }
    .testimonial-image {
      flex-shrink: 0;
      height: auto;
      position: relative;
      height:100%;
    }

    .testimonial-image img {
      width: 100%;
      height: auto;
      transition: transform 0.3s ease;
      border-top-left-radius: 12px;
      border-bottom-left-radius: 12px;
    }

    .testimonial-conatiner.inner-testipage .testimonial-text {
      position: relative;
      padding:0;
      display:block;
       background: transparent;
    }
    .testimonial-text {
      background: #f6f6ff;
      position: relative;
      padding:60px 95px;
      height:100%;
      display:flex;
      align-items: flex-start;
      justify-content: flex-start;
      flex-direction: column;
      border-top-right-radius: 12px;
      border-bottom-right-radius: 12px;
    }
    .testimonial-text p{
      color: #000;
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 24px;
      margin:0px 0px 20px 0px;
      text-align: left;
    }
    .testimonial-conatiner.inner-testipage .student-name {
      right: 0px;
      left:85%;
    }
    .student-name {
      border-radius: 12px;
      background: #FFF;
      box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.17);
      width:211px;
      height:71px;
      display:flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      bottom: 15px;
      right: -40px;
      color: #D00000;
      font-size: 16px;
      font-style: italic;
      font-weight: 600;
      z-index: 999;
    }

    .testimonial-section .slick-prev, .slick-next {
      background: #f5f5f5;
      border-radius: 50%;
      padding: 10px;
      z-index: 9;
    }

    .testimonial-section .slick-dots{
      margin:0px 0px 0px 0px;
      padding:0px;
      list-style:none;
      text-align: center;
      position: relative;
    }
    .testimonial-section .slick-dots li{
      width:20px;
      height:4px;
      padding:0px 5px;
    }
    .testimonial-section .slick-dots li.slick-active{
      width:60px;
      height:4px;
    }
    .testimonial-section .slick-dots li.slick-active button{
      width:60px;
      height:4px;
    }
    .testimonial-section .slick-dots li button{
      width:20px;
      height:4px;
      padding:0px;
      font-size:0px;
    }
    .testimonial-section .slick-dots li button:before {
      background: #D9D9D9;
      width:20px;
      height:4px;
      border-radius: 40px;
      font-size:0px;
      opacity: 1;
    }

    .testimonial-section .slick-dots li.slick-active button:before {
      background: #D00000;
      width:60px;
      height:4px;
      border-radius: 40px;
      opacity: 1;
    }

    .testimonial-section .slick-prev:before{
      display:none;
    }
    .testimonial-section .slick-next:before{
      display:none;
    }
    .testimonial-section  .slick-next{
      padding: 0px;
      background: transparent;
      right:-35px;
      top:45%;
    }
    .testimonial-section  .slick-prev{
      left:-80px;
      padding: 0px;
      background: transparent;
      top:45%;
    }

.video-gallery.inner-page .gallery-grid{
  gap:20px;
}
.video-gallery.inner-page .video-card a img{
  width:346px;
  height:280px;
  border-radius:12px;
}

.mobile-navigation-menu {
  display:none;
}
.testimonial-slider-mobile.home-testislider{
    display:none;
  }
  .inner-hero-section.contact-inner-section  p{
    max-width:770px;
  }

  .common-link-mobon{
    display: none !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #D00000;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
    margin-top: 0px;
  }
  .common-link-moboff{
    display: flex;
  }
  .video-card .thumbnail .overlay-hover .on-moboff{
    display:flex;
  }
  .video-card .thumbnail .overlay-hover .on-mobon{
    display:none;
  }
/* Responsive */
@media (min-width: 1640px) {
  .slider-wraper-podcast{
    padding:40px 0px 72px 20%;
  }
}

@media (max-width: 1330px) {
  .slider-wraper-podcast{
    padding:40px 0px 72px 10%;
  }
}

@media (max-width: 1140px) {
  .slider-wraper-podcast{
    padding:40px 0px 72px 3%;
  }
  .testimonial-section .slick-next{
    display:none !important;
  }
  .testimonial-section .slick-prev{
    display:none !important;
  }
}

@media (max-width: 768px) {
  .projects-section .card-hover{
    display: none;
  }
  .video-card .thumbnail:hover .overlay-hover {
    display: none;
  }
  .video-card .thumbnail .overlay-hover{
    display: flex !important;
    background:rgb(0 0 0 / 13%);
  }
  .video-card .thumbnail:hover img {
    transform: none;
  }
  .video-card .thumbnail img{
    transition: none;
  }
  .video-card .thumbnail .overlay-hover img{
    width:42px;
    height:42px;
  }
  .video-card .thumbnail .overlay-hover .on-moboff{
    display:none;
  }
  .video-card .thumbnail .overlay-hover .on-mobon{
    display:flex;
  }
  .gallery-grid.home-gallery{
    display: none !important;
  }
  .gallery-grid.home-gallery.mobile-video-slider{
    display: flex !important;
    flex-direction: column-reverse;
    gap:0px;
  }
  .overlaymobile{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgb(0 0 0 / 13%);
    border-radius:12px;
    transition: transform 0.3s ease;
  }
  .overlaymobile img{
    width: 40px;
    height: 40px;
  }
  .gallery-grid.home-gallery.mobile-video-slider .carousel-wrapper{
      display: flex;
    transition: transform 0.3s ease;
    width:100%;
  }
  .mobile-video-slider .nav-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 0 0 20px auto !important;
    border-radius: 100px;
    background: #FFF;
    align-items: flex-start;
    width: 84px;
}
.mobile-video-slider .nav-buttons button:hover {
    background-color: #D00000;
    color: #ffffff;
}
  .mobile-video-slider .nav-buttons button {
    width: 36px;
    height: 36px;
    border-radius: 100px;
    border: none;
    background-color: #ffffff;
    cursor: pointer;
    box-shadow: none;
    color: #000000;
    font-size: 15px;
}
  .mobile-video-slider .carousel {
    display: flex;
    overflow: hidden;
}

.mobile-video-slider .carousel .video-card-slider {
   /* Optional spacing */
    position: relative;
    flex: 0 0 100%; /* Take full width (1 per view) */
    max-width: 100%;
    transition: transform 0.3s ease;
    margin-bottom:30px;
    box-sizing: border-box;
}
.mobile-video-slider .carousel .video-card-slider a{
  text-decoration: none;
}
.mobile-video-slider .carousel .video-card-slider .thumbnail{
  position: relative;
  border-radius:12px;
  overflow:hidden;
}
.mobile-video-slider .carousel .video-card-slider a h4{
  color: #1A1A1A;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px; /* 144.444% */
  letter-spacing: 0.045px;
  margin:0px;
}
.video-card-slider .meta .date {
    color: #1A1A1A;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.035px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}
.mobile-video-slider .carousel .video-card-slider .thumbnail img{
  width:100%;
  border-radius: 12px;
}
  .inner-hero-section.contact-inner-section  p{
    max-width:100%;
  }
  .testimonial-section{
    padding: 52px 20px;
  }
  .testimonial-slider.home-testislider{
    display:none;
  }
  .testimonial-slider-mobile.home-testislider{
    display: flex !important;
    flex-direction: column;
    gap: 0px;
  }
  .testimonial-slider-mobile.home-testislider .carousel {
        display: flex;
        overflow: hidden;
    }
    .testimonial-slider-mobile.home-testislider .carousel-wrapper {
      display: flex;
      transition: transform 0.3s ease;
      width: 100%;
    }
  .testimonial-slider-mobile.home-testislider .testimonial-card{
    flex-direction: column;
    height:auto !important;
    border-radius: 12px;
    background: linear-gradient(120deg, #EFF5FE 3.38%, #FAF5FF 97.27%);
    position: relative;
    padding: 15px;
        flex: 0 0 100%;
        max-width: 100%;
        transition: transform 0.3s ease;
        margin-bottom: 0px;
        box-sizing: border-box;
  }
  .testimonial-slider-mobile.home-testislider .nav-buttons {
        display: flex;
        gap: 10px;
        justify-content: center;
        margin: 0 0 20px auto !important;
        border-radius: 100px;
        background: linear-gradient(120deg, #EFF5FE 3.38%, #FAF5FF 97.27%);
        align-items: flex-start;
        width: 84px;
  }
      .testimonial-slider-mobile.home-testislider .nav-buttons button {
        width: 36px;
        height: 36px;
        border-radius: 100px;
        border: none;
        background-color: transparent;
        cursor: pointer;
        box-shadow: none;
        color: #000000;
        font-size: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .testimonial-slider-mobile.home-testislider .nav-buttons button:hover {
        background-color: #D00000;
        color: #ffffff;
    }
  .testimonial-slider-mobile.home-testislider .nav-buttons button:hover img.play-black-hoveroff{
    display: none !important;
  }
  .testimonial-slider-mobile.home-testislider .nav-buttons button img.play-black-hoveroff{
    display: flex !important;
  }
  .testimonial-slider-mobile.home-testislider .nav-buttons button img.play-white-hoveron{
    display: none !important;
  }
  .testimonial-slider-mobile.home-testislider .nav-buttons button:hover img.play-white-hoveron{
    display: flex !important;
  }
  .testimonial-slider-mobile.home-testislider .testimonial-card img{
    width:72px;
    height:72px;
    border-radius:100px;
    margin-bottom: 10px;
  }
  
  .testimonial-slider-mobile.home-testislider .testimonial-card .student-name1{
    margin-bottom: 10px;
  }
  .testimonial-slider-mobile.home-testislider .testimonial-card .student-name1 span{
    display: block;
    color: #D00000;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
  }
  .testimonial-conatiner.inner-testipage .testimonial-card{
    gap:0px;
    padding: 14px;
    margin-bottom: 20px;
  }
  .testimonial-conatiner.inner-testipage .student-name {
    position: unset;
    width: 100% !important;
    background: transparent;
    box-shadow: none;
    height: auto;
    display: block;
    margin-top: 10px;
    margin-bottom: 4px;
    font-style: normal;
}
.testimonial-conatiner.inner-testipage{
  padding: 52px 20px 32px 20px;
}
.testimonial-conatiner.inner-testipage .testimonial-image img {
    width: 72px;
    height: 72px;
    border-radius: 50%; /* ensures a perfect circle */
    object-fit: cover;
}
  .testimonial-slider-mobile.home-testislider .testimonial-card  .testimonial-text{
    padding:0px;
    background: transparent;
    height:auto;
    border-radius:0px !important;
    display: block;
  }
  .mobile-navigation-menu{
    display: block;
    width:100%;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0 20px;
    top:20px;
  }
  .inner-hero-section.contact-inner-section{
    padding:130px 20px 20px 20px;
  }
  .inner-hero-section.contact-inner-section h1{
    margin-top:0px;
  }
  /* Header */
  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    background: linear-gradient(to right, #fff, #fef1d2);
    border-radius: 72px;
    background: rgba(255, 255, 255, 0.72);
    height: 86px;
    margin-bottom: 30px;
  }

  .mobile-header a img{
    width:85px;
  }


.menu-icon {
  font-size: 24px;
  background: red;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(104deg, #FAF5FF 3.81%, #FFF0C5 97.4%);
  z-index: 1000;
  overflow-y: auto;
  transition: right 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  padding: 0px 0px;
  align-items: flex-start;
  justify-content: space-between;
}

.mobile-menu.open {
  right: 0;
}

.close-icon {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 20px;
  width:100%;
}

/* Menu List */
body.menu-open {
  overflow: hidden;
  height: 100vh;
  background: linear-gradient(104deg, #FAF5FF 3.81%, #FFF0C5 97.4%);
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0px 0 0px 0px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: self-start;
  gap:0px;
}

.mobile-menu ul li {
  margin: 0px 0;
  border-bottom: 1px solid #ffffff;
  text-align: left;
  padding:15px 20px;
  width:100%;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: #1A1A1A;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* Social Icons */
.social-icons {
  width:100%;
  padding:0px 30px;
}
.social-icons ul{
  margin: 24px 0 24px 0;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-direction: row;
}
.social-icons ul li{
  padding: 0px;
  border-bottom: none;
  text-align: center;
}
.social-icons ul li  a {
    text-decoration: none;
}
  .podcast-card {
    width: 200px;
  }

  .nav-btn {
    display: none;
  }
  .nav-btn.below {
    display: none; /* hide for mobile if desired */
  }
  
  .course-header h2 {
    font-size: 24px;
  }

  .course-card {
    width: 100%;
    margin-bottom: 40px;
  }
  .subscribe-box{
    flex-direction: column;
    margin-top: 30px;
    padding:20px;
  }
  .subscribe-box .section-header{
    width:100%;
    padding: 0px !important;
  }
  .subscribe-form{
    width:100%;
    padding:20px 15px;
  }
  .message-box{
    width:100%;

  }
  .subscribe-form button{
    margin:0 auto;
    width:100%;
  }

  .carousel-btn {
    display: none; /* hide buttons for mobile - use swipe */
  }
  .logo{
    display: none;
  }
  .slider {
    border-radius: 0px;
  }
  .card {
    flex: 0 0 320px;
    height: auto;
  }
  .hero-section h1 {
    font-size: 36px;
    line-height: 50px; 
  }
  .hero-section h2 {
    font-size: 36px;
    line-height: 50px;
  }
  .nav-container {
    padding: 8px 14px;
  }
  .nav-menu {
    gap: 12px;
    font-size: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .about-container {
    flex-direction: column;
    text-align: center;
    gap:20px;
  }
  .about-badge {
    justify-content: center;
  }
  .newsletter-cards.innernews{
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap:20px;
    margin-bottom: 0px;
  }
  .course-container{
    padding:52px 20px;
    flex-direction: column;
  }
  .course-section .section-header{
    width:100%;
  }
  .course-carousel{
    flex-direction: column;
    width:100%;
  
  }
  .card-contentnew{
    width:auto;
    margin-top:-20px;

  }
  .podcast-section{
    padding:52px 0px 52px 20px;
  }
  .slider-wraper-podcast.inner-paodcast{
    padding:0px;
  }
  .news-letter-section.contact-section{
    padding:20px 20px 52px 20px;
  }
  .newsletter-cards.contact-info{
    margin-bottom: 0px;
  }
  .nav-wrapper{
    display: none;
  }
  .inner-hero-section{
    height:auto;
    padding:130px 20px 52px 20px;
  }
  .inner-hero-section  h1{
    font-size:36px;
    line-height: 46px;
  }
  .inner-hero-section  h1 span{
    font-size:36px;
    line-height: 46px;
  }
  .inner-hero-section p{
    font-size:16px;
    line-height: 24px;
    max-width: 100%;
  }
  .news-letter-section{
    padding:52px 20px;
    background: #ffffff;
  }
  .buttons .btn{
    gap:10px;
  }
  .buttons .btn img{
    margin-right:0px;
  }
  .buttons{
    flex-direction: column;
    gap:16px;
  }
  .video-gallery{
    padding:52px 20px;
  }
  .video-card {
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
    width: 46%;
  }
  .video-gallery.inner-page .gallery-grid{
    display: flex;
    flex-flow: wrap;
  }
  
  .gallery-grid.success-story-inner .video-card {
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
    width: 100%;
  }
  .gallery-grid{
    gap:20px;
  }
  .meta{
    padding: 12px 0px 0px 0px;
  }
  .hero-section{
    padding: 130px 20px 32px 20px;
    height:auto;
  }
  .about-section{
    padding: 52px 20px;
  }
  .slider-section{
    margin:0px 0px 0px 0px;
    max-width: 100%;
    padding:0px;
  }
  .section-header h2{
    font-size: 28px;
    line-height: 38px;
  }
  .section-header .tag{
    font-size: 11px;
  }
  .about-container .section-header{
    flex:none;
  }
  .about-container  .section-header p{
    text-align: left;
  }
  .video-wrapper{
    border-radius: 6px;
  }
  .about-video {
    flex: unset;
  }
  .projects-section{
    padding: 52px 20px;
  }
  .projects-section .slider-arrows{
    padding-left:0px;
  }
  .gallery{
    padding: 52px 0px;
  }
  .gallery .section-header{
    padding: 0px 20px;
  }
  .course-section{
    display: none;
  }
  .gallery-grid.home-gallery .video-card {
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
    width: 100%;
  }
  .slider-wraper-podcast{
    padding: 40px 0px 0px 0px;
    max-width: 100%;
    float: left;
    display: flex;
    flex-direction: column-reverse;
  }
  .slider-wraper-podcast .nav-buttons{
    margin: 0 20px 20px auto !important;
  }
  section.podcast-section.home-section .section-header{
    align-items: flex-start;
    justify-content: flex-start;
    padding-right: 20px !important;
  }
  .section-header p{
      max-width: 100% !important;
  }
  section.podcast-section.home-section .section-header p{
      max-width: 100%;
      text-align: left;
  }
  .testimonial-section .slick-prev{
    display: none !important;
  }
  .testimonial-section .slick-next{
    display: none !important;
  }
  .section-header h2 .highlight{
    font-size:28px;
    line-height:38px;
  }
  .slider img{
    border-radius:0px;
  }
  .podcast-section .section-header{
    padding: 0px !important;
  }
  .projects-section .card {
    flex: 0 0 100% !important; /* take full width */
    margin-right: 0 !important; /* no gap */
  }

  #project-slider {
    scroll-snap-type: x mandatory; /* smooth snapping per card */
  }

  #project-slider .card {
    scroll-snap-align: start;
  }
  .slider-wraper-podcast .card a .col-box{
    padding-bottom: 0px;
  }
  .newsletter-card.project-card-inner .meta{
    flex-direction: column;
  }
  .newsletter-card.project-card-inner .meta img{
    width:100%;
  }
  .newsletter-card.project-card-inner .web-off{
    display:block;
    margin-bottom: 0px;
    color:#1A1A1A;
  }
  .perma-model{
    margin:20px 0;
  }
  .newsletter-card.project-card-inner .mobile-off{
    display:none;
  }
  .newsletter-cards.contact-info .newsletter-card .btn.red{
    padding:13px 0px;
  }
  .common-link-mobon{
    display: flex !important;
  }
  .common-link-moboff{
    display: none !important;
  }
  .newsletter-cards{
    margin-bottom: 30px;
  }
  .onePic a img{
    height:336px;
    max-width: 238px;
  }
  .twoPics {
      max-width: 223px;
      gap:10px;
  }
  .marquee-inner{
    gap:10px;
  }
  .twoPics  a img{
    height:160px;
    max-width: 223px;
  }
  .onePic {
      max-width: 238px;
  } 
  .section-header.beacon-heading h2{
    text-align: left;
  }
  .podcast-section.all-poadcast{
    padding:52px 20px;
  }
  iframe{
    height:100%;
  }
  .map-min{
    min-height:auto;
  }
  .poadcast-grid .card{
    height:auto;
  }
}

/* Responsive */
@media (max-width: 600px) {
  .subscribe-form {
    flex-direction: column;
  }
}

@media screen and (min-width: 768px) {
        .readmore-btn {
            display: none;
        }
        .more-text {
            display: block !important;
        }
        .play-wrapper.display-only-mobile{
          display:none;
        }
        .readmore-container {
          display: none; /* hide toggle section */
        }
    }

    /* Mobile default: hide more text */
    @media screen and (max-width: 767px) {
        .more-text {
          display: none;
          color: #1A1A1A;
          font-size: 14px;
          font-style: normal;
          font-weight: 400;
          line-height: 140%;
          margin-bottom: 0px;
          text-align: left;
        }
        button.readmore-btn {
            border: none;
        height: auto;
        width: 50%;
        background: transparent;
        padding: 0;
        font-size: 16px;
        color: #D00000;
        font-weight: 500;
        margin: 10px 0 28px 0;
        text-align: left;
        }
        a.readmore-btnnew {
            border: none;
        height: auto;
        background: transparent;
        padding: 0;
        width: 50%;
        font-size: 16px;
        color: #D00000;
        font-weight: 500;
        margin: 10px 0 28px 0;
        text-align: left;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
        }
        .buttons-projects-mobile{
          display:flex;
          align-items: center;
          justify-content: space-between;
        }
        .play-wrapper.display-only-mobile{
          display:flex;
          padding: 0px 0px;
        }
        .projects-section .card:hover .card-img{
          opacity: 1 !important;
        }
        .play-wrapper.display-only-mobile a.play-button {
          width:38px;
          height:36px;
        }
        .play-wrapper.display-only-mobile a.play-button img{
          width:38px;
          height:36px;
        }
        .watch-label span{
          font-size: 16px;
        }
        .watch-label small{
          font-size: 14px;
        }
    }
