/********** Template CSS **********/

/*@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --primary:  #516B66;
    --secondary: #FFF0E6;
    --light: #F8F8F9;
    --dark: #001D23;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    font-family: "Raleway", sans-serif;
    color: #FFFFFF;
     background-color:  #516b66 !important;
    border-color:  #516b66 !important;

}

.btn.btn-primary:hover {
    color: #fff;
    background: transparent;
}

.btn-square {
    width: 38px;
    height: 38px;
}

/*.btn-sm-square {*/
/*    width: 32px;*/
/*    height: 32px;*/
/*}*/

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    /* border-bottom: 1px solid rgba(255, 255, 255, .07); */
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
        line-height: 0;
    letter-spacing: 1px;
    font-size: 18px !important;
font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    margin-right: 50px;
    padding: 25px 0;
    color: #fff;
    outline: none;
    font-size: 18px;

}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #fff;
}
.navbar {
            transition: all 0.3s ease-in-out;
       
       
        }
.my-addition-nav{
    display:none;
}      

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #516B66;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    padding-left: 90px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
 
    background: rgba(0, 29, 35, .3);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2.9rem;
    height: 3rem;
    background-color: var(--primary);
    border: 12px solid var(--primary);
    border-radius: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        /*width: 100%;*/
        height: 100%;
        object-fit: cover;
        
    }
}

.page-header {
     height: 100vh !important;
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: linear-gradient(rgba(0, 29, 35, .8), rgba(0, 29, 35, .8)), url(../img/AA1rcmvp.jpeg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}
.caption-cont{
    /* margin-bottom: 50px !important; */
}

/*** Causes ***/
.causes-item .progress {
    height: 5px;
    border-radius: 0;
    overflow: visible;
}

.causes-item .progress .progress-bar {
    position: relative;
    overflow: visible;
    width: 0px;
    border-radius: 0;
    transition: 5s;
}

.causes-item .progress .progress-bar span {
    position: absolute;
    top: -7px;
    right: 0;
    width: 40px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: var(--primary);
    color: #FFFFFF;
}

.causes-item .causes-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.causes-item:hover .causes-overlay {
    height: 100%;
    opacity: 1;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
}


/*** Donate ***/
.donate {
    background: rgba(0, 29, 35, .8);
}

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked+label {
    color: var(--primary);
    border-color: var(--primary);
}


/*** Team ***/
.team-item img {
    position: relative;
    top: 0;
    transition: .5s;
}

.team-item:hover img {
    top: -30px;
}

.team-item .team-text {
    position: relative;
    height: 100px;
    transition: .5s;
}

.team-item:hover .team-text {
    margin-top: -60px;
    height: 160px;
}

.team-item .team-text .team-social {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text .team-social {
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
}



.team-item .team-social .btn:hover {
    color: #FFFFFF;
    /*background: var(--primary);*/
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    background: var(--primary) !important;
} 

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/
.footer{
    /*background-image: url('../img/map.png');*/
}
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
   color:#fff;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    font-family: "Raleway", sans-serif;
   
}

.footer .btn.btn-link::before {
    display:none;
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255,255,255,0.5);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
    background: none !important;
}

.footer .btn.btn-square {
    color: #fff;
    border: 1px solid #fff;
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
 
    
}

.footer .copyright a {
    color: var(--secondary);
    font-family: "Raleway", sans-serif;
  
}

.footer .copyright a:hover {
    color: #fff !important;
    
}
.footer .copyright a:hover {
    color: #fff;
}
.footer .copyright a:hover {
    color: #fff;
}
/* my css */
/*.navbar-padding {*/
/*    padding-top: 20px !important;*/
   
/*}*/
.carousel-indicators{
    left:-45px;
}
.menuu{
    color: #fff;
    border: #fff;
}
.navbar img{
   position: relative;
    top: -8px;
    width: 60%;
   
}
.btn-outline-primary{
    border: 1px solid #516b66;
    background-color: #516b66;
}
.car-btn{
    text-transform: uppercase;
    border: 1px solid var(--primary);
    color: #fff; 
   
}
.pt-5{
    gap: 20px;
}
.abt p{
    color: #000;
    font-size: 15px;
     letter-spacing: 1px;
}
/* Footer Contact Form Styles */
.footer .form-control {
    background-color: transparent;
    border: 1px solid #ccc;
    color: #fff;
    padding: 12px 15px;
    border-radius: 5px;
    transition: border-color 0.3s;
}

.footer .form-control:focus {
    border-color: #007bff; /* Change the focus border color */
    outline: none;
}

.footer form .mb-3 {
    margin-bottom: 15px;
}

.footer .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.footer .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.footer .contact-form-header {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer .contact-form-subtext {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer .form-control::placeholder {
    color: #aaa;
}
/*.nav-link.active {*/
/*    border-bottom: 2px solid  #fff; */
/*}*/
/* Mobile Responsiveness for Contact Form */
@media (max-width: 767px) {
    .footer .form-control {
        padding: 10px;
    }

    .footer .btn-primary {
        font-size: 14px;
        padding: 10px;
    }
}
.footer-img img{
    /*background-color: #fff;*/
    width: 85%;
    margin-left: -15px;
}
#about, #gallery, #footer {
    display: none;
}

/* Optional: Add some space between sections */

#scrollBtn {
    font-size: 40px;
    border: none;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
   
}

/* Position the button at the bottom of the carousel */
.scroll-btn-container {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    animation: bounce 2s infinite;

}
@media (min-width: 992px) { /* Large screens - desktops */
 .car-contents{
    padding-left: 80px;
    padding-top: 165px;
 }
}
.car-contents{
   
    display: flex;
    flex-direction: column;
}
.car-btn1{
    text-transform: uppercase !important;
    display: flex;
    
    gap: 20px;
}


.car-btn1 .btn{
     text-transform: uppercase !important;
}
.icon-txt{
    display:flex;
}
.icon-txt p{
        margin-left: -4px;
    margin-top:-5px;
}
.estate-card {
            position: relative;
            color: white;
            border-radius: 10px;
            overflow: hidden;
        }
        .estate-card img {
            width: 100%;
            height: 340px;
           
        }
        .estate-info {
            display: flex;
    justify-content: center;
    align-items: center;
            position: absolute;
            right: 20px;
            bottom: 20px;
            left: 20px;
            background: rgba(0, 0, 0, 0.6);
         
            border-radius: 5px;
        }
        .estate-info h5{
            color:#fff;
        }
     
   .btn:hover {
    color: #fff;
    background-color: #74BAB3;
}  
.text-primary {
    color: #516b66 !important;
}
        
@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}
.floating-buttons {
    height:9vh;
    background-color:#fff;
    text-align: center;
            width:100%;
            /*display:flex !important;*/
            justify-content:center;
            position: fixed;
            bottom: 0;
            /*right: 20px;*/
            display: none; /* Initially hidden */
           padding-top: 6px;
            gap: 10px;
            z-index: 1000;
}
.btn11{
    width: 45%;
    padding: 20px;
    border: none;
    color: #fff;
    background-color: #516b66;
}
.btn12{
    width: 50%;
    padding: 20px;
    border: none;
    color: #fff;
    background-color: #516b66;
}       
  
 .highligt-container{
     padding-top:50px;
 }
 .highlight-section {
            text-align: center;
            margin-top: 40px;
        }
        .highlight-icon {
            width: 80px;
            height: 80px;
            background-color: #516b66;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            font-size: 30px;
            margin-bottom: 10px;
        }
        .icon-img{
            width: 105px;
        }
        .highlight-item {
           display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
            flex: 1;
            min-width: 120px;
        }
        h2 {
           
            color: #516b66;
            padding-bottom:15px;
        }
        .highlight-container {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        } 
        
        .highlight-container {
    padding-top:50px;
}
.footer-ad{
    display:flex;
  
   
    gap:10px;
}
.footer-i{
    display:flex;
    flex-direction:column;
}
.p-down{
    margin-bottom:-5px;
}
.my{
    color:#fff;
}
.copy-r{
    padding:25px;
}

@media (min-width: 320px) and (max-width: 468px) {
    .navbar-padding {
     padding-top: 0px !important; 
}
    .navbar{
        background-color:#516B66;;
    }
    .my-first-nav{
        display:none;
    }
    .my-addition-nav{
        display:block;
    }
    .navbar-collapse{
        position: absolute;
        right: 10px;
        top: 60px;
    }
 
    .carousel-indicators{
        bottom: 0;
        right: 0;
        left:0;

    }
   
    .pt-5{
        padding-top: 17rem !important;
    }
    .car-btn1{
        display: flex;
        justify-content:center;
        align-items: baseline;
        gap: 20px;
    }
    .carousel-caption {
    padding-left: 0px;
    padding-top:0px;
   
}
    .caption-cont{
        text-align: center;
        font-size: 31px;
        padding-top: 190px;
    }
    /*.carousel-indicators [data-bs-target]{*/
    /*    background-color: #66605c;*/
    /*}*/
    /*.carousel-item, .carousel-item3{*/
    /*    height:40vh !important;*/
    /*}*/
    #scrollBtn{
        color: #000;
    }
    .carousel-control-prev {
    left: 0 !important;
}

.h-100 {
    height: 30vh !important
}
.text-primary{
    text-align:center;
}
.footer-img img{
    width:50%;
   
}
.footup{
    display:none;
    margin-left:20px;
}
.log-section{
    display:none !important;
}
.d-flex{
    justify-content: center !important;
    color:#fff !important;
    
}

.addr{
    display:flex;
}
.f-center{
    text-align:center;
    color:#fff !important;
}
.footer .btn.btn-link{
     text-align:center;
}
.footer .copyright{
    height: 27vh;
    color:#fff;
}
    .copy-r {
        text-align: center;
        padding-top: 40px;
        padding-bottom: 90px;
    }
    
    .cont-c{
        margin-top:-45px;
    }
.m-view{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    text-align:center;
}
.m-view p{
    text-align:center;
}
.position-relative{
    top:0;
}
}
@media (min-width: 768px) and (max-width: 1024px) {
    .carousel-indicators{
        bottom: 0;
        right: 0;

    }
    .navbar-collapse{
        position: absolute;
        right: 10px;
        top: 30px;
    }
    .carousel-control-prev {
    left: 0 !important;
}
.pt-5 {
    padding-top: 1rem !important;
}
.carousel-item{
   
}
.mt-5{
    margin-top: 5rem !important;
}
}

/* my css */
 
@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        padding: 25px 0;
    }
}

@media only screen and (min-width:469px) {
    .carousel-indicators {
    bottom: 70px;
    left:0;
    }
   
}
/* About  us css*/

 .vision-section {
      padding: 30px 0;
      background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    }
    .vision-img {
      width: 100%;
     
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }
    .pillars-card {
            background: white;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
            position: relative;
            overflow: hidden;
        }
        .pillars-card:hover {
            transform: translateY(-8px);
            box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.15);
        }
        .pillars-card i {
            font-size: 32px;
            color: white;
            background: #06402b;
            padding: 15px;
            border-radius: 50%;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 60px;
            height: 60px;
            margin-bottom: 10px;
            transition: all 0.3s ease-in-out;
        }
        .pillars-card:hover i {
            background: #06402b;
            transform: rotate(360deg);
        }
        .pillars-card h6 {
            font-size: 17px;
            font-weight: bold;
            color: #333;
            margin-top: 10px;
        }
        
         .info-box {
            /*background: white;*/
            border-radius: 12px;
            padding: 20px;
            text-align: center;
           
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
            position: relative;
            overflow: hidden;
        }
        .info-box:hover {
            transform: translateY(-8px);
            box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.15);
        }
        .info-box .info-header {
            width: 100%;
            padding: 15px;
            color: white;
            font-weight: bold;
           text-transform: capitalize;
            border-radius: 5px;
            display: grid;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }
       
        .info-box .info-content {
            padding: 20px;
        }
        .info-box .info-icon {
            font-size: 30px;
            margin-right: 10px;
        }
        /*.btn-custom {*/
        /*    display: inline-block;*/
        /*    text-decoration: none;*/
        /*    padding: 8px 16px;*/
        /*    font-size: 14px;*/
        /*    border-radius: 20px;*/
        /*    font-weight: bold;*/
        /*    transition: 0.3s;*/
        /*}*/
        .btn-orange {
            background: #ff7b00;
            color: white;
        }
        .btn-green {
            background: #1abc9c;
            color: white;
        }
        .btn-purple {
            background: #6f42c1;
            color: white;
        }
        .btn-blue {
            background: #007bff;
            color: white;
        }
        .btn-custom:hover {
            opacity: 0.8;
        }
        
 .nav-tabs .nav-link {
     font-family: "Montserrat", sans-serif;
            font-weight: bold;
            color: #555;
            border: none;
            padding: 10px 20px;
        }
        .nav-tabs .nav-link.active {
            color: #516b66;
            border-bottom: 3px solid #516b66;
            background: transparent;
        }
        .profile-card {
            background: white;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }
        .profile-card:hover {
            transform: translateY(-5px);
            box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.15);
        }
        .profile-card img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            border: 4px solid #516b66;
            margin-bottom: 10px;
        }
        .profile-card h5 {
            font-family: "Montserrat", sans-serif;
            font-weight: bold;
            color: #516b66;
        }
        .profile-card p{
            
            color: #000;
    font-size: 14px;
    letter-spacing: 1px;
        }
        
        .readbtn{
            padding:80px;
        }
        /*.read-more {*/
     .para-pillers {
        text-align: center;
    font-size: 17px;
    font-weight: 700;
}   
        
@media (min-width: 320px) and (max-width: 468px) {
    .about-banner-2{
        text-align:center;
    }
    .form-column {
    padding-top: 48px;
}
.aboutus-vision-mision-img {
    gap: 70px;
    flex-direction: column-reverse;
}


    
    
}
@media (min-width: 768px) and (max-width: 1024px) {
 .text-vision{
     margin-top:50px;
 }    
}
/*About us css*/

/* contact*/
.icon-contact-banner{
        position: relative;
    top: -90px;
}
  .contact-card {
            text-align: center;
            border: none;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            padding: 20px;
        }
        .icon-circle {
            background-color: #516b66;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 15px;
            color: white;
            font-size: 24px;
        }
   
    .form-control {
      border-radius: 12px;
      padding: 12px;
      margin-bottom: 20px; /* Add gap between input fields */
    }
    textarea.form-control {
      resize: none;
    }
    .form-check-label {
      font-size: 0.9rem;
    }
    .submit-btn {
      background: linear-gradient(90deg, #ff758c, #ff7eb3);
      color: #fff;
      border: none;
      padding: 12px;
      border-radius: 50px;
      font-weight: bold;
      transition: all 0.3s ease;
      margin-top: 20px;
    }
    .submit-btn:hover {
      background: linear-gradient(90deg, #ff7eb3, #ff758c);
      transform: scale(1.05);
    }
    .form-container {
            background-color: #f8f9fa; /* Light gray background */
            padding: 30px;
            border-radius: 10px; /* Rounded corners */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
        }
      .map-container {
            height: 100%;
            min-height: 400px;
        }
        /*contact*/
    /* career*/
      .section-title {
           
            color: #516b66; /* Goldish color */
            font-size: 2rem;
            text-align: left;
            margin-bottom: 20px;
        }
        .card {
            border: none;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s ease-in-out;
        }
        .card:hover {
            transform: translateY(-5px);
        }
        .card-title {
            font-weight: bold;
            color: #516b66;
            
        }
        .btn-custom {
            background-color: #516b66;
            color: white;
            border: none;
        }
        .btn-custom:hover {
            background-color: #516b66;
        }
        
        
         .modal-content {
        padding: 20px;
        border-radius: 10px;
    }

    .close-btn {
        border: none;
        background: transparent;
        font-size: 20px;
        cursor: pointer;
    }

    .file-upload {
        border: 2px dashed #ccc;
        padding: 15px;
        text-align: center;
        cursor: pointer;
        border-radius: 5px;
    }

    .file-upload:hover {
        background: #f9f9f9;
    }

    .submit-btn {
        width: 100%;
        background: #8c794e;
        color: white;
        border: none;
        padding: 10px;
        border-radius: 5px;
        cursor: pointer;
    }

    .submit-btn:hover {
        background: #6c5c3d;
    }
    select.form-choose.form-select {
    padding: 11px;
}
.box-model{
    align-items: start !important;
    justify-content: center !important;
    display: flex !important;
    gap: 20px;
;
}
.team-back {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    width: 140%;
}
.modal-body {
    padding-top: 11px;
}
/*.box-model-content{*/
/*    width: 680px;*/
/*    background-color:#fff;*/
/*}*/
@media (min-width: 320px) and (max-width: 468px) {
.box-model {
    align-items: start !important;
    justify-content: center !important;
    display: flex !important
;
    flex-direction: column;
    gap: 20px;
}
.team-back {
   
    width: 100%;
}
}
/*projects*/
/*@media (min-width: 320px) and (max-width: 468px) {*/
/*    .projects-mb-card{*/
/*        gap:90px;*/
/*    }*/
/*}*/
/*projects*/
    
        
     