@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:wght@300;400;500;600;700&family=Pacifico&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===== Global Font Variables ===== */
:root {
    --font-primary: 'Poppins', sans-serif;     /* Main text font */
    --font-heading: 'Host Grotesk', sans-serif;/* Headings font */
    --font-decorative: 'Pacifico', cursive;    /* Decorative font */
    --color-bg: #fff;
    --color-text: #000;
    --color-gradient-start: #ff3d77;
    --color-gradient-mid: #9b34ef;
    --color-gradient-end: #2d8fff;
}

/* ===== Reset ===== */
* {
    margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== Global Styles ===== */
body {
  font-family: var(--font-primary);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  position: relative;
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1250px;
    }
}
/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

a{
text-decoration:none !important;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(90deg, var(--color-gradient-start), var(--color-gradient-mid), var(--color-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Links */
a {
    color: var(--color-gradient-mid);
    text-decoration: none;
    transition: 0.3s;
}
a:hover {
    color: var(--color-gradient-end);
}

/* Buttons */
.btn-gradient {
    background: linear-gradient(90deg, var(--color-gradient-start), var(--color-gradient-mid), var(--color-gradient-end));
    border: none;
    color: var(--color-text);
    padding: 10px 25px;
    border-radius: 30px;
    transition: 0.3s;
}
.btn-gradient:hover {
    opacity: 0.8;
}

/* Sections */
section {
    padding: 60px 0;
}

/* Navbar */
.navbar {
    background-color: #ffffff !important;
}
.navbar-brand {
    font-weight: bold;
}
.nav-link {
    color: #000000 !important;
}
.nav-link:hover {
    color: var(--color-gradient-mid) !important;
}

/********************************************************HEADER_MENU********************************************************/


/* ===== Fixed Navbar Style ===== */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    background-color: #FFF5EE;
}

/* Remove default background from inner navbar since the container has it now */
#mainNavbar {
    background-color: transparent !important;
}

#mainNavbar .navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
}

#mainNavbar .nav-link {
  color: var(--color-text) !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: color 0.3s, background-color 0.3s;
}

#mainNavbar .nav-link:hover,
#mainNavbar .nav-item.active .nav-link {
  color: #000000 !important;
  background-color: rgba(155, 52, 239, 0.05);
}

.navbar-toggler {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: .25rem;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(155, 52, 239, 0.25);
}

/* ===== Off-Canvas Sidebar Styles ===== */
@media (max-width: 991.98px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 280px; 
    max-width: 80%;
    background-color: var(--color-bg);
    z-index: 1050;
    display: block !important;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 5px 0 20px rgba(0,0,0,0.1);
  }

  .navbar-collapse.show {
    transform: translateX(0);
  }
  
  body.sidebar-open {
    overflow: hidden;
  }
  
  .sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }
  
  body.sidebar-open .sidebar-overlay {
    opacity: 1;
    visibility: visible;
  }

  .navbar-nav {
    margin-top: 20px;
  }
  
  .nav-item { width: 100%; }

  .nav-link {
    padding: 15px 10px;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .close-btn {
      background: none;
      border: none;
      font-size: 2.5rem;
      font-weight: 300;
      line-height: 1;
      color: var(--color-text);
      cursor: pointer;
      padding: 10px;
  }
}
 .btn-primary-navbar {
            display: inline-block;
            background-color: #F87575;
            color: #ffffff;
            padding:8px 22px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 700;
            transition: background-color 0.3s ease;
        }
        
        .btn-primary-navbar:hover {
            background-color: #e66262;
          	color: #ffffff;
          	text-decoration:none;
        }





/******************************************************** HOME PAGE ********************************************************/


/********HERO SECTION ***************/

    /* --- Base Desktop Styles (Unchanged) --- */
        
        .hero-section {
            width: 100%;
            display: flex;
            align-items: center;
            overflow: hidden;
            position: relative;
            padding-top: 30px;
        }
        
        .container-hero {
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%; /* Ensure it takes full width up to max-width */
        }
        /* Left Column */
        
        .hero-left {
            flex: 1 1 35%;
            padding-right: 20px;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 4rem;
    		font-weight: 700;
            line-height: 1.1;
            margin: 0 0 35px 0;
            color: #000;
        }
        
        .btn-primary {
            display: inline-block;
            background-color: #F87575;
            color: #ffffff;
            padding: 15px 35px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 700;
            transition: background-color 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: #e66262;
        }
        
        .contact-info {
            display: flex;
            align-items: center;
        }
        
        .phone-icon {
            background-color: #000;
            border-radius: 50%;
            padding: 8px;
            margin-right: 15px;
        }
        
        .contact-text span {
            font-size: 0.9rem;
            font-weight: 400;
            display: block;
        }
        
        .contact-text p {
            font-size: 1.1rem;
            font-weight: 700;
            margin: 2px 0 0 0;
        }

        /* Right Column */
        .hero-right {
            flex: 1 1 65%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            min-height: 570px;
        }
        
        .red-glow {
            position: absolute;
            top: 50%;
            left: 45%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(ellipse at center, rgba(248, 117, 117, 0.4) 0%, rgba(248, 117, 117, 0) 70%);
            filter: blur(50px);
            z-index: 0;
        }
        
        .hero-image {
            position: absolute;
            left: 0;
            bottom: 0;
            z-index: 1;
            width: auto;
            max-height: 90%;
            max-width: 500px;
        }
        
        .hero-right-content {
            position: relative;
            z-index: 2;
            padding-left: 15%;
        }
        
        .tagline {
            font-size: 1.1rem;
            line-height: 1.6;
            max-width: 290px;
            margin-bottom: 40px;
        }
        
        .stats {
            display: flex;
            flex-direction: column;
        }
        
        .stat-item {
            margin-bottom: 30px;
        }
        
        .stat-number {
            font-size: 4rem;
            font-weight: 700;
            color: #F87575;
            display: block;
            line-height: 1;
        }
        
        .stat-label {
            font-size: 1rem;
            font-weight: 700;
        }

        /* --- Responsive Design --- */
        /* --- Large Desktops --- */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 3.5rem;
            }
            .hero-image {
                max-width: 420px;
            }
        }

        /* --- Tablet View --- */
        @media (max-width: 1024px) {
            .hero-section {
                min-height: auto;
                padding: 90px 0;
                text-align: center;
            }
            .container-hero {
                flex-direction: column; /* Stack left and right columns */
            }
            .hero-left {
                padding-right: 0;
                margin-bottom: 40px;
                display: flex;
                flex-direction: column; /* Stack the image and stats content */
                align-items: center; /* Center the button and other content */
            }
          .herotitle2div{
            display: flex;
                flex-direction: column; /* Stack the image and stats content */
                align-items: center; /* Center the button and other content */
          }

            .hero-right {
                width: 100%;
                min-height: auto;
                justify-content: center;
                margin-top: 20px;
            }
            
            .red-glow {
                /* Center the glow behind the image */
                width: 100%;
                max-width: 500px;
                height: 400px;
                top: 10%;
                left: 50%;
                transform: translateX(-50%);
            }

            .hero-image {
                position: static; /* Remove absolute positioning to make it flow normally */
              
                max-width: 65%;
                max-height: 400px;
                margin-bottom: 30px;
            }

            .hero-right .tagline {
                display: none; /* Hide the second tagline to avoid repetition and clutter */
            }

            .hero-right-content {
                position: static; /* Remove positioning */
                padding-left: 0;
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .stats {
                flex-direction: row; /* Show stats side-by-side on tablet */
                justify-content: center;
                gap: 50px; /* Add space between stats */
                width: 100%;
            }
            .stat-item {
                margin-bottom: 0;
            }
        }

        /* --- Mobile View --- */
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
            }
            .hero-title {
                font-size: 2.8rem; /* Smaller title for mobile */
                line-height: 1.2;
            }
            .btn-primary {
                padding: 14px 30px;
                font-size: 0.95rem;
            }
            .contact-info {
                justify-content: center;
            }
            .stats {
                flex-direction: column; /* Stack stats vertically on mobile */
                align-items: center;
                gap: 30px;
            }
            .stat-number {
                font-size: 3rem;
            }
            .stat-label {
                font-size: 0.9rem;
            }
        }

        /* --- Small Mobile View --- */
        @media (max-width: 480px) {
            .hero-left > .tagline {
                display: none; /* Hide tagline on very small screens for focus */
            }
            .hero-title {
                font-size: 2.2rem;
                margin-bottom: 25px;
            }
            .btn-primary {
                width: 90%; /* Make button wider for easy tapping */
                margin-bottom: 30px;
            }
        }




/******************************************************** SERVICE SECTION ********************************************************/


.main-heading {
    font-size: 2.8rem;
    font-weight: 700;
  	font-family:var( --font-heading);
      color:#000000;
}

.main-heading strong {
    font-weight: 800;
}

.sub-heading {
    font-size: 1.4rem;
    color: #555;
}
/* Therapy Card Styles */
.therapy-card {
    border: none;
    border-radius: 20px;
    padding: 2rem 1rem;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
}

.therapy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

#individual-card { background-color: #F87575; }
#couple-card { background-color: #FFD336; }
#followup-card { background-color: #6EDCBC; }

.card-title {
    font-weight: 700;
    color: #000000;
    font-size: 1.6rem;
}

.card-text {
    font-size: 1rem;
    color: #000000;
}


/* Icon Wrapper Styles */
.icon-wrapper {
    position: relative;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    border: 6px solid #ffffff;
}

/* Stats Section Styles */
.stats-intro {
    font-size: 2rem;
    line-height: 1.6;
  	margin-bottom:50px;
}



/* Responsive adjustments for smaller screens */
@media (max-width: 767.98px) {
    .main-heading {
        font-size: 2rem;
    }

    .stat-item {
        margin-bottom: 1.5rem;
    }
}
           .fontstyle {
    font-family: var(--font-decorative);
      font-size:55px;
}



/******************************************************** WHY CHOOSE ********************************************************/


  
   .whychoose-section {
            padding: 80px 0 110px 0;
          background: #F87575;
        }

.case-studies-section {
   display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 100%;
}

.case-studies-container {
    display: flex;
    width: 100%;
    min-height: 450px;
    overflow: hidden;
}

/* --- ENHANCED UI: Styling for each individual panel --- */
.case-study-panel {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    overflow: hidden;
    flex: 1;
    border-right: 2px solid #0b0b0b; /* Adds separation */
    transition: flex 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    
    /* Center the collapsed content */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- ENHANCED UI: Dark overlay for INACTIVE panels for contrast --- */
.case-study-panel:not(.active)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    transition: background-color 0.5s ease;
}
.case-study-panel:not(.active):hover::after {
    background-color: rgba(0, 0, 0, 0.4); /* Lighten slightly on hover */
}

/* Gradient overlay for the ACTIVE panel for text readability */
.case-study-panel.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(17 17 17 / 58%) 0%, rgb(17 17 17 / 48%) 40%, rgba(17, 17, 17, 0) 100%);
    opacity: 1;
    z-index: 1;
}

.case-study-panel.active {
    flex: 7; /* Increased flex for more impact */
}

/* Styling for the COLLAPSED content (vertical title) */
.panel-content-collapsed {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #fff;
    opacity: 1;
    transition: opacity 0.5s ease;
    z-index: 2;
    white-space: nowrap;
    text-align: center;
}

.case-study-panel.active .panel-content-collapsed {
    opacity: 0;
}

.tab-number {
    font-size: 20px;
    font-weight: 700;
    color: #a0a0a0;
    margin-bottom: 20px;
    display: block;
}

.tab-title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin: 0;
}

/* --- FIX: Styling for the EXPANDED content --- */
.panel-content-expanded {
    /* Absolute positioning is the key fix */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Use flexbox to vertically center the content block */
    display: flex;
    align-items: center;

    /* Hide by default */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0s 0.5s;
    z-index: 2;
}
.case-study-panel.active .panel-content-expanded {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.3s; /* Delay appearance until panel is mostly open */
}

/* The actual text content block */
.content-inner {
    padding: 40px 60px;
    max-width: 600px;
    
    /* ENHANCED UI: Animate content sliding in */
    transform: translateY(40px);
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.case-study-panel.active .content-inner {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s; /* Delay this animation even more for a layered effect */
}

.content-inner h2 {
  	color:White;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
}

.content-inner p {
    font-size: 20px;
    line-height: 1.7;
    color: #d1d1d1;
    margin-bottom: 12px;
}

.content-inner .highlight {
    color: #d38f42;
    font-weight: 600;
}

.case-study-link {
    display: inline-block;
    margin-top: 25px;
    color: #fff;
    text-decoration: none !important;
    font-weight: 600;
    transition: color 0.3s ease;
}
.case-study-link:hover {
    color: #d38f42;
}
.case-study-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}
.case-study-link:hover i {
    transform: translateX(5px);
}

/* =================================================================
   NEW RESPONSIVE STYLES FOR TABLET & MOBILE (HORIZONTAL LAYOUT)
   This CSS only targets smaller screens and does not affect desktop.
   ================================================================= */

/* --- Styles for Tablets (e.g., iPads) --- */
@media (max-width: 991.98px) {
    /* Adjust overall height to be more suitable for tablet viewports */
    .case-studies-container {
        min-height: 400px; /* Was 450px */
    }

    /* Reduce padding inside the expanded panel to prevent text from being squished */
    .content-inner {
        padding: 30px 40px; /* Was 40px 60px */
    }

    /* Scale down the typography for readability */
    .content-inner h2 {
        font-size: 36px; /* Was 48px */
        margin-bottom: 20px;
    }

    .content-inner p {
        font-size: 18px; /* Was 20px */
    }

    /* Adjust the text in the collapsed (narrow) panels */
    .tab-title {
        font-size: 18px; /* Was 20px */
    }
}

/* --- More aggressive adjustments for smaller Mobile Phones --- */
@media (max-width: 767.98px) {
    .whychoose-section {
        padding: 60px 0;
    }
    
    /* Further reduce height for mobile screens */
    .case-studies-container {
        min-height: 500px; /* Increase height to give vertical space as width shrinks */
    }

    /* Further reduce padding for very narrow screens */
    .content-inner {
        padding: 25px 20px; /* Less horizontal padding is critical */
    }

    /* Make typography even smaller for phones */
    .content-inner h2 {
        font-size: 28px; /* Was 36px on tablet */
    }

    .content-inner p {
        font-size: 16px; /* Was 18px on tablet */
    }
    
    .case-study-link {
        margin-top: 15px; /* Reduce top margin on the link */
    }

    /* Adjust the text in the collapsed (narrow) panels for phones */
    .panel-content-collapsed {
        /* Reduce the gap between number and title to save space */
        line-height: 1.2;
    }
    .tab-number {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .tab-title {
        font-size: 16px;
    }
}




/******************************************************** THOUGHT  ********************************************************/


.a-section-marquee-box {
    height: 180px;
    display: flex;
    align-items: center;
  justify-content:center;
    overflow: hidden;
  background:#ffffff;
  color:#000000;
  border:2px solid #000000;
  transform:rotate(-4deg);
  width:99%;
}
.a-section-marquee-box h2 {
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 100;
  font-size:4em;
    flex-shrink: 0;
    padding: 0 10px;
  	margin-bottom:0px;
    width: max-content;
    display: flex;
    align-items: center;
    transform: translateX(0);
    animation: a-text-scroll 25s linear infinite;
}
@keyframes a-text-scroll {
    0% { transform: translate3d(-100%, 0, 0); }
    100% { transform: translate3d(0%, 0, 0); }
}
@media(max-width:992px){
.a-section-marquee-box {
  width:96%;
}

}

/******************************************************** TEAM ********************************************************/


        .team-section {
            background-color: #FFD336 !important; /* Lighter, pleasant green */
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            color: #333;
            font-weight: 600;
            margin-bottom: 50px;
            font-size: 2.5rem;
        }

        /* Swiper and Slider Styles */
        .team-slider {
            width: 100%;
            padding: 10px 0 20px 0; /* Extra padding at bottom for the info box & pagination */
        }

        /* Individual Card Styling */
        .therapist-card {
            background-color: #ffffff;
          	border-radius: 10px;
            text-align: center;
            position: relative;
            overflow: hidden; /* Ensures image corners are rounded */
            transition: transform 0.3s ease;
        }

        .therapist-card:hover {
            transform: translateY(-5px);
        }

        .therapist-card img {
            width: 100%;
            height: 300px;
            display: block;
          object-fit:cover;
        }

              .therapist-info {
            background-color: #fff;
            padding: 15px;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            left: 50%;
            width: 100%;
        }
        .therapist-card:hover .therapist-info {
            bottom: 20px; /* Pulls the box up into view on hover */
        }

        .therapist-name {
            font-size: 1rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 2px;
        }

        .therapist-title {
            font-size: 0.8rem;
            color: #555;
            margin-bottom: 0;
        }

        /* Swiper Navigation and Pagination */
        .swiper-button-next,
        .swiper-button-prev {
            color: #00f5a0; /* Green arrows */
            top: 45%; /* Position them vertically centered on the cards */
        }
        .swiper-pagination-bullet-active {
            background-color: #00f5a0; /* Green active dot */
          	display:none;
        }

        /* Responsive Adjustments */
        @media (max-width: 576px) {
            .team-slider {
                padding-left: 15px;
                padding-right: 15px;
            }
            .therapist-info {
                bottom: -35px;
            }
        }



/******************************************************** WORK ********************************************************/


 .ai-operations-section {
            padding: 5rem 0;
            overflow: hidden; /* Prevents horizontal scroll on small screens */
        }

        .main-image-wrapper {
            position: relative;
        }

        .main-image-wrapper .main-image {
            border-radius: 1rem;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
          width:100%;

        }

        .info-card {
            position: absolute;
            top: 12%;
            right: -8%;
            transform: translateY(-50%);
            width: 60%;
            max-width: 480px;
            background-color: #FFF5EE; /* Light peach background */
            border-radius: 1rem;
            z-index: 10;
            padding: 2.5rem;
            box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
        }

        /* Logo made with CSS */
        .logo-container {
            position: relative;
            width: 70px;
            height: 40px;
            margin-bottom: 1.5rem;
        }
        
        .info-card .award-number {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 0.25rem;
        }

        .info-card .award-text {
            font-size: 1rem;
            color: #6c757d;
            margin-bottom: 1.5rem;
        }

        .info-card .description {
            font-size: 1.25rem;
            font-weight: 500;
            line-height: 1.6;
            color: #343a40;
        }

        .features-column {
            padding-left: 100px;
        }

        .features-column .feature-image {
            border-radius: 1rem;
            margin-bottom: 2rem;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
        }

   

        /* Responsive adjustments for tablet and mobile */
        @media (max-width: 991.98px) {
            .ai-operations-section {
                padding: 2rem 0;
            }
            .info-card {
                position: relative;
                transform: none;
                top: auto;
                right: auto;
                left: 50%;
                transform: translateX(-50%);
                margin-top: -5rem; /* Pulls the card up over the image */
                width: 90%;
                margin-bottom: 2.5rem;
            }

            .main-image-wrapper {
                margin-bottom: 0; /* Remove bottom margin to let card overlap */
            }
            
            .features-column {
                padding-left: 15px; /* Default bootstrap padding */
            }
        }
  /* Left Column: List of Steps */
        .steps-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .step-item {
            display: flex;
            align-items: center;
            padding: 25px 15px;
            border-bottom: 1px solid #e9ecef;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .step-item:hover {
            background-color: #fff;
        }

        .step-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #212529;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-right: 20px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .step-text h5 {
            font-weight: 600;
            font-size: 1.3rem;
            margin-bottom: 2px;
            color: #495057;
            transition: color 0.3s ease;
        }

        .step-text p {
            margin-bottom: 0;
            font-size: 0.9rem;
            color: #6c757d;
        }

        /* Active state for the selected item */
        .step-item.active .step-icon {
            background-color: #212529; /* Black background like the image */
            color: #fff;
        }
        
        .step-item.active .step-text h5 {
            color: #212529;
        }
        
        .step-item.active {
             background-color: #fff;
        }





/******************************************************** CTA ********************************************************/

    /* --- Final CTA Section - Rewritten to match the target image --- */
    .final-cta {
        position: relative; /* Needed for the pseudo-element background */
        overflow: hidden; /* Clips the background to the rounded corners */
        padding: 2.5rem 3rem; /* Replaces section-padding if it exists */
        color: #1c1c1c; /* Default text color */
        background-color: #e0e0e0; /* Fallback background in case image fails */
        text-align: left; /* Override original text-align: center */
    }

    /* The ::before pseudo-element creates the complex background */
    .final-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 0; /* Place it behind the content */

        /* Stacked background: a gradient on top of an image */
        background: 
            /* 1. The gradient overlay */
            linear-gradient(to right, 
                hsl(0, 0%, 97%, 0.98) 30%, 
                hsla(0, 0%, 97%, 0.85) 55%, 
                hsla(0, 0%, 60%, 0.65) 100%),           
        background-size: cover;
       background-position: center right;
    }

    .final-cta .container {
        position: relative; /* Ensure content is on top of the pseudo-element */
        z-index: 1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }

    /* Wrapper for the text to group it for the flex layout */
    .final-cta .text-wrapper {
        flex-grow: 1;
    }

    .final-cta h2 {
        font-size: 2.25rem; /* ~36px */
        font-weight: 700;
        margin: 0 0 0.5rem 0; /* Reset margins */
        line-height: 1.2;
        color: #1c1c1c;
    }

    /* The original HTML used 'p' with classes 'lead my-4'. We'll style the p directly. */
    .final-cta p {
        font-size: 1rem; /* ~16px */
        color: #454545;
        margin: 0; /* Override any margin classes like my-4 */
        max-width: 420px; /* Prevent text from getting too wide */
    }



    /* For responsiveness on smaller screens */
    @media (max-width: 768px) {
        .final-cta {
            padding: 2rem 1.5rem;
        }
        .final-cta .container {
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
        }
        .final-cta h2 {
            font-size: 1.75rem;
        }
        .final-cta .btn-primary {
            margin-top: 1.5rem;
        }
    }





/*****************************************************************FOOTER**************************************************/
/* Footer */
footer {
    background-color: #FFF5EE;
    padding: 15px 0;
    font-size: 14px;
}
.footer-wemeto {
            background-color: #111111;
            color: #ffffff;
            padding:50px 0 0;
            position: relative;
        }
        
        .footer-wemeto a {
            text-decoration: none;
            color: #ffffff;
            transition: color 0.3s ease-in-out;
        }
        
        .footer-wemeto a:hover {
            color: #ffffff;
        }
        /* Top section with heading and button */
        
        .footer-wemeto-top {
            padding-bottom: 50px;
            margin-bottom: 50px;
            border-bottom: 1px solid #333333;
        }
        
        .footer-wemeto-heading {
            font-size: clamp(2.2rem, 4vw, 3rem);
            /* Responsive font size */
            color: #ffffff;
            font-weight: 700;
            margin: 0;
        }
        
        .footer-wemeto-subheading {
            font-size: clamp(1rem, 2vw, 1.25rem);
            margin-top: 10px;
        }
        
        .footer-wemeto-contact-btn {
            display: inline-flex;
            width: 140px;
            height: 140px;
            background-color: #FF9D92;
            color: #ffffff;
            border-radius: 50%;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            text-align: center;
            font-weight: 500;
            font-size: 1.1rem;
            line-height: 1.4;
        }
        
        .footer-wemeto-contact-btn i {
            font-size: 1.5rem;
            margin-bottom: 8px;
            transition: transform 0.3s ease;
        }
        
        .footer-wemeto-contact-btn:hover i {
            transform: rotate(15deg);
        }
        /* Footer navigation columns */
        
        .footer-wemeto-widget-title {
            color: #ffffff;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 30px;
        }
        
        .footer-wemeto-nav {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-wemeto-nav li {
            margin-bottom: 15px;
        }
        /* Contact info column styling */
        
        .footer-wemeto-info {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-wemeto-info li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .footer-wemeto-info li i {
            color:#ffffff;
            font-size: 1.2rem;
            margin-right: 15px;
            margin-top: 5px;
            width: 20px;
            /* Ensures text alignment */
            text-align: center;
        }
        
        .footer-wemeto-info span {
            font-weight: 600;
            color: #ffffff;
            display: block;
            margin-bottom: 5px;
        }
        /* Bottom bar for copyright and socials */
        
        .footer-wemeto-bottom {
            background-color: #000000;
            padding: 8px 0;
            margin-top: 60px;
        }
        
        .footer-wemeto-copyright {
            margin: 0;
            font-size: 0.9rem;
            text-align: center;
        }
        
        .footer-wemeto-copyright a {
            color: #FF9D92;
            font-weight: 500;
        }
        
        .footer-wemeto-social {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            gap: 10px;
            justify-content: center;
        }
        
        .footer-wemeto-social li a {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            border-radius: 50%;
            border: 1px solid #444444;
            font-size: 1rem;
        }
        
        .footer-wemeto-social li a:hover {
            background-color:#FF9D92;
            border-color:#FF9D92;
            color: #ffffff;
        }
        /* Responsive adjustments */
        
        @media (min-width: 768px) {
            .footer-wemeto-copyright {
                text-align: left;
            }
            .footer-wemeto-social {
                justify-content: flex-end;
            }
        }
        
        @media (max-width: 991.98px) {
            .footer-wemeto-top {
                text-align: center;
            }
            .footer-wemeto-contact-btn {
                margin-top: 30px;
            }
			
        }

   @media (max-width: 767px) {
           .footerresponsive{
			display:flex !important;
			justify-content:start !important;
			align-items:start !important;
}
        }



/******************************************************Contact********************************************************/




		.contact-container{
           padding: 5rem 0;
        }
        /* Main Layout Container */
        .contact-main-container {
            display: flex;
          gap:2rem
        }

        /* Image Section */
        .contact-image-container {
            flex: 1;
            display: flex;
          	flex-direction:column;
            justify-content: center;
            align-items: center;
        }

        .contact-image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 24px;
            object-fit: cover;
        }

        /* Form Section */
        .contact-form-container {
            flex: 1.2;
            padding: 1rem;
        }

     

        .contact-header h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: #1e293b;
        }

        .contact-header .contact-description {
            color: #64748b;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .contact-read-more-link {
            color: #2563eb;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 2.5rem;
            transition: gap 0.3s ease;
        }

        .contact-read-more-link:hover {
            gap: 15px;
        }

        .contact-arrow-circle {
            background-color: #2563eb;
            color: white;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .contact-read-more-link:hover .contact-arrow-circle {
            transform: translateX(5px);
        }

        /* Form Styles */
        #contact-volunteer-form {
            display: flex;
            flex-direction: column;
        }

        .contact-form-row {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1.25rem;
        }

        .contact-form-group {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .contact-form-group label {
            margin-bottom: 8px;
            font-weight: 600;
            color: #475569;
            font-size: 0.9rem;
        }

        .contact-form-group input,
        .contact-form-group textarea,
        .contact-form-group select {
            width: 100%;
            padding: 16px;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            background-color: #f8fafc;
            font-family: 'Manrope', sans-serif;
            font-size: 1rem;
            color: #334155;
            transition: border-color 0.3s, box-shadow 0.3s;
            appearance: none; /* For select element */
        }
        
        .contact-form-group select {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
            background-position: right 1rem center;
            background-repeat: no-repeat;
            background-size: 1.2em;
            padding-right: 3rem;
        }

        .contact-form-group input::placeholder,
        .contact-form-group textarea::placeholder {
            color: #94a3b8;
        }

        .contact-form-group input:focus,
        .contact-form-group textarea:focus,
        .contact-form-group select:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
        }

        .contact-form-group textarea {
            min-height: 120px;
            resize: vertical;
        }


        /* Responsive Design */
        @media (max-width: 992px) {
       
            .contact-main-container {
                flex-direction: column;
            }
            .contact-form-container {
                padding: 0;
            }
            .contact-read-more-link {
                justify-content: center;
            }
          
          .contact-container{
            padding: 5rem 1.5rem;
          }
        }

        @media (max-width: 768px) {
         
        
            .contact-header h1 {
                font-size: 2.2rem;
            }
            .contact-form-row {
                flex-direction: column;
                gap: 1.25rem;
                margin-bottom: 0;
            }
            .contact-form-group {
                text-align: left;
                margin-bottom: 1.25rem;
            }
        
        }

