@import "common.css";
:root {
    --main-color: #f77f00;
  --text-color: #333333;
  --heading-color: #1a1a1a;
  --bg-light-gray: #f8f8f8;
  --bg-beige: #f7f1e3;
  --bg-dark: #222222;
  --bg-white: #ffffff;
  --border-color: #cccccc;
}
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}
.hero-section {
    position: relative;
    width: 100%;
    height: 58vh; 
    background: url("../../img/PERSON.JPG") no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 3em;
}

@media (max-width: 1024px) {

    .hero-content h1 {
        font-size: 2em;
    }
}
.about-section, .powerup-section {
  padding-top: 80px;
  text-align: center;
}

.content-wrapper {
  max-width: 700px;
  margin: 0 auto;
}
.main-heading {
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	font-weight: 700;
	line-height: 1.2;
	color: #222;
	margin-bottom: 20px;
}

.about-section h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 30px;
}

.rainbow-dots {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-bottom: 40px;
  margin-top: 50px;
}

.description {
 font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #0e0e0e;
  margin-bottom: 20px;
}

.powerup-section {
  padding-top: 10px;
}

.powerup-section h3 {
    font-size: 2.5em;
    margin-bottom: 25px;
    font-weight: 600;
}
@media (max-width: 768px) {
  .about-section, .powerup-section {
    padding: 60px 15px;
  }

  .about-section h2 {
    font-size: 2rem;
  }

  .description {
    font-size: 1rem;
  }

  .powerup-section h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .about-section, .powerup-section {
    padding: 40px 10px;
  }
  
  .about-section h2 {
    font-size: 1.5rem;
  }
}
.modules-section {
  text-align: center;
  padding: 45px 20px;
}

.image-container {
  max-width: 900px;
  margin: 0 auto;
  justify-content: center;
  border-radius: 10px;
}

.modules-image {
  width: 100%;
  height: auto;
  display: block;
}

.modules-text-content {
  margin-top: 80px;
  margin-bottom: 20px;
}

.modules-text-content h3 {
    font-size: 2.5em;
    margin-bottom: 25px;
    font-weight: 600;
}

.modules-text-content p {
  font-size: 1.1rem;
  color: #555;
}
@media (max-width: 768px) {
  .modules-section {
    padding-top: 60px 15px;
  }
  
  .modules-text-content h3 {
    font-size: 1.5rem;
  }
  
  .modules-text-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .modules-section {
    padding-top: 40px ;
    padding-bottom: 10px;
  }
}
:root {
 --color-top-red: #F42B37; 
  --color-top-orange: #DD6822;
  --color-top-yellow: #FB911D; 
  --color-top-light-green: #F1C907;
  --color-top-dark-blue: #8AC325; 

  --color-bottom-dark-green: #34A325; 
  --color-bottom-sky-blue: #33A7E0; 
  --color-bottom-medium-blue: #0571BF; 
  --color-bottom-dark-purple: #21257B; 
  --color-bottom-light-purple: #6C208A; 

  --text-dark-gray: #666666; 
  --text-medium-gray: #333333; 
}

.module-details-section {
  text-align: center;
  padding: 40px 20px 80px; 
}

.module-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px; 
  max-width: 1200px; 
  margin: 0 auto; 
}

.top-row {
  margin-bottom: 60px; 
}


.module-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px; 
}


.dot {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.top-card .dot {
  width: 140px; 
  height: 140px;
  margin-bottom: 20px; 
}

.top-card .dot h4 {
  color: white;
  font-size: 0.9rem; 
  font-weight: bold;
  line-height: 1.3; 
  padding: 0 10px;
  margin: 0; 
  max-width: 100%; 
  box-sizing: border-box; 
}
.bottom-card .dot {
  width: 140px; 
  height: 140px;
  margin-bottom: 15px; 
}
.bottom-card .dot h4 {
  color: white;
  font-size: 0.9rem; 
  font-weight: bold;
  line-height: 1.3; 
  padding: 0 10px;
  margin: 0; 
  max-width: 100%; 
  box-sizing: border-box; 
}

.module-title-bottom {
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--text-medium-gray);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.module-description { 
  font-size: 0.88rem; 
  line-height: 1.5;
  color: var(--text-medium-gray);
  margin: 0;
}

.dot-top-red { background-color: var(--color-top-red); }
.dot-top-orange { background-color: var(--color-top-orange); }
.dot-top-yellow { background-color: var(--color-top-yellow); }
.dot-top-light-green { background-color: var(--color-top-light-green); }
.dot-top-dark-blue { background-color: var(--color-top-dark-blue); }

.dot-bottom-dark-green { background-color: var(--color-bottom-dark-green); }
.dot-bottom-sky-blue { background-color: var(--color-bottom-sky-blue); }
.dot-bottom-medium-blue { background-color: var(--color-bottom-medium-blue); }
.dot-bottom-dark-purple { background-color: var(--color-bottom-dark-purple); }
.dot-bottom-light-purple { background-color: var(--color-bottom-light-purple); }
@media (max-width: 1200px) { 
  .module-row {
    gap: 15px;
  }
  .top-card .dot {
    width: 130px;
    height: 130px;
  }
  .top-card .dot h4 {
    font-size: 0.85rem;
  }
  .bottom-card .dot h4{
    font-size: 0.85rem;
  }
  .bottom-card .dot {
    width: 130px;
    height: 130px;
  }
}

@media (max-width: 1024px) {
  .module-row {
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px; 
  }
  .top-row {
    margin-bottom: 50px; 
  }
  .top-card .dot {
    width: 120px;
    height: 120px;
  }
  .top-card .dot h4 {
    font-size: 0.8rem;
  }
  .bottom-card .dot {
    width: 120px;
    height: 120px;
  }
  .module-title-bottom {
    font-size: 1.05rem;
  }
  .module-description {
    font-size: 0.82rem;
  }
}

@media (max-width: 768px) {
  .module-row {
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px; 
  }
  .top-row {
    margin-bottom: 40px;
  }
  .module-details-section {
    padding: 30px 15px 60px; 
  }
  .top-card .dot {
    width: 110px;
    height: 110px;
  }
  .top-card .dot h4 {
    font-size: 0.75rem;
  }
  .bottom-card .dot {
    width: 110px;
    height: 110px;
  }
  .module-title-bottom {
    font-size: 1rem;
  }
  .module-description {
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .module-row {
    grid-template-columns: 1fr; 
    gap: 40px;
  }
  .top-row {
    margin-bottom: 30px;
  }
  .module-details-section {
    padding: 20px 10px 40px; 
  }
  .top-card .dot {
    width: 130px;
    height: 130px;
  }
  .top-card .dot h4 {
    font-size: 0.9rem;
  }
  .bottom-card .dot {
    width: 130px;
    height: 130px;
  }
  .module-title-bottom {
    font-size: 1.1rem;
  }
  .module-description {
    font-size: 0.85rem;
  }
}
.formats-section {
   max-width: 1200px;     
  margin: 0 auto;
  padding: 2rem;
}
.powerup-offerings-section {
    padding: 40px 10px;
    background-color: #fff; 
    text-align: center; 
}

.powerup-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 25px; 
    max-width: 1200px;
    margin: 0 auto; 
}

.powerup-card {
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden; 
    text-align: left; 
    display: flex; 
    flex-direction: column; 
}

.card-image-wrapper {
    width: 100%;
    height: 180px; 
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.card-title {
    font-size: 1.3em;
    font-weight: 600;
    color: #333;
    margin: 20px 20px 10px 20px; 
    text-align: center;
}

.card-description {
    font-size: 0.95em;
    color: #555;
    margin: 0 20px 20px 20px; 
    line-height: 1.6;
    flex-grow: 1; 
}
@media (max-width: 1024px) {
    .powerup-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .powerup-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .powerup-card {
        margin-left: auto;
        margin-right: auto;
        max-width: 400px; 
    }
}


.formats-text-header {
  max-width: 800px;
  margin: 0 auto 50px;
    text-align: center;
    font-size: 1.2rem;
}


.insights-section {
    padding: 80px 20px;
    background-color: #f0f0f0;
    text-align: center;
}

.insights-header {
    max-width: 600px;
    margin: 0 auto 50px;
}

.insights-header h2 {
    font-size: 2.2em;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.insights-details {
    font-size: 0.95em;
    color: #666;
    line-height: 1.5;
}

.video-teasers-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.video-teaser-card {
    flex-basis: 50%; 
    max-width: 300px;
}

.video-thumbnail-wrapper {
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    padding: 44.25%;
    height: 0;
}

.video-thumbnail-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid #333; 
    transition: background-color 0.3s;
}

.play-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 55%; 
    transform: translate(-50%, -50%);
    width: 0; 
    height: 0; 
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #333; 
}

.video-thumbnail-wrapper:hover .play-button {
    background-color: rgba(255, 255, 255, 1);
}
.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}
.video-player iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.video-thumbnail-wrapper.is-playing img,
.video-thumbnail-wrapper.is-playing .play-button {
    display: none;
}
.teaser-caption {
    font-size: 0.9em;
    color: #666;
    margin-top: 15px;
    line-height: 1.5;
}
.teaser{
  color: #000;
  font-weight: bold;
}

.cta-button {
    display: inline-block;
    background-color: #F42B37; 
    color: #ffffff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1.4;
    transition: background-color 0.3s, transform 0.2s;
}
.cta-button:hover {
    background-color:  #DD6822; 
}

.cta-subtext {
    display: block;
    font-size: 0.8em;
    font-weight: 400;
}

@media (max-width: 768px) {
    .video-teasers-container {
        flex-direction: column; 
        justify-content: center;
        align-items: center;
        gap: 20px;
        max-width:  440px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 50px;
        width: 100%;
    }

    .video-teaser-card {
        flex-basis: auto;
        width: 100%;
        max-width: 400px; 
        margin: 0 auto;
    }

    .insights-header h2 {
        font-size: 1.8em;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .video-thumbnail-wrapper {
      width: 100%;
      
    }
}
.section-title {
	font-size: 2em;
	margin-bottom: 25px;
	font-weight: 600;
  margin-top: 50px;
}

.testimonial-section {
    padding: 0px 20px;
    background-color: #ffffff; 
    text-align: left;
}
.mini-services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.mini-service-card {
   background-color: #cccaca71;
	padding: 15px 10px;
	border-radius: 8px;
	box-shadow: 0 3px 6px -4px rgb(0 0 0 / 41%);
	font-size: 1.1em;
	font-weight: 400;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: center;
	min-width: 250px;
	flex-grow: 1;
	flex-basis: calc(33.33% - 20px);
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.3;
}

.testimonial-block {
    max-width: 950px; 
    margin: 0 auto;
    padding: 20px 0;
}
.testimonial-content{
  font-style: italic;
}

.section-subtitle {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 40px;
    color: #333;
    margin-top: 80px;
    text-align: center;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
    justify-content: center;
}
.author-details {
    display: flex;
    flex-direction: column;
}

.author-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.author-name {
    font-size: 1.1em;
    font-weight: 600;
    margin: 0 0 2px 0;
    color: #333;
}

.author-title {
    font-size: 0.9em;
    font-style: italic;
    color: #666;
    margin: 0;
}

@media (max-width: 800px) {
    .mini-services-container {
        flex-wrap: wrap;
    }
    .mini-service-card {
        flex-basis: calc(50% - 15px); 
    }
}

@media (max-width: 500px) {
    .mini-service-card {
        flex-basis: 100%; 
    }
}