/********** Template CSS **********/

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 600;
}

.mt-6 {
    margin-top: 5rem;
}

.mb-6 {
    margin-bottom: 5rem;
}

.pt-6 {
    padding-top: 5rem;
}

.pb-6 {
    padding-bottom: 5rem;
}


/*** 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;
}

.text-justify {
    text-align: justify;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--bs-light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--bs-dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-xl-square {
    width: 60px;
    height: 60px;
}

.btn-xxl-square {
    width: 75px;
    height: 75px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square,
.btn-xl-square,
.btn-xxl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-light {
    background: #ce9233 !important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-light:hover {
    background: var(--bs-white) !important;
    color: var(--bs-dark) !important;
}

/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--bs-dark);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

/* .navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
} */

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        width: 330px;
        padding: 10px;
    }

    .navbar .nav-item .dropdown-menu a.nav-link.active {
        color: red !important;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}



/*** Header ***/
.carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    text-align: left;
    background: rgba(0, 0, 0, .7);
    padding: 3rem;
    padding-left: 11rem;
    z-index: 1;
}

.carousel .carousel-indicators {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 80px;
    flex-direction: column;
    margin: 0;
    margin-left: 3rem;
}

.carousel .carousel-indicators [data-bs-target] {
    width: 70px;
    height: 70px;
    text-indent: 0;
    margin: 5px 0;
    border: 2px solid #FFFFFF;
    overflow: hidden;
}

.carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .carousel .carousel-item {
        position: relative;
        min-height: 600px;
    }

    .carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 60px;
        height: 60px;
    }

    .carousel .carousel-caption {
        padding-left: 10rem;
    }
}

@media (max-width: 768px) {
    .carousel .carousel-item {
        min-height: 500px;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 50px;
        height: 50px;
    }

    .carousel .carousel-caption {
        padding-left: 9rem;
    }

    .ml-logo {
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .carousel .carousel-item .display-1 {
        font-size: 66px;
    }
}

.page-header {
    background-image: url('../img/hindustan-spring-image/breadcrumb-hindustan-soring.webp');
    /* background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/hindustan-spring-imagebreadcrumb-hindustan-soring.webp) center center no-repeat; */
    background-size: cover;
}


/*** About ***/
.about-img {
    position: relative;
    padding-left: 45px;
}

.about-img::before {
    position: absolute;
    content: "";
    width: 200px;
    height: 300px;
    top: 0;
    left: 0;
    border: 5px solid var(--bs-primary);
    animation: animateUpDown 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes animateUpDown {
    0% {
        top: -25px;
    }

    50% {
        top: -45px;
    }

    100% {
        top: -25px;
    }
}


/*** Features ***/
.feature {
    background: linear-gradient(to right, rgba(0, 0, 0, .1), rgba(0, 0, 0, 1) 50%), url() left center no-repeat;
    background-size: cover;
}

.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature-item {
    border-color: rgba(0, 0, 0, .03) !important;
}

.feature-icon {
    position: relative;
    transition: .5s;
}

.feature-item:hover .feature-icon {
    margin-left: 3rem;
}

.feature-item a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--bs-secondary);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

.feature-item a:hover {
    color: var(--bs-primary) !important;
}

.feature-item a:hover::after {
    background: var(--bs-primary);
}

.experience .progress {
    height: 5px;
}

.experience .progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Service ***/
.service .service-item {
    position: relative;
    margin-top: 45px;
    border: solid #ce9233 2px;
    padding: 4px;
}

/* .service .service-item a
{
    font-size: 5px;
} */

.service .service-inner {
    position: relative;
    height: 100%;
    margin-top: 45px;
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
    height: 272px;
}

.service .service-inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: 1s;
    background: var(--bs-primary);
}

.service .service-inner:hover::before {
    height: 100%;
    top: 0;
}

.service .service-item img {
    margin-top: -45px;
    /* padding-left: 45px; */
    height: 200px;
}

.service .service-item * {
    position: relative;
    transition: .5s;
    z-index: 1;
    font-size: 18px;
    text-align: center;
}

.service .service-item button {
    background-color: #ce9233;
    width: 135px;
    font-size: 14px;
    height: 32px;
    color: white;
    border: none;
}



.service .service-item:hover h5,
.service .service-item:hover p {
    color: var(--bs-white);
}

.service .service-item:hover a {
    padding-left: 45px !important;
}


/*** Appoinment ***/
.appoinment {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url() left center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team .team-item {
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.team .team-item .team-social {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    transition: .5s;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team .team-item:hover .team-social {
    width: 100%;
    left: 0;
}

.team .team-item .team-social .btn {
    opacity: 0;
    transition: .5s;
}

.team .team-item:hover .team-social .btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.testimonial-img div {
    position: absolute;
    width: 100px;
    height: 100px;
    animation-duration: 5s;
}

.testimonial-img div:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: .1s;
}

.testimonial-img div:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: .4s;
}

.testimonial-img div:nth-child(3) {
    top: 20%;
    left: 60%;
    animation-delay: .7s;
}

.testimonial-img div:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
}

.testimonial-img div::after {
    position: absolute;
    content: "";
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    box-shadow: 0 0 10px 10px var(--bs-white) inset;
    z-index: 1;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 15px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    color: var(--bs-primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-dark);
}


/*** Contact ***/
@media (min-width: 992px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px dashed rgba(255, 255, 255, .2);
    }
}

@media (max-width: 991.98px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0px;
        top: 50%;
        left: 0;
        border-top: 1px dashed rgba(255, 255, 255, .2);
    }
}


/*** Appoinment ***/
.newsletter {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url() left center no-repeat;
    background-size: cover;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--bs-secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--bs-primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #222222;
}

.copyright a {
    color: var(--bs-white);
}

.copyright a:hover {
    color: var(--bs-primary);
}




/* my css */

.home-image {
    width: 100%;
    height: 526px;
}

.home-image img {
    width: 100%;
    height: 100%;
}

.secrvice-div {
    width: 100%;
    height: 85px;
    border: solid #ce9233 4px;
    margin-bottom: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 10px;
}

.secrvice-div h4 {
    font-size: 18px;
}


.facilities-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.facility-card {
    background-color: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.facility-icon {
    font-size: 2.5rem;
    color: #ce9233;
    margin-bottom: 20px;
}

.why-choose-section {
    padding: 60px 0;

}

.why-choose-section h2 {
    font-weight: 700;
}

.why-choose-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s;
    height: 100%;
}

.why-choose-item:hover {
    transform: translateY(-5px);
}

.why-icon {
    font-size: 2.5rem;
    color: #ce9233;
    margin-bottom: 15px;
}


.process-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.step-box {
    background-color: #fff;
    border-left: 5px solid #ce9233;
    padding: 25px 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.step-box:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ce9233;
    margin-right: 15px;
}

.step-content h3 {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 20px;
}

.step-wrapper {
    display: flex;
    align-items: flex-start;
}

@media (max-width: 576px) {
    .step-wrapper {
        flex-direction: column;
    }

    .step-number {
        margin-bottom: 10px;
    }
}


.vision-mission-section {
    background: linear-gradient(to right, #f8f9fa, #ffffff);
    padding: 60px 0;
}

.vm-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
    border: solid #ce9233 4px;
}

.vm-box:hover {
    transform: translateY(-5px);
}

.vm-icon {
    font-size: 2.5rem;
    color: #ce9233;
    margin-bottom: 20px;
}

.vm-heading {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 22px;
}

.details-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.details-table {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.details-table th {
    background-color: #ce9233;
    color: #fff;
    font-weight: 600;
}

.details-table td {
    background-color: #ffffff;
}

.section-title {
    font-weight: 700;
}

/* 
    section {
  padding: 60px 0;
  background-color: #f8f9fa;
} */

.diractor-div {
    text-align: center;
    padding: 22px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    height: 264px;
}

.diractor-div img {
    width: 100%;
    max-width: 250px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}

/* h2 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #0d6efd;
} */

p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.abm {
    height: 451px;
}

.contact-div {
    width: 100%;
    height: 400px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 20px;
    border-radius: 20px;
    border: solid #ce9233 2px;
}

.contact-div h2 {
    padding-top: 20px;
    color: #ce9233;
}

.contact-div p i {
    font-size: 20px;
    color: #ce9233;
    padding-right: 10px;
}


.main .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
    justify-content: center;
    align-items: center;
}

.main .card {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
    color: #333;
    border-radius: 2px;
}

.main .card-image {
    background: #fff;
    display: block;
    padding-top: 70%;
    position: relative;
    width: 100%;
}

.main .card-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 600px) {
    .main .container {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 1rem;
    }
}



/* Enquiry Section Styles */
.contact-section {
    background-color: #f9f9ff;
    position: relative;
    overflow: hidden;
}

.contact-section.bg-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.1) 0%, rgba(37, 117, 252, 0.1) 100%);
    z-index: 0;
}

.contact-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    border-radius: 2px;
}

.form-contact {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.form-control {
    height: 50px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    color: #555;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    box-shadow: none !important;
}

.form-control:focus {
    border-color: #6a11cb;
    box-shadow: 0 0 0 0.2rem rgba(106, 17, 203, 0.25) !important;
}

textarea.form-control {
    height: auto;
    min-height: 150px;
    resize: vertical;
}

.form-control::placeholder {
    color: #999;
    font-weight: 300;
}

.contact-form-one__form-btn {
    background: linear-gradient(to right, #ce9233, #ce9233);
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-form-one__form-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(106, 17, 203, 0.4);
}

.contact-form-one__form-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #2575fc, #6a11cb);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-form-one__form-btn:hover::before {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .form-contact {
        padding: 30px 20px;
    }

    .contact-title {
        font-size: 2rem;
    }


    .carousel-inner {
        position: relative;
        width: 100%;
        overflow: hidden;
        height: 320px !important;
    }

    .carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: unset !important
    }


    .carousel .carousel-item {
        min-height: 320px;
    }

    .vm-box {
        background: #ffffff;
        border-radius: 12px;
        padding: 18px !important;
    }

    .contact-div {
        width: 100%;
        height: 400px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        padding: 20px;
        border-radius: 20px;
        border: solid #ce9233 2px;
        margin-bottom: 25px !important;
    }

}

/* Animation for form elements */
.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    transform: translateY(-2px);
}

.f-lgo {
    width: 100%;
    height: 50px;
    margin-bottom: 20px;
}

.txt {
    color: #d3cec2 !important;
}


.product-header {
    background-color: #f8f9fa;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.product-title {
    font-weight: 700;
    color: #2c3e50;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e74c3c;
    margin: 1rem 0;
}

.action-buttons .btn {
    margin-right: 10px;
    margin-bottom: 10px;
    min-width: 180px;
}

.product-details-card {
    border: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.card-header {
    background-color: #ce9233;
    color: white;
    font-weight: 600;
}

.detail-item {
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.detail-label {
    font-weight: 600;
    color: #7f8c8d;
}

.detail-value {
    color: #2c3e50;
}

.social-share .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.view-more-btn {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.view-more-btn:hover {
    text-decoration: underline;
}

.open-popup-btn {
    padding: 12px 24px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.open-popup-btn:hover {
    background-color: #0056b3;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-form {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    width: 51%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.popup-form h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
}

.popup-form p {
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #0056b3;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
}

.key-baner {
    width: 100%;
    height: 350px;
    margin-bottom: 20px;
}

.key-baner img {
    width: 100%;
    height: 100%;
}

.fs {
    font-size: 35px;
}

.key-about {
    width: 100%;
    height: auto;
    border: solid #ce9233 2px;
    padding: 10px;
    margin-bottom: 20px;
}

.key-about p a {
    font-size: 13px;
    color: black;
}

.key-about p {
    margin-bottom: 4px;
}

hr {
    margin: 8px 0;
}

.key-about p i {
    padding-right: 5px;
    color: #ce9233;
}

.feature-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card h4 {
    font-size: 17px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.feature-icon i {
    color: #ce9233;
}

.afordabl-crd {
    background: #fff;
    border-radius: 8px;
    padding: 10px 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
    background-color: #ce9233;
}

.afordabl-crd:hover {
    transform: translateY(-5px);
}

.afordabl-crd img {
    width: 100%;
    margin-bottom: 15px;
    height: 228px;
    object-fit: contain;
}

.afordabl-crd p {
    margin-bottom: 0;
    font-weight: 500;
    color: #2d3e50;
    font-size: 15px;
    color: white;

}

.feature-table {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
    width: 100%;
}

.table-header {
    background: #ce9233;
    color: white;
    padding: 25px;
    text-align: center;
}

.table-header h2 {
    font-weight: 700;
    margin-bottom: 5px;
}

.table-header p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.feature-table table {
    margin-bottom: 0;
}

.feature-table thead th {
    background-color: #f8f9fa;
    padding: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #dee2e6;
    text-align: center;
}

.feature-table tbody tr {
    transition: all 0.3s ease;
}

.feature-table tbody tr:hover {
    background-color: rgba(26, 95, 122, 0.05);
}

.feature-table td {
    padding: 18px 16px;
    vertical-align: middle;
    border-color: #e9ecef;
}

.feature-icon {
    color: #ff914d;
    font-size: 1.4rem;
    margin-right: 10px;
}

.feature-name {
    font-weight: 600;
    color: #1a5f7a;
}

.value-text {
    color: #28a745;
    font-weight: 500;
}

@media (max-width: 768px) {
    .feature-table {
        overflow-x: auto;
    }

    .feature-table table {
        min-width: 600px;
    }

    .table-header h2 {
        font-size: 1.5rem;
    }

    .home-image img {
        width: 100%;
        height: auto !important;
    }

    .home-image {
        width: 100%;
        height: auto;
    }

    .mobile-footer {
        display: none;
    }

    .abm {
        height: auto;
    }

    .diractor-div {
        height: auto !important;
    }

    .diractor-div img {
        width: 100%;
        height: auto;
    }

    .key-baner img {
        width: 100%;
        height: auto;
    }

    .key-baner {
        width: 100%;
        height: auto;
    }

    .fs {
        font-size: 27px;
    }

    .why-image img {
    width: 100%;
    height: auto !important; 
}

.why-image {
    width: 100%;
    height: auto !important;
}
}

.why li {
    margin-bottom: 10px;
}

.why-image {
    width: 100%;
    height: 300px;
}

.why-image img {
    width: 100%;
    height: 100%;
}

.secrvice-div h3 {
    font-size: 18px;
}

.facility-card h6 {
    font-size: 1.25rem;
}

.text-foot {
        text-transform: lowercase !important;
}