:root {
    --primary-color: #2E2E2E;
    --secondary-color: #6B7280;
    --Accent: #C8A97E;
    --background-color: #0b0f2f;
    --light-bg: #F9F9F9;
    --color-blue: #0d6efd;
    --white-color: #fff;
    --Heading-Color: #fff;
    --Highlight-Color: #6FBF4A;
    --Text-color: #555;

    /*Nav Bar color*/
    --navbar-color: var(--primary-color);
    --navbar-text-color: #ffffff;

    /*Footer Color*/
    --footer-color: var(--primary-color);
    --footer-bottom-color: #1d1d1e;
    --footer-heading-color: #FFF;
    --footer-text-color: #ddd;

    --footer-bottom-text-hover: var(--Highlight-Color);

    /*Btn Color*/
    --primary-Btn-color: #D4AF37;
    --Secondary-Btn-color: linear-gradient(45deg, #1b1f50, #11153a);
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background: #FFF;
    padding-top: 90px;
    overflow-x: hidden;
}

body p {
    font-family: poppins, sans-serif;
}

body h1,
h2,
h3,
h4,
h5 {
    font-family: Playfair Display, serif;
}

.sub-heading {
    color: var(--Highlight-Color);
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
}

.highlite-des {
    color: var(--Highlight-Color);
    letter-spacing: 1px;
}

.highlite {
    color: var(--Highlight-Color);
    font-weight: inherit;
}

.dark-mode .highlite {
    color: var(--Highlight-Color) !important;
}

.dark-mode .v1-about-feature h6 {
    color: #FFF;
}

@media (max-width:768px) {
    .highlite-des {
        color: inherit;
    }

}

.hyper-link {
    text-decoration: none;
    color: inherit;
}

/*---- Empty Bg -----*/
.empty-bg {
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://i.pinimg.com/736x/3b/30/25/3b30255ef763b534285bccdee89aa71a.jpg') center / cover no-repeat;
    background-attachment: fixed;
}

/*<section class="empty-bg">
        </section>*/


/*-- Buttons Start --*/

.primary-btn {
    display: inline-block;
    background: #D4AF37;
    color: #000;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.primary-btn:hover {
    background: #fff;
    color: #6B0F1A;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width:768px) {
    .primary-btn {
        font-size: 18px;
        padding: 10px 25px;
    }

    .secondary-btn {
        padding: 10px 25px;
    }

}

.secondary-btn {
    text-decoration: none;
    padding: 10px 25px;
    background: var(--Secondary-Btn-color);
    border: none;
    color: var(--white-color);
    border-radius: 10px;
    font-weight: 500;
    transition: 0.3s;
}

.secondary-btn:hover {
    background: var(--Highlight-Color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/*-- Buttons End --*/


/*------ NAVBAR -------*/

.custom-navbar {
    background: var(--navbar-color);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    border-bottom: 1px solid var(--secondary-color);
}


.brand-logo {
    width: 150px;
}

/* center menu */
.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}


/* dropdown */

.dropdown-menu {
    background: var(--navbar-color);
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown-item {
    color: var(--navbar-text-color);
    transition: 0.3s;
}

.dropdown-item:hover {
    background: #0d6efd;
    color: var(--white-color);
}


/* login button */

.login-btn {
    background: var(--primary-Btn-color);
    border: none;
    color: #000;
    padding: 10px 25px;
    border-radius: 30px;
    transition: 0.3s;
    text-decoration: none;
    font-weight: 600;
}

.login-btn:hover {
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* dark mode toggle */

.dark-toggle {
    font-size: 20px;
    color: var(--white-color);
    margin-right: 15px;
    cursor: pointer;
}


/* ARROW ICON */

.nav-arrow {
    font-size: 12px;
    margin-left: 6px;
    transition: 0.3s;
}

/* Rotate arrow when dropdown open */

.show>.nav-link .nav-arrow {
    transform: rotate(180deg);
}

/* UNDERLINE ANIMATION */

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #6FBF4A;
    transition: 0.35s;
}

.nav-link:hover::after {
    width: 100%;
}

/* ACTIVE NAV */

.nav-link.active {
    color: var(--navbar-text-color) !important;
}

.nav-link.active::after {
    width: 90%;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--navbar-text-color) !important;
    margin: 0 14px;
    font-weight: 500;
    position: relative;
    padding-bottom: 6px;
}


.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    color: var(--navbar-text-color);
    filter: brightness(9);
}


/* Desktop center menu */

@media (min-width:992px) {

    .nav-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

}

/* Mobile layout fix */

@media (max-width:991px) {

    .nav-center {
        position: static;
        transform: none;
        text-align: left;
        margin-top: 20px;
    }

    .navbar-nav {
        gap: 10px;
    }

    .login-btn {
        width: 100%;
        margin-top: 10px;
    }

}

/*------- NAVBAR DARK MODE START ------*/

.dark-mode .navbar {
    background: #0a0d2b !important;
}

.dark-mode .nav-link {
    color: var(--white-color) !important;
}

.dark-mode .dropdown-menu {
    background: #0a0d2b;
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dark-mode .dropdown-item {
    color: var(--white-color);
    transition: 0.3s;
}

.dark-mode .dropdown-item:hover {
    background: #0d6efd;
    color: var(--white-color);
}

.dark-mode .navbar-toggler-icon {
    filter: invert(9999);
    filter: brightness(9999);
}

/*------- NAVBAR DARK MODE END --------*/


/*------ END OF NAVBAR -------*/

/*------ FOOTER -------*/
.footer {
    background: var(--footer-color);
    padding-top: 60px;
    font-size: 14px;
    border-top: 2px solid var(--secondary-color);
}

.footer-logo {
    width: 120px;
    margin-bottom: 20px;
}


.footer-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--footer-heading-color);
}

.footer-text {
    color: var(--footer-text-color);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links a {
    text-decoration: none;
    color: var(--footer-text-color);
    display: block;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--Highlight-Color);
    transform: translateX(4px);
}

.footer-contact {
    margin-bottom: 8px;
}

.footer-contact {
    color: var(--footer-text-color);
}


.footer-newsletter {
    display: flex;
    margin-top: 10px;
}

.footer-newsletter input {
    border: 1px solid #ddd;
    padding: 8px;
    flex: 1;
    border-radius: 4px 0 0 4px;
}

.footer-newsletter button {
    background: var(--primary-Btn-color);
    border: none;
    color: var(--white-color);
    padding: 8px 12px;
    border-radius: 0 4px 4px 0;
}

.footer-social {
    margin-top: 20px;
}

.social-icons i {
    color: var(--footer-heading-color);
    font-size: 18px;
    margin-right: 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.social-icons i:hover {
    color: var(--Highlight-Color);
    transform: translateY(-3px);
}

/* Bottom Footer */

.footer-bottom {
    background: var(--footer-bottom-color);
    color: var(--white-color);
    padding: 15px 0;
    margin-top: 40px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-copy {
    justify-content: center;
    margin-top: 10px;
}

.footer-menu a {
    color: white;
    margin-right: 20px;
    text-decoration: none;
    transition: .3s;
}

.footer-menu a:hover {
    color: var(--footer-bottom-text-hover);
    transform: translateY(-5px);
}


/* Responsive */

@media(max-width:768px) {

    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

}

/*------ FOOTER DARK MODE START -----*/
.dark-mode .dark-footer {
    background: #0a0d2b;
}

.dark-mode .dark-footer h6,
.dark-mode .social-icons i {
    color: #FFF;
}

.dark-mode .social-icons i:hover,
.dark-mode .footer-links a:hover {
    color: var(--Highlight-Color) !important;
}

.dark-mode .dark-footer p,
.dark-mode .dark-footer a,
.dark-mode .dark-footer span {
    color: #ccc;
}

/*------ FOOTER DARK MODE END -------*/

/*------ END OF FOOTER -------*/



/*====== DARK MODE  ======*/

body {
    transition: 0.4s;
}

.dark-mode-toggle {
    font-size: 22px;
    color: var(--navbar-text-color);
    cursor: pointer;
    margin-right: 20px;
    transition: 0.3s;
}

.dark-mode .dark-mode-toggle {
    color: gold;
}

.dark-mode-toggle:hover {
    transform: scale(1.1);
}


.dark-mode {
    background: #0a0a0a;
    color: white;
}


.dark-mode .highlite {
    color: var(--Highlight-Color) !important;
}

.dark-mode .secondary-btn:hover {
    background: var(--Secondary-Btn-color);
}

/*---- Dark mode for sections ----*/

.dark-mode .dark-section {
    background-color: #000;
}


.dark-mode .dark-section-2 {
    background-color: #070415;
}

.dark-mode .dark-section h1,
.dark-mode .dark-section h2,
.dark-mode .dark-section h3,
.dark-mode .dark-section h4,
.dark-mode .dark-section h5,
.dark-mode .dark-section-2 h1,
.dark-mode .dark-section-2 h2,
.dark-mode .dark-section-2 h3,
.dark-mode .dark-section-2 h4,
.dark-mode .dark-section-2 h5 {
    color: #fff;
}

.dark-mode .dark-section p,
.dark-mode .dark-section li,
.dark-mode .dark-section a,
.dark-mode .dark-section-2 p,
.dark-mode .dark-section-2 li,
.dark-mode .dark-section-2 a {
    color: #ccc;
}

.dark-mode .dark-section-2 li:hover,
.dark-mode .dark-section-2 a:hover,
.dark-mode .dark-section li:hover,
.dark-mode .dark-section a:hover,
.dark-mode .dark-section-2 .sub-heading,
.dark-mode .dark-section .sub-heading {
    color: var(--Highlight-Color);
}

.dark-mode .dark-section-2 .v1-about-btn {
    color: #FFF !important;
}

.dark-mode .dark-section-card {
    background: #171718;
    border: 1px solid #1f1a1a;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 5);
}

.dark-mode .dark-section-card h5 {
    color: #fff;
}

.dark-mode .dark-section-card a {
    color: var(--Highlight-Color);
}

.dark-mode .dark-section-card p {
    color: #ccc;
}

.dark-mode .dark-section-card .social-box i {
    color: #000;
}

.dark-mode .dark-section-card .social-box i:hover {
    color: var(--Highlight-Color);
}

.dark-mode .event-icon {
    background-color: #171718;
    border: none;
}

.dark-mode .em-icon {
    background-color: #171718;
}

.dark-mode .dark-section .primary-btn {
    color: #FFF !important;
}

.dark-mode .dark-section .primary-btn:hover {
    color: #6B0F1A !important;
}

.dark-mode .dark-section-2 .primary-btn {
    color: #FFF !important;
}

.dark-mode .dark-section-2 .primary-btn:hover {
    color: #6B0F1A !important;
}

.dark-mode .dark-section-2 .primary-btn {
    color: #FFF !important;
}

.dark-mode .dark-section-2 .secondary-btn {
    color: #FFF !important;
}

.dark-mode .dark-section-2 .primary-btn:hover,
.dark-mode .dark-section-2 .secondary-btn:hover {
    color: #FFF !important;
}

/*------ END OF DARK MODE  ------*/

/*============= Index.HTML Start ==============*/

/*---------- V1 Hero Section Start --------*/

/* SECTION */
.v1-hero-section {
    background: #F9F7F4;
    padding: 90px 10px;
}

/* TITLE */
.v1-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
}

.v1-hero-title span {
    color: var(--Highlight-Color);
}

/* TEXT */
.v1-hero-text {
    color: var(--secondary-color);
    font-size: 16px;
    max-width: 500px;
}

/* BUTTONS */
.v1-hero-btns {
    display: flex;
    align-items: center;
    gap: 15px;
}

.v1-hero-btn-primary {
    background: var(--Accent);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.v1-hero-btn-primary:hover {
    background: #b8966d;
}

.v1-hero-btn-secondary {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

/* TRUST TEXT */
.v1-hero-trust {
    color: var(--secondary-color);
}

.v1-hero-trust span {
    color: var(--Accent);
    font-weight: 600;
}

/* IMAGE */
.v1-hero-img-wrapper {
    position: relative;
    display: inline-block;
}

/* optional circle background */
.v1-hero-img-wrapper::before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    background: var(--Accent);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.15;
}

.v1-hero-img {
    position: relative;
    z-index: 1;
    max-width: 520px;
    border-radius: 30%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .v1-hero-title {
        font-size: 45px;
        text-align: center;
    }

    .v1-hero-text {
        text-align: center;
        margin: auto;
    }

    .v1-hero-trust {
        text-align: center;
    }

    .v1-hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .v1-hero-img-wrapper {
        margin-top: 80px;
    }

    .v1-hero-img-wrapper::before {
        width: 550px;
        height: 550px;
    }

    .v1-hero-section {
        padding: 50px 10px 90px 10px;
    }
}

@media (max-width:575px) {
    .v1-hero-img-wrapper {
        display: none;
    }

    .v1-hero-section {
        padding: 50px 0px;
    }

    .v1-hero-title {
        font-size: 32px;
        text-align: center;
    }
}

/*---------- V1 Hero  Section End --------*/

/*---------- V1 About Us  Section Start --------*/
/* SECTION */
.v1-about-section {
    background: #FFF;
}

/* HEADER */
.v1-about-tag {
    color: var(--Accent);
    font-size: 14px;
    font-weight: 600;
}

.v1-about-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    max-width: 600px;
}

/* FEATURES */
.v1-about-feature {
    padding: 20px;
    transition: 0.3s;
}

.v1-about-feature:hover {
    transform: translateY(-5px);
}

/* ICON */
.v1-about-icon {
    width: 40px;
    height: 40px;
    stroke: var(--Accent);
    margin-bottom: 12px;
}

/* TEXT */
.v1-about-feature h6 {
    color: var(--primary-color);
    font-weight: 600;
}

.v1-about-feature p {
    font-size: 14px;
    color: var(--secondary-color);
    text-align: justify;
}

/* IMAGE */
.v1-about-img-box img {
    border-radius: 15px;
    width: 100%;
    height: 350px;
}

@media (max-width:768px) {
    .v1-about-img-box {
        height: 100%;
    }
}

/* OVERLAY */
.v1-about-overlay {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: rgba(46, 46, 46, 0.85);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
}

.v1-about-overlay p {
    font-size: 14px;
}

.v1-about-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 18px;
    background: var(--primary-Btn-color);
    color: #000;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .v1-about-title {
        font-size: 28px;
    }
}

/*---------- V1 About Us  Section End --------*/

/*---------- V1 Service  Section Start --------*/

.ss-services-section {
    background: #F9F7F4;
}

.ss-services-title {
    font-size: 38px;
    color: #000;
}

.ss-services-subtext {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* CARD */
.ss-service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.ss-service-card:hover {
    transform: translateY(-8px);
}

/* IMAGE */
.ss-service-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* CONTENT */
.ss-service-content {
    padding: 20px;
    position: relative;
}

/* ICON */
.ss-service-icon {
    width: 45px;
    height: 45px;
    background: var(--Accent);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 20px;
}

/* TEXT */
.ss-service-content h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.ss-service-content p {
    font-size: 14px;
    color: #666;
}

.ss-service-content a {
    font-size: 14px;
    color: var(--Highlight-Color);
    text-decoration: none;
    font-weight: 500;
    transition: .4s;
}

.ss-service-content a:hover {
    letter-spacing: 1px;
}

/*---------- V1 Service Section End --------*/

/*---------- V1 Why Choose Us  Section Start --------*/

.v1-why-section {
    background: #fff;
}

/* TITLE */
.v1-why-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #111;
    margin: 15px 0;
}

/* TEXT */
.v1-why-text {
    color: #666;
    max-width: 500px;
    line-height: 1.7;
}

/* FEATURES */
.v1-why-features {
    margin-top: 25px;
}

/* ITEM */
.v1-why-item {
    gap: 15px;
    margin-bottom: 20px;
}

.v1-why-item h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

.v1-why-item p {
    font-size: 14px;
    color: #777;
}

/* ICON */
.v1-why-icon {
    width: 45px;
    height: 45px;
    background: var(--Highlight-Color);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

@media (max-width:575px) {
    .v1-why-icon {
        width: 75px;
        height: 40px;
    }
}

/* BUTTON */
.v1-why-btn {
    display: inline-block;
    margin-top: 20px;
    background: #6B0F1A;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.v1-why-btn:hover {
    background: #D4AF37;
    color: #000;
}

/* IMAGES */
.v1-why-img-top img {
    width: 100%;
    border-radius: 15px;
}

.v1-why-img-bottom {
    position: relative;
    right: 0;
    width: 70%;
}

.v1-why-img-bottom img {
    width: 100%;
    border-radius: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .v1-why-title {
        font-size: 28px;
    }

    .v1-why-img-bottom {
        position: static;
        width: 100%;
        margin-top: 20px;
    }

    .v1-why-text {
        max-width: none;
    }
}

/*---------- V1 Why Choose Us  Section End --------*/

/*============= Index.HTML END  =============*/

/*============= Home.HTML Start =============*/

/*-------- V2 Hero Section Start ------*/

.v2-hero-section {
    padding: 80px 0;
    background: #f9f7f5;
}

/* TEXT */
.v2-hero-title {
    font-size: 48px;
    color: #111;
}

.v2-hero-text {
    color: #666;
    margin: 20px 0;
}

/* SLIDER */
.v2-hero-slider {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 20px;
}

/* IMAGES */
.v2-hero-after,
.v2-hero-before {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-hero-before-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

/* HANDLE */
.v2-hero-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #D4AF37;
    cursor: ew-resize;
}

.v2-hero-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: #D4AF37;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* LABELS */
.v2-hero-label {
    position: absolute;
    top: 15px;
    padding: 6px 12px;
    font-size: 12px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 10px;
}

.before {
    left: 15px;
}

.after {
    right: 15px;
}

/* MOBILE */
@media (max-width:768px) {
    .v2-hero-title {
        font-size: 30px;
        text-align: center;
        max-width: 500px;
        margin: auto;
    }

    .v2-hero-text {
        text-align: center;
        max-width: 500px;
        margin: auto;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .v2-hero-btns {
        text-align: center;
        justify-content: center;
    }

    .v2-hero-slider {
        height: 300px;
    }
}

/*-------- V2 Hero Section End --------*/

/*-------- V2 About Us Section Start ---*/
.v2-about-section {
    background: #fff;
    padding: 90px 10px;
}

/* IMAGE */
.v2-about-img-wrap img {
    width: 100%;
    border-radius: 15px;
    position: relative;
    z-index: 2;
}

/* GOLD FRAME */
.v2-about-frame {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 90%;
    height: 100%;
    border: 8px solid #D4AF37;
    z-index: 1;
    border-radius: 10px;
}

/* BOTTOM LINE */
.v2-about-line {
    width: 120px;
    height: 6px;
    background: #6B0F1A;
    margin-top: 15px;
}


/* TITLE */
.v2-about-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin: 15px 0;
    color: #111;
}

.v2-about-title span {
    color: var(--Highlight-Color);
}

/* TEXT */
.v2-about-text {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* BUTTON */
.v2-about-btn {
    display: inline-block;
    margin-top: 20px;
    background: #6B0F1A;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.v2-about-btn:hover {
    background: #D4AF37;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .v2-about-title {
        font-size: 35px;
    }

    .v2-about-frame {
        display: none;
    }

    .v2-about-line {
        margin-left: auto;
        margin-right: auto;
    }

    .v2-about-section {
        text-align: center;
    }
}

@media (max-width:575px) {
    .v2-about-title {
        font-size: 28px;
    }
}

/*-------- V2 About Us Section End -----*/

/*-------- V2 Stat Section Start --------*/

.ss-stats-section {
    background: #f9f7f5;
}

/* ITEM */
.ss-stat-item h2 {
    font-size: 40px;
    font-weight: 700;
    color: #6B0F1A;
    margin: 10px 0;
}

.ss-stat-item p {
    color: #777;
    font-size: 15px;
}

/* ICON */
.ss-stat-icon {
    font-size: 38px;
    color: #D4AF37;
    margin-bottom: 10px;
}

/* HOVER */
.ss-stat-item {
    transition: 0.3s;
}

.ss-stat-item:hover {
    transform: translateY(-5px);
}

/*-------- V2 Stat Section End ----------*/

/*-------- V2 Gallery Start ---------*/
.ss-gallery-section {
    background: #fff;
}

/* TITLE */
.ss-gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #111;
}

.ss-gallery-subtext {
    color: #777;
    max-width: 600px;
    margin: 0 auto;
}

/* ITEM */
.ss-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

/* IMAGE */
.ss-gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.4s;
}

/* OVERLAY */
.ss-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgb(0, 0, 0, 9), transparent);
    color: #fff;
    opacity: 0;
    transition: 0.4s;
}

.ss-gallery-overlay h5 {
    margin-bottom: 5px;
}

.ss-gallery-overlay p {
    font-size: 14px;
}

/* HOVER EFFECT */
.ss-gallery-item:hover img {
    transform: scale(1.1);
}

.ss-gallery-item:hover .ss-gallery-overlay {
    opacity: 1;
}

/* MOBILE */
@media (max-width:768px) {
    .ss-gallery-item img {
        height: 220px;
    }
}

/*-------- V2 Gallery  End -----------*/

/*-------- V2 Process Start ------------*/
.v2-process-section {
    background: #f9f7f5;
}

/* SUBTITLE */
.v2-process-subtitle {
    color: #D4AF37;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
}

/* TITLE */
.v2-process-title {
    font-size: 40px;
    color: #111;
    margin: auto;
    max-width: 500px;
    text-align: center;
    margin-bottom: 10px;
}

/* TEXT */
.v2-process-text {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ITEM */
.v2-process-item {
    padding: 20px;
    border-right: 1px solid #ddd;
}

.v2-process-item:last-child {
    border-right: none;
}

/* NUMBER */
.v2-process-item h1 {
    font-size: 48px;
    color: var(--Highlight-Color);
    font-family: 'Playfair Display', serif;
}

/* TITLE */
.v2-process-item h5 {
    margin-top: 10px;
    font-weight: 600;
}

/* TEXT */
.v2-process-item p {
    font-size: 14px;
    color: #777;
}

/* BUTTON */
.v2-process-btn {
    display: inline-block;
    margin-top: 15px;
    border: 1px solid #D4AF37;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    color: #111;
    transition: 0.3s;
}

.v2-process-btn:hover {
    background: var(--primary-Btn-color);
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .v2-process-item {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
}

@media (max-width: 768px) {
    .v2-process-title {
        font-size: 28px;
    }

    .v2-process-item {
        text-align: center;
    }
}

/*-------- V2 Process End --------------*/

/*============= Home.HTML End ==================*/

/*============= Inner Hero Section =============*/
.inhero-section {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://i.pinimg.com/1200x/32/97/13/32971312a22b2938a5293a1dc4622c90.jpg')bottom center/cover no-repeat;
    overflow: hidden;
}

.inhero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.inhero-section .container {
    position: relative;
    z-index: 2;
}

.inhero-subtitle {
    color: var(--Highlight-Color);
    font-weight: 600;
    letter-spacing: 4px;
    font-size: 18px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.inhero-title {
    color: #fff;
    font-weight: 700;
    font-size: 56px;
    line-height: 1.2;
}

/* Tablet */
@media (max-width:991px) {

    .inhero-section {
        height: 360px;
    }

    .inhero-title {
        font-size: 42px;
    }

}

/* Mobile */
@media (max-width:576px) {

    .inhero-section {
        height: 300px;
        padding: 40px 15px;
    }

    .inhero-title {
        font-size: 30px;
    }

    .inhero-subtitle {
        font-size: 13px;
        letter-spacing: 2px;
    }

}

/*============= Inner Hero Section End =========*/

/*============= About.HTML Start ================*/

/*------ Our Mision & Vission ------*/

/* SECTION */
.ss-mv-about-section {
    background: #FFF;
}

/* TITLE */
.ss-mv-about-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

/* TEXT */
.ss-mv-about-text {
    color: var(--secondary-color);
    font-size: 16px;
}

/* SUBTITLE */
.ss-mv-about-subtitle {
    color: var(--primary-color);
    font-weight: 600;
}

/* LIST */
.ss-mv-about-list {
    list-style: none;
    padding: 0;
}

.ss-mv-about-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.ss-mv-about-list li::before {
    content: "*";
    position: absolute;
    left: 0;
    color: var(--Accent);
    font-size: 25px;
}

/* VIDEO */
.ss-mv-about-video-wrapper {
    border-radius: 15px;
    overflow: hidden;
}

.ss-mv-about-video {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* CARD */
.ss-mv-about-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.ss-mv-about-card-number {
    background: var(--Accent);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    padding: 15px 20px;
    border-radius: 10px;
}

.ss-mv-about-card-text {
    color: var(--primary-color);
    margin: 0;
}

/* IMAGE */
.ss-mv-about-img {
    border-radius: 15px;
}

/* BOTTOM TITLE */
.ss-mv-about-bottom-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .ss-mv-about-title {
        font-size: 28px;
    }

    .ss-mv-about-video {
        height: 220px;
    }

    .ss-mv-about-video {
        height: 350px;
    }
}

/* spacing fix */
.ss-mv-about-col {
    margin-bottom: 20px;
}

/* list fix */
.ss-mv-about-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

/* MOBILE FIX */
@media (max-width: 575px) {

    .ss-mv-about-list-row {
        gap: 20px;
    }

    .ss-mv-about-subtitle {
        margin-bottom: 10px;
    }

    .ss-mv-about-list li {
        font-size: 14px;
    }

    .ss-mv-about-video {
        height: 250px;
    }

    .ss-mv-about-section {
        text-align: center;
    }

    .ss-mv-about-subtitle {
        text-align: center;
    }

    .ss-mv-about-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* centers whole list */
    }

    .ss-mv-about-list li {
        justify-content: center;
        max-width: 290px;
    }

}

/*----- Our Mission & Vission END ------*/

/*----- Who We Are Start ---------*/
.v1-who-section {
    background: #f9f7f5;
    padding: 90px 0;
}

/* SUBTITLE */
.v1-who-subtitle {
    color: var(--Highlight-Color);
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
}

/* TITLE */
.v1-who-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    color: #111;
    margin: 15px 0;
}

/* TEXT */
.v1-who-text {
    color: #666;
    line-height: 1.7;
    max-width: 500px;
}

/* DIVIDER */
.v1-who-divider {
    width: 100%;
    height: 1px;
    background: #ddd;
    margin: 25px 0;
}

/* SIGNATURE */
.v1-who-sign {
    font-family: 'Playfair Display', serif;
    color: #6B0F1A;
    font-size: 22px;
}

.v1-who-role {
    font-size: 13px;
    color: #777;
}

/* CONTACT */
.v1-who-contact p {
    margin: 0;
    font-size: 13px;
    color: #777;
}

.v1-who-contact h5 {
    color: #6B0F1A;
    font-weight: 600;
}

/* RIGHT SIDE */
.v1-who-img-main img {
    width: 100%;
    border-radius: 20px;
}

.v1-who-img-small {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 70%;
}

@media (max-width:786px) {
    .v1-who-img-small {
        display: none;
    }
}

.v1-who-img-small img {
    width: 60%;
    border-radius: 15px;
    border: 6px solid #fff;
}

/* ICON BUTTON */
.v1-who-icon {
    position: absolute;
    top: 10px;
    left: 10%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: var(--primary-Btn-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 28px;
}

@media (max-width:768px) {
    .v1-who-icon {
        background: #f9f7f5;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .v1-who-title {
        font-size: 32px;
    }

    .v1-who-img-small {
        position: static;
        margin-top: 20px;
        width: 100%;
    }

    .v1-who-icon {
        left: 50%;
        top: -30px;
        width: 100px;
        height: 100px;
        font-size: 38px;
    }

    .v1-who-text {
        max-width: none;
    }

}

@media (max-width:575px) {
    .v1-who-section {
        text-align: center;
        justify-content: center;
    }

    .v1-who-bottom {
        justify-content: center;
        text-align: center;
    }
}

/*----- Who We Are End -----------*/

/*---------- testimonial Start ------------------------------------*/

.sc-testimonial {
    padding: 90px 0;
    background: #fff;
    font-family: Poppins, sans-serif;
}

/* LEFT */
.testi-tag {
    background: #e8f7f0;
    color: #16a34a;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.testi-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin: 15px 0 25px;
}

.quote {
    font-size: 60px;
    color: #16a34a;
    line-height: 0.5;
}

.testi-slide {
    display: none;
    padding: 0 60px;
}

.testi-slide.active {
    display: block;
}

.testi-slide p {
    color: #666;
    line-height: 1.8;
    margin: 10px 0;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}

.testi-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testi-user h5 {
    margin: 0;
    font-size: 16px;
    color: #0B2D4F;
}

.testi-user span {
    font-size: 13px;
    color: #888;
}

/* IMAGE */
.testi-img-wrap {
    position: relative;
    text-align: right;
}

.testi-img {
    width: 100%;
    border-radius: 20px;
}

.rating-box {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: #fff;
    padding: 15px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.rating-box h3 {
    color: #16a34a;
    margin: 0;
}

.rating-box span {
    color: #f59e0b;
}

.rating-box i {
    background: conic-gradient(#4285F4 0deg 90deg,
            #34A853 90deg 180deg,
            #FBBC05 180deg 270deg,
            #EA4335 270deg 360deg);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* MOBILE - HIDE IMAGE */
@media(max-width:768px) {
    .testi-img-wrap {
        display: none;
    }

    .testi-content h2 {
        font-size: 24px;
        text-align: center;
    }

    .testi-content {
        text-align: center;
    }

    .testi-user {
        justify-content: center;
    }

    .testi-slide {
        padding: 0;
    }
}

.testi-slide {
    position: relative;
}

.testi-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.testi-nav span {
    width: 42px;
    height: 42px;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #fff;
    transition: .3s;
    pointer-events: auto;
}

.dark-mode .testi-nav span {
    background: #000;
    color: #FFF !important;
    border: 1px solid #ddd;
}

.testi-nav span:hover {
    background: var(--primary-Btn-color);
    color: #000;
}

@media(max-width:768px) {
    .testi-nav {
        top: 90%;
    }
}

/*---------- testionial END ------------------------------------*/

/*---------- Our Staff Section Start ----------*/

.ss-our-team-section {
    background: #f9f7f5;
}

/* TITLE */
.ss-our-team-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #111;
}

.ss-our-team-subtext {
    color: #777;
    max-width: 600px;
    margin: 0 auto;
}

/* CARD */
.ss-our-team-card {
    background: #fff;
    border-radius: 15px;
    text-align: center;
    padding-bottom: 20px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.ss-our-team-card:hover {
    transform: translateY(-8px);
}

/* TOP */
.ss-our-team-top {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 20px;
    height: 125px;
}

.ss-our-team-top.alt {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.ss-our-team-top h5 {
    margin: 0;
    font-weight: 600;
}

.ss-our-team-top span {
    font-size: 13px;
}

/* IMAGE */
.ss-our-team-img {
    width: 90px;
    height: 90px;
    margin: -45px auto 10px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
}

.ss-our-team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.ss-our-team-content p {
    font-size: 14px;
    color: #666;
    padding: 0 15px;
}

/* RESPONSIVE */
@media (max-width:992px) {
    .ss-our-team-title {
        font-size: 30px;
    }
}

@media (max-width:768px) {
    .ss-our-team-card {
        margin-bottom: 20px;
    }
}

/* SOCIAL WRAPPER */
.ss-our-team-social {
    display: flex;
    justify-content: center;
    gap: 12px;

    opacity: 0;
    transform: translateY(30px);
    transition: 0.3s;
}

/* ICON */
.ss-our-team-social a {
    width: 35px;
    height: 35px;
    background: #f1f1f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--Highlight-Color);
    font-size: 14px;
    transition: 0.3s;
}

/* HOVER ICON */
.ss-our-team-social a:hover {
    background: var(--Highlight-Color);
    color: #fff;
}

.dark-mode .ss-our-team-social a:hover {
    color: #FFF;
}

/* SHOW ON CARD HOVER */
.ss-our-team-card:hover .ss-our-team-social {
    opacity: 1;
    transform: translateY(0);
}

/*---------- Our Staff section End ------------*/

/*============= About.HTML End =================*/

/*============= Service Detail.HTML Start =========*/

.ss-service-detail {
    background: #f8f9fb;
}

.ss-sd--img img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.ss-sd--content {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Heading */
.ss-sd--heading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ss-sd--heading h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #2c3e50;
}

.ss-sd--dot {
    width: 10px;
    height: 10px;
    background: #6BCB77;
    /* calm green */
    border-radius: 50%;
}

/* Steps */
.ss-sd--steps li {
    display: flex;
    gap: 10px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.dark-mode .ss-sd--steps strong {
    color: #FFF;
}

.ss-sd--steps li:last-child {
    border-bottom: none;
}

.ss-sd--arrow {
    color: #6BCB77;
    font-size: 18px;
    font-weight: bold;
    margin-top: 3px;
}

.ss-sd--steps p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.ss-sd--steps strong {
    color: #2c3e50;
}

.ss-sd--desc {
    background: #ffffff;
}

/* LEFT */
.ss-sd--title {
    font-size: 32px;
    font-weight: 600;
    color: #2c3e50;
}

.ss-sd--text p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.ss-sd--points li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    color: #555;
}

.ss-sd--points span {
    color: #6BCB77;
    font-weight: bold;
}

/* RIGHT CARD */
.ss-sd--help {
    background: linear-gradient(var(--primary-color), var(--secondary-color));
    padding: 80px 20px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
}

.ss-sd--help h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.ss-sd--icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

.ss-sd--icon i {
    font-size: 24px;
    color: #fff;
}

.ss-sd--icon:hover {
    background: var(--primary-Btn-color);
}

.ss-sd--number {
    font-size: 18px;
    font-weight: 600;
}

@media (max-width:768px) {
    .dis-no {
        display: none;
    }
}

/*------ Before & After Section Start ---------*/

/* SECTION */
.sd-af-bf-section {
    background: #f8f9fb;
}

/* HEADER */
.sd-af-bf-title {
    font-size: 32px;
    font-weight: 600;
    color: #2c3e50;
}

.sd-af-bf-subtitle {
    color: #666;
    max-width: 600px;
    margin: 10px auto 0;
}

/* WRAPPER */
.sd-af-bf-wrapper {
    display: flex;
    justify-content: center;
}

/* IMAGE CONTAINER */
.sd-af-bf-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
}

/* IMAGES */
.sd-af-bf-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.sd-af-bf-overlay {
    clip-path: inset(0 50% 0 0);
}

/* LABELS */
.sd-af-bf-label {
    position: absolute;
    top: 20px;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 20px;
    color: #fff;
    z-index: 2;
}

.sd-af-bf-after {
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
}

.sd-af-bf-before {
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
}

/* SLIDER */
.sd-af-bf-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    z-index: 3;
}

.sd-af-bf-line {
    width: 2px;
    height: 100%;
    background: #D4AF37;
}

.sd-af-bf-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: #D4AF37;
    border-radius: 50%;
    cursor: ew-resize;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .sd-af-bf-container {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .sd-af-bf-container {
        height: 300px;
    }

    .sd-af-bf-title {
        font-size: 24px;
    }
}

/*------ Before & After Section End - ---------*/

/*--------- FAQ Section Start ---------------*/
/* SECTION */
.ss-sd-faq-section {
    background: #f8f9fb;
}

/* TITLE */
.ss-sd-faq-title {
    font-size: 32px;
    font-weight: 600;
    color: #2c3e50;
}

.ss-sd-faq-subtitle {
    color: #666;
    max-width: 600px;
    margin: 10px auto 0;
}

/* WRAPPER */
.ss-sd-faq-wrapper {
    max-width: 900px;
    margin: auto;
}

/* ITEM */
.ss-sd-faq-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 15px;
    padding: 20px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

/* ACTIVE */
.ss-sd-faq-item.active {
    border: 1px solid #6BCB77;
    box-shadow: 0 10px 25px rgba(107, 203, 119, 0.1);
}

/* QUESTION */
.ss-sd-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 10px;
}

.ss-sd-faq-question span {
    font-weight: 600;
    color: #6BCB77;
}

.ss-sd-faq-question h4 {
    flex: 1;
    margin: 0;
    font-size: 18px;
    color: #2c3e50;
}

/* ICON */
.ss-sd-faq-icon {
    width: 35px;
    height: 35px;
    background: #eaf7ee;
    color: #6BCB77;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
}

/* ANSWER */
.ss-sd-faq-answer {
    margin-top: 15px;
    display: none;
}

.ss-sd-faq-item.active .ss-sd-faq-answer {
    display: block;
}

.ss-sd-faq-answer p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .ss-sd-faq-title {
        font-size: 24px;
    }

    .ss-sd-faq-question h4 {
        font-size: 16px;
    }
}

/*--------- FAQ Section End -----------------*/

/*============= Service Detsil.HTML End ===========*/

/*============= Blog.HTML Start==================*/

/* SECTION */
.ss-blog-section {
    background: #f8f9fb;
}

/* HEADER */
.ss-blog-title {
    font-size: 32px;
    font-weight: 600;
    color: #2c3e50;
}

.ss-blog-subtitle {
    color: #666;
    max-width: 600px;
    margin: 10px auto;
}

/* FILTERS */
.ss-blog-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ss-blog-search,
.ss-blog-category {
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
}

.dark-mode .ss-blog-search,
.dark-mode .ss-blog-category {
    background: #040510;
    color: #FFF;
}

/* CARD */
.ss-blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.ss-blog-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.ss-blog-img {
    position: relative;
    overflow: hidden;
}

.ss-blog-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* INTERACTIVE BUTTON */
.ss-blog-action {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #6BCB77;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.ss-blog-action:hover {
    background: #57b865;
}

/* CONTENT */
.ss-blog-content {
    padding: 20px;
}

.ss-blog-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.ss-blog-content p {
    font-size: 14px;
    color: #666;
}

.ss-blog-content a {
    display: inline-block;
    margin-top: 10px;
    color: #6BCB77;
    text-decoration: none;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .ss-blog-title {
        font-size: 24px;
    }
}

/* IMAGE */
.ss-blog-img {
    position: relative;
    overflow: hidden;
}

.ss-blog-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.4s;
}

/* OVERLAY */
.ss-blog-overlay {
    position: absolute;
    inset: 0;
    background: rgba(107, 203, 119, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

/* BUTTON */
.ss-blog-btn {
    background: #fff;
    color: #2c3e50;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
}

.dark-mode .ss-blog-btn {
    color: #000 !important;
}

/* HOVER EFFECT */
.ss-blog-card:hover img {
    transform: scale(1.1);
}

.ss-blog-card:hover .ss-blog-overlay {
    opacity: 1;
}

/*============= Blog.HTML END ===================*/

/*============= BLOG DETAILS START ==============*/
.ss-bd-hero {
    padding: 80px 20px;
    background: #f9f9f9;
}

.ss-bd-hero .container {
    max-width: 1100px;
    margin: 0 auto;
}


/* TITLE */
.ss-bd-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* DESCRIPTION */
.ss-bd-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* IMAGE */
.ss-bd-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.ss-bd-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .ss-bd-title {
        font-size: 28px;
    }

    .ss-bd-desc {
        font-size: 14px;
    }

    .ss-bd-image img {
        height: 250px;
    }
}

/*--- Content Section Start ---*/
.ss-bd-content {
    padding: 80px 20px;
    background: #ffffff;
}

.ss-bd-content .container {
    max-width: 1100px;
    margin: 0 auto;
}

/* TITLE */
.ss-bd-content-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

/* TEXT */
.ss-bd-content-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* IMAGE GRID */
.ss-bd-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.ss-bd-img {
    border-radius: 14px;
    overflow: hidden;
}

.ss-bd-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .ss-bd-image-grid {
        grid-template-columns: 1fr;
    }

    .ss-bd-img img {
        height: 220px;
    }

    .ss-bd-content-title {
        font-size: 24px;
    }
}

/*--- Content Section End -----*/

/*--- Related Blog Strat ---*/
.ss-bd-related {
    padding: 80px 20px;
    background: #f9f9f9;
}

.ss-bd-related .container {
    max-width: 1100px;
    margin: 0 auto;
}

/* TOP */
.ss-bd-related-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.ss-bd-related-title {
    font-size: 28px;
    color: #1a1a1a;
}

.ss-bd-related-link {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--Highlight-Color);
    text-decoration: none;
}

.ss-bd-related-link:hover {
    color: #D4AF37;
}

/* GRID */
.ss-bd-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* RESPONSIVE */
@media (max-width: 575px) {
    .ss-bd-related-grid {
        grid-template-columns: 1fr;
    }

    .ss-bd-related-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/*--- RELATED BLOGS End ----*/
/*============= BLOG DETAILS END ================*/

/*============= CONTACT.HTML START ==============*/

.ss-contact-section {
    background: #f9f7f5;
}

/* BOX */
.ss-contact-box {
    background: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.ss-contact-box:hover {
    transform: translateY(-5px);
}

/* ICON */
.ss-contact-box i {
    font-size: 24px;
    color: #D4AF37;
    margin-bottom: 10px;
}

/* TEXT */
.ss-contact-box h6 {
    font-weight: 600;
}

.ss-contact-box p {
    font-size: 14px;
    color: #777;
}

/* MAP */
.ss-contact-map iframe {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    border: 0;
}

/* FORM */
.ss-contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ss-contact-form h2 {
    font-family: 'Playfair Display', serif;
    color: #111;
}

.ss-contact-form p {
    color: #777;
    margin-bottom: 20px;
}

/* INPUT */
.ss-contact-form input,
.ss-contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
}

.ss-contact-form input:focus,
.ss-contact-form textarea:focus {
    border-color: #D4AF37;
}

.dark-mode .ss-contact-form input,
.dark-mode .ss-contact-form textarea {
    background-color: #040510;
    color: #FFF;
}

/* BUTTON */
.ss-contact-form button {
    width: 100%;
    padding: 12px;
    border: none;
    background: var(--primary-Btn-color);
    color: #000;
    border-radius: 30px;
    transition: 0.3s;
}

.ss-contact-form button:hover {
    background: #000;
    color: #FFF;
}

.dark-mode .ss-contact-map iframe {
    filter: invert(99999);
}

/* MOBILE */
@media (max-width:768px) {
    .ss-contact-map iframe {
        height: 180px;
    }
}

/*================= CONTACT.HTML END ===============*/

/*------------ CTA SECTION ------------*/
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 20px 0;
}

/* TITLE */
.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 20px;
}

/* TEXT */
.cta-text {
    color: #ddd;
    max-width: 500px;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* BUTTON */
.cta-btn {
    display: inline-block;
    background: #D4AF37;
    color: #000;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #fff;
    color: #6B0F1A;
}

/* IMAGE */
.cta-img img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cta-title {
        font-size: 28px;
    }

    .cta-section {
        text-align: center;
        padding: 40px 20px;
    }

    .cta-text {
        margin-left: auto;
        margin-right: auto;
    }
}