/* Global reset and full height for html and body */
html, body {

  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  position: relative;
  padding-top: 50px; /* adjust if you have a fixed header */
}

/* Home page banner first section (Hero Section - 'Trust & Results') */
.hero {
  background-color: #ebaf37;
  color: #5f0f40; /* Default Text Color: Off-White / Cream */
  padding: 25px 20px; /* Section Padding */
  text-align: center; /* Center align content */
}

.content-wrapper h1 {
  font-family: 'League Spartan', sans-serif; /* Font Family for Heading */
  font-size: 6rem; /* Font Size for Heading (very large) */
  color: #5f0f40; /* Default Text Color: Off-White / Cream */
  background-color: #ebaf37; 
  margin-bottom: 1.5rem; /* Margin Below Heading */
  margin-top: 3rem; /* Margin Above Heading */
  line-height: 1.2; /* Line Height for Heading */
}

.content-wrapper p {
  font-family: 'League Spartan', sans-serif; /* Font Family for Paragraph */
  font-size: 1.8rem; /* Font Size for Paragraph */
  color: #5f0f40; /* Paragraph Text Color: Off-White / Cream */
  margin-top: -1.5rem; /* Margin Above Paragraph */
  margin-bottom: 2rem; /* Margin Below Paragraph */
  line-height: 1.5; /* Line Height for Paragraph */
  max-width: 80%; /* Maximum Width for Paragraph */
  margin-left: auto; /* Center align paragraph */
  margin-right: auto; /* Center align paragraph */
}

.content-wrapper {
  padding-bottom: 0; /* No bottom padding */
  min-height: auto; /* Auto minimum height */
}

/* Core Messaging Section Fix */
.core-messaging {
  background-color: #5f0f40; /* Purple background */
  padding: 60px 20px; /* Increase padding for balanced vertical space */
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  min-height: 300px; /* Set a minimum height to balance section height */
  box-sizing: border-box;
}

.core-messaging .message-box {
  background-color: #ebaf37; /* Yellow box */
  padding: 25px 60px;
  border-radius: 20px;
  max-width: 1000px;
  color: #5f0f40; /* Dark text for contrast */
  font-size: 1.6rem;
  line-height: 1.6;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: none;
  text-align: left;
  margin: 0 auto;
}

/* Optional: Overlay (Currently not in use as per screenshot) */
.core-messaging .message-box::before {
    content: none; /* No overlay content */
}
</* Testimonials Section Styling */
.testimonials-section {
    background-color: #004b49;
    padding: 100px 40px;
    text-align: center;
    color: #f5f5dc;
    font-family: 'League Spartan', sans-serif;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.testimonials-section .container {
    background-color: #004b49;
    margin: 0 auto;
    padding: 10px;

}

.testimonials-section .section-title {
    font-size: 4rem;
    color: #f5f5dc;
    margin-bottom: 60px;
    text-align: center;
    padding-left: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    justify-items: center;
}

.testimonial-card {
    background-color: transparent;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;  /* Center text for cleaner look without images */
    max-width: 350px;
    color: #f5f5dc;
    box-shadow: 0 0 10px rgba(235, 175, 55, 0.5); /* subtle glowing effect */
    border: 1px solid #ebaf37; /* subtle amber border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(235, 175, 55, 0.9);
}

.testimonial-name {
    font-size: 2rem;
    color: #ebaf37; /* Amber for names */
    margin-bottom: 5px;
    font-weight: 700;
}

.testimonial-title {
    font-size: 1.2rem;
    color: #f5f5dc;
    margin-bottom: 20px;
    font-style: italic;
    opacity: 0.9;
}

.testimonial-quote {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #f5f5dc;
    font-style: normal;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-section .section-title {
        font-size: 3rem;
        padding-left: 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-card {
        max-width: 90%;
        padding: 25px 15px;
    }

    .testimonial-name {
        font-size: 1.8rem;
    }

    .testimonial-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .testimonial-quote {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 0px 0px;
    }

    .testimonials-section .section-title {
        font-size: 2.5rem;
		height: 10px;
    }

    .testimonial-name {
        font-size: 1.6rem;
    }

    .testimonial-title {
        font-size: 1rem;
    }

    .testimonial-quote {
        font-size: 1.1rem;
    }
}


.results-section {
    background-color: #5f0f40 !important; /* force purple background */
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Arial, sans-serif;
}

.section-title {
    color: #f5f5dc;
    font-size: 3.5em; /* Adjust size as needed */
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
	margin-top: 0 !important;
}

.results-container {
    background: transparent; /* ensure transparent */
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.result-box {
    background-color: #5f0f40;
    border: 2px solid #ebaf37;
    color: #f5f5dc;
    padding: 30px 40px; /* Adjust padding inside boxes */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 250px; /* Fixed width for each box, adjust as needed */
    box-sizing: border-box; /* Include padding and border in the width */
    justify-content: space-between;
}

.result-number {
    font-size: 3.5em; /* Adjust size as needed */
    font-weight: bold;
    margin-bottom: 10px;
}

.result-description {
    font-size: 1.2em; /* Adjust size as needed */
    line-height: 1.4;
	

}

.cta-button {
    background-color: #f5f5dc;
    color: #5f0f40;
    border: 2px solid #ebaf37; /* Border for the button */
    padding: 15px 40px;
    font-size: 1.5em;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
    /* Remove 'position: Center;' */
    /* Add this if the parent is a flex container with flex-direction: column */
    /* If the parent has align-items: center (which .results-section does), this isn't strictly necessary unless you want to override it for this specific item. */
    /* However, if results-section didn't have align-items: center, this would center it. */
    /* For simplicity and robustness, you can ensure the button is centered by its parent. */

    /* If you still need to center it directly and the parent isn't using flexbox effectively for it: */
    display: block; /* Make it a block element */
    margin-left: auto; /* Push it to the right as much as possible */
    margin-right: auto; /* Push it to the left as much as possible */
    margin-top: 20px; /* Add some space above it if needed */
    margin-bottom: 20px; /* Add some space below it if needed */
}

.cta-button:hover {
    background-color: #ebaf37; /* A subtle hover effect */
    color: #5f0f40;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .results-container {
        flex-direction: column;
        align-items: center;
    }
    .result-box {
        width: 80%; /* Make boxes take up more width on smaller screens */
        max-width: 300px; /* Limit max width */
    }
    .section-title {
        font-size: 2em;
    }
    .result-number {
        font-size: 3em;
    }
    .result-description {
        font-size: 1.1em;
    }
    .cta-button {
        font-size: 1.3em;
        padding: 12px 30px;
    }
}

@media (max-width: 480px) {
    .results-section {
        padding: 30px 15px;
    }
    .result-box {
        padding: 20px 30px;
    }
    .section-title {
        font-size: 1.8em;
    }
    .result-number {
        font-size: 2.8em;
    }
    .result-description {
        font-size: 1em;
    }
    .cta-button {
        font-size: 1.2em;
        padding: 10px 25px;
    }
}

/* Trusted By */
.trusted-section {
    background-color: #ebaf37 !important;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Arial, sans-serif;
}

.trusted-title {
    color: #f5f5dc;
    font-size: 3.5em;
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
    margin-top: 0 !important;
}

.trusted-container {
    background: transparent;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.trusted-box {
    background-color: #5f0f40;
    border: 4px solid #004b49;
    color: #f5f5dc;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 250px;
    box-sizing: border-box;
}

.trusted-number {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.trusted-description {
    font-size: 1.2em;
    line-height: 1.4;
}

/* Customer Section Styling */
        .customer-section {
			  display: none; /* Hides the section */

            background-color: #ebaf37; /* Background color as specified */
            padding: 60px 20px; /* Adjust padding as needed */
            text-align: center; /* Center align content within the section */
            font-family: Arial, sans-serif; /* A clear, common font */
        }

        .customer-heading-container {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 40px; /* Space below the heading */
            gap: 15px; /* Space between stars and heading */
        }

        .customer-star {
            width: 30px; /* Size of the star icon */
            height: 30px;
            fill: #5f0f40; /* Color of the star icon as specified */
        }

        .customer-title {
            color: #5f0f40; /* Heading text color as specified */
            font-size: 2.8em; /* Adjust font size as needed */
            font-weight: bold;
            margin: 0; /* Remove default margin from h2 */
        }

        .customer-images-container {
            display: flex;
            justify-content: center; /* Center the images horizontally */
            flex-wrap: wrap; /* Allow images to wrap to the next line on smaller screens */
            gap: 40px; /* Space between image circles */
        }

        .customer-image-wrapper {
            width: 180px; /* Fixed width for image container */
            height: 180px; /* Fixed height for image container */
            border-radius: 50%; /* Make the image frame circular */
            overflow: hidden; /* Hide anything outside the circle */
            border: 5px solid #5f0f40; /* Border around the image, matching heading color */
            display: flex; /* Use flex to center image if it's smaller */
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
        }

        .customer-image {
            width: 100%; /* Image fills the wrapper */
            height: 100%; /* Image fills the wrapper */
            object-fit: cover; /* Crop image to cover the area without distortion */
            display: block; /* Remove extra space below image */
        }
/* Home page banner first section (Hero Section - 'Trust & Results') */
@media (max-width: 768px) {
  .hero {
    padding: 20px 15px;
  }

  .content-wrapper h1 {
    font-size: 2.8rem;      /* Scales down heading */
    margin-top: 1.5rem;
    margin-bottom: 0.3rem;
    line-height: 1.3;
  }

  .content-wrapper p {
    font-size: 1.2rem;      /* Scales down paragraph */
    margin-top: 0;
    margin-bottom: 1.5rem;
    max-width: 95%;         /* Allow more breathing space */
    line-height: 1.6;
  }

  .content-wrapper {
    padding-bottom: 0;
	height: 250px;
  }
}
/* === Mobile Responsive: Core Messaging Section (<=768px) === */
@media (max-width: 768px) {
  .core-messaging {
    padding: 40px 15px;        /* reduce outer padding for small screens */
    min-height: auto;           /* let content dictate height */
  }

  .core-messaging .message-box {
    padding: 20px 25px;         /* shrink inner padding */
    max-width: 100%;            /* full width on mobile */
    font-size: 1.3rem;          /* scale down text */
    line-height: 1.5;           /* maintain readability */
    text-align: left;           /* keep left-align (change to center if preferred) */
    margin: 0 auto;
  }
}

/* === Extra-Small Phones: Core Messaging Section (<=480px) === */
@media (max-width: 480px) {
  .core-messaging {
    padding: 30px 10px;
  }

  .core-messaging .message-box {
    padding: 18px 20px;
    font-size: 1.15rem;
    line-height: 1.5;
  }
}


