﻿:root {
    --white: #fff;
    --maroon: #6e2f1e;
    --gold: #bf6e44;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.25);
    --shadow-glass: rgba(191, 110, 68, 0.3);
    --shadow-dark: rgba(0, 0, 0, 0.1);
    --btn-bg: #bf6e44;
    --btn-hover: #a55a30;
    --text-dark: #3a1e12;
    --text-light: #f5f1ec;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif !important;
}

body {
    background: linear-gradient(135deg, #f6f2ed 0%, #fff8f5 100%);
    color: var(--text-dark);
    min-height: 100vh;
}

/* NAVIGATION */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 80px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 15px var(--shadow-glass);
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--maroon);
    letter-spacing: 0.05em;
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
}

    .nav-links li a {
        color: var(--maroon);
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        padding: 8px 12px;
        border-radius: 8px;
        transition: 0.3s ease;
    }

        .nav-links li a:hover {
            background: var(--gold);
            color: var(--white);
            transform: translateX(4px);
            padding-left: 18px;
        }

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 28px;
    height: 22px;
    justify-content: space-between;
}

    .menu-toggle span {
        height: 3px;
        width: 100%;
        background: var(--maroon);
        border-radius: 3px;
        transition: 0.3s;
    }

/* Mobile Sidebar */
@media (max-width:768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 260px;
        background: var(--white);
        flex-direction: column;
        padding-top: 80px;
        gap: 20px;
        transform: translateX(100%);
        transition: 0.3s ease-in-out;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
        z-index: 9999;
    }

        .nav-links.nav-active {
            transform: translateX(0);
        }

        .nav-links li a {
            display: block;
            padding: 14px 24px;
            font-size: 1.1rem;
        }
}

/* Close Button */
#close-btn {
    display: none;
}

@media (max-width:768px) {
    #close-btn {
        display: block;
        position: absolute;
        top: 22px;
        right: 22px;
        font-size: 30px;
        font-weight: 700;
        color: var(--maroon);
        cursor: pointer;
        transition: 0.3s;
    }

        #close-btn:hover {
            color: var(--gold);
            transform: scale(1.2);
        }
}

/* HERO */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url("/Images/Back.jpeg") no-repeat center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-overlay {
    max-width: 800px;
    animation: heroFade 1.5s ease forwards;
}

@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-overlay h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hero-overlay p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 28px;
}
@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 1.8rem;
    }
}
/* Button */
.btn {
    display: inline-block;
    padding: 16px 55px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    background: var(--btn-bg);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(191, 110, 68, 0.6);
    transition: 0.3s;
}

    .btn:hover {
        background: var(--btn-hover);
        transform: translateY(-3px)scale(1.06);
    }

/* ===== ABOUT US ADDED INSIDE YOUR CODE ===== */
.about-section {
    padding: 90px 8vw;
    background: var(--white);
    border-radius: 50px;
    margin: 40px 6vw;
    box-shadow: 0 6px 22px var(--shadow-dark);
    overflow: hidden;
}

.about-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--maroon);
    margin-bottom: 8px;
}

.about-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #795341;
    margin-bottom: 55px;
}

.about-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateX(0);
    transition: all 0.8s ease;
}

    .about-block.left {
        transform: translateX(-120px);
    }

    .about-block.right {
        transform: translateX(120px);
        flex-direction: row-reverse;
    }

    .about-block.in-view {
        opacity: 1;
        transform: translateX(0);
    }

.about-img {
    width: 42%;
    min-width: 280px;
    border-radius: 22px;
    transition: 0.4s;
    box-shadow: 0 4px 14px var(--shadow-glass);
}

.about-block:hover .about-img {
    transform: scale(1.04);
}

.about-content {
    width: 50%;
}

    .about-content h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem !important;
        font-weight: 900;
        color: var(--maroon);
        margin-bottom: 10px;
    }

    .about-content p {
        font-size: 1rem;
        line-height: 1.6;
        color: var(--text-dark);
    }

.read-more {
    color: var(--gold);
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 14px;
    transition: 0.3s;
}

    .read-more:hover {
        transform: translateX(8px);
        color: var(--maroon);
    }

/* Responsive Fix */
@media(max-width:900px) {
    .about-block {
        flex-direction: column !important;
        text-align: center;
        transform: translateX(0) !important;
    }

    .about-img {
        width: 90%;
    }

    .about-content,
    .about-content {
        width: 100%;
    }
}

.services-section {
    padding: 80px 8vw;
    text-align: center;
    background: var(--white);
    border-radius: 40px 40px 0 0;
    box-shadow: 0 -8px 30px var(--shadow-dark);
    margin-top: -60px;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 25px;
}

.service-card {
    width: 270px;
    background: var(--white);
    border-radius: 18px;
    padding: 24px;
    border: 1.5px solid rgba(191, 110, 68, 0.2);
    box-shadow: 0 6px 18px var(--shadow-dark);
    transition: 0.4s;
}

    .service-card:hover {
        transform: translateY(-5px)scale(1.05);
        border-color: var(--gold);
        box-shadow: 0 12px 32px rgba(191, 110, 68, 0.4);
    }

.service-image {
    width: 120px !important;
    height: 120px !important;
    border-radius: 50%;
    border: 4px solid var(--gold);
    background-size: cover;
    background-position: center;
    margin: 0 auto 14px;
    transition: 0.4s;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--maroon);
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 1rem;
    color: #795341;
    margin-bottom: 45px;
}

.about-block.left {
    animation-delay: 0.3s;
}

.about-block.right {
    animation-delay: 0.5s;
}

.about-section {
    padding: 90px 8vw;
    background: var(--white);
    border-radius: 50px;
    margin: 40px 6vw;
    box-shadow: 0 6px 22px var(--shadow-dark);
    /* Simple start animation */
    opacity: 0;
    transform: translateY(30px);
    animation: aboutStart 1s ease forwards;
}

@keyframes aboutStart {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Remove About Us background card */
.about-section.no-bg {
    background: transparent;
    box-shadow: none;
    margin: 0;
    border-radius: 0;
}

/* ===== FOOTER SECTION ===== */
/* ===== FOOTER (GLASS BACKGROUND) ===== */
footer {
    background: var(--glass-bg);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-top: none;
    padding: 50px 8vw 20px;
    margin-top: 120px;
    box-shadow: 0 -6px 25px rgba(191, 110, 68, 0.25);
    overflow: hidden;
    /* Start reveal animation */
    opacity: 0;
    transform: translateY(20px);
    animation: footerGlassReveal 1.3s ease forwards;
}

@keyframes footerGlassReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 45px;
    padding-bottom: 40px;
}

/* Footer Column */
.footer-col {
    min-width: 260px;
    flex: 1;
    opacity: 0;
    transform: translateX(-20px);
    animation: colFadeSlide 1s ease forwards;
}

    .footer-col:nth-child(2) {
        animation-delay: 0.3s;
        transform: translateX(20px);
    }

    .footer-col:nth-child(3) {
        animation-delay: 0.6s;
        transform: translateX(25px);
    }

@keyframes colFadeSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Column Headings */
.footer-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem !important;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 18px;
    letter-spacing: 0.04em;
}

/* Links List */
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    .footer-col ul li a {
        color: var(--text-dark);
        opacity: 0.85;
    }

        .footer-col ul li a:hover {
            color: var(--gold);
            opacity: 1;
            transform: translateX(5px);
        }

.footer-col p {
    color: var(--text-dark);
    opacity: 0.8;
}

    .footer-col p:hover {
        opacity: 1;
        color: var(--maroon);
    }

    .footer-col p span {
        font-size: 1.2rem;
        color: var(--gold);
    }

/* Newsletter Input */
.footer-input {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: 2px solid var(--gold);
    outline: none;
    font-weight: 600;
    margin-bottom: 15px;
    transition: 0.3s;
}

    .footer-input:focus {
        transform: scale(1.02);
        box-shadow: 0 0 10px rgba(191, 110, 68, 0.4);
    }

/* Signup Button */
.footer-btn {
    width: 100%;
    padding: 14px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.35s ease;
}

    .footer-btn:hover {
        background: var(--maroon);
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(191, 110, 68, 0.4);
    }

/* Social Icons Row */
.social-row {
    display: flex;
    gap: 15px;
    margin-top: 12px;
}

    .social-row a {
        background: var(--glass-bg);
        color: var(--gold);
        padding: 10px 15px;
        border-radius: 10px;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 700;
        transition: all 0.3s ease;
    }

        .social-row a:hover {
            background: var(--gold);
            color: var(--white);
            transform: translateY(-3px) scale(1.15);
            box-shadow: 0 0 12px rgba(191, 110, 68, 0.6);
        }

/* Footer Bottom Text */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 1.5px solid var(--gold);
    padding-top: 18px;
    margin-top: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--maroon);
    opacity: 0;
    animation: bottomFade 1.4s ease forwards;
    animation-delay: 1s;
}

@keyframes bottomFade {
    to {
        opacity: 1;
    }
}

/* ===== Responsive Fix ===== */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-col {
        transform: translateX(0) !important;
        text-align: center;
    }

        .footer-col p {
            justify-content: center;
        }

    .social-row {
        justify-content: center;
    }
}

@media (max-width: 480px) {

    .footer-input,
    .footer-btn {
        width: 92%;
        margin: auto;
    }
}

.services-swiper {
    padding: 30px 0 60px 0px !important;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

/* Lock card size so design doesn’t break */
.service-card {
    width: 270px !important;
}

/* ===== Custom Swiper Pagination ===== */
.services-swiper .swiper-pagination {
    bottom: 10px !important;
}

.services-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(191, 110, 68, 0.4);
    /* soft gold */
    opacity: 1;
    margin: 0 6px !important;
    border-radius: 50%;
    transition: all 0.35s ease;
}

.services-swiper .swiper-pagination-bullet-active {
    width: 28px;
    /* pill shape */
    border-radius: 20px;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(191, 110, 68, 0.6);
}
.services-swiper {
    margin-left: auto;
    margin-right: auto;
}
footer {
    background: var(--glass-bg);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    padding: 60px 8vw 22px;
    margin-top: 120px;
    box-shadow: 0 -6px 25px var(--shadow-glass);
    border-top: none;
    overflow: hidden;
    border-radius: 32px 32px 0 0;
    /* simple start animation */
    opacity: 0;
    transform: translateY(20px);
    animation: footerReveal 1s ease forwards;
}

@keyframes footerReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Logo */
.footer-logo {
    width: 60%;
    height: 80%;
    border-radius: 22px;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    transition: 0.4s ease;
}

    .footer-logo:hover {
        transform: scale(1.07) rotate(3deg);
    }

/* Footer Columns */
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 45px;
    padding-bottom: 35px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    text-align: center;
    animation: colSlide 0.9s ease forwards;
    opacity: 0;
}

    .footer-col:nth-child(1) {
        animation-delay: 0.2s;
        transform: translateX(-25px);
    }

    .footer-col:nth-child(2) {
        animation-delay: 0.4s;
        transform: translateX(25px);
    }

    .footer-col:nth-child(3) {
        animation-delay: 0.6s;
        transform: translateX(30px);
    }

@keyframes colSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Column Titles */
.footer-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem !important;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 0.04em;
}

/* Footer Text */
.footer-col p {
    font-size: 1rem;
    color: var(--text-dark);
    opacity: 0.9;
    margin-bottom: 10px;
    transition: 0.3s;
}

    .footer-col p:hover {
        color: var(--gold);
        opacity: 1;
    }

/* Social Icons */
.social-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 14px;
}

    .social-row a {
        background: var(--glass-bg);
        color: var(--gold);
        padding: 10px 15px;
        border-radius: 10px;
        text-decoration: none;
        font-size: 1.1rem;
        transition: 0.3s ease;
    }

        .social-row a:hover {
            background: var(--gold);
            color: var(--white);
            transform: translateY(-4px) scale(1.2);
            box-shadow: 0 0 12px var(--shadow-glass);
        }

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: none;
    padding-top: 18px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--maroon);
    opacity: 0;
    animation: bottomFade 1s ease forwards;
    animation-delay: 0.9s;
}

@keyframes bottomFade {
    to {
        opacity: 1;
    }
}
.service-card h3 {
    font-size: 1.25rem !important;
    line-height: 1.3;
    font-weight: 600;
    margin-top: 12px;
    min-height: 2.6em;
}

@media (max-width:768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-bottom {
        justify-content: center;
        gap: 12px;
        text-align: center;
    }
}

.contact-section {
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 50px 20px !important;
    width: 100% !important;
    overflow: hidden !important;
    /* Frosted Glass BG */
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    box-shadow: inset 0 0 80px rgba(255,255,255,0.2);
}

/* Contact form box stays centered and normal size */
.contact-form-box {
    position: relative;
    width: 100%;
    max-width: 460px;
    padding: 20px;
    z-index: 2;
}

    .contact-form-box h2 {
        font-family: 'Playfair Display', serif;
        font-size: 26px;
        color: #7a3e3b;
        margin-bottom: 18px;
        text-align: center;
    }

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid rgba(150, 80, 78, 0.2);
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    background: rgba(255,255,255,0.7);
}

.contact-form textarea {
    height: 100px;
    resize: none;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background: #7a3e3b;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

    .contact-form button:hover {
        opacity: 0.85;
    }

/* BUBBLES BACKGROUND */
.bubbles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

    .bubbles-bg::before,
    .bubbles-bg::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        background: rgba(255,200,190,0.25);
        border-radius: 50%;
        filter: blur(60px);
        animation: floatBubble 10s infinite alternate ease-in-out;
    }

    .bubbles-bg::after {
        width: 180px;
        height: 180px;
        right: 10%;
        bottom: 5%;
        animation-duration: 8s;
    }

@keyframes floatBubble {
    0% {
        transform: translateY(0px) scale(1);
    }

    100% {
        transform: translateY(-40px) scale(1.15);
    }
}

/* Mobile compact fix */
@media (max-width: 600px) {
    .contact-form-box {
        max-width: 92%;
        padding: 10px;
    }

    .contact-section {
        padding: 35px 15px;
    }
}
/* Scrollbar Track */
.blog-modal-content::-webkit-scrollbar {
    width: 8px;
}

.blog-modal-content::-webkit-scrollbar-track {
    background: rgba(255, 245, 240, 0.4); /* soft glassy peach */
    border-radius: 10px;
}

/* Scrollbar Thumb */
.blog-modal-content::-webkit-scrollbar-thumb {
    background: rgba(122, 62, 59, 0.8); /* maroon shade like your navbar */
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3); /* clean padding border */
}

    /* Hover Effect */
    .blog-modal-content::-webkit-scrollbar-thumb:hover {
        background: rgba(122, 62, 59, 1);
    }

.blog-modal-content {
    scrollbar-width: thin;
    scrollbar-color: rgba(122, 62, 59, 0.8) rgba(255, 245, 240, 0.4);
}
.theme-badge {
    background-color: #8b4513 !important;
    color: white !important;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 20px;
}
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.service-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.service-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #6b2f1a;
}

.service-description {
    font-size: 14px;
    color: #777;
    line-height: 1.5;
}

#toast-container {
    position: fixed;
    top: 80px;
    right: 30px;
    z-index: 9999;
}

.toast {
    min-width: 280px;
    max-width: 350px;
    background: #fdf6f2;
    color: #5a2e2e;
    padding: 16px 20px;
    margin-bottom: 12px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(123, 63, 54, 0.2);
    border-left: 6px solid #7b3f36;
    font-family: "Segoe UI", sans-serif;
    animation: slideIn 0.4s ease forwards;
}

.toast-success {
    border-left-color: #4caf50;
}

.toast-error {
    border-left-color: #c0392b;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 6px;
}

.toast-message {
    font-size: 14px;
    line-height: 1.4;
}

@keyframes slideIn {
    from {
        transform: translateX(120%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===============================
   CUSTOM TOAST (NO BOOTSTRAP CONFLICT)
================================= */

#toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999999;
    pointer-events: none;
}

/* Main toast */
.custom-toast {
    min-width: 320px;
    max-width: 360px;
    background: #ffffff;
    color: #5a2e2e;
    padding: 16px 20px;
    margin-top: 12px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    font-family: "Poppins", sans-serif;
    opacity: 0;
    transform: translateY(20px);
    animation: toastSlideUp 0.4s ease forwards;
}

/* Success & Error styles */
.custom-toast-success {
    border-left: 6px solid #4caf50;
}

.custom-toast-error {
    border-left: 6px solid #c0392b;
}

/* Title & message */
.custom-toast-title {
    font-weight: 600;
    margin-bottom: 6px;
}

.custom-toast-message {
    font-size: 14px;
    line-height: 1.4;
}

/* Animation */
@keyframes toastSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile friendly */
@media (max-width: 576px) {
    #toast-container {
        right: 50%;
        transform: translateX(50%);
        bottom: 20px;
    }
}

.blog-card {
    border-radius: 22px;
    background: #ffffff;
    overflow: hidden;
    height: 100%;
    transition: all 0.35s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

    .blog-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    }
.blog-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}
.blog-card .card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
}

.blog-card h5 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 14px;
}


.service-desc {
    width: 100%;
}
    .service-desc ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 26px;
        row-gap: 12px;
    }

        .service-desc ul li {
            font-size: 14px;
            color: #555;
            line-height: 1.8;
            display: flex;
            align-items: flex-start;
            gap: 8px;
            word-break: break-word;
        }

            .service-desc ul li::before {
                content: "✦";
                color: #c47445;
                font-size: 12px;
                margin-top: 2px;
                flex-shrink: 0;
            }

@media (max-width: 575px) {
    .blog-card-img {
        height: 210px;
    }

    .service-desc ul {
        grid-template-columns: 1fr;
    }

        .service-desc ul li {
            font-size: 15px;
        }
}


.contact-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}