* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

:root {
  --primary-red: #c00000;
  --bg-yellow: #ffcc00;
  --button-green: #00b050;
  --text-dark: #0f172a;
}

.masterclass-hero {
  font-family: 'Arial', sans-serif;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.attention-text {
  color: var(--primary-red);
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.2rem;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 40px;
  font-weight: 800 !important;
}

h1 span {
  color: var(--primary-red);
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

/* Profile Styling */
.profile-container {
  position: relative;
  width: 320px;
 
}

.profile-circle {
  background-color: var(--bg-yellow);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  
  
}

.profile-circle img {
  width: 72%;
  height: auto; 
  overflow: hidden;
  object-position: center;
  object-fit: cover;
    
}

.name-card {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  width: 80%;
  
}

.name-card h3 {
  color: var(--primary-red);
  margin: 0;
  font-size: 1.2rem;
}

.name-card p {
  font-size: 0.8rem;
  margin: 5px 0 0;
  color: #444;
}

/* Details Styling */
.details-container {
  text-align: left;
  max-width: 500px;
}

.details-container h2 {
  font-size: 1.4rem;
}

.details-container h2 span {
  color: var(--primary-red);
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.benefit-list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5;
  color: #333;
}

/* Custom Checkmark */
.benefit-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--button-green);
  font-weight: bold;
  border: 1px solid var(--button-green);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.event-date {
  font-weight: bold;
  margin: 25px 0;
}

.event-date span {
  color: var(--primary-red);
}

.cta-button {
  background-color: var(--button-green);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.2s;

}

.cta-button:hover {
  transform: scale(1.05);
  background-color: black;
  color: white;
}

/* Responsiveness */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
  }
  .details-container {
    text-align: center;
  }
  .benefit-list li::before {
    left: 10px;
  }
}


:root {
  --brand-red: #c00000;
  --aquamarine: #7fffd4;
  --dark-aquamarine: #3db89c; /* Darker shade for better contrast on white */
  --brand-green: #00c853;
  --text-dark: #1f2937;
}

.masterclass-takeaways {
  font-family: 'Helvetica', 'Arial', sans-serif;
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.takeaway-title {
  color: var(--brand-red);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 50px;
  font-weight: 800;
}

.main-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.visual-container {
  flex: 1.2;
  min-width: 320px;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
}

.responsive-img {
  width: 100%;
  height: auto;
}

.points-list {
  flex: 1;
  min-width: 320px;
  list-style: none;
  padding: 0;
  text-align: left;
}

.point-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

/* SVG Styling */
.aquamarine-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  color: var(--dark-aquamarine);
  background: #f0fffa;
  padding: 8px;
  border-radius: 50%;
}

.point-item p {
  margin: 0;
  color: var(--text-dark);
  line-height: 1.5;
  font-size: 1.05rem;
}

.point-item strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 3px;
  color: #111;
}

/* Bonus Section */
.bonus-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.bonus-img {
  width: 120px;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.bonus-box {
  background-color: #f0fff4;
  border: 1px solid var(--brand-green);
  padding: 20px 35px;
  border-radius: 5px;
  max-width: 650px;
  text-align: left;
  color: var(--brand-green);
}

.bonus-box span {
  font-weight: 800;
}

/* CTA Button Styling */
.cta-button-3d {
  background-color: var(--brand-green);
  color: white;
  border: none;
  padding: 20px 50px;
  font-size: 1.2rem;
  font-weight: 900;
  border-radius: 6px;
  cursor: pointer;
  /* box-shadow: 0 5px 0 #008a3e; */
  transition: all 0.1s ease;
}

.cta-button-3d:hover {
  transform: scale(1.05);
  background-color: black;
  color: white;
}

.cta-button-3d:active {
  transform: translateY(3px);
  /* box-shadow: 0 2px 0 #008a3e; */
}

/* Mobile Tweak */
@media (max-width: 768px) {
  .takeaway-title { font-size: 1.8rem; }
  .bonus-box { text-align: center; }
  .point-item { flex-direction: column; align-items: center; text-align: center; }
}

:root {
  --brand-red: #c00000;
  --brand-green: #00b050;
  --text-dark: #0f172a;
  --text-gray: #475569;
}

.presenter-section {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  max-width: 850px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

/* Header Elements */
.label-wrapper {
  margin-bottom: 15px;
}

.presenter-label {
  background-color: #f0fff4;
  color: var(--brand-green);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid #dcfce7;
}

.presenter-name {
  color: var(--text-dark);
  font-size: 2.2rem;
  font-weight: 800;
  margin: 10px 0 5px;
}

.presenter-title {
  color: var(--text-gray);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Image Styling */
.presenter-image-container {
  width: 250px;
  height: 250px;
  margin: 0 auto 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.presenter-img {
  width: 80%;
  height: 100%;
  object-fit: cover;
  /* display: block; */

}

/* Biography Text Styling */
.presenter-bio {
  text-align: center;
  line-height: 1.7;
  color: #334155;
}

.presenter-bio p {
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.presenter-bio strong {
  color: var(--text-dark);
  font-weight: 700;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .presenter-name {
    font-size: 1.8rem;
  }
  .presenter-bio p {
    font-size: 1rem;
    text-align: justify; /* Better for long text blocks on mobile */
  }
  .presenter-image-container {
    width: 200px;
    height: 200px;
  }
}

:root {
  --brand-green: #00c853;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --alert-red: #ef4444;
}

.urgency-footer {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

/* Alert Icon Styling */
.alert-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.alert-circle {
  width: 70px;
  height: 70px;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
}

.alert-circle img {
  width: 80px;
  height: auto;
}

/* Typography Styling */
.urgency-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  font-weight: 800;
}

.urgency-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-text {
  font-weight: 500;
  color: #1e293b !important;
}

/* 3D Green Button consistent with other sections */
.cta-green-final {
  background-color: var(--brand-green);
  color: white;
  border: none;
  padding: 18px 45px;
  font-size: 1.15rem;
  font-weight: 800;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 30px;
  /* box-shadow: 0 5px 0 #00943e; */
  transition: all 0.1s ease;
}

.cta-green-final:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 7px 0 #00943e; */
  background-color: #000;
}

.cta-green-final:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 #00943e;
}

/* Mobile Adjustments */
@media (max-width: 640px) {
  .urgency-title {
    font-size: 1.4rem;
  }
  .urgency-content p {
    font-size: 1rem;
  }
}

:root {
  --text-main: #1e293b;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
}

.features-grid {
  padding: 60px 20px;
  background-color: #ffffff;
}

.feature-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.feature-card {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  padding: 40px 30px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Icon Circles */
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle svg {
  width: 28px;
  height: 28px;
}

.bg-green { background-color: #f0fdf4; color: #22c55e; }
.bg-blue { background-color: #eff6ff; color: #3b82f6; }
.bg-red { background-color: #fef2f2; color: #ef4444; }

/* Typography */
.feature-card h3 {
  color: var(--text-main);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  font-family: sans-serif;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  font-family: sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-container {
    flex-direction: column;
    align-items: center;
  }
  .feature-card {
    width: 100%;
  }
}

:root {
  --brand-green: #00c853;
  --text-dark: #0f172a;
  --text-muted: #334155;
}

.masterclass-intro {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
  font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
}

/* Heading Typography */
.intro-headline {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
  font-weight: 800;
}

/* Body Text Styling */
.intro-body p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.cta-text {
  font-weight: 500;
  color: #1e293b !important;
}

.cta-text strong {
  font-weight: 800;
  color: var(--text-dark);
}

/* 3D Green Button consistent with image_37bd61.png */
.reserve-button-3d {
  background-color: var(--brand-green);
  color: white;
  border: none;
  padding: 20px 50px;
  font-size: 1.2rem;
  font-weight: 900;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  /* box-shadow: 0 6px 0 #008a3e; 3D Shadow Effect */
  transition: all 0.1s ease;
  text-transform: uppercase;
}

.reserve-button-3d:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 8px 0 #008a3e; */
  background-color: #000;
}


.reserve-button-3d:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #008a3e;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .intro-headline {
    font-size: 1.5rem;
  }
  .intro-body p {
    font-size: 1rem;
    br { display: none; } /* Remove line breaks on mobile for better flow */
  }
}

/* General Styling */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
}

/* Ready to Begin Your Journey Section */
.ready-journey {
  background-color: #1a368e; /* Deep Blue from image */
  color: white;
  padding: 60px 20px;
}

.journey-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.journey-text {
  flex: 1;
}

.journey-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.journey-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.yellow-cta {
  background-color: #ffcc00; /* Vibrant Yellow from image */
  color: #000;
  border: none;
  padding: 18px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 4px 0 #ccaa00; /* Subtle 3D effect */
}

.journey-image {
  flex: 1;
}

.rounded-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* Who All Can Join Section */
.who-can-join {
  background-color: #000000; /* Black Background from image */
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.join-container {
  max-width: 1000px;
  margin: 0 auto;
}

.who-can-join h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.join-subtext {
  font-size: 1rem;
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* Audience Grid Styling */
.audience-grid {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.audience-card {
  background-color: #1e293b; /* Dark Slate Blue cards */
  border: 1px solid #334155;
  padding: 20px 30px;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  min-width: 180px;
}

/* Responsive Mobile View */
@media (max-width: 768px) {
  .journey-content {
    flex-direction: column;
    text-align: center;
  }
  .audience-card {
    width: 100%;
  }
}

body {
  background: #f5f7fa;
}

.testimonials {
  padding: 50px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

.testimonials h2 span {
  color: #2d5bff;
}

/* Grid Layout */
.card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

/* Card Style */
.card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  border: 1px solid #ddd;
  text-align: center;
  transition: 0.3s;
  display: flex;
  flex-direction: column; /* Stacks image, text, and name vertically */
  align-items: center;    /* Centers items horizontally */
  text-align: center;     /* Centers the actual text lines */
}

.card:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Image Circle */
.card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

/* Text */
.card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.card h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

.card span {
  font-size: 13px;
  color: #888;
}

/* Responsive */
@media (max-width: 992px) {
  .card-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .card-container {
    grid-template-columns: 1fr;
  }
}

.faq-container {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  font-family: 'Inter', sans-serif; /* Or your preferred sans-serif */
  text-align: center;
}

h2 {
  font-size: 28px;
  font-weight: 800;
  color: #0b132b;
  margin-bottom: 40px;
}

.faq-list {
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-item:first-child {
  border-top: 1px solid #e0e0e0;
}

.faq-item p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #0b132b;
  line-height: 1.5;
}

.faq-item:hover {
  background-color: #fcfcfc;
}

.view-more {
  background: none;
  border: none;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  margin-top: 30px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.view-more span {
  font-size: 20px;
  padding-bottom: 4px;
}


.faq-section {
            max-width: 800px;
            margin: 80px auto;
            font-family: 'Inter', -apple-system, sans-serif;
        }

        .faq-title {
            font-weight: 800;
            color: #0b132b;
            margin-bottom: 40px;
        }

        /* Styling the Accordion to match the image */
        .accordion-flush .accordion-item {
            border-bottom: 1px solid #dee2e6 !important;
        }
        
        /* Adds the top border to the first item like in the image */
        .accordion-flush .accordion-item:first-child {
            border-top: 1px solid #dee2e6 !important;
        }

        .accordion-button {
            font-weight: 700; /* Matching the bold text in your image */
            color: #0b132b !important;
            padding: 24px 0;
            font-size: 1.05rem;
            background-color: transparent !important;
            box-shadow: none !important;
        }

        /* Removing the default blue highlight and arrow behavior */
        .accordion-button:not(.collapsed) {
            color: #0b132b;
        }

        .accordion-button::after {
            display: none; /* Removing the default Bootstrap arrow to match your clean text look */
        }

        .view-more-btn {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            margin-top: 30px;
            transition: opacity 0.2s;
        }

        .view-more-btn:hover {
            opacity: 0.7;
            color: #000;
        }
        .form-container {
            max-width: 500px;
            margin: 50px auto;
            padding: 20px;
            border: 1px solid black;
            border-radius: 10px;
        }


        body { background-color: #ffffff; font-family: 'Inter', sans-serif; }
        
        .form-container { max-width: 500px; margin: 50px auto; padding: 20px; }

        .form-title {
            font-weight: 800;
            color: #002d5b; /* Dark blue color from image */
            text-align: center;
            margin-bottom: 40px;
            font-size: 24px;
            font-weight: 800;
            
        }

        .form-label {
            font-weight: 600;
            color: #4a5568;
            font-size: 14px;
            margin-bottom: 8px;
            
        }

        .form-control {
            border: 1px solid #cbd5e0;
            border-radius: 4px;
            padding: 10px 12px;
            font-size: 14px;
           
        }

        .form-control::placeholder { color: #a0aec0; }

        /* Icon styling for Email field */
        .input-group-text {
            background-color: transparent;
            border-right: none;
            color: #a0aec0;
            
        }
        .email-input { border-left: none; }

        .consent-text {
            font-size: 12px;
            color: #4a5568;
            line-height: 1.6;
        }

        .btn-submit {
            background-color: #1eb95d !important; /* Green color from image */
            border: none;
            color: white;
            font-weight: 700;
            padding: 12px;
            width: 100%;
            border-radius: 4px;
            margin-top: 20px;
        }
        .btn-submit:hover {
         transform: scale(1.05);
         background-color: black !important;
         color: white !important;
        }

        .btn-submit:hover { background-color: #169e4d; }
        
        .required-star { color: #4a5568; }

  .footer-container {
    font-family: 'Inter', -apple-system, sans-serif;
}

/* Light Section */
.contact-area {
    background-color: #ffffff;
}

.query-text {
    font-size: 13px;
    color: #4a5568;
    margin-bottom: 5px;
}

.phone-number {
    font-size: 14px;
    color: #0b132b;
    margin-bottom: 0;
}

/* Dark Bottom Bar */
.copyright-bar {
    background-color: #0d121f; /* Dark navy blue from the image */
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

/* Optional: Adding a soft shadow to match the top of the dark bar in the image */
.copyright-bar {
    box-shadow: inset 0 10px 15px -10px rgba(0, 0, 0, 0.3);
}      
   


.faq-wrapper {
            max-width: 800px;
            margin: 60px auto;
            font-family: 'Inter', sans-serif;
        }

        .faq-header {
            font-weight: 800;
            color: #0b132b;
            text-align: center;
            margin-bottom: 40px;
        }

        /* Standard Nav-Tab styling for the list appearance */
        .nav-tabs {
            border: none;
            flex-direction: column;
        }

        .nav-item {
            border-bottom: 1px solid #dee2e6;
        }

        .nav-item:first-child {
            border-top: 1px solid #dee2e6;
        }

        .nav-link {
            border: none !important;
            color: #0b132b !important;
            font-weight: 700;
            padding: 22px 0;
            text-align: left;
            background: transparent !important;
            width: 100%;
        }

        .tab-content {
            padding: 0 0 15px 0;
            color: #4a5568;
            font-style: italic;
        }

        /* View More/Less Logic */
        .toggle-container {
            text-align: center;
            margin-top: 30px;
        }

        .btn-toggle {
            background: none;
            border: none;
            color: #333;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
        }

        /* Switching text via CSS based on aria-expanded state */
        .btn-toggle .text-less { display: none; }
        .btn-toggle[aria-expanded="true"] .text-more { display: none; }
        .btn-toggle[aria-expanded="true"] .text-less { display: inline; }

        .btn-toggle svg { transition: transform 0.3s; }
        .btn-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
