/* General Styles (from initial setup) */
:root {
    --primary-color: #7C57FC; /* A vibrant purple */
    --secondary-color: #57D0FC; /* A bright blue */
    --accent-color: #FCCF57; /* A warm yellow */
    --text-dark: #333333;
    --text-light: #666666;
    --bg-white: #FFFFFF;
    --bg-light: #F8F8F8;
    --bg-dark: #222222;
    --border-light: #EEEEEE;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

ul li i {
    margin-right: 8px;
    color: #555; /* or your brand color */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
}

p {
    margin-bottom: 1em;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: 2px solid var(--secondary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-center {
    text-align: center;
    margin-top: 40px;
}

.subtitle {
    font-size: 1.2em;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 20px auto 0;
}

.hidden {
    display: none !important;
}

/* Header */
.header {
    background-color: var(--bg-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.8em;
    font-weight: 700;
    color: var(--text-dark);
}

.logo a:hover {
    color: var(--primary-color);
}

.nav ul {
    display: flex;
}

.nav ul li {
    margin-left: 30px;
}

.nav ul li a {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    padding: 5px 0;
    position: relative;
}

.nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav ul li a:hover::after,
.nav ul li a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.8em;
    cursor: pointer;
    color: var(--text-dark);
}

/* Page Hero Section */
.page-hero {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 100px 20px;
    text-align: center;
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/home_page.jpg'); /* Placeholder */
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.hero-image {
  margin: 60px;
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 10px; /* optional rounded corners */
}


.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(124, 87, 252, 0.7); /* Overlay with primary color */
    z-index: -1;
}

.hero-ctas a:first-child {
    margin-right: 16px; /* adjust as needed */
}


.page-hero h1 {
    font-size: 3.5em;
    color: var(--bg-white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-hero .subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.5em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Common Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.grid-2-cols, .grid-3-cols, .grid-4-cols {
    display: grid;
    gap: 30px;
}

.grid-2-cols { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3-cols { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4-cols { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }


/* Forms (General Styling applied to Join and Contact pages) */
.form-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.form-wrapper {
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-wrapper p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="url"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1em;
    color: var(--text-dark);
    background-color: var(--bg-white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(124, 87, 252, 0.2);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit-btn {
    width: auto;
    min-width: 200px;
    padding: 15px 30px;
    font-size: 1.1em;
    display: block;
    margin: 30px auto 0;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--bg-white);
    padding: 60px 0 20px;
    font-size: 0.95em;
}

.footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h3, .footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

.footer-col.logo-col h3 {
    font-size: 1.6em;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    font-weight: 400;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-col.contact-col p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-icons a {
    color: var(--bg-white);
    font-size: 1.5em;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: rgba(255,255,255,0.5);
    font-size: 0.85em;
}

/* Responsive Design (General) */
@media (max-width: 992px) {
    .header .nav {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 80px; /* Adjust based on header height */
        left: 0;
        background-color: var(--bg-white);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 20px 0;
    }

    .header .nav.nav-open {
        display: flex;
    }

    .header .nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    .header .hamburger {
        display: block;
    }

    .page-hero h1 {
        font-size: 2.5em;
    }
    .page-hero .subtitle {
        font-size: 1.1em;
    }
    .section-title {
        font-size: 2em;
    }
    .form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    .header {
        padding: 15px 0;
    }
    .logo a {
        font-size: 1.5em;
    }
    .page-hero {
        padding: 80px 15px;
    }
    .page-hero h1 {
        font-size: 2em;
    }
    .page-hero .subtitle {
        font-size: 1em;
    }
    .section-padding {
        padding: 60px 0;
    }
    .form-wrapper h2 {
        font-size: 1.8em;
    }
    .footer .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col.contact-col p {
        text-align: center; /* Adjust for centered content */
        margin-bottom: 5px;
    }
    .footer-col.contact-col p i {
        margin-right: 0; /* Remove margin for stacked icons */
        display: block; /* Make icon block to center it */
        margin-bottom: 5px;
    }
    .social-icons {
        justify-content: center;
        display: flex; /* Ensure social icons center */
    }
}

/* Home Page Specific Styles */
/* Hero Section (from index.html) */
.hero-section {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://via.placeholder.com/1500x800/7C57FC/FFFFFF?text=Home+Hero+Image'); /* Placeholder */
    background-size: cover;
    background-position: center;
    color: var(--bg-white);
    text-align: center;
    padding: 150px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(124, 87, 252, 0.5); /* Overlay with primary color */
    z-index: -1;
}

.hero-content h1 {
    font-size: 4.5em;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    color: var(--bg-white);
}

.hero-content p {
    font-size: 1.5em;
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
}

.hero-buttons .btn {
    margin: 0 10px;
}

/* Impact Section */
.impact-section {
  padding: 80px 0;
  background-color: #f9f9fb;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #111;
}

.impact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.impact-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.impact-card i {
  font-size: 36px;
  color: #7c3aed; /* Adjust to your brand color */
  margin-bottom: 16px;
}

.impact-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #222;
}

.impact-card p {
  color: #555;
  font-size: 0.95rem;
}

/* Intro Section */
.introduction-section {
  padding: 100px 0;
  background: #ffffff;
  text-align: center;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.intro-title {
  font-size: 2.4rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: #1f1f1f;
  margin-bottom: 24px;
  line-height: 1.3;
}

.intro-description {
  font-size: 1.05rem;
  color: #555;
  font-family: 'Lato', sans-serif;
  line-height: 1.7;
}

.intro-description strong {
  color: #7c3aed; /* Optional: your brand highlight color */
  font-weight: 600;
}

.btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  margin-top: 30px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Lato', sans-serif;
  color: #fff;
  background-color: #7c3aed; /* Your brand purple */
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-play i {
  font-size: 1.1rem;
}

.btn-play:hover {
  background-color: #5b27c1;
}

/* Services Section */
.services-snippet-section {
  padding: 100px 0;
  background-color: #f9f9fb; /* ← same as impact section */
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 50px;
  color: #111;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  padding: 32px 24px;
  text-align: left;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.service-card i {
  font-size: 36px;
  color: #7c3aed; /* Adjust to your brand */
  margin-bottom: 16px;
  display: block;
}

.service-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #222;
  font-weight: 600;
}

.service-card p {
  font-size: 0.96rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.learn-more {
  font-weight: 600;
  color: #7c3aed;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.95rem;
}

.learn-more:hover {
  color: #5b27c1;
}

.btn-center {
  margin-top: 40px;
}

.btn.btn-primary {
  display: inline-flex;              /* ensures icon and text align horizontally */
  align-items: center;              /* vertical alignment fix */
  gap: 8px;                         /* spacing between text and icon */
  background-color: #7c3aed;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}


.btn.btn-primary:hover {
  background-color: #5b27c1;
}


/* USP Section */
.usp-section {
  background-color: #f9f9fb; /* soft and professional */
  padding: 100px 0;
}

.usp-card {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.usp-title {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 24px;
  color: #111;
  line-height: 1.4;
}

.usp-title .highlight {
  color: #7c3aed;
}

.usp-description {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  font-family: 'Lato', sans-serif;
  margin-bottom: 30px;
}

.usp-description strong {
  color: #7c3aed;
  font-weight: 600;
}

.btn.btn-secondary {
  background-color: #ece9f9;
  color: #7c3aed;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn.btn-secondary:hover {
  background-color: #dfd6f6;
}


/* Testimonials Section */
.testimonial-section {
  padding: 60px 100px 100px;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.testimonial-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

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

.testimonial-text {
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.author-info {
  flex-grow: 1;
  font-size: 0.9rem;
  color: #333;
}

.rating {
  font-size: 1.2rem;
  color: #f5b301;
}




/* Features Section (from index.html) */
.features-section {
    background-color: var(--bg-white);
    padding: 80px 0;
    text-align: center;
}

.features-section h2 {
    font-size: 2.8em;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.feature-item i {
    font-size: 3.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 1em;
    color: var(--text-light);
}

/* About Intro Section (from index.html and about.html) */
.about-intro-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.about-content-grid {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap; /* Allows stacking on smaller screens */
}

.about-image {
  width: 100%;
  max-width: 400px; /* or whatever size fits your layout */
  height: auto;
  display: block;
  margin: 0 auto; /* center the image horizontally */
  border-radius: 8px; /* optional: adds soft corners */
}


.about-text-content {
    flex: 2;
    min-width: 300px; /* Ensures it doesn't get too squished */
}

.about-text-content h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text-content p {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 1.5em;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    background-color: var(--bg-white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stat-item h3 {
    font-size: 2.2em;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9em;
    color: var(--text-light);
    margin-bottom: 0;
}

.about-image-content {
    flex: 1;
    min-width: 250px;
    text-align: center; /* Center image if it doesn't take full flex space */
}

.about-image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


/* Services Section (from index.html) */
.services-home-section {
    background-color: var(--bg-white);
    padding: 80px 0;
    text-align: center;
}

.services-home-section h2 {
    font-size: 2.8em;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-item i {
    font-size: 3.5em;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.service-item h4 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-item p {
    font-size: 1em;
    color: var(--text-light);
    margin-bottom: 25px; /* Space above button */
}

/* CTA Section (from index.html) */
.cta-section {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 20px;
    text-align: center;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://via.placeholder.com/1500x400/7C57FC/FFFFFF?text=CTA+Banner'); /* Placeholder */
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(124, 87, 252, 0.8); /* Stronger overlay */
    z-index: -1;
}

.cta-section h2 {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--bg-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: rgba(255,255,255,0.9);
}


/* About Page Specific Styles */

/* Intro Section */
.about-intro-section {
  padding: 100px 0;
  background-color: #f9f9fb;
}

.container {
  max-width: 1200px;  /* 👈 Make sure your container is wide enough */
  margin: 0 auto;
  padding: 0 24px;
}

.about-content-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about-text-content,
.about-image-content {
  flex: 0 0 50%;       /* 👈 fixed-width columns */
  max-width: 40%;
}

.about-image-content {
  text-align: center;
}

.about-image-content img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

.about-title {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 24px;
  color: #1f1f1f;
}

.about-paragraph {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: 'Lato', sans-serif;
}

.about-paragraph strong {
  color: #7c3aed;
}
@media (max-width: 900px) {
  .about-content-grid {
    flex-direction: column;
  }

  .about-text-content,
  .about-image-content {
    max-width: 100%;
  }

  .about-image-content {
    margin-top: 30px;
  }
}




/* Mission & Vision Section */
.mission-section {
  padding: 100px 0;
  background: #ffffff;
}

.mission-card {
  max-width: 900px;
  margin: 0 auto;
  background-color: #f9f9fb;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.mission-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
  color: #1f1f1f;
}

.mission-text {
  font-size: 1.1rem;
  font-style: italic;
  color: #444;
  line-height: 1.9;
  font-family: 'Lato', sans-serif;
  margin-bottom: 20px;
  position: relative;
}

.mission-text::before,
.mission-text::after {
  content: '"';
  font-size: 2.5rem;
  color: #7c3aed;
  position: absolute;
}

.mission-text::before {
  left: -20px;
  top: -10px;
}

.mission-text::after {
  right: -20px;
  bottom: -10px;
}

.mission-citation {
  font-size: 0.95rem;
  color: #7c3aed;
  font-weight: 600;
  margin-top: 10px;
}

/* Success by Numbers */
.about-stats-section {
  padding: 100px 0;
  background-color: #ffffff;
  text-align: center;
}

.stats-title {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: #1f1f1f;
  margin-bottom: 50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  justify-items: center;
  margin-bottom: 40px;
}

.stat-card {
  background-color: #f9f9fb;
  padding: 40px 24px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 250px;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #7c3aed;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  font-size: 1rem;
  color: #444;
  font-family: 'Lato', sans-serif;
}

.stats-note {
  font-size: 1.05rem;
  color: #555;
  font-family: 'Lato', sans-serif;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}



/* Team Section */
.team-section {
    background-color: var(--bg-white);
    padding: 80px 0;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--primary-color);
}

.team-member h3 {
    font-size: 1.5em;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.team-member p {
    font-size: 0.95em;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member .social-links a {
    color: var(--text-light);
    font-size: 1.3em;
    margin: 0 8px;
}

.team-member .social-links a:hover {
    color: var(--secondary-color);
}


/* Services Full Section */
.services-full-section {
    background-color: var(--bg-white);
    padding: 80px 0;
}

.services-full-section .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Adjust min-width for larger items */
    margin-bottom: 50px;
}

.services-full-section .service-item {
    background-color: var(--bg-light);
    padding: 40px; /* Slightly more padding */
    text-align: left; /* Align text to left */
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure cards are same height */
}

.services-full-section .service-item ul {
    list-style: none; /* Remove default bullet */
    margin-top: 20px;
    padding-left: 0;
    flex-grow: 1; /* Push items to top */
}

.services-full-section .service-item ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    font-size: 0.98em;
}

.services-full-section .service-item ul li::before {
    content: '\f058'; /* FontAwesome check-circle icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 2px;
}

.services-full-section .service-item .icon-large {
    margin-bottom: 25px; /* More space below icon */
    font-size: 4em; /* Slightly larger icon */
}

.services-full-section .service-item h4 {
    font-size: 1.6em; /* Slightly larger heading */
    color: var(--text-dark);
}

.services-full-section .service-item p {
    font-size: 1.05em;
    color: var(--text-dark);
}

.services-outro {
    text-align: center;
    font-size: 1.1em;
    color: var(--text-dark);
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


/* Portfolio Cases Section */
.portfolio-cases-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.case-study-item {
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.case-study-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.case-study-item img {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.case-study-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.case-study-content h3 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.case-study-content .brand-type {
    font-size: 0.95em;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 600;
}

.case-details {
    display: grid;
    grid-template-columns: 1fr; /* Stack details vertically */
    gap: 20px;
    flex-grow: 1; /* Allows it to take up available space */
}

.detail-item h4 {
    font-size: 1.2em;
    color: var(--text-dark);
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px; /* Space for icon */
}

.detail-item h4::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
}

.detail-item:nth-child(1) h4::before { content: '\f06a'; } /* fa-exclamation-circle for Challenge */
.detail-item:nth-child(2) h4::before { content: '\f00c'; } /* fa-check-circle for Solution */
.detail-item:nth-child(3) h4::before { content: '\f080'; } /* fa-chart-line for Results */


.detail-item p, .detail-item ul {
    font-size: 0.95em;
    color: var(--text-light);
    margin-bottom: 0;
}

.detail-item ul {
    list-style: none;
    padding-left: 0;
}

.detail-item ul li {
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.detail-item ul li::before {
    content: '\2022'; /* Custom bullet point */
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}


/* Join Intro Section */
.join-intro-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.join-content-grid {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.join-text-content {
    flex: 2;
    min-width: 300px;
}

.join-text-content h3 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.join-text-content p {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 1em;
}

.join-text-content h4 {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.join-text-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.join-text-content ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    font-size: 1em;
}

.join-text-content ul li::before {
    content: '\f00c'; /* FontAwesome check icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 2px;
}

.join-image-content {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.join-image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Form Specific Styles for multi-column layout (Join & Contact) */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0; /* Managed by form-group */
    flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
}

.form-group.half-width {
    flex: 1;
    min-width: calc(50% - 10px); /* Account for gap */
}


/* Contact Details Section */
.contact-details-section {
    background-color: var(--bg-white);
    padding: 80px 0;
    text-align: center;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-info-item {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.contact-info-item .icon-large {
    font-size: 3.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info-item h4 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-info-item p {
    font-size: 0.95em;
    color: var(--text-light);
    margin-bottom: 5px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    border: 0;
}


/* Why Choose Us Section (Contact Page) */
.why-choose-us-section {
    background-color: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.why-choose-us-section h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.choose-us-item {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-us-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.choose-us-item .icon-medium {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.choose-us-item p {
    font-size: 1.1em;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-white);
    padding: 80px 0;
}

.faq-section h2 {
    font-size: 2.5em;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.2em;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #e9e9e9;
}

.accordion-header.active {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.accordion-header.active .fas {
    color: var(--bg-white); /* Keep icon white when active */
}

.accordion-header .fas {
    font-size: 0.9em;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.accordion-content {
    padding: 0 25px;
    background-color: var(--bg-white);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.accordion-content p {
    padding: 15px 0;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive adjustments for specific pages */
@media (max-width: 992px) {
    /* About Page */
    .about-content-grid {
        flex-direction: column;
        text-align: center;
    }
    .about-image-content {
        order: -1; /* Image above text on smaller screens */
        margin-bottom: 30px;
    }
    .about-text-content ul {
        text-align: left; /* Keep list left-aligned even if section is centered */
    }
    /* Join Page */
    .join-content-grid {
        flex-direction: column;
        text-align: center;
    }
    .join-image-content {
        order: -1; /* Image above text on smaller screens */
        margin-bottom: 30px;
    }
    .join-text-content ul {
        text-align: left; /* Keep list left-aligned even if section is centered */
    }
    .form-group.half-width {
        min-width: 100%; /* Stack form fields on smaller screens */
    }
}

@media (max-width: 768px) {
    /* Home Page */
    .hero-content h1 {
        font-size: 2.8em;
    }
    .hero-content p {
        font-size: 1.2em;
    }
    .hero-buttons .btn {
        margin: 10px 0; /* Stack buttons */
    }
    .features-section h2, .services-home-section h2 {
        font-size: 2em;
    }
    .cta-section h2 {
        font-size: 2.5em;
    }
    .cta-section p {
        font-size: 1em;
    }

    /* About Page */
    .mission-vision-section h2, .team-section h2 {
        font-size: 2em;
    }
    .mv-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* Services Page */
    .services-full-section .service-item {
        padding: 30px;
    }
    .services-full-section .service-item .icon-large {
        font-size: 3.5em;
    }
    .services-full-section .service-item h4 {
        font-size: 1.4em;
    }
    .services-full-section .service-item ul li {
        font-size: 0.9em;
    }
    .services-outro {
        font-size: 1em;
    }

    /* Portfolio Page */
    .case-study-grid {
        grid-template-columns: 1fr; /* Stack cases on smaller screens */
    }
    .case-study-item img {
        height: 200px; /* Adjust image height for smaller screens */
    }
    .case-study-content h3 {
        font-size: 1.6em;
    }
    .detail-item h4 {
        font-size: 1.1em;
    }
    .detail-item p, .detail-item ul {
        font-size: 0.9em;
    }

    /* Contact Page */
    .contact-details-grid, .choose-us-grid {
        grid-template-columns: 1fr;
    }
    .why-choose-us-section h2, .faq-section h2 {
        font-size: 2em;
    }
    .accordion-header {
        font-size: 1.1em;
        padding: 18px 20px;
    }
}

@media (max-width: 480px) {
    /* Home Page */
    .hero-content h1 {
        font-size: 2.2em;
    }
    .hero-content p {
        font-size: 1em;
    }
    .features-section h2, .services-home-section h2 {
        font-size: 1.8em;
    }
    .cta-section h2 {
        font-size: 2em;
    }

    /* About Page */
    .about-text-content h2 {
        font-size: 2.2em;
    }
    .stat-item h3 {
        font-size: 1.8em;
    }

    /* Services Page */
    .services-full-section .service-item {
        padding: 25px;
    }
    .services-full-section .service-item .icon-large {
        font-size: 3em;
    }
    .services-full-section .service-item h4 {
        font-size: 1.3em;
    }

    /* Portfolio Page */
    .case-study-content {
        padding: 20px;
    }
    .case-study-content h3 {
        font-size: 1.4em;
    }
    .detail-item h4 {
        font-size: 1em;
    }

    /* Join Page */
    .join-text-content h3 {
        font-size: 1.8em;
    }
    .form-wrapper {
        padding: 20px;
    }

    /* Contact Page */
    .contact-info-item .icon-large {
        font-size: 3em;
    }
    .contact-info-item h4 {
        font-size: 1.3em;
    }
    .choose-us-item .icon-medium {
        font-size: 2.5em;
    }
    .choose-us-item p {
        font-size: 1em;
    }
}