:root {
--primary-color: #1ca4ac;
--secondary-color: #f6f8ea;
--bg-peach: #f6e8e2;
--bg-mint: #F0F9F9;
--text-color: #333333;
--heading-color: #1E1E1E;
}

body {
font-family: 'GOTU', sans-serif;
color: var(--text-color);
line-height: 1.6;
background-color: var(--bg-peach);
overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
color: var(--heading-color);
}

.accordion-button {
    font-weight: 700 !important;
    text-shadow: 0 0 0.3px #000;
}

/* Add fixed positioning for header to overlay hero section */
header {
position: absolute;
width: 100%;
top: 0;
left: 0;
z-index: 10;
background: linear-gradient(to bottom, rgba(246, 232, 226, 1) 1%, rgba(246, 232, 226, 1) 30%, rgba(246, 232, 226, 0.9) 70%, rgba(246, 232, 226, 0.6) 100%);
border: none;
box-shadow: none;
padding-top: 0;
}

.navbar {
position: sticky;
top: 0;
z-index: 1000;
padding: 0;
background: transparent; 
height: 70px;  /* Back to original navbar height */
}

/* .navbar-brand img {
    height: 50px;      
    max-height: 100%;  
    width: auto;       
}*/

.navbar-brand {
display: flex;
align-items: center;
height: 100%;
padding: 0;
}

.navbar-brand img {
height: 60px;  /* Adjusted logo size for 70px navbar */
width: auto;
object-fit: contain;
}

/* .navbar-brand {
font-family: 'Gotu', sans-serif;
font-size: 1.8rem;
font-weight: 700;
color: var(--primary-color) !important;
}*/

.nav-link {
color: var(--text-color) !important;
margin: 0 1rem;
font-weight: 500;
font-size: 0.95rem;
transition: color 0.3s ease;
}

.nav-link:hover {
color: var(--primary-color) !important;
}

.navbar .btn {
padding: 0.35rem 1rem;
font-size: 0.85rem;
border-radius: 20px;
margin-left: 0.5rem;
}

.btn-primary {
background-color: var(--primary-color);
border-color: var(--primary-color);
padding: 0.8rem 2rem;
border-radius: 8px;
font-weight: 600;
transition: all 0.3s ease;
}

.btn-primary:hover {
background-color: #4AA8A4;
border-color: #4AA8A4;
transform: translateY(-2px);
}

/* Adjust hero section to account for the navbar overlay */
.hero {
padding: 6rem 0 4rem;
position: relative;
overflow: hidden;
min-height: 80vh;
display: flex;
align-items: center;
}

/* Responsive hero background shapes (overlap behind hero image) */

.hero {
  position: relative;
  overflow: hidden;
}

/* Simple teal circle behind hero image */
.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    position: relative;
    z-index: 2;
}
  
.hero-image::before {
    content: '';
    position: absolute;
    /*bottom: -100px;
    right: -100px;*/
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 60% 40%, var(--primary-color) 0%, transparent 85%);
    opacity: 0.30;
    z-index: 0;
    border-radius: 50%;
}

/* Simple white circle overlapping the teal circle */
/*.hero::after {
  content: '';
  position: absolute;
  top: 60%;
  right: -10%;
  width: 25vw;
  max-width: 300px;
  height: 25vw;
  max-height: 300px;
  background-color: #ffffff;
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
  z-index: 0;
}*/

/* Ensure hero image sits above the circles */
.hero .hero-image {
  position: relative;
  z-index: 1;
}


/*.hero .container::before {
content: '';
position: absolute;
top: 30%;
right: 25%;
width: 400px;
height: 400px;
background-color: #FFFFFF;
border-radius: 50% 50% 30% 70% / 50% 50% 70% 30%;
opacity: 0.08;
z-index: 0;
}*/

.hero .container {
position: relative;
z-index: 1;
}

.hero h1 {
font-size: 3.5rem;
font-weight: 800;
margin-bottom: 1.5rem;
line-height: 1.2;
}

.hero h1 strong {
display: block;
color: var(--heading-color);
}

.hero p {
font-size: 1.2rem;
margin-bottom: 2rem;
color: #666;
max-width: 500px;
}

.hero .btn-primary {
padding: 0.8rem 2rem;
font-size: 1.1rem;
}

.info-section {
background: var(--bg-peach);
padding: 5rem 0;
position: relative;
overflow: hidden;
}

.info-section::before {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: clamp(300px, 50%, 600px);
height: clamp(300px, 50%, 600px);
background: radial-gradient(circle at bottom right, var(--secondary-color) 0%, transparent 60%);
opacity: 0.4;
}

.info-section .col-md-3 {
padding: 1rem;
}

.info-section img {
width: 180px;
height: auto;
margin-bottom: 1.5rem;
} 

.info-hero-image {
max-width: 100%;
height: auto;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
margin: 0 auto;
display: block;
width: auto;
}

.info-section p {
font-size: 1rem;
line-height: 1.4;
margin: 0 auto;
font-weight: 700;
color: #333;
}

.info-section h2 {
color: var(--text-color);
font-weight: 800;
position: relative;
z-index: 1;
}

.steps {
background: var(--bg-mint);
padding: 5rem 0;
position: relative;
overflow: hidden;
text-align: center;
}

.steps::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at top left, rgba(91, 191, 186, 0.1) 0%, transparent 60%);
}

.steps h3 {
color: var(--heading-color);
margin-bottom: 4rem;
}

.steps .bi {
color: var(--primary-color);
font-size: 2.5rem;
}

.steps .col-md-4 {
padding: 0 2rem;
margin-bottom: 2rem;
}

.steps i {
display: inline-block;
margin-bottom: 1rem;
}

.video-section {
background: var(--bg-peach);
padding: 4rem 0;
position: relative;
}

.video-section h4 {
color: var(--heading-color);
font-weight: 600;
}

.video-container {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stats {
background: var(--bg-peach);
padding: 4rem 0;
position: relative;
}

.stats::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at center right, var(--secondary-color) 0%, transparent 70%);
opacity: 0.3;
}

.testimonial {
background: var(--bg-mint);
padding: 4rem 0;
text-align: center;
position: relative;
overflow: hidden;
}

.testimonial::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at center, rgba(91, 191, 186, 0.1) 0%, transparent 70%);
}

.contact {
background: var(--bg-peach);
padding: 5rem 0;
position: relative;
overflow: hidden;
}

.contact::before {
content: '';
position: absolute;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at bottom right, var(--secondary-color) 0%, transparent 70%);
opacity: 0.4;
}

.contact h4 {
font-size: 2rem;
margin-bottom: 1.5rem;
}

.form-control {
padding: 0.8rem;
border-radius: 8px;
border: 1px solid #ddd;
margin-bottom: 1rem;
}

.form-control:focus {
border-color: var(--primary-color);
box-shadow: 0 0 0 0.2rem rgba(91, 191, 186, 0.25);
}

footer {
background: #678E90;
color: #E0E0E0;
padding: 2rem 0;
}

footer a {
color: #E0E0E0;
text-decoration: none;
display: block;
margin-bottom: 0.5rem;
}

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

footer img {
height: 135px;
}

footer .container {
max-width: 1200px;
margin: 0 auto;
text-align: center;
}

.social-icons {
display: flex;
justify-content: flex-end;
align-items: center;
gap: 1.5rem;
margin-bottom: 2rem;
}

.social-icons a {
display: inline-block;
margin-bottom: 0;
transition: transform 0.3s ease;
}

.social-icons a:hover {
transform: translateY(-3px);
}

/* Media query adjustment for smaller screens */
@media (max-width: 768px) {
.hero {
    padding-top: 5rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.hero-image {
    max-width: 90%;
    height: auto;
    margin-top: 3rem;
}

.info-section .col-md-3 {
    margin-bottom: 2rem;
}

.info-image {
    width: 100px;
    height: 100px;
}

.steps .col-md-4 {
    margin-bottom: 2rem;
}

.pricing .card {
    margin-bottom: 1.5rem;
}

.contact img {
    margin-bottom: 2rem;
}

.social-icons {
    justify-content: center;
}
}

@media (max-width: 576px) {
.hero h1 {
    font-size: 2rem;
}

.hero p {
    font-size: 1rem;
}

.navbar-brand {
    font-size: 1.5rem;
}

.nav-link {
    font-size: 0.9rem;
}

.btn-primary {
    width: 100%;
    margin-top: 0.5rem;
}

.stats h4 {
    font-size: 1.8rem;
}

.stats p {
    font-size: 0.9rem;
}
}

/* Accessibility Improvements */
.btn:focus, .form-control:focus {
outline: 2px solid var(--primary-color);
outline-offset: 2px;
}

.nav-link:focus {
outline: 2px solid var(--primary-color);
outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
* {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
}
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

.vector-shape {
position: absolute;
border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
pointer-events: none;
z-index: 0;
}

.info-section::after {
content: '';
position: absolute;
top: 20%;
right: -15%;
width: 500px;
height: 500px;
background-color: var(--secondary-color);
border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
opacity: 0.2;
transform: rotate(-15deg);
z-index: 0;
}

.steps::after {
content: '';
position: absolute;
bottom: -10%;
left: -5%;
width: 350px;
height: 350px;
background-color: var(--primary-color);
border-radius: 50% 50% 30% 70% / 50% 50% 70% 30%;
opacity: 0.1;
transform: rotate(45deg);
z-index: 0;
}

.stats::after {
content: '';
position: absolute;
top: 50%;
right: -10%;
width: 250px;
height: 250px;
background-color: var(--secondary-color);
border-radius: 30% 70% 50% 50% / 30% 30% 70% 70%;
opacity: 0.15;
transform: rotate(-30deg);
z-index: 0;
}

.testimonial::after {
content: '';
position: absolute;
bottom: -20%;
right: -10%;
width: 400px;
height: 400px;
background-color: var(--primary-color);
border-radius: 70% 30% 50% 50% / 30% 70% 70% 30%;
opacity: 0.1;
transform: rotate(15deg);
z-index: 0;
}

.contact::after {
content: '';
position: absolute;
top: 10%;
left: -15%;
width: 450px;
height: 450px;
background-color: var(--secondary-color);
border-radius: 50% 50% 30% 70% / 50% 50% 70% 30%;
opacity: 0.2;
transform: rotate(-25deg);
z-index: 0;
}

.container {
position: relative;
z-index: 1;
max-width: 1200px;
margin: 0 auto;
}

.info-image {
width: 120px;
height: 120px;
object-fit: cover;
border: 3px solid var(--primary-color);
padding: 3px;
}

.pricing {
background: var(--bg-mint);
padding: 3rem 0;
text-align: center;
position: relative;
overflow: hidden;
}

.pricing::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at center, rgba(91, 191, 186, 0.1) 0%, transparent 70%);
}

.pricing .card {
transition: all 0.3s ease;
border-radius: 12px;
overflow: hidden;
max-width: 320px;
margin: 0 auto;
}

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

.pricing .card-body {
padding: 1.5rem;
}

.pricing .card-title {
color: var(--primary-color);
font-weight: 700;
font-size: 1.5rem;
margin-bottom: 0.5rem;
}

.pricing h2 {
font-size: 2rem;
margin-bottom: 2rem;
color: var(--heading-color);
position: relative;
z-index: 1;
}

.pricing .display-5 {
font-size: 2.5rem;
}

.pricing .mb-3 {
margin-bottom: 0.5rem !important;
}

.pricing .my-4 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}

.pricing .border-primary {
border-width: 2px !important;
transform: scale(1.05);
}

.pricing .text-primary {
color: var(--primary-color) !important;
}

.pricing::after {
content: '';
position: absolute;
bottom: -20%;
right: -10%;
width: 400px;
height: 400px;
background-color: var(--primary-color);
border-radius: 70% 30% 50% 50% / 30% 70% 70% 30%;
opacity: 0.1;
transform: rotate(15deg);
z-index: 0;
}

/* Add a container modifier for the navbar to make it more narrow */
.navbar .container {
max-width: 85%;
}

.contact img {
border-radius: 50%;
width: 400px;
height: 400px;
object-fit: cover;
margin: 0 auto;
display: block;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (min-width: 1200px) {
    .info-section .col-md-3 {
        flex: 0 0 20%; /* Adjust column width */
        max-width: 20%;
    }
    .steps .icon {
        font-size: 3rem; /* Increase icon size */
    }
    .steps .step-text {
        font-size: 1.5rem; /* Increase text size */
    }
}