/* ===== GLOBAL RESET ===== */
/* ===== BRAND VARIABLES ===== */

:root{
  --primary: #00a162;        /* Emerald Green */
  --secondary:#D4AF37;     /* Gold */
  --accent:#FFFFFF;        /* White */
  --navy:#3b4a83;          /* Current blue tone */
  --dark:#000000;
  --text:#555555;
  --light:#fafafa;
  --border:#eeeeee;
  --footer:#0f0f14;
  --shadow:rgba(0,0,0,0.08);
}
.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  overflow-x: hidden;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;

  background:
    radial-gradient(circle at 20% 30%,
      rgba(0, 0, 0, 0.35) 0%,
      transparent 35%),

    radial-gradient(circle at 80% 20%,
      rgba(0, 0, 0, 0.28) 0%,
      transparent 38%),

    radial-gradient(circle at 60% 80%,
      rgba(0, 0, 0, 0.22) 0%,
      transparent 40%),

    radial-gradient(circle at 30% 70%,
      rgba(0, 0, 0, 0.18) 0%,
      transparent 42%),

    linear-gradient(180deg,
     #00a162 100%);
}
.loader::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);

  background-size: 48px 48px;

  mask-image: radial-gradient(circle at center, black 50%, transparent 95%);
  opacity: 0.35;

  z-index: 0;
}
@keyframes rotate{
  0%{
    transform: rotate(0deg);
  }
  100%{
    transform: rotate(360deg);
  }
}
button:hover{
  cursor: pointer;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* ===== BODY BACKGROUND SPOTLIGHT EFFECT ===== */

body{
  font-family:'Inter',sans-serif;
  color:var(--dark);
  line-height:1.6;

background:
  radial-gradient(circle at 20% 30%,
    rgba(0, 0, 0, 0.35) 0%,
    transparent 35%),

  radial-gradient(circle at 80% 20%,
    rgba(0, 0, 0, 0.28) 0%,
    transparent 38%),

  radial-gradient(circle at 60% 80%,
    rgba(0, 0, 0, 0.22) 0%,
    transparent 40%),

  radial-gradient(circle at 30% 70%,
    rgba(0, 0, 0, 0.18) 0%,
    transparent 42%),

  linear-gradient(180deg,
     #00a162 100%);
}

.container {
  width: 85%;
  margin: auto;
}

.section-padding {
  padding: 30px 0;
}

h1,h2,h3,h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color:var(--secondary);
}

h1 {
  font-size: 64px;
}

h2 {
  font-size: 46px;
}

h3 {
  font-size: 24px;
}

p {
  font-size: 17px;
  color:var(--text);
}

a {
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary,
.btn-light,
.btn-outline {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
}

.btn-primary {
 background:var(--primary);
  color:var(--accent);
}

.btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.btn-light{
  background:var(--accent);
  color:var(--dark);
}

.btn-outline{
  border:1px solid var(--secondary);
  color:var(--secondary);
}

.btn-outline:hover{
  background:var(--secondary);
  color:var(--dark);
}

/* ===== HEADER ===== */

.header {
    background: #ffffff;
    border-bottom: 1px solid var(--secondary);
    padding: 20px 0;
}

.logo-img {
    height: 100px;
    width: auto;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    font-size: 25px;
    margin: 0px 10px;
}
.nav a:hover{
    color: var(--secondary);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
        width: 85%;
}
/* Tablet */
@media (max-width: 992px) {
    .logo-img {
        height: 80px;
    }

    .nav a {
        font-size: 20px;
        margin: 0 8px;
    }

    .header .container {
        width: 90%;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        gap: 15px;
    }

    .nav {
        gap: 20px;
    }

    .nav a {
        font-size: 25px;
    }

    .logo-img {
        height: 100px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .logo-img {
        height: 100px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .nav a {
        font-size: 25px;
        margin: 10px;
    }

    .header {
        padding: 15px 0;
    }
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 0;
    background: url(Photos/hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    position: relative;
    height: auto;
    background-attachment: fixed;
    border-top: var(--secondary) 2px solid;
    border-bottom: var(--secondary) 2px solid;
}
.hero::before{
 content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55); /* Adjust opacity for readability */
  z-index: -1;
}
/* Responsive Hero Image for Mobile / Tablet */



.hero-headline {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 40px;
    color: white;
    letter-spacing: 2px;
}
.hero-headline span.color{
    color: var(--secondary);
    font-style: italic;
}
.hero-subhead {
    font-size: 35px;
    margin-bottom: 30px;
    color: white;
    font-weight: 500;
    letter-spacing: 1px;
}
@media (max-width: 768px) {
    .hero {
        background-image: url(Photos/website\ 6.jpg);
        background-position: center;
        padding: 50px 10px; /* adjust padding for smaller screens */
    }
    .hero .container{
      width: 95%;
    }
    .hero::before {
        background: rgba(0, 0, 0, 0.6); /* slightly adjust overlay if needed */
    }
    .hero-headline{
      overflow-wrap: break-word;
      font-size: 40px;
    }
}
/* CTA BUTTON */
.cta-btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 25px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    margin-top: 40px;
    background: linear-gradient(90deg, #9b8155, #002550);
    background-size: 100% 100%;
    background-position: left;
    color: #fff;
    transition: all 0.5s ease;
}

.cta-btn:hover {
    background-position: right; /* shifts the gradient smoothly */
    transform: scale(1.05);
    background-size: 200% 100%;
}

/* HERO SOCIAL ICONS */
.hero-socials {
    margin-top: 2rem;
    display: flex;
    gap: 1.2rem;
    justify-content: center;   /* or flex-start if you want */
}

.hero-socials .social-link {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.25s ease;
    backdrop-filter: blur(2px);
}

.hero-socials .social-link i {
    font-size: 25px;
    color: white;  /* change if you want brand colors */
    transition: color 0.25s ease;
}

.hero-socials .social-link:hover {
    transform: scale(1.12);
    border-color: #002550;
}

.hero-socials .social-link:hover i {
    color: #9b8155;
}

/* ===== CREDIBILITY BAR ===== */

.credibility-bar {
 background:var(--primary);
  color:var(--accent);
  padding: 40px 0;
    border-bottom:2px solid var(--accent);

}
.credibility-bar p{
    font-size: 25px;
    color: var(--accent);
    border-right: 3px solid var(--accent);
}
.credibility-bar i{
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 10px;
}
.credibility-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  text-align: center;
  gap: 20px;
  font-weight: 500;
  font-size: 15px;
}

/* ===== SPLIT SECTIONS ===== */
.about {
  position: relative;
  background: var(--accent);
  overflow: hidden;
    border-bottom:2px solid var(--secondary);

}

/* squiggle overlay */
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Cpath d='M0 100 C 100 0, 300 200, 400 100' stroke='%23c9a46a' stroke-width='2' fill='none' opacity='0.25'/%3E%3Cpath d='M0 300 C 100 200, 300 400, 400 300' stroke='%23c9a46a' stroke-width='2' fill='none' opacity='0.2'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  background-repeat: repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}
.about > * {
  position: relative;
  z-index: 2;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.image-wrap img {
  width: 100%;
  border-radius: 18px;
  height: auto;
    box-shadow: 0 20px 50px rgba(38, 247, 31, 0.5);

}

.section-tag {
 color:var(--secondary);
   font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 14px;
}


.text-wrap h2 {
  margin-bottom: 20px;
  color:var(--primary);
}

.text-wrap p {
  margin-bottom: 20px;
  color: var(--dark);
  font-size: 22px;
}
.credibility-line {
  margin-top: 30px;
  font-size: 20px;
  line-height: 1.6;
  color: var(--secondary);
  max-width: 700px;
  font-style: italic;
  border-left: 3px solid var(--secondary);
  padding-left: 12px;
}
.organizations {
  background: var(--light);
  text-align: center;
}
.organizations h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--dark);
}
.organizations .section-tag {
  display: inline-block;
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.sizzle-reel{
  background: var(--accent);
  text-align:center;
}

.sizzle-reel h2{
  font-size:clamp(2rem,4vw,3rem);
  margin:15px 0;
  color:var(--primary);
}

.sizzle-reel p{
  max-width:800px;
  margin:0 auto 40px;
  color:var(--text);
  line-height:1.8;
  font-size: 22px;
}

.sizzle-reel .video-wrapper{
  position:relative;
  width:100%;
  max-width:1500px;
  margin:auto;
  padding-bottom:56.25%;
  height:50px;
  overflow:hidden;
  border-radius:20px;
}

.sizzle-reel .video-wrapper iframe{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  border:0;
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
  align-items: center;
}

.logo-grid img {
  width: 100%;
  max-width: 300px;
  height: 180px;
  object-fit: contain;
  margin: 0 auto;

  background: #fff;
  padding: 18px;
  border-radius: 14px;

  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.05);

  transition: all .3s ease;
}

.logo-grid img:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}
.organizations::before {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: var(--secondary);
  margin: 0 auto 20px auto;
  border-radius: 10px;
}
/* ===== SERVICES ===== */

#services .section-center {
  text-align: center;
  width: 100%;
  margin: auto auto 60px;
  position: relative;
  overflow: hidden;
}
#services {
  position: relative;
  background: var(--primary);
  overflow: hidden;
      border-bottom:2px solid var(--secondary);

}
#services::before {
  content: "";
  position: absolute;
  inset: 0;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 30 H60 M30 0 V60' stroke='%237cc7ff' stroke-width='1' opacity='0.1'/%3E%3C/svg%3E");
background-size: 50px 50px;
  background-repeat: repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

#services .card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
#services .section-tag{
  color: var(--accent);
}
#services h2{
  color: var(--accent);
}
.service-card {
  position: relative;
  padding: 38px;
  border-radius: 18px;

  /* layered look */
  background: linear-gradient(
    145deg,
    rgba(30, 255, 41, 0.12),
    rgba(0,0,0,0.15)
  );

  border: 1px solid rgba(124,199,255,0.18);
  backdrop-filter: blur(12px);

  transition: all 0.35s ease;
  overflow: hidden;

  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}
.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
  border-color: rgba(124,199,255,0.45);
}
.service-card h3{
  color: var(--accent);
  font-weight: 600;
}
.service-card p{
  font-size: 20px;
  color: var(--accent);
  margin-top: 10px;
}
.service-card::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.08),
    transparent
  );
  transform: rotate(25deg);
  transition: 0.6s ease;
  opacity: 0;
}

.service-card:hover::before {
  top: 0;
  opacity: 1;
}
@media (max-width: 900px) {
  #services .card-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 30px;
  }
}

/* ===== TESTIMONIAL ===== */
.testimonial{
  background-color: var(--accent);
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Cpath d='M0 100 C 100 0, 300 200, 400 100' stroke='%23c9a46a' stroke-width='2' fill='none' opacity='0.25'/%3E%3Cpath d='M0 300 C 100 200, 300 400, 400 300' stroke='%23c9a46a' stroke-width='2' fill='none' opacity='0.2'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  background-repeat: repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}
.testimonial > * {
  position: relative;
  z-index: 2;
}
.quote-box {
  max-width: 900px;
  margin: 0px auto;
  text-align: center;
  padding: 60px 40px;
  position: relative;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    var(--secondary)
  );
  border: 1px solid rgba(70, 247, 70, 0.7);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.quote-box p {
  font-size: 34px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--accent);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.quote-box span {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

/* ===== CTA ===== */

.cta-box {
   background:var(--accent);
  color:var(--accent);
  padding: 70px;
  border-radius: 24px;
  text-align: center;
  border: 2px solid var(--secondary);
}
.cta-box img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22);
  border: 2px solid rgba(212, 175, 55, 0.25); /* gold accent */
}
.cta-box h2 {
  color:var(--primary);
}

.cta-box p {
  max-width: 900px;
  margin: 20px auto 30px;
  color: var(--dark);
  font-size: 20px;
}

.section-tag.light {
  color: var(--secondary);
}
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: var(--primary);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  text-decoration: none;
  box-shadow:
    0 12px 30px rgba(0,0,0,0.25),
    0 0 18px rgba(31,122,102,0.25);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.btn-light:hover {
  transform: translateY(-4px) scale(1.02);

  background: linear-gradient(
    135deg,
    var(--secondary)
  );
  transition: .35s ease;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.35),
    0 0 24px rgba(31,122,102,0.4);
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.secondary-btn {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.secondary-btn:hover {
  background: rgba(255,255,255,0.08);
  color: var(--primary);
}
.speaking-hero {
  padding: 60px 0;
  background: linear-gradient(
  135deg,
  rgba(15, 92, 77, 0.75),
  rgba(212, 175, 55, 0.65)
),
    url("photos/website\ 6.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  background-attachment: fixed;
  border-bottom: 2px solid var(--secondary);
}

.speaking-intro img {
  display: block;
  margin: 0 auto 40px auto; /* centers + space below */
  max-width: 500px; /* controls size */
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.speaking-hero h1 {
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 1px;
  color: var(--accent);
}

.speaking-hero .subtitle {
  font-size: 30px;
  width: 75%;
  margin: 0 auto;
  line-height: 1.6;
  color: var(--accent);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 10px;
}

.video-card h3 {
  margin-bottom: 15px;
  color: #fff;
  font-size: 22px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 18px;
}
.video-wrapper2 {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.hero-socials {
    margin-top: 2rem;
    display: flex;
    gap: 1.2rem;
    justify-content: center;   /* or flex-start if you want */
}

.hero-socials .social-link {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.25s ease;
    backdrop-filter: blur(2px);
}

.hero-socials .social-link i {
    font-size: 25px;
    color: var(--accent);  /* change if you want brand colors */
    transition: color 0.25s ease;
}

.hero-socials .social-link:hover {
    transform: scale(1.12);
    border-color: var(--secondary);
}

.hero-socials .social-link:hover i {
    color: var(--primary);
}
.video-card video {
  width: 100%;
  border-radius: 8px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 38px;
  margin-top: 28px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--secondary),
    #e6c55a
  );
  color: var(--accent);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  box-shadow:
    0 12px 30px rgba(0,0,0,0.28),
    0 0 18px rgba(212,175,55,0.25);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
  position: relative;
  overflow: hidden;
  transition: .3s;
}
.cta-btn:hover {
  transform: translateY(-4px) scale(1.02);
  background: linear-gradient(
    135deg,
    #f0cd63,
    var(--secondary)
  );
  box-shadow:
    0 18px 42px rgba(0,0,0,0.35),
    0 0 24px rgba(212,175,55,0.4);
    color: var(--dark);
    transition: .3s;
}
.cta-btn::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.28),
    transparent
  );
  transform: rotate(25deg);
  transition: 0.7s ease;
  opacity: 0;
}
.cta-btn:hover::before {
  top: 0;
  opacity: 1;
}
.speaking-videos{
  padding: 50px 5px;
  background: var(--accent);
  border-bottom: 2px solid var(--secondary);
 }
 .speaking-videos h2{
  text-align: center;
}
.video-subtitle{
  text-align: center;
  color: var(--dark);
  font-size: 22px;
  margin-top: 15px;
}
@media (max-width: 576px) {
 .video-grid{
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
 }
 .speaking-videos{
  padding: 30px 5px;
 }

 .speaking-hero .subtitle{
  width: 100%;
 }
}
.speaking-topics {
  padding: 40px 0;
  background: linear-gradient(
    180deg,
    rgba(15, 92, 77, 0.08),
    var(--secondary)
  );
  color: #fff;
  text-align: center;
}

.topics-media {
  color: #fff;
}

.topics-image {
  margin-top: 30px;
}

.topics-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;

  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
  border: 1px solid rgba(212,175,55,0.2);
}
.topics-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.section-subtitle {
  margin: 18px auto 18px;
  color: var(--accent);
  line-height: 1.7;
  font-size: 23px;
}

.topics-grid {
  display: grid;
  gap: 24px;
}
@media (max-width: 1190px) {
  .topics-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .topics-media {
    text-align: center;
  }
}

.topic-card {
  position: relative;
  padding: 34px;
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(11, 66, 18, 0.25),
    rgba(0, 0, 0, 0.4)
  );
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
  transition: all 0.35s ease;
  text-align: left;
}

.topic-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.topics-image {
  display: flex;
  justify-content: center;
  margin: 25px 0 25px;
}

.topics-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  border: 1px solid rgba(212,175,55,0.25);
}
.topic-icon {
  font-size: 35px;
  color: var(--accent);
  margin-bottom: 14px;
  display: inline-block;
}
.topic-card:hover .topic-icon {
  transform: scale(1.1);
  transition: 0.3s ease;
}
.topic-card h3 {
  color: var(--dark);
  margin-bottom: 12px;
  font-size: 26px;
  letter-spacing: 0.3px;
}
.topic-card p{
  font-size: 20px;
  color: var(--accent);
}
.audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.speaking-audience {
  padding: 40px 0;
    background: linear-gradient(
    360deg,
    rgba(15, 92, 77, 0.08),
    var(--secondary)
  );
  color: #fff;
  text-align: center;
  border-bottom: 2px solid var(--secondary);
}
.speaking-audience h2{
  color: var(--accent);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.audience-icon {
  display: block;
  font-size: 30px;
  margin-bottom: 10px;
  color: var(--primary);
}

.audience-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  border-radius: 14px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  font-size: 23px;
}

.audience-card:hover {
  transform: scale(1.03);
  border-color: rgba(212,175,55,0.4);
}
@media (max-width: 1190px) {
  .audience-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .audience-content {
    text-align: center;
  }
}
@media (max-width: 1000px) {
  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
    .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 650px) {
  .topics-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .topic-card {
    padding: 26px;
  }
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .audience-card {
    padding: 18px;
    text-align: center;
  }
}
.author-books {
  padding: 40px 0;
  background: var(--accent);
  border-bottom: 2px solid var(--secondary);
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.author-books::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Cpath d='M0 100 C 100 0, 300 200, 400 100' stroke='%23c9a46a' stroke-width='2' fill='none' opacity='0.25'/%3E%3Cpath d='M0 300 C 100 200, 300 400, 400 300' stroke='%23c9a46a' stroke-width='2' fill='none' opacity='0.2'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  background-repeat: repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
.author-books > * {
  position: relative;
  z-index: 1;
}
.book-header h1 {
  font-size: 50px;
  color: var(--primary);
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.book-header p {
  width: 75%;
  margin: 15px auto;
  font-size: 25px;
  line-height: 1.6;
  color: var(--secondary);
}

.books-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.books-grid h2{
  font-size: 30px;
  color: var(--dark);
  letter-spacing: 1px;
  margin: 20px 0;
}
.books-grid p{
  font-size: 25px;
  margin: 20px 0;
}

.book-card {
  background: rgba(255, 255, 255, .7);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  text-align: center;
  transition: 0.3s ease;
  border: 2px solid var(--primary);
}

.book-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  background: var(--secondary);
  border: 2px solid white;
}
.book-card:hover p{
  color: var(--accent);
}

.book-image {
  width: 100%;
  height: 350px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 10%;
  margin-bottom: 18px;
}

.book-image.sis {
  background-image: url("Photos/sis.jpg");
}

.book-image.perserve {
  background-image: url("Photos/Perserve\ Book.jpg");
}
.book-image.no{
  background-image: url("Photos/no.jpg");
}
.book-image.pack{
  background-image: url("Photos/pack.jpg");
}
.book-image.lady{
  background-image: url("Photos/woman.jpg");
}
.book-image.activation{
  background-image: url("Photos/Activation.jpg");
}
.book-image.dream{
  background-image: url("Photos/dream.jpg");
}
.book-image.angry{
  background-image: url("Photos/angry.jpg");
}
.book-image.journey{
  background-image: url("Photos/journey.jpg");
}
.book-image.empowered{
  background-image: url("Photos/empowered.jpg");
}
.book-image.sis2{
  background-image: url("Photos/sis2.jpg");
}
.book-image.illuminate{
  background-image: url("Photos/illuminate.jpg");
}
.book-image.lit{
  background-image: url("Photos/lit.jpg");
}
.book-image.over{
  background-image: url("Photos/over.jpg");
}
.book-image.bloom{
  background-image: url("Photos/bloom.jpg");
}
.book-image.pivot{
  background-image: url("Photos/pivot.jpg");
}
.book-image.min{
  background-image: url("Photos/15min.jpg");
}
.book-image.wisdom{
  background-image: url("Photos/wisdom.jpg");
}
.book-image.dpj{
  background-image: url("Photos/dpj.jpg");
}
.btn-amazon {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 25px;
  background: var(--dark);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.25s ease;
  font-size: 25px;
}
.book-card:hover .btn-amazon{
  background: var(--accent);
  color: var(--dark);
}

/* TESTIMONIALS */
.author-testimonials {
  background: url(Photos/pexels-caio-46274.jpg);
  background-position: center/center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 60px 0;
  border-bottom: 2px solid #002550;
  position: relative;
  z-index: 1;
}
.author-testimonials::before{
  content: "";
  position: absolute;
  z-index: -1;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.author-testimonials h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 50px;
  color: white;
  letter-spacing: 1px;
}
.author-testimonials p{
  text-align: center;
  margin-bottom: 40px;
  font-size: 25px;
  color: white;
  font-style: oblique;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
  align-items: stretch;
}

/* Make sure cards don't override grid */
.testimonial {
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  border: 1px solid #eee;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

.author-testimonials .testimonial p {
  font-size: 25px;
  margin-bottom: 10px;
  color: var(--secondary);
}

.author-testimonials .testimonial .author {
  font-weight: 700;
  color: var(--primary);
  font-size: 25px;
  text-align: center;
}

.btn-contact-large {
  display: block;
  width: fit-content;
  margin: 30px auto 0 auto;
  padding: 16px 35px;
  background: var(--secondary);
  color: var(--accent);
  border-radius: 10px;
  text-decoration: none;
  font-size: 30px;
  font-weight: 700;
  transition: 0.35s ease;
}

.btn-contact-large:hover {
  background: transparent;
  border: 2px solid var(--secondary);
}

@media (max-width: 1200px) {
  .author-container {
    padding: 60px 40px;
  }

  .books-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .author-header h1 {
    font-size: 2.8rem;
  }
   .testi-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {

  .author-layout {
    display: block;
    text-align: center;
  }

  .author-image {
    max-width: 300px;
    margin: 0 auto 30px auto;
  }

  .books-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .book-card {
    padding: 20px;
  }
 
}

@media (max-width: 768px) {

  .author-header h1 {
    font-size: 2.2rem;
  }

  .author-header p {
    font-size: 1rem;
  }

  .books-grid {
    grid-template-columns: 1fr;
  }
 .book-header p{
    width: 90%;
  }
  .book-card img {
    width: 200px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .author-container {
    padding: 40px 20px;
  }
  .speaking-hero h1{
    font-size: 40px;
  }
  .speaking-hero .subtitle{
    font-size: 25px;
  }
  .testimonial{
    width: 100%;
  }
  .author-testimonials{
    padding: 40px 0;
  }
  .author-header h1 {
    font-size: 1.9rem;
    line-height: 1.3;
  }
  .book-card {
    padding: 16px;
  }
 .hero-subhead{
  font-size: 26px;
 }
  .book-card h3 {
    font-size: 30px;
  }
  .takeaways{
    margin-top: 30px;
  }
  .author-image {
    max-width: 260px;
  }
}
/* ===== FOOTER ===== */

.site-footer {
 background:var(--footer);
  color:var(--accent);
    padding: 40px 0 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer h4 {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary);
}

.footer-links a {
  font-size: 21px;
  color: var(--accent);
  text-decoration: none;
  transition: all 0.25s ease;
  width: fit-content;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
    border-bottom: 2px solid var(--primary);
}
.footer-brand p{
  font-size: 22px;
}
.footer-brand img{
  width: 300px;
  height: auto;
  border-radius: 15%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 15px;
}

.site-footer h4 {
  margin-bottom: 15px;
}

.site-footer p,
.site-footer a {
  color: var(--accent);
  margin-bottom: 10px;
    font-size: 20px;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
}
.footer-bottom .bwd{
  color: var(--primary);
}
.bwd {
  margin-top: 6px;
}

.bwd a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 500;
  transition: 0.25s ease;
  position: relative;
}

/* subtle underline effect */
.bwd a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.bwd a:hover::after {
  transform: scaleX(1);
}

.bwd a:hover {
  color: #ffffff;
}
.contact-section {
  padding: 60px 20px;
background: var(--primary);
background: linear-gradient(272deg, rgba(0, 161, 98, 1) 0%, rgba(212, 175, 55, 1) 100%);}

.contact-container {
  width: 70%;
  margin: 0 auto;
  text-align: left;
}

.contact-container h1 {
  font-size: 45px;
  font-weight: 800;
  margin-bottom: 12px;
  color: white;
  text-align: center;
}

.contact-container p {
  font-size: 30px;
  line-height: 1.6;
  color: white;
  margin-bottom: 40px;
  text-align: center;
  font-style: italic;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.form-row label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: white;
  font-size: 25px;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  resize: vertical;
  font-family: inherit;
}

.contact-form .btn-submit {
  display: inline-block;
  background: var(--accent);
  color: var(--secondary);
  padding: 14px 28px;
  font-size: 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
}

.contact-form .btn-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transition: all 0.4s ease;
  z-index: 0;
}

.contact-form .btn-submit span {
  position: relative;
  z-index: 1;
}

.contact-form .btn-submit:hover::before {
  left: 0;
}

.contact-form .btn-submit:hover {
  color: white; /* Text color on hover */
  transform: translateY(-2px);
}

.subscribe-section {
background: var(--primary);
background: linear-gradient(20deg, rgba(0, 161, 98, 1) 0%, rgba(212, 175, 55, 1) 100%);  
padding: 60px 0;
  text-align: center;
}

.subscribe-section h2 {
  font-size: 40px;
  color: white;
  margin-bottom: 30px;
}

/* BOX STYLE (Matches Contact Boxes) */
.subscribe-box {
  background: #f0f0f0;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  width: 75%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subscribe-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* ICON */
.subscribe-icon {
  width: 350px;
  height: 350px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 100%;
}

/* TEXT */
.subscribe-info p {
  color: var(--dark);
  font-size: 23px;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* BUTTON */
.subscribe-btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 12px 26px;
  font-size: 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.subscribe-btn:hover {
  background: var(--secondary);
}
@media (max-width: 768px) {
  .subscribe-section {
    padding: 40px 0;
  }

  .subscribe-box {
    padding: 25px;
    width: 100%;
  }

  .subscribe-info p {
    font-size: 22px;
  }
  .subscribe-icon{
    width: 250px;
    height: 250px;
  }

  .subscribe-btn {
    font-size: 22px;
    padding: 10px 20px;
  }
}

/* Responsive */
@media (max-width: 600px) {
  .contact-container {
    text-align: center;
    width: 90%;
  }
  .contact-section{
    padding: 40px 0px;
  }

  .contact-form {
    gap: 16px;
  }

  .btn-submit {
    width: 100%;
  }
}
.social-section {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.social-section h2 {
  font-size: 40px;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 10px;
  position: relative;
}

.social-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary);
  margin: 12px auto 0 auto;
  border-radius: 4px;
}

.social-section p {
  font-size: 25px;
  color: var(--dark);
  margin-bottom: 40px;
}

/* Grid */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
  width: 90%;
  margin: 0 auto;
}

/* Social Card */
.social-card {
  background: #f7f7f7;
  border-radius: 16px;
  padding: 30px 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 14px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
  color: var(--primary);
}

.social-card i {
  font-size: 40px;
  margin-bottom: 12px;
  transition: color .3s ease;
}

.social-card span {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
}

/* Hover effect */
.social-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 26px rgba(0,0,0,0.15);
}

.social-card:hover i {
  color: var(--secondary);
}
.social-card:hover span{
  color: var(--secondary);
}

/* Responsive */
@media (max-width: 600px) {
  .social-section{
    padding: 40px 5px;
  }
  .social-section h2 {
    font-size: 32px;
  }
  .social-card {
    padding: 24px 15px;
  }
  .social-card i {
    font-size: 32px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 1100px) {
.hero-grid{
  grid-template-columns: 1fr;
}
.hero-content {
  order: 2;
}

.hero-image {
  order: 1;
}
  .split-grid,
  .card-grid,
  .stats-grid,
  .footer-grid,
  .credibility-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {

  h1 { font-size: 48px; }
  h2 { font-size: 36px; }




  .menu-toggle {
    display: block;
    background: none;
    border: none;
  }

  .cta-box {
    padding: 45px 25px;
  }

}
/* ===== HERO WRAPPER ===== */
.timogi-hero {
  position: relative;
  padding: 40px 0;
  color: #fff;
  overflow: hidden;
  border-bottom: 2px solid var(--secondary);
}

.timogi-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'%3E%3Cpath d='M0 150 C 150 50, 450 250, 600 150' stroke='%237cc7ff' stroke-width='2' fill='none' opacity='0.08'/%3E%3Cpath d='M0 300 C 150 200, 450 400, 600 300' stroke='%237cc7ff' stroke-width='2' fill='none' opacity='0.06'/%3E%3Cpath d='M0 450 C 150 350, 450 550, 600 450' stroke='%237cc7ff' stroke-width='2' fill='none' opacity='0.05'/%3E%3C/svg%3E");
  background-size: 500px 500px;
  background-repeat: repeat;
  opacity: 1;
  z-index: 0;
}
.timogi-hero > * {
  position: relative;
  z-index: 1;
}
.timogi-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ===== INTRO ===== */
.timogi-intro .kicker {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 15px;
}

.timogi-intro h1 {
  font-size: 54px;
  margin-bottom: 20px;
  font-weight: 800;
  color: var(--dark);
}

.timogi-intro h1 span {
  color: var(--accent);
}

.timogi-intro p {
  font-size: 19px;
  line-height: 1.8;
  color: var(--accent);
  margin-bottom: 15px;
}

.timogi-intro .lead {
  font-size: 22px;
  color: #ffffff;
}

.quote-mini {
  margin-top: 25px;
  padding-left: 15px;
  border-left: 3px solid var(--dark);
  font-style: italic;
  color: var(--dark);
  font-size: 20px;
}

/* ===== TIMELINE ===== */
.timogi-timeline {
  position: relative;
  padding-left: 20px;
  
}

.timogi-timeline::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.5);
}

.timeline-item {
  position: relative;
  margin-bottom: 35px;
  padding-left: 25px;
}

.timeline-item .dot {
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 4px var(--accent);
}

.timeline-item h3 {
  margin-bottom: 8px;
  color: var(--dark);
}

.timeline-item p {
  font-size: 20px;
  color: var(--accent);
  line-height: 1.6;
}

.timeline-item.highlight h3 {
  color: var(--accent);
}

/* ===== PHILOSOPHY ===== */
.timogi-philosophy {
  padding: 40px 0;
  background: var(--accent);
  position: relative;
  overflow: hidden;
    border-bottom: 2px solid var(--secondary);

}
.timogi-philosophy::before {
  content: "";
  position: absolute;
  inset: 0;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='2' cy='2' r='1' fill='%232ecc71' opacity='0.5'/%3E%3C/svg%3E");
background-size: 120px 120px;
  background-repeat: repeat;
  opacity: 1;
  z-index: 0;
}
.timogi-philosophy h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 40px;
  color: var(--primary);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.closing-gallery {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.closing-gallery img {
  flex: 1 1 380px;
}
.timogi-philosophy img {
  display: block;
  margin: 30px auto 50px;
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  border: 2px solid rgba(124,199,255,0.4);
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.timogi-philosophy img:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 55px rgba(0,0,0,0.45);
}
@media (max-width: 768px) {
  .timogi-philosophy img {
    max-width: 280px;
    border-radius: 14px;
    margin: 25px auto 35px;
  }
}
.philosophy-card {
  background: var(--primary);
  padding: 25px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s ease;
}

.philosophy-card:hover {
  transform: translateY(-5px);
  border-color: rgba(124,199,255,0.4);
}

.philosophy-card h3 {
  margin-bottom: 10px;
  color: var(--accent);
}
.philosophy-card P{
  color: var(--accent);
  font-size: 21px;
}
.timogi-cta {
  padding: 40px 0;
  background: var(--accent);
  position: relative;
  overflow: hidden;
    border-bottom: 2px solid var(--secondary);

}
.timogi-cta::before {
  content: "";
  position: absolute;
  inset: 0;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='2' cy='2' r='1' fill='%232ecc71' opacity='0.25'/%3E%3C/svg%3E");
background-size: 120px 120px;
  background-repeat: repeat;
  opacity: 1;
  z-index: 0;
}
.timogi-cta img {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 30px auto 35px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  border: 4px solid #fff;
  transition: transform .3s ease;
}

.timogi-cta img:hover {
  transform: translateY(-6px);
}
.timogi-cta h2 {
  font-size: 38px;
  margin-bottom: 15px;
  text-align: center;
  color: var(--primary);
}

.timogi-cta p {
  max-width: 100%;
  margin: 0 auto 40px;
  color: var(--secondary);
  line-height: 1.7;
  font-size: 22px;
  text-align: center;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.cta-card {
  display: block;
  padding: 30px 25px;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  background: var(--primary);
  border: 1px solid rgba(124,199,255,0.15);
  transition: all 0.3s ease;
  text-align: center;
  backdrop-filter: blur(10px);
}

.cta-card h3 {
  color: var(--accent);
  margin-bottom: 10px;
  font-size: 23px;
  text-align: center;
}

.cta-card p {
  font-size: 19px;
  color: var(--accent);
  margin-bottom: 20px;
  text-align: center;
}

.cta-card span {
  font-weight: 600;
  color: var(--accent);
  text-align: center;
  font-size: 21px;
}

.cta-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124,199,255,0.5);
  box-shadow: 0 18px 50px rgba(0,0,0,0.4);
}
@media (max-width: 900px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    text-align: center;
  }
}
/* ===== CLOSING ===== */
.timogi-closing {
  position: relative;
  padding: 40px 0;
  color: #fff;
  overflow: hidden;
    border-bottom: 2px solid var(--secondary);

}

.timogi-closing::before {
  content: "";
  position: absolute;
  inset: 0;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Cpath d='M0 150 Q 150 100 300 150 T 600 150' stroke='%237cc7ff' stroke-width='1.5' fill='none' opacity='0.08'/%3E%3Cpath d='M0 300 Q 150 250 300 300 T 600 300' stroke='%237cc7ff' stroke-width='1.5' fill='none' opacity='0.06'/%3E%3Cpath d='M0 450 Q 150 400 300 450 T 600 450' stroke='%237cc7ff' stroke-width='1.5' fill='none' opacity='0.05'/%3E%3C/svg%3E");
  background-size: 500px 500px;
  background-repeat: repeat;
  opacity: 1;
  z-index: 0;
}
.timogi-closing img {
  display: block;
  margin: 30px auto 50px;
  width: 100%;
  max-width: 500px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius:50%;
  border: 2px solid rgba(124,199,255,0.4);
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.timogi-closing img:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 55px rgba(0,0,0,0.45);
}
.timogi-closing h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
  color: var(--accent);
}

.timogi-closing p {
  max-width: 100%;
  margin: 0 auto;
  font-size: 21px;
  color: #cfd8e3;
  line-height: 1.8;
  text-align: center;
}
.profile-image-wrap {
  margin: 20px 0 25px;
  display: flex;
  justify-content: flex-start;
}

.profile-image-wrap img {
  width: 100%;
  max-width: 350px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10%;
  border: 3px solid var(--secondary);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image-wrap img:hover {
  transform: scale(1.04);
  box-shadow: 0 14px 35px rgba(0,0,0,0.5);
}
@media (max-width: 768px) {
  .profile-image-wrap {
    justify-content: center;
  }

  .profile-image-wrap img {
    max-width: 260px;
    border-radius: 16px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-panel {
    padding: 22px;
  }

  .contact-title {
    font-size: clamp(40px, 13vw, 64px);
  }

  .contact-submit {
    width: 100%;
  }
}
/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .timogi-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .timogi-intro h1 {
    font-size: 40px;
  }
 .contact-hero-inner {
    grid-template-columns: 1fr;
  }

  .contact-title {
    max-width: 100%;
  }
}
 .back{
      background-color: var(--accent);
      overflow: hidden;
    }

    .downloads-page {
      width: 75%;
      margin: 0 auto;
      padding: 30px 20px;

    }
    .back::before {
  content: "";
  position: absolute;
  inset: 0;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Cpath d='M0 150 Q 150 100 300 150 T 600 150' stroke='%237cc7ff' stroke-width='1.5' fill='none' opacity='0.20'/%3E%3Cpath d='M0 300 Q 150 250 300 300 T 600 300' stroke='%237cc7ff' stroke-width='1.5' fill='none' opacity='0.30'/%3E%3Cpath d='M0 450 Q 150 400 300 450 T 600 450' stroke='%237cc7ff' stroke-width='1.5' fill='none' opacity='0.30'/%3E%3C/svg%3E");
  background-size: 500px 500px;
  background-repeat: repeat;
  opacity: 1;
  z-index: 0;
}
.back > * {
  position: relative;
  z-index: 1;
}

    .downloads-page p {
      text-align: center;
      font-size: 1.3rem;
      margin-bottom: 40px;
    }

    #download-links {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    #download-links li {
      background: #f7f7f7;
      border-left: 5px solid #9b8155; /* accent color */
            border-bottom: 5px solid #9b8155; /* accent color */
      padding: 15px 20px;
      border-radius: 6px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    #download-links li:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    }

    #download-links a {
      text-decoration: none;
      color: #002550;
      font-weight: 600;
    }

    #download-links a:hover {
      color: #9b8155;
    }

    .download-note {
      text-align: center;
      margin-top: 30px;
      font-size: 0.95rem;
      color: #555;
    }
.assessment-intro {
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.assessment-intro h1{
  font-size: 40px;
  text-align: center;
  color: var(--primary);
  margin-bottom: 10px;
}
.assessment-intro .book-tag{
  font-size: 25px;
  text-align: center;
  color: var(--secondary);
  margin-bottom: 10px;
}
.assessment-intro p{
  font-size: 22px;
    font-style: italic;

}
.assessment-intro h3{
  font-size: 35px;
  color: var(--secondary);
  margin-bottom: 30px;
}
.assessment-intro .rate{
  text-align: left;
  text-decoration: underline;
}
.assessment-intro li{
  margin-bottom: 15px;
}
/* ==================== ASSESSMENT STYLING ==================== */
/* Pillar Sections */
.pillar-section {
  margin-top: 50px;
  margin-bottom: 20px;
}

.pillar-section h2 {
  font-size: 32px;
  color: var(--primary);
  border-bottom: 3px solid var(--secondary);
  padding-bottom: 8px;
  text-align: center;
}

/* Question cards */
.question-card {
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

/* Scale layout */
.scale {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
#assessment {
  margin-top: 40px;
}

/* Each question block */
#assessment div {
  background: #ffffff;
  border-left: 6px solid var(--secondary);
  padding: 20px 25px;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

#assessment div:hover {
  transform: translateY(-3px);
}

/* Question text */
#assessment p {
  font-size: 22px;
  margin-bottom: 15px;
  line-height: 1.5;
}

#assessment p strong {
  color: var(--primary);
  font-size: 24px;
}

/* Rating options container */
#assessment div div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

/* Labels (1-5) */
#assessment label {
  flex: 1;
  text-align: center;
  font-size: 18px;
  padding: 10px;
  border-radius: 8px;
  background: #f5f5f5;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

/* Hide default radio */
#assessment input[type="radio"] {
  display: none;
}

#assessment label:hover {
  background: #e0e7ef;
}

/* Selected state */
#assessment label:has(input:checked) {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Fix for clickable area */
#assessment label {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Divider */
#assessment hr {
  margin-top: 20px;
  border: none;
  border-top: 1px solid #eee;
}
/* ==================== RESULTS STYLING ==================== */
#results {
  margin-top: 40px;
  padding: 25px;
  background: #f7f7f7;
  border-left: 6px solid var(--secondary); /* accent color */
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  font-family: 'IBM Plex Serif', serif;
}

#results h2 {
  text-align: center;
  color: var(--primary);
  font-size: 2.2rem;
  margin-bottom: 20px;
}

#results h3 {
  color: var(--secondary);
  font-size: 1.8rem;
  margin-top: 20px;
  margin-bottom: 10px;
}
#results h4{
  font-size: 1.6rem;
  margin-bottom: 15px;
}

#results p {
  font-size: 1.3rem;
  color: var(--dark);
  margin: 5px 0;
}

#results strong {
  color: var(--primary);
}

/* Optional: add colored badges for interpretations */
#results p strong.total {
  font-size: 1.5rem;
  display: inline-block;
  margin-top: 10px;
}

#results hr {
  margin: 25px 0;
  border: none;
  border-top: 2px solid var(--secondary);
}
#results .pillar-score {
  background: #fff3e6; /* light accent background */
  border-left: 4px solid var(--secondary);
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 15px;
}
    .assessment-intro li {
      border-left: 5px solid var(--secondary); /* accent color */
      padding: 15px 20px;
      border-radius: 6px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      list-style: none;
      font-size: 23px;
    }
    .calc{
  display: inline-block;
  padding: 12px 22px;
  background: var(--primary);
  color: var(--accent);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 8px 18px rgba(31, 248, 12, 0.14);
  font-size: 30px;
  width: 100%;
  text-align: center;
    margin: 40px auto 0 auto; /* centers horizontally */
    display: block; /* required for margin auto */
}
input[type="radio"] {
  accent-color: var(--primary); /* green */
}
.calc:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 28px rgba(11,87,164,0.18);
}
    @media(max-width: 650px) {
      #download-links {
        grid-template-columns: 1fr;
      }
      .downloads-page{
        width: 95%;
      }
    }
    .solutions-page {
  width: 85%;
  margin: 30px auto;
  padding: 0 24px;
  color: var(--text);
}

/* Title */
.solutions-page h1 {
  font-size: 52px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
  color: var(--accent);
}

/* Subtitle */
.solutions-page > p {
  text-align: center;
  width: 100%;
  margin: 20px auto 50px auto;
  font-size: 24px;
  line-height: 1.7;
  font-style: italic;
  color: var(--accent);
}

/* Grid */
.assessment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Card */
.assessment-card {
  background: var(--accent);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 10px 25px var(--shadow);
  transition: all 0.25s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--secondary);
  position: relative;
  overflow: hidden;
}

/* Top gradient accent (green → gold) */
.assessment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary)
  );
}

/* Hover effect */
.assessment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary);
}

/* Title */
.assessment-card h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--primary);
}

/* Description */
.assessment-card p {
  font-size: 20px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Price */
.assessment-card span {
  font-size: 25px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 14px;
}

/* Button */
.assess-btn {
  display: inline-block;
  text-align: center;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--primary);
  color: var(--accent);
  font-weight: 700;
  font-size: 21px;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* Button hover */
.assess-btn:hover {
  background: #17c653;
  transform: scale(1.03);
}
    @media(max-width: 900px) {
      .assessment-grid{
          grid-template-columns: repeat(2, 1fr);
      }
    }
    @media(max-width: 600px) {
      .assessment-grid{
          grid-template-columns: repeat(1, 1fr);
      }
      .solutions-page h1{
        font-size: 40px;
      }
      .solutions-page{
        padding: 0px;
      }
    }