@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@100;200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'Gilroy-Light';
    src: url('../fonts/gilroy/Gilroy-Light.otf');
}
@font-face {
    font-family: 'Gilroy-Medium';
    src: url('../fonts/gilroy/Gilroy-Medium.ttf');
}
:root {
    --primary: #b82223;
    --lgreen: #eaefe6;
    --green: #87b79f;
    --dgreen: #2E524A;
    --secondary: #292c2d;
    --light: #e2e5e8;
    --dark: #0a3b66;
    --cfont: 'Gilroy-Light', serif;
    --hfont: 'Mona sans', sans-serif;
    --dust: #c88302;
    --deepblue: #2d6590;
    --grey: #F5F5F5;
    --red: #ae2c23;
    --brown: #623820;
    --teal :#6baa99;
    --beige: #f8f1e7;
    --qfont: 'Gilroy-Medium', sans-serif
}


.montserrat-font {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

body {
    font-family: var(--qfont);
    color: var(--bs-dark);
    font-weight: 450;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--qfont) !important;
}
p{
    font-weight: 400;
    font-family: var(--hfont);
}

.text-hfont {
    font-family: var(--hfont) !important;
}

.text-cfont {
    font-family: var(--qfont) !important;
}

.text_primary {
    color: var(--primary) !important;
}

.text_green {
    color: var(--green) !important;
}

.text_lgreen {
    color: var(--lgreen) !important;
}

.text_dgreen {
    color: var(--dgreen) !important;
}

.text-red {
    color: var(--rubyred) !important;
}

.text-black {
    color: #000;
}
.text-deep {
    color: var(--red);
}

.bg_primary {
    background: var(--primary) !important;
}

.bg_green {
    background: var(--green) !important;
}
.bg_beige {
    background: var(--beige) !important;
}

.bg-orange {
    color: var(--dark);
}
.bg-black {
    background: #000;
}


.bg-repeat {
    background-repeat: no-repeat !important;
}

.bg-size {
    background-size: cover !important;
}

.text-orange {
    color: var(--dark);
}

.z_index_1 {
    z-index: 1 !important;
}

.object_contain {
    object-fit: contain !important;
}

.object_cover {
    object-fit: cover !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 500;
}

.bg-rubyred {
    background-color: var(--rubyred);
}

.bg-blue {
    background-color: var(--dark);
}

.text.red {
    background-color: var(--rubyred);
}

.right-arrow::before {
    content: '\f105';
}


/*** 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;
}

p {
    color: #555;
    line-height: 1.7;

}

/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-learn {
    background-color: var(--primary);
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.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;
    background-color: var(--red);
    border-radius: 50%;
    color: white;
}


/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;

}

.navbar .navbar-nav .nav-link {
    margin-right: 20px;
    padding: 25px 0;
    color: var(--dust);
    font-size: 14px;
    font-weight: 600;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    letter-spacing: 2px;
    text-align: end;
}



.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;
    }

    .order-lg-1 {
        order: 1;
    }

    .order-lg-2 {
        order: 2;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    .infra-image img{
        object-fit: contain;
        height: auto !important;
        width: 100%;
    }
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .flip-card {
    background-color: transparent;
    width: 100%;
    height: 350px !important;
    perspective: 1000px;
}
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}

.c_icon {
    background-color: #eaefe6;
    border-radius: 8px 0px 0px 8px;
}

.c_icons {
    background-color: var(--green);
    border-radius: 0px 8px 8px 0px;
    padding: 40px 32px 40px 32px;
}

.advan_icon {
    border-radius: 50%;
    height: 70px;
    width: 70px;
    margin-right: 10px;
    background-color: var(--bs-white);

}

.advan_icon img {
    height: 35px;
}

/*** Features ***/
.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature-item {
    border-color: rgba(0, 0, 0, .03) !important;
}


/*** About ***/
.about {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/about.jpg) left center no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 36px;
    height: 46px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 3px;
    border-left: 30px solid var(--bs-white);
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: var(--bs-white);
    background: #000000;
    opacity: 1;
}


/*** Service ***/
.service-item .service-text {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    text-align: center;
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
    transition: .5s;
    z-index: 2;
}

.service-item:hover .service-text {
    top: -1.5rem;
}

.service-item .service-text h5 {
    transition: .5s;
}

.service-item:hover .service-text h5 {
    color: var(--primary);
}

.service-item .service-btn {
    position: absolute;
    width: 80%;
    height: 3rem;
    left: 10%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-btn {
    bottom: -1.5rem;
}


/*** Project ***/
.project-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.project-item .project-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    padding-top: 60px;
    transition: .5s;
}

.project-item:hover .project-overlay {
    opacity: 1;
    padding-top: 0;
}

.project-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin-left: 15px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--bs-white);
}

.odometer {
    display: inline-block;
    /* Ensure inline layout */
    font-size: 3rem;
    /* Adjust size if needed */
    line-height: 1.2;
    /* Adjust line height for spacing */
}

.number-text {
    text-align: center;
    /* Center align the odometer */
}

.number-text h1 {
    margin: 0;
    /* Reset margin to avoid extra spacing */
}

@media (max-width: 768px) {
    .project-carousel .owl-nav {
        top: -70px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .project-carousel .owl-nav .owl-prev,
    .project-carousel .owl-nav .owl-next {
        margin: 0 7px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* chai */

/*** Team ***/
.team-item {
    position: relative;
    text-align: center;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-social {
    position: absolute;
    padding: 0;
    top: 15px;
    left: 0;
    overflow: hidden;
}

.team-item .team-social li {
    list-style-type: none;
    margin-bottom: 10px;
    margin-left: -50px;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social li {
    margin-left: 15px;
    opacity: 1;
}

.team-item .team-social li .btn {
    background: var(--bs-white);
    color: var(--primary);
    border-radius: 40px;
    transition: .5s;
}

.team-item .team-social li .btn:hover {
    color: var(--bs-white);
    background: var(--primary);
}

.team-item .team-social li:nth-child(1) {
    transition-delay: .1s;
}

.team-item .team-social li:nth-child(2) {
    transition-delay: .2s;
}

.team-item .team-social li:nth-child(3) {
    transition-delay: .3s;
}

.team-item .team-social li:nth-child(4) {
    transition-delay: .4s;
}

.team-item .team-social li:nth-child(5) {
    transition-delay: .5s;
}


/*** Testimonial ***/
.testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
}

.owl-item .testimonial-item,
.testimonial-item * {
    transition: .5s;
}

.owl-item.center .testimonial-item,
.testimonial-item:hover {
    background: var(--primary);
}

.owl-item.center .testimonial-item *,
.testimonial-item:hover * {
    color: var(--bs-white) !important;
}

.testimonial-item img {
    width: 100px !important;
    height: 100px !important;
    border-radius: 100px;
}



.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-left: 15px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: var(--red);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--bs-white);
}

@media (max-width: 768px) {
    .testimonial-carousel .owl-nav {
        top: -70px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        margin: 0 7px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

}

@media (max-width:769px) {
    .advan_icon {
        border-radius: 50%;
        height: 78px;
        width: 78px;
        margin-right: 10px;
        background-color: var(--bs-white);

    }
}


/*** Footer ***/

/* .footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
} */



.copyright {
    color: #B0B9AE;
}

.copyright {
    background: #000;
    border-top: 1px solid;
}

.copyright a:hover {
    color: var(--primary) !important;
}

.c_being_img {
    width: 60%;
    left: 0;
    right: 0;
    margin: auto;
    top: -16%;
}

.c_being_img_down {
    width: 60%;
    left: 0;
    right: 0;
    margin: auto;
    top: -23%;
    padding-top: 300px;
}

.c_tea_cup img {
    width: 60%;
}

.c_sourced {
    background-color: var(--green);
}

.cg_blog1:before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    background-image: url(../img/g_leaf.png);
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.2;
}

.c_blog1 {
    margin: 80px 50px 80px 50px;
}

.c_blog2 {
    background-size: cover;
    background-image: url(../img/blog2.jpg);
}

.c_bolg_img img {
    height: 240px;
}

.c_bolg_img span {
    background-color: var(--primary);
    border: 0;
    font-size: 12px;
}

.c_img::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

#header-carousel .carousel-inner .carousel-item:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background: url('../img/sl_leaf.png');
    background-size: contain;
    z-index: 2;
}

#header-carousel .carousel-inner .carousel-item:after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

#header-carousel .carousel-inner .carousel-item img {
    animation: cscale 20s linear infinite;
    object-fit: cover;
    object-position: center;
}

@keyframes cscale {
    50% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
    }
}

#header-carousel .carousel-indicators [data-bs-target] {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    opacity: 1;
    position: relative;
    margin: 0 6px;
}

#header-carousel .carousel-indicators .active {
    background-color: var(--primary);
    position: relative;
}

.career_01 img {
    opacity: 0.1 !important;
}


.accordion-item:first-of-type {
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
}

.accordion-item:last-of-type {
    border-bottom-right-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
}

.career_01 .accordion-item:last-of-type .accordion-collapse {
    background: #fff;
}

.career_01 .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--dark);
    box-shadow: unset;
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
}

.career_01 .accordion-button:focus {
    z-index: 3;
    border-color: unset;
    outline: 0;
    box-shadow: unset;
}

.career_01 .form-control:focus {
    color: #555;
    background-color: #fff;
    border-color: #000000;
    outline: 0;
    box-shadow: unset;
}



#header-carousel .carousel-indicators .active::before {
    position: absolute;
    content: '';
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    left: -5px;
    top: -5px;
}

.accordion-item {
    background-color: #fff;
    border: none !important;
}

.object-cover {
    object-fit: cover;
}

.c_review {
    background-color: #87b79f5c;
}

.c_review_checked {
    color: orange;
}

.c_reviewss img {
    border: 2px solid #fff;
    border-radius: 50%;
}

.c_product a:hover {
    color: var(--primary);
}

.c_product span {
    height: 50px;
    display: flex;
}

/* .c_ourproduct{
    background-image: url(../img/our_product.png);
    background-size: cover;
    background-repeat: none;
} */
.btn-primary {
    color: var(--primary);
}

.c_footer img {
    height: 120px;
}



.form-control2 {
    border: none;
    border-bottom: 2px solid #fff;
    border-radius: 0;
    background-color: transparent;
    font-size: .9rem;
    padding-left: 0px;
}

.form-control:focus-visible {
    box-shadow: none;
    outline: 0px;
}

.form-control2:focus-visible {
    box-shadow: none;
    outline: 0px;
}

.c_bigimage img {
    position: absolute;
    height: auto;
    width: 100%;
    right: 0;
    bottom: 0;
}

.c_bigimage {
    background-size: cover;
    background-position: right;
    z-index: 1;
}

.c_about {
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.c_bigimage::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgb(0 0 0 / 68%);
    z-index: -1;
}

.c_about::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 28%);
    z-index: -1;
}

/* .counter {
    color: var(--primary);
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    font-size: 45px;
    width: 272px;
    padding: 40px 27px 37px;
    margin: 0 auto;
    border-radius: 20px 20px;
    position: relative;
    z-index: 1;
} */

.counter:before,
.counter:after {
    content: "";
    position: absolute;
    left: 15px;
    top: 15px;
    bottom: 15px;
    right: 15px;
    z-index: -1;
}

.counter:after {
    background: transparent;
    width: 100px;
    height: 100px;
    border-top: none;
    border-right: none;
    border-radius: 0 0 0 20px;
    box-shadow: none;
    top: auto;
    left: -10px;
    bottom: -10px;
    right: auto;
}

.counter-icon img {
    height: 55px;
}

.counter:hover .counter-value {
    text-shadow: 2px 2px 0 #d1d8e0;
}

.counter h3 {
    font-size: 17px;
    font-weight: bold;
    text-transform: uppercase;
    color: #032456;

}

/* .c_about img {
    position: absolute;
    height: auto;
    width: 100%;
    right: 0;
    bottom: 0;
} */

.testimunial ::before {
    color: #fff;
    font-size: 24px;
    background: var(--primary);
    width: 70px;
    height: 70px;
    display: block;
    text-align: center;
    line-height: 68px;
    border-radius: 100%;
    margin-bottom: 29px;
    margin-left: auto;
    margin-right: auto;
}

.c_cloud img {
    position: absolute;
    height: auto;
    top: 0px;
    width: 100%;
}

.c_text p {
    color: var(--primary);
}

.c_blog span {
    background-color: var(--primary);
    border: 0;
    font-size: 14px;
}

.c_blog_img img {
    border-radius: 50%;
}

.c_blog_img .dot {
    display: inline-block;
    width: 3px;
    height: 3px;
    background: var(--green);
    border-radius: 100%;
    vertical-align: middle;
    margin-left: 8px;
    margin-right: 8px;
}

.c_bolg_text {
    color: var(--green);
}

.c_small {
    padding-left: 30px;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.c_banner img {
    position: absolute;
    right: 0;
    z-index: -1;
    opacity: 0.1;
    bottom: -72%;
}

.c_homebanner img,
.c_leafban img {
    position: absolute;
    left: 0;
    z-index: -1;
    opacity: 0.5;
    bottom: -72%;
}

.c_leafban img {
    bottom: 0;
    width: 100%;
    opacity: 0.3;
}

.c_leafban.lefopacity img {
    opacity: 0.15;
}

.c_homebannerrrr img {
    position: absolute;
    top: -21px;
    left: -50px;
    height: 229px;
    transform: scaleX(-1);
    opacity: 0.5;
    z-index: -1;
}

.c_page {
    background-image: url(../img/bgtext.jpg);
    font-family: var(--cfont);
    color: #2E524A00;
    font-size: 250px;
    font-weight: 900;
    background-color: #2E524A;
    background-clip: text;
    -webkit-background-clip: text;
}

.p_tea_pad {
    padding-bottom: 200px !important;
}

.h_leaf_pad {
    padding-top: 200px !important;
}

/* .sp_logo {
    position: absolute;
    width: 100px;
    top: 0;
} */

.owl-carousel .owl-item .project-item img,
.prod_img img {
    height: 200px;
}

.enquir_right_btn {
    bottom: 40%;
    right: 17px;
    left: unset;
    transform: rotate(90deg);
    transform-origin: right;
    position: fixed;
    background: var(--dblue);
    border: 0;
    border-radius: 30px;
    z-index: 99;
    background-color: var(--primary);
}

.h_ssimp .btn-close {
    top: 5px;
    right: 5px;
}

.prod_pop_img {
    position: absolute;
    left: -5%;
    top: -7.5%;
    height: 115%;
    width: 60%;
    z-index: -1;
}



.bg-img.padding-top-bottom .testimonials-carousel.owl-carousel .owl-item.active .banner-text.text-start img,
.home-carousel.owl-carousel .owl-item.active.center .slider-img img {
    clip-path: inset(0 0 0 0%);

}

.bg-img.padding-top-bottom .testimonials-carousel.owl-carousel .owl-item .banner-text.text-start img,
.home-carousel.owl-carousel .owl-item .slider-img img {
    clip-path: inset(0 0 0 100%);
    transition: all 1.5s ease;
    -webkit-transition: all 1.5s ease;
}


@media (min-width: 768px) {

   
    .director-img{
        height: 400px;
        float: left;
        width: 400px !important;
        object-fit: cover;
        
    }
    .modal-text {
        font-size: 35px;
        letter-spacing: 4px;
    }

    .sp_logo {
        width: 120px;
    }

    .c_icons .c_being {
        margin-left: 18%;
    }

    .height-100 {
        height: 100vh;
    }


    .c_being {
        width: 82%;
    }

    .c_being_img {
        width: 38% !important;
        top: 23%;
        left: -19%;
        margin: unset;
    }

    .c_being_img_down {
        bottom: 6%;
        left: -15%;
        width: 30% !important;
        z-index: 1;
        right: unset;
    }

    .h_advan_icon {
        width: 23%;
    }

    #header-carousel .carousel-item img {
        height: 600px;
    }

    #header-carousel .carousel-item .banner_2 {
        height: 600px;
    }

    #header-carousel .carousel-indicators {
        right: 0;
        left: unset;
        width: 10%;
        height: 62px;
        margin: 0;
        display: grid;
        top: 50%;
    }

    .c_cloud img {
        top: -60px;
    }

    .c_banner img {
        bottom: unset;
        width: 50%;
    }

    .c_homebannerrrr img {
        opacity: 1;
        z-index: 1;
    }

    .p_tea_pad {
        padding-bottom: 0 !important;
    }

    .h_leaf_pad {
        padding-top: 1.5rem !important;
    }

    #carouselExampleControls .carousel-control-prev {
        left: -10%;
    }

    #carouselExampleControls .carousel-control-next {
        right: -10%;
    }

    .owl-carousel .owl-item .project-item img,
    .prod_img img {
        height: 250px;
    }

    .modal-lg,
    .modal-xl {
        max-width: 900px !important;
    }

    .dropdown-menu {
        position: absolute;
        z-index: 1000;
        display: none;
        min-width: 10rem;
        padding: .5rem 0;
        margin: 0;
        font-size: 1rem;
        color: #555;
        text-align: left;
        list-style: none;
        background-color: #fff;
        background-clip: padding-box;
        border: 0px !important;
        border-radius: 0px !important;
    }

}

@media (min-width:1600px) {
    .c_cloud img {
        top: -80px;
    }

    .c_about img {
        position: absolute;
        height: auto;
        left: 0px;
        bottom: 0;
    }

    #header-carousel .carousel-item .banner_2 {
        height: 900px;
        width: 100%;
    }

    #header-carousel .carousel-item img {
        height: 900px;
    }
}

@media (max-width: 500px) {
    .h_pad_ev {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

.table,
td {
    border: 1px solid black;
}

.form-control:read-only {
    background-color: transparent;
    opacity: 1;
    color: white;
}

/* new Vyomic css */

/* 
:hover {
    background-color: var(--brown);
    color: var(--beige);
    border: 1px solid var(--dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 15px;
} */

.slider-img img {
    object-fit: cover;
    height: 100vh;
    width: 100%;
}

.header-Vyomic {
    z-index: 2;
}
.navbar-light .navbar-toggler-icon {
    filter: invert(1);
    width: 25px;
}

.navbar-light .navbar-toggler {

    border: none;
}

.navbar-brand {
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 0px;
    font-size: 1.25rem;
    white-space: nowrap;
}





.knowmore {
    background-color: var(--dark);
    width: 70%;
    font-size: 15px;
}

.knowmore2 {
    background-color: var(--dust);
    width: 70%;
    font-size: 15px;
}

.know-text {
    font-size: 12px;
    letter-spacing: 2px;
    color: white;
    padding: 5px 15px;
    font-weight: 700;
}

.know-text:hover {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--dark);
    padding: 5px 15px;
    font-weight: 700;
    background-color: white;
}

.anim-box {
    border: 2px solid #fff;
    width: 30%;
    border-right: none !important;
    transition: all 0.3s ease;
}

.anim-box:hover {
    border: none;
    border-bottom: 2px solid #fff !important;
    border-top: 2px solid #fff !important;
    width: 40%;
    transition: all 0.3s ease;
}

.badge-img img {
    height: 250px;
    width: auto;
    animation: spin 20s linear infinite;
    position: absolute;
    right: -30px;
    top: -57px;
}

.side-image img {
    object-fit: contain;
    width: 100%;
    height: auto;
}

.about-side-image img {
    object-fit: contain;
    width: 100%;
    height: auto;
}

.about-side-image img {
    transition: transform 0.3s ease-out;
}

.badge-img {
    display: flex;
    justify-content: end;
}

.enquir_right_btn {
    display: none !important;
}

.hidden-text {
    position: relative;
}

.hidden-text img {
    width: 100%;
    display: block;
    filter: brightness(0.7); /* Darkens the image for better contrast with the text */
}

.overlay-text {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-image: linear-gradient(0deg, rgb(10, 59, 102), transparent);
    width: 100%;
    height: 0px;
    opacity: 0.7;
    overflow: hidden;
    transition: 0.5s;
}

.hidden-text:hover .overlay-text {
    opacity: 1;
    height: 50%;
}

.overlay-text a {
    color: white;
    font-size: 16px;
    text-decoration: none;
}
.centered-text {
    color: white;
    font-size: 20px;
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

/* .hidden-text:hover .overlay-text {
    height: 30%;
} */

.aesthetic-text:hover .aesthetic-overlay-text {
    opacity: 1;
}

.text {
    white-space: nowrap;
    color: white;
    font-size: 15px;
    position: absolute;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}



.icons_png img {
    width: auto !important;
    height: 100px;
    filter: invert(1);
}

/* .about-best:hover {
    box-shadow: 0 0 11px rgba(33, 33, 33, .2);
    transform: translateY(-5px);
    /* Subtle lift effect */
/* } */

.about-best {
    transition: box-shadow 1.3s ease, transform 0.3s ease;
    /* Smooth transition */
}

.smart_png img {
    height: 80px;
}

.data-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50vh;
    z-index: -1;
}



.contact-icons img {
    height: 70px;
}

.circle-img img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    margin-right: 20px;
}

.service-text {
    font-size: 23px;
    letter-spacing: 4px;
    font-weight: normal;
}



.service-side img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.service-img2 img {
    object-fit: contain;
    width: 100%;
    overflow: hidden;
    animation: autoplay2 7s infinite alternate linear;
    transition: all cubic-bezier(.47, 1.21, .47, 1.21) .8s;
}


.service-img1 img {
    object-fit: contain;
    width: 100%;
    height: auto;
    animation: autoplay 7s infinite alternate linear;
    transition: all cubic-bezier(.47, 1.21, .47, 1.21) .8s;
    overflow: hidden;

}

.infra-top img {
    height: auto;
    width: 100%;
    object-fit: contain;
}

@keyframes autoplay {
    0% {
        transform: translatey(0);
    }

    100% {
        transform: translatey(20%);
    }
}

@keyframes autoplay2 {
    100% {
        transform: translatey(0);
    }

    0% {
        transform: translatey(10%);
    }


}

@keyframes spin {
    0% {
        transform: rotate(0deg);
        /* Start at 0 degrees */
    }

    100% {
        transform: rotate(360deg);
        /* Complete a full rotation */
    }
}

.ma_ato {
    margin: auto;
}

.height-40 {
    height: 60vh;
}

.service-content {

    border-radius: 10px;
    padding: 10px;
}

.service-content img {
    height: 100px;
}





@media (min-width: 768px) {
    .ma_ato {
        margin: unset;
    }




    .data-bg::after {

        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 60vh;
        z-index: -1;
    }

   





    .banner-text {
        font-size: 50px;
        letter-spacing: 7px;
        font-weight: bold;
        color: #fff;
        font-family: var(--qfont) !important;
    }

    .number-text h1 {
        font-size: 60px;
        font-weight: 700;
        color: #555;
        font-family: var(--qfont) !important;
    }


    .icons_png img {
        width: auto !important;
        height: 100px;
        filter: invert(1);
    }

    .padding-top-bottom {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    .knowmore {
        background-color: var(--dark);
        width: 38%;
        font-size: 15px;
    }

    .knowmore:hover {
        background-color: #fff;
        width: 38%;
        font-size: 15px;
        color: var(--dark) !important;
        border: 1px solid var(--dark);
    }





    .infra-num {
        font-size: 40px;
        color: #555;
        font-family: var(--qfont);
        font-weight: bold;

    }


}

.dashed-line {
    border-left: 1px dashed var(--rubyred);
    position: relative;
    left: 13px;
    top: 50px;
}

.infra-moving-img img {
    object-fit: cover;
    height: auto;
    width: 100%;
}

.infra-moving-img {
    position: sticky;
    top: 105px;
}

.build-btn {
    background-color: var(--dust);
    width: 100%;
    font-size: 12px;
    padding: 15px;
}

.build-btn2 {
    background-color: var(--dust);
    width: 100%;
    font-size: 12px;
    padding: 15px;
}

.build-btn:hover {
    background-color: #fff;
    border: 1px solid var(--dark);
    color: var(--dark);
}

.address-text {
    border-bottom: 1px solid rgb(167, 163, 163);

}

.bg-img {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.h-100vh{
    height: 100vh;
}
.opacity-half {
    opacity: 0.5;

}

.opacity-one {
    opacity: 1 !important;

}

.logo-img img {
    height: 200px;
    width: auto;
    object-fit: cover;
}

.address-box {
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.6);
    padding: 30px 20px;
    background-color: white;
}

@media (max-width: 768px) {
    .sp_logo {
        width: 95px;
        height: auto;
    }

    .padding-top {
        padding-top: 25px;
    }

    .height-40 {
        height: 50vh;
    }


}

@media (min-width: 992px) {}



@media (min-width: 1120px) and (max-width: 1280px) {
    .banner-text {
        font-size: 35px;
        letter-spacing: 7px;
        font-weight: bold;
        color: #fff;
        font-family: var(--qfont) !important;
    }
}

/* Ensure digits are displayed inline */
.odometer .odometer-digit {
    display: inline-block;
    /* Force digits to align horizontally */
    vertical-align: baseline;
    /* Align digits properly */
    font-size: inherit;
    /* Keep consistent font size */
}

/* Ensure ribbons inside the digits do not distort the layout */
.odometer .odometer-ribbon {
    display: inline-block;
    /* Keep ribbons inline */
    overflow: hidden;
    /* Prevent overflow */
}

/* Smooth animation for digit transitions */
.odometer .odometer-ribbon-inner {
    transition: transform 1s ease;
    /* Smooth transition for roll effect */
}

/* Optional: Ensure the container adjusts to the number size */
.odometer {
    white-space: nowrap;
    /* Prevent wrapping of numbers */
    display: inline-block;
    /* Align counter properly */
    text-align: left;
    /* Align text left inside the container */
}

.owl-carousel .owl-stage {
    display: flex;
    /* Prevent stage from moving */
    transition: none !important;
    /* Disable all transitions */
}

.owl-carousel .owl-item {
    flex-shrink: 0;
    opacity: 0;
    /* Start with hidden items */
    transition: opacity 0.5s ease-in-out;
    /* Crossfade effect */
    transform: none !important;
    /* Disable sliding */
}

.owl-carousel .owl-item.active {
    opacity: 1;
    /* Show active item */
}

/* Main container for the grid */
.project-grid {
    display: flex;
    flex-wrap: wrap;
    /* Allow wrapping of items */
    gap: 20px;
    /* Space between items */
    justify-content: space-between;
    /* Distribute items evenly */
}

/* Individual grid item */
.project-masonry {
    width: calc(33.333% - 20px);
    /* Make sure each item takes up 1/3 of the container's width minus the gap */
    margin-bottom: 22px;
    /* Vertical space between rows */
    overflow: hidden;
}

/* Ensure images take full width and maintain aspect ratio */
.project-masonry img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.project-masonry:hover img {
    transform: scale(1.05);
}

/* Make sure the grid behaves responsively */
@media (max-width: 768px) {
    .project-masonry {
        width: calc(50% - 20px);
        /* Two columns on smaller screens */
    }
}

@media (max-width: 480px) {
    .project-masonry {
        width: 100%;
        /* One column on mobile */
    }
}

.project-masonry {
    position: relative;
    overflow: hidden;
    /* Ensures content doesn't overflow outside the container */
}

/* Ensure the image fills the container */
.project-masonry img {
    width: 100%;
    height: auto;
    display: block;
}

/* Apply linear gradient to the image using ::before */
.project-masonry::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    /* Gradient from black to transparent */
    z-index: 1;
    /* Ensure the gradient sits above the image but below the text and button */
    pointer-events: none;

    /* Prevents interaction with the overlay */
}

/* Project Name at the bottom-left */
.project-name {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    z-index: 2;
    /* Ensure text stays above the gradient */
}

/* View More Button - Initially off-screen */
.view-more-container {
    position: absolute;
    left: -100%;
    /* Initially position off the screen */
    top: 50%;
    transform: translateY(-50%);
    transition: left 0.3s ease;
    /* Smooth transition */
    padding: 10px 20px;
    z-index: 3;
    background-color: var(--rubyred);
    /* Ensure the button appears above the gradient and text */
}

/* Style the link inside the button */
.view-more-container a {
    color: white;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

/* On hover, slide the button into view */
.project-masonry:hover .view-more-container {
    left: 0;
    /* Slide the button into view */
}

.detail-pro img {
    object-fit: cover;
    height: auto;
    width: 100%;
}

.project_details {
    position: sticky;
    top: 20px;

}


.accordion-item:last-of-type .accordion-collapse {
    border-bottom-right-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
}

/* Parent Container */
.flash-effect {
    position: relative;
    /* Ensures the overlay is positioned relative to this container */
    overflow: hidden;
    /* Prevents overflow from the skewed effect */
}

/* Image Styling */
.flash-effect .infra-image {
    display: block;
    width: 100%;
    height: auto;
}

/* Gradient Overlay Effect */
.flash-effect:after {
    content: "";
    /* Required for pseudo-elements */
    position: absolute;
    /* Positions the overlay relative to .flash-effect */
    top: 0;
    left: -100%;
    /* Starts off-screen to the left */
    width: 50%;
    /* Width of the gradient */
    height: 100%;
    /* Full height of the parent container */
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
    /* Adds the skewed effect */
    -webkit-transform: skewX(-25deg);
    /* Webkit for older browsers */
    z-index: 2;
    /* Places it above the image but below the text */
    transition: left 0.5s ease;
    /* Smooth transition for the animation */
}

/* Hover Effect: Animate the Overlay */
.flash-effect:hover:after {
    left: 100%;
    /* Moves the gradient overlay from left to right */
    animation: moveEffect 0.5s forwards;
}

/* Keyframe for animation */
@keyframes moveEffect {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Text Styling (optional) */
.flash-effect .banner-text {
    position: absolute;
    bottom: 20px;
    /* Adjust vertical positioning */
    right: 20px;
    /* Adjust horizontal positioning */
    color: #fff;
    font-size: 1.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    /* Optional for better visibility */
    z-index: 3;
    /* Ensures text stays above the overlay */
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}


.sidenav a {
    padding: 15px;
    text-decoration: none;
    color: var(--red);
    font-size: 20px;
    text-align: center;
}

.sidenav a:hover {
    background-color: #ddd;
    color: black;
}

/* Hide sidebar and show regular navbar on desktop */
@media (min-width: 992px) {
    .sidenav {
        display: none;
        /* Hide the mobile sidebar */
    }

    .navbar-collapse {
        display: flex !important;
        /* Show the regular navbar on larger screens */
    }

    .navbar-toggler {
        display: none;
        /* Hide the hamburger icon */
    }
}

/* Hide the regular navbar and show the mobile navbar on smaller screens */
@media (max-width: 991px) {
    .navbar-collapse {
        display: none;
        /* Hide the regular navbar on small screens */
    }

    .navbar-toggler {
        display: block;
        /* Show the hamburger icon */
    }

    /* Make the side navbar visible when triggered */
    .sidenav {
        left: -250px;
    }

    .sidenav.show {
        left: 0;
        /* Slide in the sidebar */
    }
}

body {
    font-family: var(--cfont);
    margin: 0;
    padding: 0;
}

/* Mobile Sidebar */
.sidenav {
    position: fixed;
    top: 0;
    left: -250px;
    height: 100%;
    width: 250px;
    background-color: var(--dark);
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    transition: left 0.3s ease;
    z-index: 9999;
}

.sidenav a {
    padding: 15px;
    text-decoration: none;
    color: white;
    font-size: 20px;
    text-align: start;
}

/* Active link styles */
.sidenav a.active {
    background-color: white;
    color: var(--dark);
}




.sidenav a:hover {
    background-color: #fff;
    color: var(--dark);
}



/* Close button styles */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
}

/* Close button hover effect */
.close-btn:hover {
    color: #ddd;
}

/* Hide sidebar and show regular navbar on desktop */
@media (min-width: 992px) {
    .sidenav {
        display: none;
        /* Hide the mobile sidebar */
    }

    .navbar-collapse {
        display: flex !important;
        /* Show the regular navbar on larger screens */
    }

    .navbar-toggler {
        display: none;
        /* Hide the hamburger icon */
    }
}

/* Hide the regular navbar and show the mobile navbar on smaller screens */
@media (max-width: 991px) {
    .navbar-collapse {
        display: none;
        /* Hide the regular navbar on small screens */
    }

    .navbar-toggler {
        display: block;
        /* Show the hamburger icon */
    }

    /* Make the side navbar visible when triggered */
    .sidenav {
        left: -250px;
    }

    .sidenav.show {
        left: 0;
        /* Slide in the sidebar */
    }
}

/* When the menu is open, apply a blur to the background */
.body-blur {
    filter: blur(5px);
    /* Apply a blur effect */
    transition: filter 0.3s ease;
    /* Smooth transition */
}

/* Optional: You can also add an overlay effect for better focus on the menu */

.sidenav.open+.sidenav-overlay {
    display: block;
    /* Show overlay when the sidebar is open */
}

/* Sidenav Styles */
.sidenav {
    position: fixed;
    top: 0;
    left: -250px;
    /* Initially hidden off-screen */
    width: 250px;
    height: 100%;
    background-color: var(--beige);
    z-index: 1000;
    color: #000;
    transition: 0.3s;
    padding-top: 60px;
    overflow-y: auto;
    font-family: var(--qfont);

}

/* Menu link styles */
.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 20px;
    color: black;
    display: block;
    transition: 0.3s;
}




/* Close button */
.close-btn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    color: #000;
}

/* Overlay Styles for blur effect */
.sidenav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 69%);
    /* Semi-transparent black */
    z-index: 2;
    /* Positioned behind the sidenav */
    display: none;
    transition: all 0.3s ease;
}

/* Show overlay when the sidebar is open */
.sidenav-overlay.active {
    display: block;
}

/* Body background blur effect */
body.blur-background .content {
    filter: blur(5px);
    /* Apply blur to the content behind the menu */
}

/* Sidenav open effect */
.sidenav.open {
    left: 0;
    /* Slide the sidebar into view */
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--deepblue);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
    font-weight: 500;
    border-radius: 15px !important;
}
.accordion-collapse{
    background: #80808030;
    border-radius: 15px;
}
.next-01 {
    font-size: 15px;
    color: #fff;
    letter-spacing: 4px;
    margin-top: 6px;

}

.owl-prev {
    display: flex;
    justify-content: center;
    align-items: center;
}

.number-text h1 {
    color: #555;
    font-weight: 700;
    font-family: var(--qfont) !important;
}

.hidden-text img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.service-bg {
    background-image: linear-gradient(to right, var(--dark), #0a3b668f);


}

.red-bg {
    background-color: var(--rubyred);
}

.navbar-nav {
    font-family: var(--qfont);
}


/* Header Styles */
.header-Vyomic {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    transition: background-color 0.4s ease-in-out;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    box-shadow: none;

}

/* When the header has a background */
/* .header-Vyomic.scrolled { */
    /* background-color: #e6e6e6; */
    /* background-color: #fff; */
    /* Set background color when scrolling down */

    /* color: #000; */
    /* Optional shadow for better visibility */
/* } */

.header-Vyomic.scrolled .nav-item {

    color: #000 !important;
    /* Optional shadow for better visibility */
}

.service-text {
    font-weight: 300;
}

.bg-grey {
    background-color: var(--grey);
}

a:hover {
    color: var(--rubyred);
}

.query-img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.about-bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.modal-img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 350px;
    background-color: #0000008a;
    background-blend-mode: darken;
}

.modal-header {
    border-bottom: none !important;
}

.border-end {
    border-right: 3px solid white !important;
}
.border-end-red {
    border-right: 1px solid var(--red) !important;
}
.btn-close {
    color: var(--dark) !important;
    text-decoration: none;
    opacity: .75;
}



.vertical-text {
    display: inline-block;
    writing-mode: vertical-rl;
    text-orientation: upright;
    text-align: center;
}

/* .rotating-logo {
    transition: transform 0.5s ease;
} */

/* .rotating-logo:hover {
    transform: rotateY(180deg);
} */

.bg-blue {
    background: var(--dark);
    /* background: linear-gradient(to top left, rgba(11, 61, 105, 1) 0%, rgba(101, 152, 195, 1) 100%); */

}

.bg-red {
    background-color: var(--rubyred);
}

/* .product-01 {
    border: 1px solid white;
} */

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {

    background-color: var(--rubyred);
    color: white !important;
}

.nav-tabs .nav-link {
    margin: 10px;
    background: white;
    border: 1px solid var(--rubyred);
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    color: var(--rubyred) !important;
}

.nav-tabs {
    border-bottom: 0px !important;
}

.sliding_window {

    padding: 20px;
    margin: 10px;

}

.interlock-img img {
    height: 200PX;
    width: 100%;
    object-fit: contain;

}

.item img {
    width: auto !important;
    height: 100% !important;
    object-fit: contain;
}


.table-bottom {
    border-bottom: 1px solid #000;
}

#modal {
    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;
}

/* When modal is targeted, show it */
#modal:target {
    display: flex;
}

.modal-content {
    background-color: var(--deepblue);
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    width: 50%;
    position: relative;
}

.modal-content input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
   
    /* border-radius: 5px; */
}

.modal-content .close {
    position: absolute;
    top: 10px;
    right: 10px;
    /* background-color: red; */
    color: #fff;
    padding: 5px 10px;
    text-decoration: none;
    font-size: 35px;
    cursor: pointer;
}

.modal-content .close:hover {
    color: #555;
}

.navbar-light .navbar-nav .nav-link {
    color: #000;
}

.p-text {
    font-size: 18px;
}

.text-justify {
    text-align: justify;
}

.query-form::placeholder {
    color: white;
}

/* For better browser compatibility */
:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: white;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: white;
}

.dropdown-menu[data-bs-popper] {
    top: 100%;
    left: 0;
    margin-top: 0px !important;
}

.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: .5rem 0;
    margin: 0;
    font-size: 1rem;
    color: var(--dark) !important;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 0px !important;
    border-radius: 0px !important;
}

.dropdown-item {
    font-size: 14px;
    font-weight: 600;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.owl-carousel .animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}
.letter-spacing-7{
    letter-spacing: 7px;
}
.contact::placeholder
{
    color: white;
}
.form-control:focus {
    color: #fff;
    background-color: transparent;
    border-color: unset;
    outline: 0;
    box-shadow: unset;
}
.mdl-form::placeholder{
    color: white;
}
.top-arrow{
    height: 20px !important;
    filter: invert(1);
    width: auto !important;
}
.director-img{
    height: 400px;
    float: left;
    width: 333px;
    object-fit: cover;
    
}
.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: var(--deepblue);
}
thead, tbody, tfoot, tr, td, th {
    border-color: white;
    border-style: solid;
    /* border-width: 1px; */
    color: white;
    padding: 8px;
}
.table-bottom {
    border-bottom: 0 !important;
}
.sliding-view{
    color: white !important;
}
.sliding-view:hover{
    color: var(--dust) !important;
}
.request-qoute{
    width: 100% !important;
}
.padding-top-bottom {
    padding: 40px 0px;
}
input, button, select, optgroup, textarea{
    font-family: var(--cfont);
}
.facades-list li{
    list-style: none;
    color: white;
    font-family: var(--cfont);
    /* font-size: 15px; */
    line-height: 1.7;

}
.border-white {
    border-color: white !important;
}
.request-select option{
    color: #000 !important;
}
.request-close{
    filter: invert(1) !important;
}




.facades-list li {
    display: flex;
    
}

.facades-list li i {
    flex-shrink: 0;
}

.facades-list li span {
    flex-grow: 1;
}
.system-images{

    height: 120px;
    width: auto;
    object-fit: contain;
}
.odometer-inside{
    color: white;
}
.odometer-ribbon-inner{
    text-align: right;
}
.query-img::before {
    content: "";
    display: block;
    width: 100%; 
    height: 100%; 
    background-image: url('../img/home/query.png');
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0px;
}
.numbers{
    font-size: 35px;
    color: var(--dark);
    font-weight: 500;
  
}
.systems{
    border-bottom: 1px solid white;
}
.number001{
    border: 1px solid white;
    border-radius: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:white;
}
table {
    width: 100%;
    margin-bottom: 2.618em;
}
.infra-image img{
    object-fit: contain;
    height: 800px;
    width: 100%;
}
/* Techno green css */
.request_qoute {
    background-color: var(--red);
    padding: 15px;
    font-size: 12px;
    color: var(--beige);
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 5px;
    transition: all 0.5s ease; /* Add this line */
}
.request_qoute:hover { 
    background-color: var(--beige);
    color: var(--red);
    border-bottom:1px solid  ;
   
 
}
.getin_touch{
     background-color: white;
    padding: 15px;
    font-size: 12px;
    color: var(--brown);
    font-weight: 700;
    border: 1px solid var(--brown);
    letter-spacing: 2px;
    border-radius: 5px;
    transition: all 0.5s ease; /
}
.banner-button a{
    width: 55% !important;
}
.request_qoute2 {
    background-color: var(--red);
    padding: 15px;
    font-size: 12px;
    border: 2px solid var(--brown);
    color: var(--beige);
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 40px;
    transition: all 0.5s ease; /* Add this line */
}
.bg-deep{
    background-color: var(--deepblue);
}
.main-heading{
    font-size: 25px;
    font-weight: 500;
    line-height: 1;
    color: var(--red);
}
.sub-heading{
    font-size: 25px;
    font-weight: 500;
    line-height: 1;
}
@media(min-width: 764px) {
    .main-heading{
        font-size: 30px !important;
        font-weight: 500;
    }
    .sub-heading{
        font-size: 30px !important;
        font-weight: 500;
        line-height: 1;
    }
    .banner-button a{
        width: 35% !important;
    }
    
}

/* Overlay */
.bg-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2d6590;
    opacity: 0.6; /* Adjust as needed */
    z-index: 1;
}

/* Ensure all content stays above overlay */
.bg-img > * {
    position: relative;
    z-index: 2;
}
.constructors img{
    height: auto;
    width: 100%;
    object-fit: cover;
 
}

.text-constructor{
    background-color: var(--deepblue);
    border-radius: 20px;
    
}
.left-border{
    border-right: 1px solid white;
}
.bottom-border{
    border-bottom: 1px solid white;
}
.border-top-bottom{
    border-top: 1px solid var(--brown);
    border-bottom: 1px solid var(--brown);
}
.counter{
    color: var(--red);
}
.img002 img{
    height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 25px;
}
.img003 img{
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: var(--dark);
    text-align: left;
    background-color: #80808030;
    /* border: 1px solid var(--dark); */
    border-radius: 15px !important;
    overflow-anchor: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}
.accordion-header {
    margin-bottom: 15px;
}
.accordion-collapse {
    background: #80808030;
    border-radius: 15px;
    margin-bottom: 15px;
}
.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 15px !important;
    border-bottom-left-radius: 15px !important;
}
.accordion-button::after {
    filter: invert(1)
}
.side-picture{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/home/sideimg.jpg);
    height: 350;
    border-radius: 15px;
}
.side-picture2{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/home/aboutside.jpg);
    height: 350;
    border-radius: 15px;
}
.text-dust{
    color: var(--dust);
}
.logo33 img{

    height: 100px;
}
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 100%;
    word-wrap: break-word;
    background-color: none !important;
    background-clip: border-box;
    border:none !important;
    border-radius: 8px;
    
}
.card-img, .card-img-top{
height: 350px;
object-fit: cover;
border: 1px solid grey;

width: 100%;
}
.tab-content{
    background-color: #80808030;
}
.card-body{
    background-color: #80808030;
}
.card-row{
    border-radius: 15px !important;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: white;
    background-color: var(--red);
    border-radius: 30px;
    margin-right: 10px;
}
.nav-pills .nav-link {
    /* background: none; */
    border: 0;
    border-radius: 30px;
    color: var(--deepblue);
    background: #80808045;
    margin-right: 10px;
}
.dummy-img img{
    height: 100px;
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
   
}
.project-img img{
    height: 100px;
    width: 100%;
    object-fit: contain;
    border-radius: 10px !important;
   
}
.boxes{
    border-radius: 15px;
    background: #80808045;
  
}
.boxes {
    transition: background 0.5s ease;
}

.boxes h3,
.boxes p {
    transition: color 0.3s ease;
}

.boxes:hover {
    background: var(--deepblue);
}

.boxes:hover h3,
.boxes:hover p {
    color: white !important;
}
.lastimg{
    background-position: center;
    background-size: cover;
    border-radius: 30px;
    
}
.blue-box{
    border-radius: 30px;
}
.bg-charcoal{
    background-color: var(--secondary);
}
.bg-brown{
    background-color: var(--brown);
}

.social-icons a {
    font-size: 20px;
       color: var(--brown);
    border: 1px solid var(--brown);
    border-radius: 50%;
    padding: 9px;
    height: 40px;
    width: 40px;
    display: flex
;
    justify-content: center;
    align-items: center;
}

.svg-icons img {
    height: 26px;
    margin-right: 8px;
    filter: invert(1);
}
.form-control {
    border-bottom: 2px solid #fff !important;
    border-radius: 0;
    border: none;
    background-color: transparent;
    font-size: .9rem;
    /* padding: 15px; */
    color: white;
}

.submit-btn {
    background-color: var(--dust);
    font-size: 12px;
    color: rgb(45, 101, 144);
    font-weight: 700;
    letter-spacing: 2px;
    padding: 15px;
    border-radius: 40px;
    border: 1px solid white;
    transition: all 0.5s ease; /* Add this line */

}

.submit-btn:hover {
    background-color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 15px;
    color: var(--dark);
    border: 1px solid var(--dark);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: white;
    text-transform: capitalize;
    transition: .3s;
}
.footer .btn.btn-link:hover {
    color: var(--dust);
    letter-spacing: 1px;
    box-shadow: none;
}
.client img{
    height: 150px;
    width: 100%;
    object-fit: contain;
}

.margin-top-bottom{
    margin-top: 90px;
    margin-bottom: 70px;
}
.padding-top-bottom{
    padding-top: 90px;
    padding-bottom: 70px;
}

.img003{
    height: 450px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    border-radius: 20px;
    position: relative;
}
.text-img {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
}

.text-img h3,
.text-img p {
    margin: 0;
}
.arrow-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: black;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.arrow-icon2 {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: 2px solid white;
    color: black;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.arrow-icon:hover {
    background: var(--deepblue);
    color: white;
}
.arrow-icon i {
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
    display: inline-block;
}
.bg-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #131314;
    opacity: 0.6;
    z-index: 1;
}
.pill-heading{
    background-color: var(--e-global-color-289833d);
    padding: 10px 16px 10px 16px;
    border-radius: 98px 98px 98px 98px;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.15);
    color: gray;
}
.image-mask-text {
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-size: 120px;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    
    background: rgba(192, 184, 184, 0.6); /* Dark overlay */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    z-index: 2;
    pointer-events: none;
    line-height: 1;
    white-space: nowrap;
}
.vision-right img{
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top center;
    border-radius: 16px 16px 16px 16px;
}
ul.custom-tick {
    list-style: none;
    padding-left: 0;
}

ul.custom-tick li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #555;
    font-weight: 500;
}
ol.order-list li{
    color: #555 !important;
}
ul.custom-tick li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #2d6590;
    border-radius: 50%;
    color: #ffffff;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    line-height: 20px;
}
.border-bottom{
    border-bottom: grey;
}
.team-memb img{
    height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.team-img {
    position: relative;
}

.team-img img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

    .team-name {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        background-color: white;
        padding: 10px 15px;
        border-radius: 6px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        width: 70%;
      
}


.border-groved{
    border-bottom: 2px dashed rgb(209, 206, 206);
   
}
.career-section{
    border-radius: 15px;
}
.career-form .form-control {
    border: none;
    border-radius: 0;
    background-color: transparent;
    font-size: .9rem;
    padding: 15px;
    border-bottom: 2px solid white;
}

.form-select {
    display: block;
    width: 100%;
    padding: 15px !important;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
    color: white;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border:none ;
    border-bottom: 2px solid white;
    border-radius: 0px !important;
    appearance: none;
}
#frameFilterForm .form-select{
     border-bottom: 1px solid black;
     box-shadow: none;
}
/* Make placeholder text white */
.form-control::placeholder,
.form-select::placeholder {
    color: white;
    opacity: 1; /* Required for some browsers */
}

/* Optional: for better browser compatibility */
.form-control::-webkit-input-placeholder {
    color: white;
}
.form-control::-moz-placeholder {
    color: white;
}
.form-control:-ms-input-placeholder {
    color: white;
}
.form-control:-moz-placeholder {
    color: white;
}
.form-label {
    margin-bottom: .5rem;
    color: white;
}
.our-values li{
    color: white;
}

@media (max-width: 768px){
    .image-mask-text {
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-size: 40px !important;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    z-index: 2;
    pointer-events: none;
    line-height: 1;
    white-space: nowrap;
}
.lastimg{
    height: 400px !important
    ;
}
}
.contact-form{
    border-radius: 15px;
}
.bi-arrow-up::before {
    content: "\f148";
    color: white !important;
}
.project-feedback {
    border-radius: 20px;
}
.projects-box{
    border-radius: 20px;
}
.sus-img img{
    height: 100px;
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
    .request_qoute {
        font-size: 15px !important;
    }
}
.news-img img{
    height:250px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.news-inner{
    height: auto;
    width: 100%;
    object-fit: cover;
     border-radius: 20px;
}
.solar-inner{
    height: 450px;
    width: 100%;
    object-fit: cover;
     border-radius: 20px;
}

@media (min-width: 992px) and (max-width: 1300px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 14px;
        padding: 25px 0;
        color: var(--dust);
        font-size: 10px;
        font-weight: 600;
        outline: none;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .lg-header {
        display: flex;
        justify-content: space-between !important;
    }



    .banner-text {
        font-size: 30px;
        letter-spacing: 7px;
        font-weight: bold;
        color: #fff;
        font-family: var(--qfont) !important;
    }

    .badge-img img {
        height: 152px;

    }

    .number-text h1 {
        font-size: 36px;
        font-weight: 700;
        color: #555 !important;
        font-family: var(--qfont) !important;
    }

    .know-text {
        font-size: 12px;
        letter-spacing: 2px;

    }
    .request_qoute {
        background-color: var(--red);
        padding: 12px;
        font-size: 10px;
        color: var(--beige);
        font-weight: 700;
        letter-spacing: 1px;
        border-radius: 5px;
        transition: all 0.5s ease;
    }
    


}

.header-Vyomic .navbar-nav .nav-link:hover,
.header-Vyomic .navbar-nav .nav-link.active {
    color: #000 !important;
    font-weight: 600;
}

 .yellow-border{
    border-bottom: 2px solid var(--dust);
 }
 .image-icon2 img{
    height: 70px;
    width: auto;
    object-fit: contain;
 }
 .contact-row{
    border-radius: 15px;
 }
 .header-Vyomic a i {
    transition: color 0.3s ease;
    /* color: white; */
}

.header-Vyomic.scrolled a i {
    color: var(--brown) !important;
}
.reach-sec{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 70px;
    padding-bottom: 70px;

}
.why_icons{
    height: 80px;
    width: auto;
}
#login-form input.form-control {
    background-color: #f9f9f9 !important;  /* or your preferred background */
    color: #333 !important;                /* ensure dark readable text */
    border: 1px solid #ccc;
}
.border-brown{
    border: 1px solid var(--brown);
}
#signup-form input.form-control {
    background-color: #f9f9f9; /* light gray for visibility */
    color: #333; /* dark text for readability */
    border: 1px solid #ccc;
}
#signup-form input.form-control {
    background-color: #f9f9f9 !important;  /* or your preferred background */
    color: #333 !important;                /* ensure dark readable text */
    border: 1px solid #ccc;
}

#signup-form input.form-control::placeholder {
    color: #999;
}
input:-webkit-autofill {
    background-color: #f9f9f9 !important;
    -webkit-box-shadow: 0 0 0px 1000px #f9f9f9 inset !important;
    color: #333 !important;
}
#login-form input::placeholder {
    color: #6c6c6c !important; /* dark enough to be visible */
    opacity: 1; /* ensures it's fully opaque */
}

@media (min-width: 768px){
    .foot_er .yellow-border-right{
        border-right: 2px solid var(--red);
     }
}
    
.bg-red{
    background-color: var(--red);
}
.img-thumbnail {
    padding: .25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0px;
    max-width: 100%;
    height: auto;
}
.cart-table {
    border: none;
    color: black;
    background-color: transparent;
}

.cart-table th,
.cart-table td {
    border: none !important;
    color: black;
    vertical-align: middle;
}

.cart-img {
    width: 120px;
   
}
@media (max-width: 768px) {
    
.cart-img {
    width: 100px;
 
}
}

.cart-heading {
    color: black;
}
.cart-table {
  border-collapse: collapse;
}

.cart-table th {
  border-bottom: 1px solid black !important;
  color: black;
  font-weight: bold;
}

.cart-table td {
  border: none !important;
  color: black;
}
.client-img img{
    height: 80px;
    width: 100%;
    object-fit: contain;
}
.frames-carousel {
  position: relative;
  overflow: visible;
}

.frames-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
 
  z-index: 10;
}

.frames-carousel .owl-nav button.owl-prev,
.frames-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto; /* enables button clicks */
  background: white;
  border: none;
  border-radius: 50%;
  padding: 10px;
  font-size: 24px;
  z-index: 11;
}

 .owl-carousel .owl-nav .owl-prev{
    position: relative;
    left: -50px;
}
 .owl-carousel .owl-nav .owl-next{
    position: relative;
    right: -50px;
}
.product-card {
    position: relative;
}

.wishlist-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: white;
    color: red;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 2;
}

.wishlist-icon i {
    font-size: 18px;
}

.product-card:hover .wishlist-icon {
    opacity: 1;
}
.cancel-btn{
    border: 1px solid rgba(0, 0, 0, 0.521);
}
.cancel-btn:hover{
    background-color: var(--red);
    color: white;
    border: none;
}

    .custom-profile-form input,
    .custom-profile-form textarea,
    .custom-profile-form select {
        background-color: #f9f5f0 !important;
        color: #333 !important;
        border-color: #ccc;
    }

    .custom-profile-form input:disabled,
    .custom-profile-form textarea:disabled {
        background-color: #f3f3f3 !important;
        color: #888 !important;
    }

    .custom-profile-form label {
        color: #8a3c01;
        font-weight: 500;
    }

.search-modal-content {
  background: rgba(0, 0, 0, 0.651);
  backdrop-filter: blur(8px);
  border: none;
  padding: 100px 30px;
  width: 100%;
  position: relative;
}

.search-modal-content input.form-control {
  padding-left: 50px;
  height: 55px;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
  border-bottom: none;
}

.zindex-dropdown {
  z-index: 9999;
  max-height: 280px;
  overflow-y: auto;
}

#dropdownResults div {
  padding: 12px 20px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  font-size: 16px;
  color: #333;
}

#dropdownResults div:hover {
  background-color: #f8f9fa;
}

#dropdownResults .title {
  font-weight: 600;
  background-color: #f1f1f1;
  color: #555;
  cursor: default;
}

.clear-history {
  color: red;
  text-align: center;
  font-size: 14px;
}

.search-modal-content .bi-search {
  left: 20px;
  font-size: 20px;
}
.zindex-dropdown {
  z-index: 9999;
  max-height: 280px;
  overflow-y: auto;
}

#dropdownResults div {
  padding: 12px 20px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  font-size: 16px;
  color: #333;
}

#dropdownResults div:hover {
  background-color: #f8f9fa;
}

#dropdownResults .title {
  font-weight: 600;
  background-color: #f1f1f1;
  color: #555;
  cursor: default;
}

.clear-history {
  color: red;
  text-align: center;
  font-size: 14px;
}

/* ... (rest of existing CSS remains unchanged) ... */

/* New frame styling */
.frame-preview {
    position: relative;
    margin: 0 auto 20px;
}

.frame-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.frame-border {
    border: 24px solid transparent; /* Match ezzy.html border width */
    border-image: url('') 50 20 repeat; /* Adjusted to 50px height, 20px width slice to reduce stretching */
    border-image-width: 24px; /* Match border width to enforce consistent repeat */
    position: relative;
    z-index: 1;
    /* Fallback in case border-image fails */
    background: var(--beige); /* Matches body background as fallback */
    border-image-outset: 0; /* Ensure no offset issues */
}

#uploaded-photo {
    position: absolute;
    top: 24px;
    left: 24px;
    object-fit: cover;
    width: calc(100% - 48px); /* Account for 24px border on each side */
    height: calc(100% - 48px);
    z-index: 2;
}

.upload-btn {
    margin-top: 15px;
}

.form-select {
    color: black;
}

/* ... (rest of existing CSS remains unchanged) ... */