* {
    font-family: "Montserrat", sans-serif;
    line-height: 1.5rem;
    word-spacing: 1px;
}

/* NAVBAR */
.navbar {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.nav-item .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: black;
}

.nav-item .nav-link.active {
    color: #153c3c;
}

li .dropdown-item:hover {
    background-color: #153c3c;
    color: white;
}
.nav-logo img {
    max-height: 48px;
    width: auto;
}

.custom-login-btn {
    padding: 10px 30px;
    background: linear-gradient(120deg, #276161 0%, #153c3c 100%);
    color: white !important;
    font-size: 16px;
    font-weight: 700;
    border-radius: 7px;
    box-shadow: 0 4px 12px rgba(49, 46, 129, 0.15);
}

.custom-login-btn a {
    color: white;
    text-decoration: none;
}

.custom-login-btn:hover {
    cursor: pointer;
    background-color: #153c3c;
    color: white;
    transform: scale(1.03);
}

/* ------------------- HOME VERSION 1 ------------ */
/*  HERO SECTION */
.hero-1 {
    position: relative;
    background-image: url('/assests/img/banner/bee-balogun-FXZpX4fFVOQ-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-section-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 20px;
}

.hero-section-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.hero-section-content p {
    font-size: 15px;
    color: #d6d6d6;
    line-height: 1.7;
}

.btn-shop,
.btn-banner-1 {
    display: inline-block;
    transition: 0.3s ease;
    white-space: nowrap;
}

.btn-shop {
    background: #276161;
    color: #fff;
    padding: 12px 32px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.btn-banner-1 {
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 32px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.btn-shop:hover,
.btn-banner-1:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}



/* ABOUT */
.about-img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.about-content h5 {
    font-weight: 600;
    font-size: 18px;
    color: #153c3c;
    font-style: italic;
    text-transform: uppercase;
    text-align: start;
}

.about-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    text-align: justify;
}

.about-content p {
    font-size: 14px;
    color: #777;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

.about-content a {
    padding: 10px 28px;
    background-color: #276161;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

.about-content a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* TRUST BULDING */
.trust-strip {
    background: linear-gradient(to bottom, #ffffff, #ede9fe);
}

.trust-item i {
    font-size: 28px;
    color: #153c3c;
    margin-bottom: 10px;
}

.trust-item p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #153c3c;
}

/* SHOP BY OCCCATIONS */
/* TITILE AND SUBTILE */
.shop-headings {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.occasion-section {
    background: #f9f9f9;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #153c3c;
}

.section-subtitle {
    font-size: 14px;
    color: #777;
    width: 40%;
    text-align: center;
}

.occasion-card {
    position: relative;
    display: block;
    height: 300px;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
}

.occasion-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.occasion-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(21, 60, 60, 0.85),
            rgba(21, 60, 60, 0.3));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
}

.occasion-overlay h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    transform: translateY(12px);
    transition: 0.4s ease;
}

.shop-text {
    font-size: 13px;
    letter-spacing: 1px;
    color: #fff;
    opacity: 0.85;
    transform: translateY(16px);
    transition: 0.4s ease;
}

.occasion-card:hover img {
    transform: scale(1.12);
}

.occasion-card:hover .occasion-overlay {
    opacity: 1;
}

.occasion-card:hover h4,
.occasion-card:hover .shop-text {
    transform: translateY(0);
}

/* PRODUCT CARD SECTION */
.best-selling {
    background: linear-gradient(to top,
            rgba(21, 60, 60, 0.85),
            rgba(21, 60, 60, 0.3));
}

/* PRODUCT CARD */
.product-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-info {
    padding: 15px;
    text-align: center;
}

.product-info h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.price-1 {
    font-size: 16px;
    font-weight: 700;
    color: #153c3c;
    margin-bottom: 12px;
}

.btn-cart {
    display: inline-block;
    padding: 8px 22px;
    background: #153c3c;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s ease;
}

.btn-cart:hover {
    background: #276161;
}


/* CTA */
.final-cta {
    position: relative;
    background-image: url('/assests/img/banner/ellicia-24HcJhf0u6M-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 90px 20px;
    color: #fff;
    overflow: hidden;
}

.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.final-cta .cta-content {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.final-cta p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #ffffff;
    color: #153c3c;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}


/*  ------- PRICING PAGE --------------- */
/* PRICING SECTION */
.pricing-section {
    background: radial-gradient(circle at top, #1e4b4b, #0f2e2e);
    padding: 100px 20px;
    color: #fff;
}

.pricing-title {
    font-size: 38px;
    font-weight: 700;
}

.pricing-subtitle {
    font-size: 15px;
    opacity: 0.85;
    max-width: 600px;
    margin: 10px auto 0;
}

.pricing-card {
    background: linear-gradient(180deg, #173f3f, #102c2c);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card.featured {
    background: linear-gradient(180deg, #1f5d5d, #143a3a);
    transform: scale(1.05);
}

.plan-tag {
    display: inline-block;
    padding: 6px 16px;
    font-size: 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.plan-tag.highlight {
    background: #c5e1a5;
    color: #153c3c;
    font-weight: 600;
}

.price {
    font-size: 42px;
    font-weight: 800;
    margin: 10px 0;
    color: white;
}

.plan-desc {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 25px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.plan-features li {
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.pricing-btn {
    display: inline-block;
    padding: 12px 34px;
    border-radius: 30px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.pricing-btn:hover {
    background: #fff;
    color: #153c3c;
}

.pricing-btn.solid {
    background: #fff;
    color: #153c3c;
    border: none;
}




/*----------- ABOUT PAGE ----------- */
.about-hero {
    height: 70vh;
    background-image: url('/assests/img/banner/ellicia-24HcJhf0u6M-unsplash.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
}

.about-hero::before {
    content: '';
    background: black;
    opacity: 0.5;
    position: absolute;
    width: 100%;
    height: 70vh;
}

.hero-about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.letter-space {
    letter-spacing: 2px;
}

.opacity-90 {
    opacity: 0.9;
}

/* ABOUT MISSION & VISSION */
.about-mission {
    padding: 80px 20px;
    background: #f9faf9;
}

.mission-intro {
    text-align: center;
}

.mission-intro h5 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #153c3c;
}

.mission-intro h2 {
    font-size: 34px;
    margin: 15px 0;
    color: black;
    font-weight: 600;
}

.mission-intro p {
    max-width: 650px;
    margin: auto;
    font-size: 15px;
    line-height: 1.7;
}

.mission-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.mission-card i {
    font-size: 32px;
    color: #153c3c;
    margin-bottom: 15px;
}

.mission-card h4 {
    font-size: 21px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #153c3c;
}

.mission-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
}


/* ABOUT HISTORY */

.about-history {
    padding: 0px 20px;
}

.history-wrap {
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 60px;
}

.history-text h5 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #153c3c;
}

.history-text h2 {
    font-size: 34px;
    margin: 15px 0;
    color: black;
    font-weight: 600;
}

.history-text p {
    max-width: 650px;
    margin: auto;
    font-size: 15px;
    text-align: justify;
    line-height: 1.7;
}

.history-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 18px;
}

/* ABOUT PAGE TEAMA SECTION  */
.about-team {
    padding: 80px 20px;
    background: #f9faf9;
    text-align: center;
}

.team-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 18px;
}

.team-card h4 {
    margin-top: 12px;
    font-size: 21px;
    font-weight: 700;
    color: #153c3c;
}

.team-card span {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 600;
}

/* ABOUT PAGE TESTIMONIALS */
.about-testimonials {
    padding: 80px 20px;
    background: #153c3c;
    color: white;
    text-align: center;
}

.about-testimonials h2 {
    font-size: 32px;
    font-weight: 700;
}

.testimonial-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.12);
    padding: 35px 25px;
    border-radius: 20px;
}

.testimonial-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.4);
    margin-bottom: 18px;
}

.testimonial-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 16px;
}

.testimonial-card h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-card span {
    font-size: 12px;
    opacity: 0.8;
}

/* ------ SERVICE PAGE ------ */
.hero-about-1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-about-1 h6 {
    font-size: 32px;
    font-weight: 700;
    color: white;
}

/* SERVICE SECTION  */
.about-services {
    padding: 90px 20px;
    color: #153c3c;
}

/* INTRO */
.services-intro {
    text-align: center;
    margin: 0 auto 60px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.services-intro h5 {
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}

.services-intro h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 14px;
    color: black;
}

.services-intro p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
    color: #777777;
    width: 60%;
    text-align: center;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1100px;
    margin: auto;
}

.service-card {
    background: white;
    padding: 35px 28px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}

.service-card i {
    font-size: 34px;
    margin-bottom: 18px;
    color: #153c3c;
}

.service-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
}

/* --------- SERVICES DETAILS PAGE -------*/
/* SERVICES DESCRIPTION */
.service-desc {
    background: #f9faf9;

}


.section-small {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: #153c3c;
    font-size: 18px;
    text-transform: uppercase;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    margin: 10px 0 15px;
    color: black;
}

.section-desc {
    font-size: 15px;
    font-weight: 500;
    color: #555;
    text-align: justify;
}

.service-media img,
.service-media video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

/* SERVICES FAQ's */
.service-faq {
    background: #f9faf9;
}

.service-faq .section-title {
    font-size: 34px;
    font-weight: 700;
    color: #153c3c;
}

.service-faq .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.service-faq .accordion-button {
    background: #ffffff;
    color: #153c3c;
    font-weight: 600;
    padding: 18px 20px;
    box-shadow: none;
}

.service-faq .accordion-button:not(.collapsed) {
    background: #153c3c;
    color: #ffffff;
}

.service-faq .accordion-button::after {
    filter: brightness(0) invert(1);
}

.service-faq .accordion-body {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    padding: 20px;
    background: #fdfefe;
}

/* SERVICE PAGE PRICING TABLE */
.service-pricing {
    background: #f9faf9;
}

.price-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}


.price-card h5 {
    font-size: 21px;
    font-weight: 700;
    color: #153c3c;
}

.price-card h2 {
    color: black;
    font-weight: 700;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.price-card ul li {
    font-size: 14px;
    margin-bottom: 8px;
}

.price-card.featured {
    border: 2px solid #153c3c;
}

.btn-custom {
    background: #153c3c;
    color: white;
}

.btn-custom:hover {
    background-color: white;
    border: 1px solid #153c3c;
    color: #153c3c;
}

.btn-outline-custom {
    border: 1px solid #153c3c;
    color: #153c3c;
}

.btn-outline-custom:hover {
    background-color: #153c3c;
    color: white;
}

/*---------------- BLOG PAGE ------------------*/
/* BLOG CONTENT */
.card1 {
    border-radius: 20px;
}

.shadow-sm img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.card .card-title {
    font-weight: 600;
}

.card-body {
    padding: 20px;
}

.card-footer {
    padding: 20px;
}

.card-item a {
    text-decoration: none;
    color: #777777;
}


/* CONTACT WRAPPER */
.contact-wrapper {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 30px;
 }
/* CONTACT CARD */
.contact-card {
    width: 100%;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 22px;
    padding: 40px;
    color: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}


/* INFO SECTION */
.info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.info-item i {
    font-size: 22px;
    color: #ffffff;
    margin-top: 5px;
}

.info-text span {
    font-weight: 600;
}

.info-text p {
    font-size: 14px;
    color: #cfdede;
    margin-top: 5px;
}

/* SOCIAL */
.socials {
    display: flex;
    gap: 14px;
    margin-top: 35px;
}

.socials a {
    width: 42px;
    height: 42px;
    background: #0f2c2c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.socials a:hover {
    transform: scale(1.15);
}

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

.input-box {
    position: relative;
}

.form-group i {
    position: absolute;
    top: 14px;
    left: 15px;
    color: #9fcfcf;
}

input,
textarea {
    width: 100%;
    padding: 14px 16px 14px 45px;
    border-radius: 14px;
    border: none;
    outline: none;
    background: #0f2c2c;
    color: #ffffff;
    font-size: 14px;
}

textarea {
    height: 150px;
    resize: none;
}

input::placeholder,
textarea::placeholder {
    color: #9fcfcf;
}

form button {
    width: 100%;
    padding: 15px;
    border-radius: 35px;
    border: none;
    background: linear-gradient(135deg, #1f5555, #153c3c);
    color: #ffffff;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
}

form button:hover {
    opacity: 0.9;
}


/* MOBILE */
@media (max-width: 768px) {
    .contact-card {
        width: 100%;
    }
}

.contact-card h2 {
    font-size: 26px;
    margin-bottom: 30px;
}



/* ----------- RESPONSIVE ---------- */

@media (max-width: 991px) {

    .nav-logo{
	width: 30%;
    }
    /* SECTION TEXT */
    .section-subtitle {
        font-size: 14px;
        text-align: center;
    }

    /* SERVICES GRID */
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    /*  HERO SECTION */
    .hero-section-content h1 {
        font-size: 28px;
    }

    .hero-section-content p {
        font-size: 14px;
    }

    .btn-shop,
    .btn-banner-1 {
        padding: 10px 24px;
        font-size: 13px;
    }

    /* ABOUT SECTION */

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

    .about-content {
        text-align: center;
    }

    .about-content a {
        margin-top: 10px;
    }

    /* SHOP BY OCCASTION */
    .section-subtitle {
        width: 90%;
    }

    .occasion-card {
        height: 200px;
    }

    /* PRODUCT SECTION */
    .product-card img {
        height: 180px;
    }

    .section-subtitle {
        width: 90%;
    }

    /*  CTA */

    .final-cta h2 {
        font-size: 28px;
    }



  
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* ABOUT PAGE MISSION */
    .history-wrap {
        grid-template-columns: 1fr;
    }

    /* ABOUT PAGE TEAM SECTION  */
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* ABOUT PAGE TESTIMONAILS */
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    /*---------- SERVICE PAGE ----------- */
    .service-faq .section-title {
        font-size: 28px;
    }

    /* CONTACT PAGE */
    .contact-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 567px) {
    .hero .hero-title {
        font-size: 32px;
    }
     .history-wrap{
        padding: 0px;
	padding-bottom: 40px;
    }

    /* SERVICE SECTION */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-intro {
        width: 100%;
    }

    .services-intro h2 {
        font-size: 29px;
    }

    .services-intro p {
        width: 100%;
    }
}

@media (max-width: 357px) {
    .hero .hero-title {
        font-size: 26px;
    }
}