.body{
    font-family: roboto;
}
.home-div{
    border-style: solid;
    padding-top: 45px;
    height: 400px;
    background-image: url(IMAGES/pom2.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: multiply;
    border-radius: 8px;
    margin-top: 86px;
}

@media (min-width: 992px){
    .home-div{
        height: 480px;
        padding-top: 150px;
    }
}

.p{
    margin-left: 10px;
}
.button1{
    display: block;
    align-items: center;
    color: rgb(21, 2, 2);
    font-size: larger;
    background-color: gold;
    margin: 0 auto;
    border-radius: 5px;
    padding: 6px 12px;
    transition: background 0.3s ease;
    border-width: 1px;
}
@media (min-width: 768px){
    .button1{
        padding: 12px 24px;
    }
    .quot{
        width: 900px;
    }
}
.button1:hover{
    background-color: rgb(129, 213, 45);
    transition-delay: 0.1s;
}
.parent{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: auto;
}
.quot{
    display: inline-block;
    padding: 12px 16px;
    background: #96ed7b;
    color: black;
    font-weight: 600;
    border-radius: 10px;
    position: relative;
    max-width: 700px;
    transition: width 0.3s ease;
} 
.quot::after{
    content: "";
    position: absolute;
    left: -10px;
    top: 12px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 10px solid #96ed7b;
}
@media (min-width: 768px){
    .quot{
        width: 900px;
    }
}

/* service divs style */
.services{
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr;
    padding: 20px;
}
.service-divs{
    align-items: center;
    text-align: center;
    background-color: #4a8937;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 2px;
    padding-right: 2px;
    margin-left: 8px;
    margin-right: 8px;
    height: 380px;
    border-radius: 8px;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}
.service-image{
    width: 100px;
    height: 100px;
    border-radius: 50px;
}
 @media(min-width:768px) {
    .services{
        grid-template-columns: repeat(2, 1fr);
    }
    .service-divs{
        height: auto;
    }
 }
@media(min-width: 1200px) {
    .services{
        grid-template-columns: repeat(3, 1fr);
    }
    .service-divs{
        height: auto;
    }
}
#changing-text{
    color: gold;
}
#dynamic-text{
    color: rgb(174, 104, 5);
    font-weight: 600;
}
.service-divs2{
    align-items: center;
    text-align: center;
    background-color: #b2e372;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 2px;
    padding-right: 2px;
    margin-left: 8px;
    margin-right: 8px;
    height: 380px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}
 @media(min-width:768px) {
    .services{
        grid-template-columns: repeat(2, 1fr);
    }
    .service-divs2{
        height: auto;
    }
 }
@media(min-width: 1200px) {
    .services{
        grid-template-columns: repeat(3, 1fr);
    }
    .service-divs2{
        height: auto;
    }
}
.button2{
    display: block;
    align-items: center;
    color: rgb(21, 2, 2);
    background-color: gold;
    border-radius: 5px;
    padding: 6px 12px;
    transition: background 0.3s ease;
    border-width: 1px;
    margin: 0 auto;
}
@media (min-width: 768px){
    .button2{
        padding: 8px 18px;
    }
}
.button2:hover{
    background-color: rgb(149, 214, 28);
    transition-delay: 0.1s;
}
.topic{
    text-align: center;
    font-weight: 700;
    padding-top: 25px;
}
.subtopic{
    text-align: center;
    font-weight: 500;
    font-size: large;

    /* service divs style ends */
}
.Pricing{
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    justify-content: center;
    padding: 10px;
}
.pricing-divs{
    padding: 20px;
    text-align: center;
    height: 380px;
    background: linear-gradient(to bottom, gold, white);
    border-radius: 5px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 8px;
    margin-right: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}
.pricing-divs2{
    padding: 20px;
    text-align: center;
    height: 380px;
    background: linear-gradient(to bottom, rgb(138, 224, 89), white);
    border-radius: 5px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 8px;
    margin-right: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}
hr{
    border-style: none;
    border-top: 2.2px solid rgb(34, 65, 34);
    margin: 10px 0;
}
.pricing-button{
    margin-top: 30px;
    border-radius: 2px;
    background-color: gold;
    border: 2px;
    padding: 10px 15px;
    transition: background 0.3s ease;
}
.pricing-button:hover{
    background-color: rgb(160, 156, 150);
    transition-delay: 0.1s;
}
@media(min-width: 768px) and (max-width:1023px) {
    .Pricing {
        grid-template-columns: 1fr 1fr;
    }
}
@media(min-width:1024px) {
    .Pricing {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
.picture-div{
    border-style: solid;
    padding-top: 200px;
    height: 400px;
    background-image: url(IMAGES/pom3.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.2);
    background-blend-mode: multiply;
    border-radius: 8px;
    margin-top: 86px;
    height: auto;
}
@media (min-width: 992px){
    .picture-div{
        height: 500px;
        padding-top: 250px;
        background-position: center;
        background-size: cover;
    }
}
.mother-about{
    align-items: center;
    text-align: center;
    background-image: url(IMAGES/wp3.webp);
    margin-top: 20px;
    margin-bottom: 8px;
    padding-bottom: 20px;
    border-radius: 8px;
}
.about-div{
    border-style: solid;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
    padding-top: 15px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    display: inline-block;
    background-color:  rgba(255, 255, 255, 0.8);
    margin-left: 6px;
    margin-right: 6px;
}
@media (min-width: 992px){
    .about-div{
        height: auto;
        padding-top: 15px;
        padding-bottom: 10px;
        padding-left: 20px;
        padding-right: 20px; 
        width: 500px;
        display: inline-block;
        background-color: rgba(255, 255, 255, 0.8);
        margin-top: 15px;
    }
}
.icon-lines{
    margin-top: 7px;
    align-items: center;
    display: inline-block;
}
.line{
    display: flex;
    align-items: center;
    margin: 5px 0;
}
.icon-img{
    width: 30px;
    height: 30px;
    margin-right: 8px;
    border-radius: 15px;
}
.approach{
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr;
    padding: 20px;
}
.approach-divs{
    align-items: center;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    padding-top: 25px;
    padding-left: 4px;
    padding-right: 4px;
    margin-left: 8px;
    margin-right: 8px;
    height: 380px;
    border-radius: 8px;
    color: black;
    position: relative;
}
@media(min-width:768px) {
    .approach{
        grid-template-columns: repeat(2, 1fr);
    }
    .approach-divs{
        height: 400px;
        padding-top: 15px;
    }
 }
@media(min-width: 1200px) {
    .approach{
        grid-template-columns: repeat(3, 1fr);
    }
    .approach-divs{
        height: 400px;
        padding-top: 15px;
    }
}
.approach-divs2{
    align-items: center;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    padding-top: 25px;
    padding-left: 4px;
    padding-right: 4px;
    margin-left: 8px;
    margin-right: 8px;
    height: 380px;
    border-radius: 5px;
    position: relative;
}
@media(min-width:768px) {
    .approach{
        grid-template-columns: repeat(2, 1fr);
    }
    .approach-divs2{
        height: 400px;
        padding-top: 15px;
    }
 }
@media(min-width: 1200px) {
    .approach{
        grid-template-columns: repeat(3, 1fr);
    }
    .approach-divs2{
        height: 400px;
        padding-top: 15px;
    }
}
.approach-button{
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 15px;
    background-color: rgb(156, 210, 112);
    color: white;
    border: none;
    border-radius: 5px 0 8px 0;
    cursor: default;
}
.approach-button2{
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 15px;
    background-color: rgb(235, 235, 151);
    color: rgb(1, 0, 0);
    border: none;
    border-radius: 5px 0 8px 0;
    cursor: default;
}
.pro-contact{
    text-align: center;
    background-color: rgb(201, 235, 151);
}
.procontact2{
    display: grid;
    gap: 30px;
    width: 100%;
    max-width: 100%;
}
.procontact2{
    grid-template-columns: 1fr;
}
@media(min-width: 768px) {
    .procontact2{
        grid-template-columns: 1fr 1fr;
    }
}
.contact1{
    background-image: url(IMAGES/doc3.jpeg);
    background-color: rgba(0, 0, 0, 0.4);
    height: 410px;
    width: 95%;
    margin: 10px;
    background-size: cover;
    border-radius: 8px;
}
.contact2{
    text-align: left;
    padding: 8px;
}
.box{
    display: block;
    width: 100%;
    height: 40px;
    font-size: medium;
}
.box2{
    height: 100px;
    width: 100%;
    font-size: medium;
    display: block;
    padding-top: 8px;
    margin-bottom: 10px;
} 
.heading{
    font-weight: 500;
    padding-top: 8px;
}
.contact-button{
    text-align: center;
    background-color: gold;
    padding: 10px 15px;
    border-radius: 7px;
    align-content: center;
    margin-left: 45%;
}
.contact-button:hover{
    background-color: rgb(99, 254, 94);
}
.contact-button:active{
    background-color: bisque;
}
.accordion {
    width: 100%;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #040704;  
}  

.accordion-button {
    width: 100%;
    padding: 15px;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background 0.3s; 
}
.accordion-button:hover {
    background: #fcfbfa;
}

.accordion-content {
    display: none; 
    padding: 15px;
    background: #e7f7e7;  
    font-size: 15px;
    line-height: 1.6;
}

.accordion-button.active {
    background: #fbfcf9;
    color: #111c04;
}
.pro-FAQs{
    margin-bottom: 15px;
}

/* carousel style */
/* This applies only to large screens */
@media (min-width: 992px) {
  .carousel-inner {
    max-width: 500px; /* Adjust this to match your 'small screen' look */
    margin: 0 auto;  /* This centers the carousel on the page */
  }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(26, 186, 8, 0.5); /* Semi-transparent background */
  border-radius: 50%; /* Make it circular */
  width: 40px; /* Increase size */
  height: 40px; /* Increase size */
}

/* Layout Constraints */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: sans-serif;
}

h1 {
    text-align: center;
    margin-bottom: 10px;
}

/* The Grid System */
.grid-wrapper {
    display: grid;
    gap: 20px; /* Space between the divs */
}

/* Small Screen: 1 per row (Default) */
.grid-wrapper {
    grid-template-columns: repeat(1, 1fr);
    margin: 0 20px;
}

/* Medium Screen: 3 per row (768px and up) */
@media (min-width: 768px) {
    .grid-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Screen: 4 per row (1024px and up) */
@media (min-width: 1024px) {
    .grid-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Styling the individual Divs (Cards) */
.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background: #f9f9f9;
}

/* Flexbox for the top part (Photo left, Text right) */
.card-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.card-top img {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
}

.top-text h3 {
    margin: 0;
    font-size: 1.1rem;
}

.top-text p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.card-bottom {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #333;
}

#choose {
    background-color: rgb(241, 244, 244);
    transition: background-color 0.3s ease;
}
#choose:hover {
    background-color: rgb(246, 244, 157);
}

#choose2 {
    background-color: rgb(241, 244, 244);
    transition: background-color 0.3s ease;
}
#choose2:hover {
    background-color: rgb(182, 246, 157);
}

#choose3 {
    background-color: rgba(255, 255, 255, 1);
    transition: background-color 0.3s ease;
}
#choose3:hover {
    background-color: rgb(249, 249, 249);
}

/* Core values begin */
.values-container {
    display: flex;
    gap: 20px;
    max-width: 1000px;
    margin: 40px auto;
    border: 1px solid #eee;
    padding: 20px 15%;
    border-radius: 8px;
}

/* Left side (1/4 width) */
.values-menu {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.value-btn {
    padding: 15px;
    text-align: left;
    background: #dfdaf4;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.value-btn:hover {
    background: rgb(202, 199, 182);
}

.value-btn.active {
    background: #37bd0e;
    color: white;
    border-color: #22d375;
}

/* Right side (3/4 width) */
.values-content {
    flex: 3;
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
}

.content-panel {
    display: none; /* Hidden by default */
}

.content-panel.active {
    display: block; /* Shown when active */
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .values-container {
        flex-direction: column; /* Stacks the menu on top of the content */
    }

    .values-menu {
        flex-direction: row; /* Optional: scrollable horizontal menu */
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .value-btn {
        white-space: nowrap; /* Keeps buttons from breaking into two lines */
        flex: 1;
        text-align: center;
    }

    .values-content {
        flex: none;
        width: 100%;
        box-sizing: border-box;
    }
}
.core-head{
    margin-top: 15px;
}

/* therapy work starts */
.therapy-section {
    max-width: 1100px;
    margin: 50px auto;
    padding: 20px;
}

.header-area {
    text-align: center;
    margin-bottom: 50px;
}

.header-area h1 {
    margin: 0;
    color: #1a1c1a;
    font-weight: 700;
}

.header-area .subtitle {
    color: #000205;
    font-weight: 600;
    font-size: large;
}

/* The Row Layout */
.content-row {
    display: flex;
    align-items: center;
    gap: 60px; /* Space for the protruding images */
}

/* Image Column (takes remaining space) */
.image-column {
    flex: 1;
    position: relative;
}

.main-photo-wrapper {
    position: relative;
    width: 100%;
}

.main-img {
    width: 100%;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Shared Overlay Styles */
.overlay-photo {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    overflow: hidden;
}

.overlay-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hexagon Shape */
.hexagon {
    top: 50%;
    right: -50px; /* Protrudes to the right */
    transform: translateY(-50%);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

/* Circle Shape */
.circle {
    bottom: -30px;
    right: -40px; /* Protrudes to the right */
    border-radius: 50%;
}

/* Information Column (35% width) */
.info-column {
    flex: 0 0 35%;
}

.info-column h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.info-column p, .info-column li {
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .content-row {
        flex-direction: column;
        gap: 80px; /* Extra gap for the protruding circle */
    }

    .info-column {
        flex: 1;
        width: 100%;
    }
    
    .overlay-photo {
        width: 130px;
        height: 130px;
    }
    
    .hexagon { right: -20px; }
    .circle { right: -15px; }
}

/* Animation for hexagon and circle */
/* Animation for the Hexagon (Starts by moving UP) */
@keyframes floatUp {
    0% { transform: translateY(-50%); } /* Original position (-50% for centering) */
    100% { transform: translateY(calc(-50% - 20px)); } /* Moves up 20px */
}

/* Animation for the Circle (Starts by moving DOWN) */
@keyframes floatDown {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); } /* Moves down 20px */
}

/* Apply to Hexagon */
.hexagon {
    animation: floatUp 3s ease-in-out infinite alternate;
}

/* Apply to Circle */
.circle {
    animation: floatDown 3s ease-in-out infinite alternate;
}

/* therapy work ends */

/* Testimonials section */
.testimonial-section {
    padding: 60px 20px;
    background: #fdfdfd;
    text-align: center;
}

.testimonial-viewport {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.testimonial-card {
    flex: 0 0 50%; /* 2 cards on desktop */
  /*  padding: 20px;  */
    box-sizing: border-box;
    background: white;
    box-shadow: 5px 5px 5px 5px rgba(0,0,0,0.2);
    padding: 40px;
    border-radius: 15px;
    margin: auto 2px;
}


/* Navigation Buttons */
.ctrl-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.1);
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    color: #043718;
}

.prev { left: 0; }
.next { right: 0; }

.ctrl-btn:hover { background: rgba(28, 241, 17, 0.5); color: rgb(19, 1, 1); }

/* Indicators */
.dots-container {
    margin-top: 20px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active { background-color: #007bff; width: 25px; border-radius: 10px; }

/* Mobile: Show 1 card */
@media (max-width: 768px) {
    .testimonial-card { flex: 0 0 100%; }
}

.client-name{
    font-weight: bold;
    margin-top: 8px;
    text-align: left;
}

.ctrl-btn prev,
.ctrl-btn next {
    font-size: 18px;
    line-height: 40px;
}

/* 1. Desktop: Hide the button and always show text */
/* Changes 'Read more' to 'Read less' when the collapse is open */
#bootstrapBtn[aria-expanded="true"] {
    font-size: 0; /* Hide 'Read more' */
}
#bootstrapBtn[aria-expanded="true"]::after {
    content: "Read less";
    font-size: 1.25rem; /* Match your p font-size */
}
.gold-link { color: gold; text-decoration: underline; }

/* This targets the button specifically to keep it gold on hover */
.gold-link:hover, 
.gold-link:focus, 
.gold-link:active {
    color: gold !important; /* Forces the color to stay gold */
    text-decoration: underline; /* Keeps the underline so users know it's clickable */
}

/* Footer Styles */
/* General Footer Reset */
.main-footer {
  color: #ffffff;
  margin-top: 8px;
}

/* First Row: Dark Green */
.footer-row-top {
  background-color: #013220; /* Darkest shade of green */
  display: flex;
  flex-wrap: wrap;
  padding: 40px 10%;
  justify-content: space-between;
  border-radius: 6px 6px 0 0;
}

/* Second Row: Black */
.footer-row-bottom {
  background-color: #000000;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
}

.designer-credit {
  margin-top: 5px;
  opacity: 0.8;
}

/* Column Styling */
.footer-col {
  flex: 1;
  min-width: 250px; /* Ensures they don't get too skinny */
  margin: 10px;
}

.footer-col h3 {
  margin-bottom: 15px;
  border-bottom: 1px solid #2e8b57;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #ffffff;
  text-decoration: none;
}

/* Responsive Media Query for Small Screens */
@media (max-width: 768px) {
  .footer-row-top {
    flex-direction: column; /* Stacks the 3 divs vertically */
    padding: 20px 5%;
  }

  .footer-col {
    width: 100%;
    margin: 15px 0;
  }
}

/* Developer */
.wa-link {
  color: orange; /* WhatsApp Brand Green */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.wa-link:hover {
  color: gold; /* A slightly darker green on hover */
  text-decoration: underline;
}

/*  Get started link*/
.get-started-link {
  display: inline-block;
  color: orange;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.get-started-link:hover {
  color: rgb(4, 178, 30);
  text-decoration: underline;
}

/* Hidden form styles */
/* The background overlay */
.modal-overlay {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999; /* Sits on top of everything */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Black with opacity */
  align-items: center;
  justify-content: center;
}

/* The form box itself */
.modal-content {
  background-color: rgba(185, 240, 158, 0.8);
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  color: #333;
}

/* The close button (X) */
.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-modal:hover {
  color: #ff1e05; /* Matches your green theme */
}

.input-button {
  width: 100%;
  padding: 12px;
  background-color: rgb(220, 219, 219);
  color: rgb(15, 1, 1);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  margin: 5px auto;
}

.textarea-button {
  width: 100%;
  padding: 12px;
  background-color: rgb(220, 219, 219);
  color: rgb(15, 1, 1);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  margin: 5px auto;
  resize: vertical; /* Allows vertical resizing */
}

.submit-button {
  width: auto;
  padding: 12px;
  background-color: gold;
  color: rgb(15, 1, 1);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
  margin-left: 35%;
}
.submit-button:hover {
  background-color: rgb(130, 212, 15);
}

/* Loader styles */
/* Full screen loader wrapper */  /*
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #013220; /* Your darkest shade of green */  /*
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000; /* Must be higher than everything else */  /*
  transition: opacity 0.8s ease, visibility 0.8s;
}

.loader-content {
  text-align: center;
  color: white;
  font-family: Arial, sans-serif;
}

/* Pulsing Circle Animation */   /*
.pulse-circle {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 2px solid #ffffff;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(0.8); opacity: 0.5; }
}

/* Hidden state */   /*
.loader-hidden {
  opacity: 0;
  visibility: hidden;
}   */

/* Moving divs  */
/* The base state for all animated elements */  /*
.reveal {
  opacity: 0;
  transition: all 0.8s ease-out;
}

/* 1. Fly Up */   /*
.reveal-up {
  transform: translateY(50px);
}

/* 2. Fly from Left */   /*
.reveal-left {
  transform: translateX(-100px);
}

/* 3. Fly from Right */  /*
.reveal-right {
  transform: translateX(100px);
}

/* The "Active" state - where they end up */ /*
.reveal.active {
  opacity: 1;
  transform: translate(0, 0);
}


/* scroll progress indicator */   /*

#scroll-progress {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

.progress-circle {
  transform: rotate(-90deg); /* Starts the fill from the top */  /*
}

.progress-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.2); /* Faint circle */  /*
  stroke-width: 5;
}

#progress-bar {
  fill: none;
  stroke: #2e8b57; /* Your brand green */   /*
  stroke-width: 5;
  stroke-linecap: round;
  /* 157 is roughly the circumference of a circle with 25 radius (2 * pi * r) */  /*
  stroke-dasharray: 157; 
  stroke-dashoffset: 157; /* Starts empty */   /*
  transition: stroke-dashoffset 0.1s linear;
}

.arrow-up {
  position: absolute;
  color: #2e8b57;
  font-weight: bold;
  font-size: 20px;
}  */