@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
:root {
    --primary-color: #7b2cbf; 
    --secondary-color: #9ef01a; 
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --text-color: #495057;
    --heading-font: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background-color: #fefefe;
}


::-webkit-scrollbar {
  width: 12px;
  height: 10px; 
}

::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
  border: 2px solid #f0f0f0;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
  cursor: pointer;
}


h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--dark-color);
}

.active::after{
    content: ' ';
    display: block;
    height: 2px;
    background-color: #afeddd;
    position: relative;
    top: 5px;
}

.dropdown-item-active{
    background-color: #afeddd;
}

.dropdown-toggle::after{
    border: none;
}

.top-bar {
    background-color: #afeddd;
    color: #1e1e1f;
    font-size: 0.9rem;
    font-weight: 600;
    display: none;
}

.navbar {
    background-color: transparent;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: absolute;
    width: 100%;
}

.navbar.scrolled {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
}

#blackLogo{
    display: none;
}

.navbar.scrolled #blackLogo{
    display: block;
}

.navbar.scrolled  #transparencyLogo{
    display: none;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark-color) !important;
}

.navbar-brand span {
    color: var(--primary-color);
}

.logoImg{
    width: 130px;
}

.footer-brand img{
    width: 200px;
    cursor: pointer;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
}

.nav-link {
    font-weight: 600;
    color: #fff !important;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #fff !important;
}

/* .navbar.scrolled .nav-link:hover, .nav-link.active{
    color: #000 !important;
} */

.navbar.scrolled .nav-link {
    color: #1e1e1f !important;
}

.btn-contact {
    background-color: #afeddd;
    color: #1e1e1f !important;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #afeddd;
    transform: translateY(-2px);
    color: #1e1e1f !important;
}

.aboutusHeader{
    color: #1e1e1f;
}

.aboutImgBox{
    padding-right: 2%;
    position: relative;
    height: fit-content;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu {
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    /* margin-top: 10px !important; */
    animation: fadeInDown 0.3s ease-out;
}

.dropdown-item {
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #afeddd;
    color: #1e1e1f;
}

@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background: url('../img/2148962315.jpg') no-repeat center center;
    background-size: cover;
    color: white;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(89deg, rgb(49 55 53) 0%, rgba(100,132,116, 0.2) 100%);
    z-index: 1;
}

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

.hero-content{
    margin-top: 20%;
}

.hero-content .subheading {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0;
}

.hero-content h1 {
    color: white;
    margin-bottom: 1.5rem;
    opacity: 0;
    line-height: 1.3;
}

.btn-hero {
    background-color: #afeddd;
    color: #1e1e1f;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #afeddd;
    opacity: 0;
}

.btn-hero:hover {
    background-color: #1e1e1f;
    color: var(--light-color);
    border: 2px solid #afeddd;
}

@media (max-width: 991.98px) {
    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .navbar-brand {
        margin: 0;
    }

    .mobile-contact-icon {
        color: #afeddd;
    }
    
    .navbar-collapse {
        flex-basis: 100%;
        flex-grow: 1;
        align-items: center;
    }
    
    .navbar-nav {
        background-color: white;
        padding: 20px;
        text-align: center;
        margin-top: 15px;
        border-radius: 10px;
        width: 100%;
    }

    .top-bar{
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.welcome-section {
    background-color: #ffffff;
}

.section-subheading {
    color: var(--primary-color); 
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.section-heading {
    font-family: var(--heading-font);
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-color);
}

.section-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555; 
}

@media (max-width: 991.98px) {
    .section-heading {
        font-size: 2.5rem; 
    }
}

@media (max-width: 767.98px) {
    .section-heading {
        font-size: 2rem; 
    }
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-weight: 700;
    color: #343a40;
}

.section-header p {
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 1px 2px 4px 0px rgba(0,0,0, 0.25);
    border: none;
    text-align: center;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.service-card .card-img-container {
    position: relative;
}

.service-card .card-img-top {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.service-card .service-icon {
    position: absolute;
    bottom: -35px; 
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background-color: #afeddd; 
    color: #1e1e1f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border: 4px solid #fff;
}

.service-card .card-body {
    padding: 1.5rem; 
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}

.service-card .card-title {
    margin-top: 1rem;
    font-weight: 600;
    color: #333;
}

.service-card .card-text {
    color: #555;
    font-size: 0.9rem;
    flex-grow: 1;
    margin-bottom: 1.5rem;
    display: none;
}

.btn-purple {
    background-color: #afeddd;
    color: #1e1e1f;
    border-radius: 8px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
    display: none;
}

.fade-in-up {
    /* opacity: 0; */
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
    cursor: pointer;
}

.services-intro-section {
    padding: 5rem 0;
}

.section-heading {
    font-weight: 700;
    color: #343a40; 
    position: relative;
    padding-bottom: 1rem;
    /* margin-bottom: 2rem; */
    margin-top: 7rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background-color: #9cccbc; 
    border-radius: 2px;
}

.listDiv{
    display: flex;
    align-items: center;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    display: flex;
    /* align-items: center; */
    font-size: 1rem; 
    color: #555;
    margin-bottom: 1rem;
}

.service-list .icon {
    color: #9cccbc; 
    font-size: 1.4rem;
    margin-right: 1rem; 
    margin-top: 5px;
}

.intro-image {
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1; 
    width: 100%;
    height: auto;
}

.weStand{
    position: relative;
    height: fit-content;
}

.weStand::before {
    content: ''; 
    position: absolute; 
    width: 97%;
    height: 100%;
    top: 0;
    left: 0;
    background: #afeddd;
    z-index: 0; 
    transform: rotate(353deg);
    border-radius: 1rem; 
}
        
.aboutImgBox::before {
    content: ''; 
    position: absolute; 
    width: 97%;
    height: 100%;
    top: 0;
    left: 0;
    background: #afeddd;
    z-index: 0; 
    transform: rotate(353deg);
    border-radius: 1rem; 
}

.outro-text {
    color: #6c757d;
    font-style: italic;
}

.main-content {
    overflow-x: hidden; 
}

.contact-section {
    padding-top: 100px;
    padding-bottom: 50px;
}

.contact-card-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    margin-bottom: -170px; 
}

.section-title, .form-title {
    font-weight: 700;
    letter-spacing: 1px;
    color: #333;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1rem;
}

.contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 1rem;
    color: #333;
}

.contact-details i {
    color: #9cccbc;
    width: 25px;
    text-align: center;
    margin-right: 15px;
}

.form-control {
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    font-size: 0.95rem;
    background-color: #fdfdfd;
}

.form-control::placeholder {
    color: #aaa;
}

.form-control:focus {
    border-color: #afeddd;
    box-shadow: none; 
}

.btn-custom {
    background-color: #afeddd;
    color: #1e1e1f;
    border: none;
    border-radius: 4px;
    padding: 14px 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25);
}

.btn-custom:hover {
    background-color: #9cccbc;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background-color: #9cccbc; 
    border-radius: 2px;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background-color: #9cccbc; 
    border-radius: 2px;
}

.stacked-card-container {
    position: relative;
    padding: 15px; 
}

.page-background-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #afeddd; 
    border-radius: 1rem;
    transform: rotate(-4deg); 
    z-index: 1; 
}

.contact-wrapper {
    position: relative; 
    z-index: 2; 
    border-radius: 1rem;
    overflow: hidden;
    background-color: white; 
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.175); 
}

.left-panel {
    background-image: url('../img/adult-men-working-together-office_23-2148483879.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
}

.left-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.left-panel-content {
    position: relative;
    z-index: 2;
}

.brand-name, .main-heading, .tagline {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.65); 
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.main-heading {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 1rem;
    color: #fff;
    opacity: 0.9;
    text-shadow: 1px 2px 3px #000;
    margin-bottom: 20px;
}

.tagline {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 700;
    text-shadow: 1px 2px 3px #000;
}

@media (max-width:991px) {
    .main-heading {
        font-size: 1.8rem !important;
        margin-bottom:15px;
    }
}

@media (max-width:575px) {
    .tagline {
        font-size: 0.9rem;
    }
    .tagline p i {
        display: block;
        margin-bottom: 8px;

    }
    .main-heading {
        font-size: 1.8rem;
        margin-bottom:15px;
    }
}
@media (max-width: 480px) {
    .tagline {
        font-size: 12px;
    }
}
@media (max-width: 415px) {
    .tagline {
        font-size: 10px !important;
    }
}
.tagline p {
    margin-bottom: 20px;
}

.right-panel {
    padding: 3rem;
    background-color: white; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

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

.form-control:focus {
    border-color: #107955;
    box-shadow: 0 0 0 0.25rem rgba(26, 188, 156, 0.25);
}

.btn-custom-green {
    background-color: #afeddd;
    border-color: #afeddd;
    color: #1e1e1f;
    padding: 0.8rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease-in-out;
    box-shadow: 1px 2px 4px 0px rgba(0, 0, 0, 0.25);
}

.btn-custom-green:hover {
    background-color: #afeddd;
    border-color: #afeddd;
}

@media (max-width: 991.98px) {
    .right-panel {
        padding: 2rem;
    }
    .main-heading {
        font-size: 2.2rem;
    }
    .stacked-card-container {
        padding: 10px;
    }
}

.site-footer {
    background-color: #1c2331;
}

.site-footer a {
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.social-bar {
    background-color: #afeddd; 
}

.site-footer .text-uppercase {
    font-weight: 700 !important;
    position: relative;
    padding-bottom: 10px; 
    color: #fff;
}

.faqSection{
    display: flex;
    align-items: center;
}

.site-footer .text-uppercase::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #afeddd; 
}

.text-center .text-uppercase::after {
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 768px) {
    .text-md-start .text-uppercase::after {
        left: 0;
        transform: none;
    }
}

.main-content a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease-in-out;
}

.main-content a:hover {
    color: #ffffff;
}

.copyright-bar {
    background-color: rgba(0, 0, 0, 0.1);
}

.footerLogo{
    width: 150px;
    margin-bottom: 15px;
    cursor: pointer;
}

.me-5.d-none.d-lg-block{
    color: #1e1e1f;
}

.footerIcon a i{
    color: #1e1e1f;
}

.custom-accordion {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.custom-accordion .accordion-item {
    border: none; 
    border-bottom: 1px solid #e0e0e0;
}

.custom-accordion .accordion-item:last-child {
    border-bottom: none;
}

.custom-accordion .accordion-button {
    background-color: #ffffff;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    padding: 1rem 1.25rem;
    box-shadow: none !important;
    display: flex;
    align-items: center;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: #333; 
    background-color: #afeddd; 
}

.custom-accordion .accordion-button::after {
    background-image: none;
}

.accordion-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
    font-weight: bold;
    color: #fff;
    background-color: cadetblue; 
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0; 
}

button.accordion-button:hover {
    background-color: #afeddd;
}

.custom-accordion .accordion-body {
    color: #6c757d;
    background-color: #ffffff;
    padding: 0.5rem 1.25rem 1.5rem 1.25rem;
    line-height: 1.6;
}

.custom-accordion{
    width: 100%;
}


@media (max-width:600px) {
    .responsiveImg{
        justify-content: center;
    }
    .responsiveImg .aboutImgBox{
        width: 80%;
    }
    .responsiveImg .weStand{
        width: 80%;
    }
    .responsiveContainer{
        display: flex;
        justify-content: center;
        margin-top: -2rem;
    }
    .responsiveContainer .stacked-card-container{
        width: 80%;
    }
    .page-background-accent{
        transform: rotate(177deg);
    }
    .hero-content h1{
        font-size: 1.5rem;
    }
    .btn-hero{
        padding: 5px 30px;
        font-size: 14px;
    }
    .right-panel{
        padding: 2rem 1rem;
    }
}

@media (max-width: 991px) {
    .aboutusHeader{
        margin-top: 4rem;
    }
    .weStand{
        margin-top: 2rem;
    }
    section.services-section{
        margin-top: 2rem;
    }
    .faqSection {
        margin-top: 4rem;
    }
    .nav-link{
        color: #000 !important;
    }
    .navbar.scrolled .nav-link:hover, .nav-link.active{
        color: #000 !important;
    }
    .nav-link:hover{
        color: #000 !important;
    }
    .navbar{
        position: sticky;
        top: -1px;
        background-color: #ffffff;
    }
    a.nav-link{
        display: inline-block;
    }
    #blackLogo{
        display: block;
    }
    #transparencyLogo{
        display: none;
    }
    .navbar-nav{
        text-align: left;
    }
    #descriptionBox {
        margin-top: 0rem !important;
    }
}

@media (max-width:767px) {
    .aboutusHeader{
            margin-top: 2rem;
    }
    .ndisImg{
        display: flex;
        justify-content: center;
        margin-top: 1rem;
    }
    .section-heading{
        margin-top: 2rem !important; 
    }
    .faqDivBox{
        margin-top: 2rem !important; 
    }
    .faqDivBox .section-heading{
        margin-bottom: 2rem;
    }
}

@media (max-width:1399px) {
    .section-heading{
        margin-top: 4rem;
    }
}

@media (max-width:575px) {
    .faqDivBox .section-heading{
        margin-bottom: 1rem;
    }
    .faqSection {
        margin-top: 2rem;
    }
}

@media (max-width: 1199px) and (min-width:991px) {
    .btn-contact{
        display: flex !important;
        align-items: center;
        font-size: 12px;
    }
    .btn-contact svg{
        width: 12px;
        height: 12px;
    }
}

#descriptionBox {
    margin-top: 6rem;
}


    .timeline-container {
        position: relative;
        padding-left: 50px; 
    }

    .timeline-container::before {
        content: '';
        position: absolute;
        left: 24px; 
        top: 10px;
        bottom: 10px;
        width: 3px;
        background-color: #e9ecef; 
        border-radius: 3px;
    }

    .timeline-item {
        position: relative;
        margin-bottom: 40px; 
    }

    .timeline-icon {
        position: absolute;
        left: -50px; 
        top: 0;
        width: 50px;
        height: 50px;
        background-color: #afeddd;
        color: #1e1e1f;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        z-index: 2; 
        box-shadow: 0 0 0 5px #fff;
    }
    
    .timeline-content {
        padding-left: 25px;
    }

    .timeline-content h4 {
        font-weight: 700;
        color: #343a40;
        margin-bottom: 10px;
        padding-top: 10px;
    }

    .timeline-content p, .timeline-content ul {
        color: #6c757d;
        line-height: 1.7;
    }

    .timeline-content ul {
        list-style-type: none;
        padding-left: 0;
        margin-top: 15px;
    }

    .timeline-content ul li {
        padding-left: 28px;
        position: relative;
        margin-bottom: 10px;
    }

    .timeline-content ul li::before {
        content: '\f00c'; 
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        color: #198754; 
        position: absolute;
        left: 0;
        top: 5px;
    }


        .feedback-form-section {
            padding: 80px 0;
        }

        .feedback-form-container {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
            border: 1px solid #e9ecef;
        }

        .form-header h2 {
            font-weight: 700;
            color: #212529; 
        }

        .form-header p {
            color: #6c757d;
            max-width: 800px;
            margin: 15px auto 40px auto;
            text-align: center;
        }

        .form-label {
            font-weight: 600;
            color: #212529; 
            margin-bottom: 8px;
        }

        .form-control, .form-select {
            border-radius: 8px;
            border: 1px solid #ced4da; 
            padding: 12px 16px;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .form-control:focus, .form-select:focus {
            border-color: #4db6ac; 
            box-shadow: 0 0 0 3px rgba(77, 182, 172, 0.25);
        }
        
        .form-text {
            font-size: 0.85rem;
            color: #6c757d; 
        }

        .form-check-input:checked {
            background-color: #4db6ac;
            border-color: #4db6ac; 
        }
        
        .form-check-label {
             color: #212529; 
        }

        .btn-group-feedback .btn-check:checked + .btn-outline-custom {
            background-color: #4db6ac; 
            color: #fff;
            border-color: #4db6ac;
        }

           .btn-group-feedback{
            gap: 10px;
           }

        .btn-outline-custom {
            color: #4db6ac; 
            border-color: #4db6ac;
            border-radius: 8px !important;
            font-weight: 500;
        }
        
        .btn-outline-custom:hover {
             background-color: #e8f5e9 !important; 
             color: #4db6ac !important;  
             border-color: #4db6ac !important;  
        }

        .form-control[type="file"]::file-selector-button {
            background-color: #e8f5e9; 
            color: #4db6ac; 
            border: none;
            padding: 10px 15px;
            border-radius: 6px;
            margin-right: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .form-control[type="file"]::file-selector-button:hover {
            background-color: #d0e8e6;
        }
        
        .btn-submit {
            background-color: #4db6ac; 
            border-color: #4db6ac; 
            color: #fff;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 8px;
            transition: background-color 0.2s, transform 0.2s;
            width: -webkit-fill-available;
        }

        .btn-submit:hover {
            background-color: #3c9d92; 
            border-color: #3c9d92;
            color: #fff;
            transform: translateY(-2px);
        }

        @media (max-width:767px) {
            .btn-group-vertical>.btn, .btn-group>.btn{
                height: fit-content;
                display: flex;
                font-size: 12px;
                align-items: center;
                justify-content: center;
            }
        }
        @media (max-width:575px) {
        .btn-group-feedback {
            flex-wrap: wrap;
        }
        }