/* @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');

body {
    /* font-family: "Inter", sans-serif; */
    font-family: "Marcellus", serif;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --green: #3B5031;
    --black: #000;
    --white: #fff;
    --blue: #0067AF;
    --red: #DB2B1C;

}

a {
    text-decoration: none;
    color: #000;
}

ul {
    padding: 0px;
    margin: 0;
}

ul li {
    list-style: none;
}

p {
    font-size: 16px;
    margin-bottom: 0px;
    text-align: justify;
    font-weight: 300;

}

h1,
h2,
h3,
h4 {
    margin-bottom: 0px;
    /* font-weight: 600; */
}





/* section css */
section {
    padding: 50px 0px;
}




@media screen and (max-width: 767px) {
    p {
        font-size: 12px;
    }

    section {
        padding: 20px 0px;
    }


}


/* section css */

/* footer css */
.footer {
    padding: 50px 0px;

}

@media screen and (max-width: 767px) {
    .footer {
        padding: 20px 0px;
    }
}

/* footer css */




/* magnetic cursor design start */
.magnetic-cursor {
    width: 10px;
    height: 10px;
    border: 3px solid var(--black);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: background-color 0.2s ease;
}

/* magnetic cursor design end */



/* fixed-icon-start */
.whatsapp-fixed {
    position: fixed;
    left: 1%;
    bottom: 10%;
    z-index: 999;
}

.whatsapp-fixed img {
    height: 50px;
    filter: drop-shadow(rgba(0, 0, 0, 0.349) 0px 5px 15px);
}

@media (max-width: 768px) {
    .whatsapp-fixed {
        position: fixed;
        right: 1%;
        bottom: 5%;
        z-index: 999;
    }
}

/* fixed-icon-end */


/* topbar css end ====================================== */
.topbar {
    background: var(--black);
    padding: 10px;

}

.mail-no-item a {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

.mail-no-item a:hover {
    text-decoration: underline;
}

.mail-no-item a i {
    font-size: 14px;
    color: var(--green);
    padding-right: 5px;
}

.essvee-topbar-icon {
    color: var(--blue) !important;
}

.topbar-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media(max-width: 767px) {
    .topbar {
        display: none;
    }
}

/* topbar css end ================================================ */




/* navbar css start========================================================== */



.dropdown:hover .dropdown-menu {
    display: block !important;
    border-radius: 7px;
}

.dropdown-menu .dropdown-item {

    color: var(--black) !important;
    font-size: 15px;
    font-weight: 300;
}

.dropdown-menu .dropdown-item:hover {
    text-decoration: underline;
    background: none;
}


.navbar {
    background-color: #fff !important;
    padding: 10px !important;

}


.nav-item .nav-link {
    font-size: 15px;
    font-weight: 300;
    color: var(--black) !important;
}


.nav-item:hover .nav-link {

    text-decoration: underline;
}

/* logo */
.logo {
    width: 150px;
}

@media(max-width: 1200px) {
    .nav-item .nav-link {
        font-size: 11px;
    }
}



@media(max-width: 767px) {
    .navbar-brand {
        padding: 0 !important;
    }

    .logo {
        width: 90px;
    }

    .navbar {
        background-color: #fff !important;
        padding: 10px !important;

    }


    .navbar-toggler {
        /* padding: 5px; */
        font-size: 12px;
    }

    .navbar-toggler-icon {
        height: 20px;


    }

    .nav-item .nav-link {
        font-size: 14px;
    }
}


/* ================= OUR PRODUCTS – DESKTOP ================= */

.products-dropdown .dropdown-menu {
    display: none !important;
}

.products-dropdown:hover>.dropdown-menu {
    display: block !important;
}

.products-dropdown .dropdown-submenu {
    position: relative;
}

.products-dropdown .dropdown-submenu>.dropdown-menu {
    display: none !important;
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: -1px;
    min-width: 240px;
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.products-dropdown .dropdown-submenu:hover>.dropdown-menu {
    display: block !important;
}

.products-dropdown .dropdown-submenu>a::after {
    content: "›";
    float: right;
}

.products-dropdown .dropdown-item:hover {
    background: none;
    text-decoration: underline;
}



/* ================= MOBILE / TABLET (≤ 991px) ================= */

@media (max-width: 991px) {

    /* Disable hover behaviour */
    .products-dropdown:hover>.dropdown-menu {
        /* display: none !important; */
    }

    /* First level dropdown */
    .products-dropdown .dropdown-menu {
        display: none !important;
        position: static;
        box-shadow: none;
        border-radius: 0;
    }

    /* Show first level when Bootstrap opens */
    .products-dropdown.show>.dropdown-menu {
        display: block !important;
    }

    /* Submenu */
    .products-dropdown .dropdown-submenu>.dropdown-menu {
        position: static;
        display: none !important;
        margin-left: 15px;
        box-shadow: none;
        border-radius: 0;
    }

    /* Show submenu on tap */
    .products-dropdown .dropdown-submenu.show>.dropdown-menu {
        display: block !important;
    }

    /* Mobile arrow */
    .products-dropdown .dropdown-submenu>a::after {
        content: "▼";
        float: right;
        font-size: 12px;
    }

    .dropdown-menu .dropdown-item {
        font-size: 12px;
    }
}

.carousel-item img {
    width: 100% !important;
}

.carousel-indicators {
    display: none !important;
}

.carousel-control-prev-icon {
    background: url(../img/banner/left.png);
    background-size: cover;
    background-color: #fff;
    border-radius: 20px;
    padding: 20px !important;

}

.carousel-control-next-icon {
    background: url(../img/banner/right.png);
    background-size: cover;
    background-color: #fff;
    border-radius: 20px;
    padding: 20px !important;
}



/* navbar css end ==================================================================*/



/* ------------------------- banner slider css start here ------------------------------- */



/* Slider wrapper */
.mainslider {
    width: 100%;
    position: relative;
}

/* Slick fixes */


/* Slide item */
.slider-big .item {
    position: relative;
}

/* Image */
.slider-big .item img {
    width: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.15);
    transition: transform 1.5s ease;
}

/* Active slide zoom effect */
.slider-big .slick-active img {
    transform: scale(1);
}


/* ------------------------- banner slider css ends here ------------------------------- */



/* sub-banner start =================================== */

.banner-main {
    position: relative;
}

.banner-text {
    position: absolute;
    bottom: 10px;
    left: 5%;
    background: #a5a5a5;
    color: #fff;
    padding: 7px 15px;
    font-size: 14px;
}

.banner-text p a {
    color: #fff;
}


@media(max-width: 991px) {
    .banner-text {
        position: absolute;
        bottom: 0px;
        left: 2%;
        padding: 5px 10px;
        font-size: 14px;
    }

    .banner-text p {
        font-size: 12px;
    }

    .banner-text p a {
        color: #fff;
        font-size: 12px;
    }
}

/* sub banner end */








/* about us css start ============================================== */

.about-content {
    padding: 20px 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 6px;
    max-height: 500px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */

}

.about-content-heading {
    margin-bottom: 15px;
}

.about-content-heading h2 {
    font-size: 28px;
    font-weight: 700;
}

.about-content-para {
    margin-bottom: 30px;
}

.about-content-para p {
    line-height: 1.6;
    margin-bottom: 12px;
}

.about-content-para ul {
    padding-left: 10px;
}

.about-content-para ul li {
    line-height: 1.8;
    font-size: 16px;
    list-style-type: disc;
}

.about-two-btn {
    display: flex;
    justify-content: space-between;
}


.about-btn a {
    background: var(--green);
    color: var(--white);
    padding: 10px 30px;
}

.about-btn a:hover {
    background: #fff;
    color: var(--green);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.esve-btn a {
    background: var(--blue);
}

.esve-btn a:hover {
    background: #fff;
    color: var(--blue);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.about-post {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    max-height: 500px;
    height: 500px;

}

.about-post img {
    border-radius: 6px;
    width: 100%;
    height: 100%;

}


.about-post {
    position: relative;
    overflow: hidden;
}


.hover-logo {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(122, 122, 122, 0.884);
    opacity: 0;
    transition: 0.5s ease;

}


.hover-logo img {
    width: 50%;
    height: 25%;
    transform: scale(0.8);
    transition: 0.5s ease;

}


.about-post:hover .hover-logo {
    opacity: 1;

}

.about-post:hover .hover-logo img {
    transform: scale(1);

}



.about-two-btn {
    display: flex;
    align-items: center;
    gap: 23px;
    margin-top: 30px;
    flex-wrap: wrap;
}




/* Social Icons */
.about-social {
    display: flex;
    gap: 15px;
}

.about-social a {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #555;
    transition: 0.3s ease;
}

.about-social a:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Mobile */




@media(max-width: 991px) {
    .about-post {
        margin-bottom: 15px;
        height: auto;
    }

    .about-content {
        height: auto;
    }
}

@media(max-width: 767px) {


    .about-content-heading h2 {
        font-size: 18px;
    }

    .about-content-heading {
        margin-bottom: 9px;
    }

    .about-btn a {
        font-size: 12px;
        padding: 8px 14px;
    }

    .about-content-para {
        margin-bottom: 20px;
    }

    .about-content-para p {
        line-height: 1.6;
        margin-bottom: 9px;
    }

    .about-content {
        padding: 15px 15px;
    }

    .about-content-para ul li {
        line-height: 1.6;
        font-size: 12px;
    }

    .about-social a {
        width: 30px;
        height: 30px;
    }

    .about-social a i {
        font-size: 14px;
    }

    .about-two-btn {
        gap: 15px;
        margin-top: 0px;
    }

}

/* about us css end ============================================================= */



/* kech about page css here ======================================================== */


/* about content start */
.about-page-content p {
    text-align: center;
    line-height: 1.8;
}

@media(max-width: 767px) {
    .about-page-content {
        margin-bottom: 15px;
    }

    .about-page-content p {
        text-align: justify;
    }
}

/* about content end */

/* vision css start */
.vision-panel-section {
    background-color: #f5f5f5;
}

.vision-panel {
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.vision-panel-row {
    display: flex;
    align-items: center;
    gap: 30px;
}

.vision-panel-image {
    width: 45%;
}

.vision-panel-image img {
    width: 100%;
    height: auto;
    display: block;
}

.vision-panel-content {
    width: 55%;
}

.vision-panel-content h3 {
    font-size: 22px;
    font-weight: normal;
    margin-bottom: 15px;
    color: #000;
}

.vision-panel-content p {
    font-size: 14px;
    color: #222;
    line-height: 1.9;
    max-width: 95%;
}

/* Responsive */
@media (max-width: 768px) {
    .vision-panel-row {
        flex-direction: column;
    }

    .vision-panel-image,
    .vision-panel-content {
        width: 100%;
    }

    .vision-panel-content h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .vision-panel-content p {
        font-size: 12px;
        color: #222;
        line-height: 1.8;
        max-width: 95%;
    }
}

/* vision css start */

/* why choose start */
.why-choose-us {

    background-color: #f8f9fa;

}

.why-choose-us .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}




.why-choose-us .row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.why-choose-us .col {
    flex: 1;
    background: #ffffff;
    margin: 10px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-us .col:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.why-choose-us h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111;
}

.why-choose-us p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .why-choose-us .row {
        flex-direction: column;
    }

    .why-choose-us .col {
        padding: 20px;
    }

    .why-choose-us h3 {
        font-size: 18px;
    }

    .why-choose-us p {
        font-size: 12px;
    }
}

/* why choose us end */


/* faq css start */
.main-card-faq {
    background-color: var(--green);
    color: #fff;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.esve-faq-card {
    background-color: var(--blue);
}

.faq-section .accordion-button {
    font-size: 18px;
    background-color: #f4f6fa;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    color: #071d4e;
    background-color: #e9f7fb;
}

.faq-section .accordion-body {
    font-size: 15px;
    color: #444;
    background-color: #fff;
}

.faq-heading h2 {
    font-size: 26px;
}

.faq-heading p {
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .main-card-faq {
        margin-bottom: 20px;
    }

    .form-box {
        padding: 15px !important;
    }

    .faq-section .accordion-button {
        font-size: 16px;
    }

    .faq-section .accordion-body {
        font-size: 12px;
    }

    .faq-heading p {
        font-size: 14px;
        line-height: 1.6;
    }

    .faq-heading h2 {
        font-size: 22px;
    }

    .accordion-button::after {
        width: 20px !important;
    }
}

/* faq css end */




/* essve mision start */
.essvee-mission {
    /* background-color: #f8f9fa; */
}

.mission-img img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mission-content {
    padding-left: 15px;
}

.mission-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2d3d;
    margin-bottom: 20px;
    position: relative;
}

.mission-content h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background-color: var(--blue);
    display: block;
    margin-top: 10px;
}

.mission-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .mission-content {
        display: none;
    }
}

/* esve mision end */

/* kech aboout page css end =======================================*/


/* brands css start ===================================================== */

/* product section start here */

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.section-header2 {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-bottom: 25px;
}

.section-header h2 {
    font-size: 22px;
}

.section-header h2,
.section-header2 {
    position: relative;

}

.section-header2 h3 {
    letter-spacing: 2px;
    color: rgba(114, 114, 114, 0.833);
}

.section-header h2::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 12px;
    width: 15px;
    height: 3px;
    background-color: var(--green);
}

.section-header2 h2::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 12px;
    width: 15px;
    height: 3px;
    background-color: red;
}

.view-all {
    font-size: 0.9rem;
    background: var(--green);
    color: #fff;
    padding: 10px 30px;

}

.view-all:hover {
    background: #fff;
    color: var(--green);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.esve-view-all {
    background: var(--blue);
}

.esve-view-all:hover {
    background: #fff;
    color: var(--blue);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0p
}

.cat-btn-style {
    background-color: var(--green);
    color: #fff;
    padding: 10px;
}

.cat-btn-esve {
    background-color: var(--blue);
    color: #fff;
    padding: 10px;
}


.product-box {
    background: #F0F0F0;
    border-radius: 10px;
    text-align: center;
    padding: 20px 10px;
    transition: 0.3s;
    height: 100%;
}

.product-box img {
    /* height: 100px; */
    /* object-fit: cover; */
    margin-bottom: 10px;
}

.product-name {
    font-weight: 500;
    font-size: 0.9rem;
    color: #000;
}

.product-name i {
    margin-left: 5px;
    font-size: 0.8rem;
}

.promo-box {
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    height: 100%;
    color: white;
    position: relative;
    overflow: hidden;
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.158);
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 12px;
}

.promo-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    font-size: 1.25rem;
    font-weight: 600;
    max-width: 80%;
}

.product-box .product-name a {
    text-decoration: none;
    color: black;

}


@media(max-width: 991px) {
    .promo-text {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 18px;
        padding-left: 8px;
    }


    .section-header h2::before {
        left: -10px;
    }

    .view-all {
        font-size: 12px;
        background: var(--green);
        color: #fff;
        padding: 5px 15px;

    }

    .product-box {
        padding: 10px 5px;
    }

    .cat-btn-style {
        padding: 5px 10px;
        font-size: 12px;
    }

    .cat-btn-esve {
        padding: 5px 10px;
        font-size: 12px;
    }
}



/* product section end here */
/* brands css end */







/* sub products css start  */

.kech-product-card {
    background: #ffffff;
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
    margin-bottom: 30px;
}

.kech-product-img {
    background: #e2e2e2;
    padding: 15px;
}

.kech-product-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.kech-product-content {
    padding: 15px 10px;
    background: #ffffff;

}

.kech-product-content h4 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #222;
    margin: 0;
}

.kech-product-content h4:hover {
    text-decoration: underline;
}




/* Mobile */
@media (max-width: 767px) {
    .kech-product-content h4 {
        font-size: 14px;
        letter-spacing: 1.5px;
    }
}

/* sub product css end ================================================ */




/* essve sub pro css start  */

.category-img {
    background: #FAFAFA;
    /* padding: 20px; */
    text-align: center;

}



.category-content {
    background: #fff;
    padding: 15px 20px 20px;
    /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
}

.category-brand {
    font-size: 12px;
    /* text-transform: uppercase; */
    color: #999;
    display: block;
    margin-bottom: 4px;
}

.category-title {
    font-size: 16px;
    color: #000;
    margin: 0;
}

.category-title:hover {
    text-decoration: underline;
}

/* essve sub pro css end */










/*trends css start ===================================== */

.editorial-trends {
    background: #ffffff;

}


.brand-title {
    font-size: 34px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.brand-subtitle {
    font-size: 15px;
    color: #666;
    max-width: 620px;
    line-height: 1.7;
}


.trend-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.trend-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}


.trend-img:hover img {
    transform: scale(1.08);
}


.trend-content {
    background: #f5f5f5;
    height: 100%;
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 4px solid transparent;
    transition: all 0.4s ease;
}


.trend-content:hover {
    border-bottom: 4px solid var(--green);
    background: #f2f2f2;
}

.trend-content h4 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #000;
}

.trend-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    max-width: 90%;
}


@media (max-width: 991px) {
    .trend-content {
        padding: 15px;
    }

    .brand-title {
        font-size: 22px;
    }

    .brand-subtitle {
        font-size: 12px;
    }

    .trend-content h4 {
        font-size: 18px;
        margin-bottom: 9px;
    }

    .trend-content p {
        font-size: 12px;
    }
}



/* trends  us css end ===================================================== */





/* brands start  */

.brand-category-section {

    background: #f5f7fa;
}


.brand-category-card {
    background: #fff;
    padding: 60px 40px;
    height: 100%;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: 0.4s ease;
    border: 1px solid #eee;
    text-align: center;
}


.brand-logo {
    max-width: 220px;
    transition: 0.4s ease;
}


.brand-btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: 0.4s ease;
}


.brand-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.brand-category-card:hover .brand-logo {
    transform: scale(1.05);
}




.kech-card {
    background: linear-gradient(135deg, #ffffff, #f9fbff);
}

.essvee-card {
    background: linear-gradient(135deg, #ffffff, #fdf9f5);
}


@media (max-width: 767px) {
    .brand-category-card {
        padding: 45px 25px;
    }

    .brand-logo {
        max-width: 180px;
    }

    .brand-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* brands end  */






/* contact-us start */


.contact-form {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    /* border: 1px solid #000; */
    padding: 40px 10px;
    margin: 0px 100px;
    /* background-color: var(--green); */
    /* width: 100%; */
}

.address-card {
    position: absolute;
    left: -50px;
    background-color: #808080;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.address-card h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.address-card p {
    color: #fff;
    font-size: 14px;
}

.add-p {
    margin-bottom: 15px;
}

.address-card i {
    padding: 10px;
    border-radius: 50%;
    border: 1px solid #fff;
}

.address-card a {
    text-decoration: none;
    color: #fff;
}

.address-card .contact-social a {
    color: #fff !important;
}

.form {
    padding: 20px;
}

.form form input {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px 10px;
    border: none;
    border-bottom: 2px solid var(--green);
}

.form form textarea {
    margin-bottom: 10px;
    border: none;
    padding: 10px 10px;
    border-bottom: 2px solid var(--green);
}

.form form input:focus,
.form form textarea:focus {
    outline: none;
}

.captchasep1 {
    display: flex;
}

.captchasep1 input {
    width: 100% !important;
    margin-top: 0 !important;
    height: 63px;
}

.captchasep1 .captcha-codes-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100% !important;
    border-radius: 5px;
    border-top: 1px solid #ced4da;
    border-right: 1px solid #ced4da;
    border-bottom: 1px solid #ced4da;
    font-weight: bolder !important;
}

.captchasep1 .captcha-codes-sec p {
    margin-bottom: 0;
    letter-spacing: 9px;
    font-style: italic;
    font-size: 24px;
    padding: 10px;
    height: 100%;
    color: #000;
    font-weight: bolder !important;
}

.cap-1 .cap-1-code-sec p {
    padding: 0px !important;
    font-size: 14px !important;
    height: 50% !important;
}

.btn-cont {
    background-color: #808080;
    color: var(--white);
    border: none;
    padding: 10px;
}

.map iframe {
    width: 100%;
    height: 450px;
}


@media (max-width: 767px) {
    .contact-form {
        margin: 0px;
    }

    .address-card {
        position: static;
    }

    .captchasep1 {
        display: block;
    }

    .address-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .address-card i {
        padding: 8px;
        font-size: 12px;
    }

    .address-card p {
        font-size: 12px;
    }

    .form h4 {
        font-size: 18px;
    }

    .form form input {
        font-size: 12px;
    }

    .form form textarea {
        font-size: 12px;
    }

    .map iframe {
        width: 100%;
        height: 250px;
    }
}

.form form .submit {
    background-color: var(--blue) !important;
    color: var(--white) !important;
}

@media (max-width: 768px) {
    .captchasep1 .captcha-codes-sec p {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .captchasep1 .captcha-codes-sec p {
        font-size: 18px;
    }

    .enq-form {
        padding: 0px !important;
    }
}

.captchasep1 .captcha-codes-sec {
    margin-bottom: 10px;
}

.captchasep1 .captcha-codes-sec button {
    font-style: italic;
    font-size: 22px;
    outline: none;
    background: transparent;
    height: 100%;
    border: none;
    font-weight: bolder;
}

.captchasep1 .captcha-codes-sec button i {
    background: #000;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
}



/* contact-us end =========================================*/


/* enquiry page essve css start ======================================= */
.essvee-product-details {
    background-color: #ffffff;
}

.first-tow {
    margin-bottom: 50px;
}

.product-image-box {
    /* background: #f8f8f8; */
    padding: 30px;
    text-align: center;
}

.product-image-box img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.product-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.product-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 10px;
}

.product-list {
    padding-left: 18px;
}

.product-list li {
    font-size: 15px;
    color: #444;
    margin-bottom: 8px;
    list-style: disc;
}

/* 
        .btn-enquiry {
            background-color: var(--blue);
            color: #fff;
            padding: 12px 32px;
            font-size: 15px;
            font-weight: 500;
            text-decoration: none;
            display: inline-block;
        }

        .btn-enquiry:hover {
            background-color: #03607c;
            color: #fff;
            text-decoration: underline;
        } */


@media(max-width: 991px) {
    .product-title {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .product-subtitle {
        font-size: 18px;
    }

    .product-list li {
        font-size: 12px;
    }

    .first-tow {
        margin-bottom: 5px;
    }

    .btn-enquiry {
        font-size: 12px;
    }

}

/* enquiry page essve css start ======================================= */


/* dircetor css start ============================================== */

.profile-role {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 15px;
    text-transform: uppercase;
}


.profile-box {
    background: #e9f0f6;
    border-radius: 20px;
    padding: 50px;
}

.profile-name {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.profile-text {
    font-size: 16px;
    color: #555;
    /* max-width: 520px; */
    line-height: 1.8;
}


.profile-img {
    height: 100%;
    width: 100%;
}

@media (max-width: 768px) {
    .profile-box {
        padding: 20px;
        text-align: center;
    }

    .profile-text {
        margin: 0 auto 30px;
        font-size: 12px;
    }

    .profile-name {
        font-size: 22px;
        margin-bottom: 6px;
    }
}

/* director css end ============================================================ */




/* blog css start ========================================================= */

.blog-section {

    background: #f6f7f9;
}

/* Heading */
.blog-title {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 10px;
}


.blog-viewall {
    font-size: 14px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

.blog-viewall:hover {
    color: var(--green);
}

/* Card */
.blog-card {
    background: #fff;
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
    transition: 0.4s ease;
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Content */
.blog-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 10px;
}

.blog-content h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.blog-link {
    display: inline-block;
    margin-top: 15px;
    font-size: 14px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.blog-link:hover {
    color: var(--green);
}

/* Hover */
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}



@media(max-width: 767px) {
    .blog-title {
        font-size: 20px;
    }

    .blog-content {
        padding: 10px;
    }

    .blog-content p {
        font-size: 12px;
    }
}

/* blog css end====================================================== */





/* blog-details css start =================================================*/
.blog-detail-content {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px;
    border-radius: 5px;
}

.blog-detail-date {
    margin-bottom: 15px;
}

.blog-detail-date span {
    color: #555555;
    font-size: 14px;
}

.blog-detail-heading h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-detail-post {
    margin-bottom: 15px;
}

.blog-detail-para h3 {
    font-size: 21px;
    font-weight: 600;
}

.blog-detail-para p {
    font-size: 16px;
    text-align: justify;
}

.blog-detail-para ul li {
    line-height: 1.8;
}



.main-recent-blog {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
}

.recent-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.recent-card {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.recent-card:last-child {
    border-bottom: none;
}

.recent-card-post img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.recent-card-detail {
    flex: 1;
}

.recent-date {
    font-size: 13px;
    color: #888;
    display: block;
    margin-bottom: 5px;
}

.recent-title {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

@media(max-width: 991px) {
    .blog-detail-heading h1 {
        font-size: 19px;
    }



    .blog-detail-para h2 {
        font-size: 19px;
    }

    .blog-detail-para p {
        font-size: 12px;
    }

    .blog-detail-content {
        margin-bottom: 25px;
        padding: 15px;
    }

    .blog-detail-heading h3 {
        font-size: 17px;
        margin-bottom: 15px;
    }

    .blog-detail-date span {
        font-size: 11px;
    }

    .blog-detail-para h3 {
        font-size: 18px;
    }

    .blog-detail-para ul li {
        font-size: 12px;
    }
}


@media(max-width: 767px) {
    .blog-detail-heading h1 {
        font-size: 19px;
    }

    .blog-detail-para h2 {
        font-size: 19px;
    }



    .blog-detail-para p {
        font-size: 12px;
    }

    .blog-detail-content {
        margin-bottom: 25px;
        padding: 15px;
    }

    .blog-detail-heading h3 {
        font-size: 17px;
        margin-bottom: 15px;
    }

    .blog-detail-date span {
        font-size: 11px;
    }

    .blog-detail-para h3 {
        font-size: 18px;
    }

    .blog-detail-para ul li {
        font-size: 12px;
    }

}

/* blog-details css end ============================================================*/







/* ------------------- gallery section css start here --------------------- */

/* Style the images inside the grid */
.gallery .column img {
    opacity: 0.8;
    cursor: pointer;
}

.gallery .column img:hover {
    opacity: 1;
}

/* Expanding image text */

/* Closable button inside the expanded image */

.gallery .container {
    position: relative;
    display: block;
    width: 100%;
    height: 500px;
    /* your desired height */
    /* background: rgba(243, 241, 241, 0.925); */
    margin-bottom: 10px;
}

.gallery #expandedImg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* FULL width & height - no empty space */
    display: block;
}

@media screen and (max-width: 991px) {
    .gallery .column {
        padding: 5px;
    }

    .gallery .container {
        height: auto;
    }

}

@media(max-width: 767px) {
    .blog-viewall2 {
        text-align: start !important;
    }
}

/* ------------------- gallery section css ends here ----------------------- */


/* our gallery pagw*/
.gallery-section {
    background: #e7e7e7;
}

.more-gallery-img {
    margin-bottom: 40px;
}

.more-gallery-img img {
    transition: 0.4s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
}

.more-gallery-img {
    position: relative;
}

.more-gallery-img img:hover {
    transform: translateY(-2%);
    cursor: pointer;
}

.more-gallery-img:hover .gallery-icon {
    opacity: 1;
    cursor: pointer;
}

.gallery-icon {
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    background-color: #000000b1;
    opacity: 0;
    transition: 0.5s ease-in-out;
}

@media(max-width: 991px) {
    .more-gallery-img {
        margin-bottom: 25px !important;
    }
}

/* gallery end */


/* testimonail css start ================================== */


#testimonial {
    padding: 7px 0px;
}

#testimonial h2 {
    margin-top: 30px;
    border-bottom: 2px solid var(--green);
    display: inline;
    color: var(--green);
}

#testimonial h4 {
    color: var(--green);
}

.testi-client-name p {
    text-align: end;
}

#testimonial .card-12 {
    padding: 15px;
    /* background-color: var(--green); */
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    border: 2px solid var(--green);
}

#testimonial .card-12 p {
    color: #000;
}

.test img {
    border-radius: 50%;
    /* display: flex; */
    justify-content: center;
}

#testimonial h3 {
    color: #fff;
}

.card-img {
    display: flex;
    justify-content: center;
}

.testi-img {
    width: 50%;
    height: 100%;
}

/* ------------testimonal start--------- */
#testimonial {
    padding: 7px 0px;
}

#testimonial h2 {
    margin-top: 30px;
    border-bottom: 2px solid var(--green);
    display: inline;
    color: var(--green);
}

#testimonial h4 {
    color: var(--green);
}



#testimonial .card-12 {
    padding: 15px;
    /* background-color: var(--green); */
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    border: 2px solid var(--green);
}

#testimonial .card-12 p {
    color: #000;
}

.test img {
    border-radius: 50%;
    /* display: flex; */
    justify-content: center;
}

#testimonial h3 {
    color: #fff;
}

.card-img {
    display: flex;
    justify-content: center;
}

.testi-img {
    width: 50%;
    height: 100%;
}

@media(max-width: 767px) {

    .testi-name h4 {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .testi-name h1 {
        font-size: 22px;
    }
}

/* testimonail css end */


/* feedback start  */



.feedback-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.feedback-form-box h2 {
    font-size: 30px;
    margin-bottom: 5px;
}

.feedback-form-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.feedback-form-box .form-control {
    height: 48px;
    border-radius: 8px;
    font-size: 14px;
}

.feedback-form-box textarea.form-control {
    height: auto;
}

.feedback-btn {
    background: #000;
    color: #fff;
    padding: 12px 40px;
    border-radius: 30px;
    border: none;
    font-size: 14px;
}

.feedback-btn:hover {
    background: #333;
}



@media (max-width: 768px) {
    .feedback-banner {
        padding: 60px 0;
    }

    .feedback-banner h1 {
        font-size: 26px;
    }

    .feedback-form-box {
        padding: 25px;
    }
}

/* feedback end */








/* footer css start */

.footer {

    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-para {
    margin-bottom: 15px;
}

.footer-para p {
    font-size: 14px;
    font-weight: 300;
}

.footer-logo a img {
    width: 180px;
}

.footer-icon h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-icon a {
    color: var(--green);
}

.footer-icon a i:hover {
    color: var(--blue);
}

.footer-links-heading {
    margin-bottom: 17px;
}

.footer-links-heading h2 {
    font-size: 22px;
    font-weight: 700;
}

.footer-links ul li {
    line-height: 2;
    font-weight: 300;
    font-size: 14px;
}

.footer-links ul li:hover {
    text-decoration: underline;
}

.address {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.address h3 {
    font-size: 14px;
}

.address p {
    font-size: 14px;

}

.address p:hover {
    text-decoration: underline;
    cursor: pointer;
}

.add-cont a {
    font-size: 14px;
    font-weight: 300;
}

.add-cont a:hover {
    text-decoration: underline;
}



@media(max-width: 767px) {
    .footer-logo a img {
        width: 100px;
    }

    .footer-logo {
        margin-bottom: 10px;
    }

    .footer-para p {
        font-size: 12px;
    }

    .footer-links-heading {
        margin-bottom: 10px;
    }

    .footer-links-heading h2 {
        font-size: 19px;
    }

    .footer-links ul li {
        font-size: 12px;
    }

    .address p {
        font-size: 12px;
    }

    .add-cont a {
        font-size: 12px;
    }

    .footer-icon h3 {
        font-size: 16px;
    }

    .footer-icon a {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .footer .row {
        display: flex;
        flex-wrap: wrap;
    }

    /* ESSVEE logo pehle aaye */
    .footer-essvee-logo {
        order: 1;
        width: 50%;
        text-align: left;
    }

    /* KECH logo ESSVEE ke right side aaye */
    .footer-kech-logo {
        order: 2;
        width: 50%;
        text-align: right;
    }

    .footer-essvee-logo img,
    .footer-kech-logo img {
        max-width: 120px;
    }
}




/* copyright */
.copyright-section {
    background-color: #808080;
}

.main-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.right-side p,
.left-side p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0px;
}

.left-side p a {
    text-decoration: none;
    color: #fff;
}

@media (max-width: 767px) {
    .footer-line {
        margin-bottom: 10px;
    }

    .main-copyright {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .right-side p {
        text-align: center;
        font-size: 12px;
    }

    .right-side p,
    .left-side p {
        font-size: 12px;
    }


}

/* footer css end */