* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
}

ul {
    padding: 0px;
    margin: 0;
}

ul li {
    list-style: none;
}

h1 {
    margin-bottom: 0px;
}

h2,
h3,
h4 {
    margin-bottom: 0px;
}

p {
    margin-bottom: 0px;
}

:root {

    --black: #000;
    --white: #fff;
    --gold: #9b6b37;
    --light-gold: #df9a51e3;

}


/* section css */
section {
    padding: 50px 0px;
}

/* section css */



/* -------------- top bar css start -------------- */

.top-bar {
    background: linear-gradient(90deg, #9b6b37, #c9985b, #9b6b37);
    min-height: 42px;
    display: flex;
    align-items: center;
}

.top-text {
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .5px;
}

.top-text strong {
    font-weight: 700;
}

.top-social {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-social a {
    color: #fff;
    font-size: 18px;
    transition: .3s;
}

.top-social a:hover {
    color: #f8e7c8;
}

.top-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.top-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
}

.top-links a:hover {
    color: #f8e7c8;
}

.top-links span {
    color: rgba(255, 255, 255, .6);
}

@media (max-width:767px) {

    .top-bar {
        min-height: 40px;
        padding: 8px 0;
    }

    .top-text {
        font-size: 11px;
        line-height: 18px;
    }

}

/* -------------- top bar css ends -------------- */


/* -------------- Navbar css start here -------------- */
.custom-navbar {
    background: #fff;
    padding: 5px 0;
    transition: .4s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

.navbar-brand img {
    width: 160px;
}

.navbar-nav {
    gap: 18px;
    align-items: center;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-link {
    display: flex;
    align-items: center;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    transition: .3s;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #b27b3d;
}

/* Underline Effect */
.navbar-nav .nav-link:not(.dropdown-toggle)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #b27b3d;
    transition: .3s;
}

.navbar-nav .nav-link:not(.dropdown-toggle):hover::after {
    width: 100%;
}

/* Dropdown Arrow */
.dropdown-toggle::after {
    margin-left: .55rem;
    vertical-align: middle;
}

/* Dropdown */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
    padding: 10px;
    margin-top: 15px;
}

.dropdown-item {
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: #f9f3ed;
    color: #b27b3d;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-icons a {
    color: #222;
    font-size: 20px;
    transition: .3s;
    position: relative;
    text-decoration: none;
}

.nav-icons a:hover {
    color: #b27b3d;
}

.cart span {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: #b27b3d;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offcanvas {
    width: 300px;
}

.offcanvas-body .nav-link {
    padding: 14px 0;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #eee;
}

.navbar-toggler {
    padding: 0;
    border: none;
}

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

@media(max-width:991px) {
    .navbar-brand img {
        width: 100px;
    }

    .nav-icons a {
        font-size: 14px;

    }

}



/* hero sectiion css start here */


/*----------------- banner css start------------------ */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: url(../img/icon/left-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
}

.carousel-control-next-icon {
    background-image: url(../img/icon/right-arrow.png);
}

@media screen and (max-width: 767px) {

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 15px;
        height: 15px;
    }
}


/*--------------------- end of banner css ---------------------- */



/* range section css start here -------------------- */

.explore-range .explore-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.explore-range .explore-head p {
    font-size: 12px;
    margin-bottom: 20px;
    font-weight: 600;
}

.explore-range .explore-head h2 {
    color: var(--gold);
    font-weight: 600;
}

.view-btn a {
    display: inline-block;
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--white);
    padding: 10px 20px;
    display: inline-block;
    border-radius: 10px;
    transition: .4s ease-in-out;
    font-weight: 600;
}

.view-btn a:hover {
    background: none;
    color: var(--gold);
}



@media screen and (max-width: 767px) {
    .view-btn {
        margin-top: 20px;
    }

    .view-btn a {
        padding: 5px 15px;
        font-size: 14px;
    }

    .explore-range .explore-head {
        display: flex;
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }

    .explore-range .explore-head p {
        margin-bottom: 5px;
    }
}

/* ----------------------- end of range section css here ----------------------- */


/* ----------------------- best seller css start here ----------------------- */

.best-seller {
    background: #f5f2f0;
}


.best-seller .seller-card {
    text-align: center;
    background: #eee4dc;
    padding: 10px;
}

.best-seller .seller-card .best-img {
    background: #F5F4F0;
    margin-bottom: 20px;
}

.best-seller .seller-card .seller-btn a {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 5px 15px;
    font-weight: 600;
    transition: .4s ease-in-out;
}

.best-seller .seller-card .seller-btn a:hover {
    background: var(--gold);
    color: var(--white);

}

.seller-text p {
    margin-bottom: 5px;
}

.seller-text span {
    display: inline-block;
    margin-bottom: 5px;
    color: var(--black);
    font-weight: bold;
}

@media screen and (max-width: 991px) {
    .seller-card {
        margin-bottom: 20px;
    }
}



/* Seller Carousel css start */
.range-theme {
    position: relative;
}

/* Navigation */
.range-theme .owl-nav {
    margin: 0;
}

.range-theme .owl-nav .owl-prev,
.range-theme .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50% !important;
    background: #f7f4ed !important;
    border: 2px solid #a6ad72 !important;
    color: #68733f !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 18px !important;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(216, 154, 134, 0.25);
    z-index: 10;
}

/* Previous Button */
.range-theme .owl-nav .owl-prev {
    left: -80px;
}

/* Next Button */
.range-theme .owl-nav .owl-next {
    right: -80px;
}

/* Hover */
.range-theme .owl-nav .owl-prev:hover,
.range-theme .owl-nav .owl-next:hover {
    background: #68733f !important;
    color: #fff !important;
    border-color: #68733f !important;
    box-shadow: 0 12px 28px rgba(76, 87, 43, 0.30);
}

.range-theme .owl-nav button i {
    font-size: 18px;
}

@media screen and (max-width:1400px) {
    .range-theme .owl-nav .owl-prev {
        left: -50px;
    }

    /* Next Button */
    .range-theme .owl-nav .owl-next {
        right: -50px;
    }
}

@media screen and (max-width:1200px) {

    /* Previous Button */
    .range-theme .owl-nav .owl-prev {
        left: -30px;
    }

    /* Next Button */
    .range-theme .owl-nav .owl-next {
        right: -30px;
    }
}

@media screen and (max-width: 991px) {

    .range-theme .owl-nav .owl-prev,
    .range-theme .owl-nav .owl-next {
        width: 30px;
        height: 30px;
    }

    /* Previous Button */
    .range-theme .owl-nav .owl-prev {
        left: 2px;
    }

    /* Next Button */
    .range-theme .owl-nav .owl-next {
        right: 2px;
    }
}

/* Seller Carousel css ends */


/* ----------------------- end of best seller css here ----------------------- */


/* ----------------------- about section start ----------------------- */


.about-section {
    background: #eeebe8;
}

.about-img {
    height: 100%;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content {
    padding: 20px 20px;
}

.section-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 32px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-content p {
    line-height: 30px;
    color: #666;
    margin-bottom: 10px;
}


.about-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    border: 2px solid #d8b58c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: .4s ease-in-out;
}

.feature-icon i {
    font-size: 20px;
    color: #b27b3d;
}

.about-feature:hover .feature-icon {
    background: #b27b3d;
}

.about-feature:hover .feature-icon i {
    color: #fff;
}

.feature-text h5 {
    font-size: 22px;
    font-family: "Cormorant Garamond", serif;
    margin-bottom: 8px;
    color: #2d2d2d;
}

.feature-text p {
    margin: 0;
    font-size: 15px;
    line-height: 26px;
    color: #666;
}

/* responsive css */

@media screen and (max-width:991px) {

    .about-content {
        padding: 50px 30px;
    }

    .about-content .about-text {
        margin-bottom: 20px;
    }

    .about-content h2 {
        font-size: 42px;
    }

    .about-img {
        height: 450px;
    }

}

@media screen and (max-width:767px) {

    .about-content h2 {
        font-size: 24px;
    }

    .about-content {
        padding: 40px 20px;
        text-align: center;
    }

    .about-content p {
        text-align: justify;
        font-size: 12px;
    }


    .about-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 30px;
    }

    .about-img {
        height: 300px;
    }

}

/* responsive css */

/* ----------------------- about section end ----------------------- */



/* ----------------------- why-us css start here ----------------------- */

.why-choose-section {
    background: #eeebe8;
}

.section-title {
    margin-bottom: 45px;
}

.why-choose-section .section-title h2 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
}

.choose-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 20px;
    height: 100%;
}

.border-end-lg {
    border-right: 1px solid #e9c8a6;
}

.choose-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    border-radius: 50%;
    transition: .4s ease-in-out;
}

.choose-icon i {
    font-size: 26px;
    color: var(--light-gold);
    transition: .4s;
}

.choose-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 5px;
}

.choose-content p {
    font-size: 14px;
    line-height: 24px;
    color: #666;
}

.choose-item:hover .choose-icon {
    background: var(--light-gold);
}

.choose-item:hover .choose-icon i {
    color: #fff;
}

@media screen and (max-width:991px) {

    .border-end-lg {
        border-right: none;
    }

    .choose-item {
        padding: 20px 10px;
    }

}

@media screen and (max-width:767px) {
    .choose-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .choose-icon {
        margin-bottom: 10px;
    }

    .choose-content h5 {
        font-size: 16px;
    }

    .choose-content p {
        font-size: 12px;
    }

}


/* ----------------------- end of why-us css  here ----------------------- */





/* -------------------- testimonial css start here -------------------- */

.testimonial-section {
    padding: 80px 0;
    position: relative;
}

.testimonial-theme {
    padding-bottom: 70px;
    /* Space for arrows */
}

.section-title {
    margin-bottom: 45px;
}

.section-title span {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.section-title h2 {
    font-size: 42px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    color: #2d2d2d;
    margin: 0;
}

.testimonial-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eadfce;
    transition: .4s;
    position: relative;
}

.testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.testimonial-stars {
    margin-bottom: 15px;
}

.testimonial-stars i {
    font-size: 14px;
    color: var(--light-gold);
    margin-right: 2px;
}

.testimonial-text {
    line-height: 28px;
    color: #555;
    margin-bottom: 25px;
    min-height: 80px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-img {
    width: 70px;
    height: 70px;
    border: 3px solid #d8b58c;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;

}

.user-info span {
    font-size: 14px;
    color: #b27b3d;
}

/* responsive css */

@media screen and (max-width:991px) {


    .section-title h2 {
        font-size: 34px;
    }

    .testimonial-item {
        padding: 25px;
        margin-bottom: 20px;
    }

}

@media screen and (max-width:767px) {


    .section-title h2 {
        font-size: 22px;
    }

    .testimonial-item {
        padding: 22px;

    }

    .testimonial-text {
        font-size: 14px;
        line-height: 26px;
        min-height: auto;
    }

    .user-img {
        width: 60px;
        height: 60px;
    }

    .user-info h5 {
        font-size: 16px;
    }

    .user-info span {
        font-size: 13px;
    }

}



/* Owl Navigation */
.testimonial-theme .owl-nav {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: flex !important;
    gap: 18px;
}

/* Nav Buttons */
.testimonial-theme .owl-nav button.owl-prev,
.testimonial-theme .owl-nav button.owl-next {
    width: 55px;
    height: 55px;
    border-radius: 50% !important;
    background: #f7f4ed !important;
    border: 2px solid #a6ad72 !important;
    color: #68733f !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 18px !important;
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(216, 154, 134, 0.25);
}

/* Hover Effect */
.testimonial-theme .owl-nav button.owl-prev:hover,
.testimonial-theme .owl-nav button.owl-next:hover {
    background: #68733f !important;
    color: #fff !important;
    border-color: #68733f !important;
    box-shadow: 0 12px 28px rgba(76, 87, 43, 0.30);
}

.testimonial-theme .owl-nav button span {
    font-size: 26px;
    line-height: 1;
}

/* -------------------- end of testimonial css here -------------------- */






/* -------------------- footer css start here -------------------- */

.luxury-footer {
    background: #050505;
    color: #ffffff;
    padding: 75px 0 20px;
}


/* footer-logo */

.footer-brand {
    padding-right: 40px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 22px;
}


.footer-logo img {
    width: 180px;
    object-fit: contain;
    background: var(--white);
}


.footer-description {
    max-width: 420px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 28px;
}


/* footer icons */

.footer-social {
    display: flex;
    gap: 12px;
}


.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--light-gold);
    background: transparent;
    border: 1px solid rgba(223, 154, 81, 0.35);
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s ease;
}


.footer-social a:hover {
    color: #ffffff;
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-4px);
}


/* footer heading */

.footer-column h5 {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 27px;
    padding-bottom: 11px;
}


.footer-column h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38px;
    height: 2px;
    background: var(--gold);
}


/* footer links */

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


.footer-column ul li {
    margin-bottom: 15px;
}


.footer-column ul li a {
    color: rgba(255, 255, 255, 0.70);
    font-size: 16px;
    line-height: 1.5;
    text-decoration: none;
    transition: all 0.3s ease;
}


.footer-column ul li a:hover {
    color: var(--light-gold);
    padding-left: 5px;
}


/* footer contact */

.contact-description {
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 22px;
}


.contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 17px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.5;
    text-decoration: none;
    transition: all 0.3s ease;
}


.contact-row:hover {
    color: var(--light-gold);
}


.contact-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--light-gold);
    border: 1px solid rgba(223, 154, 81, 0.30);
    font-size: 15px;
    transition: all 0.3s ease;

}


.contact-row:hover .contact-icon {
    color: #ffffff;
    background: var(--gold);
    border-color: var(--gold);
}


/* footer divider */

.footer-divider {
    width: 100%;
    height: 1px;
    margin-top: 55px;
    background: rgba(255, 255, 255, 0.14);
}


/* footer bottom */

.footer-bottom {
    padding-top: 24px;
}


.copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
}


.footer-policy {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 13px;
}


.footer-policy a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}


.footer-policy a:hover {
    color: var(--light-gold);
}


.footer-policy span {
    color: var(--gold);
    font-size: 16px;
}


/* responsive css */

@media (max-width: 991px) {
    .luxury-footer {
        padding: 60px 0 20px;
    }

    .footer-brand {
        padding-right: 0;
    }

}

@media (max-width: 767px) {
    .luxury-footer {
        padding: 50px 0 20px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-description {
        margin-left: auto;
        margin-right: auto;
        font-size: 16px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-column {
        margin-top: 15px;
    }

    .footer-column h5 {
        font-size: 19px;
        margin-bottom: 20px;
    }

    .footer-column ul li {
        margin-bottom: 13px;
    }

    .footer-column ul li a {
        font-size: 15px;
    }

    .contact-description {
        font-size: 15px;
    }

    .contact-row {
        font-size: 15px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-policy {
        justify-content: center;
        margin-top: 12px;
        flex-wrap: wrap;
    }
}


@media (max-width: 575px) {
    .luxury-footer {
        padding-top: 45px;
    }

    .footer-logo img {
        max-width: 165px;
    }

    .footer-description {
        font-size: 15px;
    }

    .footer-social a {
        width: 42px;
        height: 42px;
    }

    .footer-column h5 {
        font-size: 18px;
    }

    .footer-column ul li a {
        font-size: 15px;
    }

    .footer-bottom p {
        font-size: 14px;
    }

    .footer-policy a {
        font-size: 14px;
    }

}


/* ----------------- end of footer css here ---------------- */






/* --------------- ceo message section css start here --------------- */

.ceo-message {
    background: #fff;
    padding: 100px 0;
}

.ceo-image {
    text-align: center;
    position: relative;
}

.ceo-image img {
    width: 100%;
    border-radius: 25px;
    border: 5px solid #fff;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.308);
    transition: .5s;

}

.ceo-image:hover img {
    transform: translateY(-10px);
}

.ceo-name {
    margin-top: 25px;
}

.ceo-name h4 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #111;
}

.ceo-name span {
    color: #c69a1a;
    font-weight: 600;
}


.ceo-content {
    position: relative;
    padding: 60px;
    background: #fafafa;
    border-radius: 25px;
    border-left: 6px solid #c69a1a;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08), 0 18px 45px rgba(0, 0, 0, 0.08), 0 35px 70px rgba(198, 154, 26, 0.08);
}


.quote-icon {
    position: absolute;
    top: 30px;
    right: 35px;
    font-size: 70px;
    color: #072066c5;
}

.ceo-content h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
}

.ceo-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 18px;
}

.signature {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.signature h5 {
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: 700;
}

.signature span {
    color: #c69a1a;
    font-weight: 600;
}

/* responsive css */

@media screen and (max-width:991px) {



    .ceo-image img {
        width: 60%;
    }

    .ceo-name {
        margin-bottom: 30px;
    }

    .ceo-name h4 {
        font-size: 24px;
    }

    .ceo-content {
        padding: 20px 15px;
    }


    .ceo-content h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .quote-icon {
        font-size: 35px;
        top: 15px;
        right: 20px;
    }

    .ceo-content p {
        font-size: 16px;
        margin-bottom: 12px;
    }
}

@media screen and (max-width:767px) {

    .ceo-message {
        padding: 50px 0;
    }

  

    .ceo-name {
        margin-top: 15px;
    }


    .ceo-content {
        padding: 15px 10px;
    }

    .ceo-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .quote-icon {
        font-size: 30px;
        top: 5px;
    }

    .ceo-content p {
        font-size: 14px;
        margin-bottom: 8px;
    }



    .signature {
        margin-top: 10px;
        padding-top: 10px;

    }

    .signature h5 {
        font-size: 24px;
    }

}

@media screen and (max-width: 575px) {
    .ceo-image img {
        width: 100%;
    }
}

/* responsive css */

/* --------------- ceo message section css start here --------------- */






















