:root {
    --primary-color: #5b7cff;
    --color-blue: #0d6efd;
    --secondary-color: #a855f7;
    --background-color: #0b0f2f;
    --light-bg: #edebeb;
    --Heading-Color: #fff;
    --Highlight-Color: #ff3d00;
    --Text-color: #555;
    --navbar-color: #FFF;
    --navbar-text-color: #000;
    --footer-color: #FFF;
    --footer-bottom-color: #101023;
    --footer-heading-color: #000;
    --footer-text-color: #282828;
    --white-color: #fff;
    --primary-Btn-color: linear-gradient(45deg, #5b7cff, #a855f7);
    --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 {
    letter-spacing: 1px;
    font-size: 15px;
    color: var(--Highlight-Color);
}

.highlite-des {
    color: var(--Highlight-Color);
    letter-spacing: 1px;
}

.highlite {
    color: var(--Highlight-Color);
}

.dark-mode .highlite {
    color: var(--Highlight-Color) !important;
}

@media (max-width:768px) {
    .highlite-des {
        color: inherit;
    }

}

.hyper-link {
    text-decoration: none;
    color: inherit;
}

/*-- Buttons Start --*/

.primary-btn {
    background: var(--primary-Btn-color);
    border: none;
    padding: 14px 40px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
}

.primary-btn:hover {
    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: 100px;
}

/* center menu */
.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}



/* hover animation */

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--secondary-color);
    transition: 0.4s;
}

.nav-link:hover::after {
    width: 100%;
}

/* 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: linear-gradient(45deg, #5b7cff, #a855f7);
    border: none;
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    transition: 0.3s;
    text-decoration: none;
}

.login-btn:hover {
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* 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: linear-gradient(90deg, #5b7cff, #a855f7);
    transition: 0.35s;
}

.nav-link:hover::after {
    width: 100%;
}

/* ACTIVE NAV */

.nav-link.active {
    color: var(--secondary-color) !important;
}

.nav-link.active::after {
    width: 90%;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--navbar-text-color);
    margin: 0 14px;
    font-weight: 500;
    position: relative;
    padding-bottom: 6px;
}


.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    color: var(--navbar-text-color);
}

.login-btn {
    background: linear-gradient(45deg, #5b7cff, #a855f7);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* 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 .brand-logo {
    filter: invert(1);
}

.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(--secondary-color);
    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 .footer-logo {
    filter: invert(1);
}

.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 !important;
}

.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-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 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-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 --------*/
.hero-section {
    padding: 120px 20px;
    background: url('../img/Hero-Bg.png')fixed bottom / cover no-repeat;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* dotted background 

.hero-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(#dcdcdc 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.6;
}
*/
/* hero content */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
}

/* title */

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

/* gradient text */

.hero-title span {
    background: linear-gradient(90deg, #6a5cff, #9f6bff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* subtitle */

.hero-subtitle {
    margin-top: 20px;
    font-size: 18px;
    color: #6b7280;
}

/* button */

.hero-btn {
    margin-top: 30px;
    background: linear-gradient(90deg, #6a5cff, #9f6bff);
    border: none;
    padding: 14px 40px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* small text */

.hero-small {
    margin-top: 15px;
    color: #9ca3af;
    font-size: 14px;
}

/* responsive */

@media (max-width:768px) {
    .hero-section {
        background: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-section {
        padding: 80px 20px;
    }

}

@media (max-width:575px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}

/*---------- V1 Hero  Section End --------*/

/*---------- V1 About Us  Section Start --------*/
.v1-about-section {
    background: var(--light-bg);
}

/* Image */

.v1-about-img {
    border-radius: 6px;
    height: 420px;
    object-fit: cover;
}

/* Content */

.v1-about-subtitle {
    font-size: 20px;
    letter-spacing: 3px;
    color: #444;
    text-transform: uppercase;
}

.v1-about-subtitle span {
    color: #d65c2e;
}

.v1-about-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.v1-about-text {
    font-size: 18px;
    color: #666;
}

.v1-about-desc {
    color: #777;
    line-height: 1.7;
    margin-bottom: 15px;
}

.v1-about-highlight {
    border-left: 4px solid #d65c2e;
    padding-left: 15px;
    color: #666;
    margin-top: 20px;
}

/* Tablet */

@media (max-width:991px) {

    .v1-about-img {
        height: 350px;
    }

    .v1-about-title {
        font-size: 30px;
    }

    .v1-about-text {
        font-size: 16px;
    }

}

/* Mobile */

@media (max-width:576px) {

    .v1-about-img {
        height: 250px;
    }

    .v1-about-title {
        font-size: 26px;
    }

    .v1-about-content {
        text-align: center;
    }

    .v1-about-highlight {
        border-left: none;
        border-top: 3px solid #d65c2e;
        padding-top: 10px;
    }

}

/*---------- V1 About Us  Section End --------*/

/*---------- V1 Event  Section Start --------*/

.event-section {
    background: #FFF;

}

.event-title {
    font-size: 38px;
    font-weight: 700;
}

.event-subtitle {
    color: #777;
    margin-top: 10px;
}

.event-card {
    position: relative;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* ICON FRONT */

.event-icon {
    position: absolute;
    left: 50%;
    top: 170px;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #2f6df5;
    border: 6px solid white;
    z-index: 2;
}

/* CONTENT */

.event-content {
    padding: 40px 25px 25px;
    text-align: center;
}

/* Image */

.event-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Title */

.event-content h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* Text */

.event-content p {
    font-size: 14px;
    color: #777;
}

.event-date {
    color: blue !important;
}

.dark-mode .event-date {
    color: blue !important;
}

@media (max-width:768px) {
    .event-title {
        font-size: 30px
    }
}

@media (max-width:575px) {
    .event-title {
        font-size: 25px;
    }

    .event-subtitle {
        font-size: 16px;
    }
}

/*---------- V1 Event  Section End --------*/

/*---------- Staff Pick Section Start -----*/
.staff-pick {
    padding: 90px 10px;
    background: var(--light-bg);
}

.staff-pick-title {
    font-weight: 600;
    font-size: 35px;
}

.staff-pick-text {
    font-size: 16px;
    color: #444;
}

.staff-card {
    transition: 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.staff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.staff-card img {
    height: 250px;
    object-fit: cover;
}

@media (max-width:768px) {
    .staff-pick-title {
        font-size: 30px;
    }
}

@media (max-width:575px) {
    .staff-pick-title {
        font-size: 25px;
    }
}

/*---------- Staff Pick Section End -------*/

/*---------- V1 Why Choose Us  Section Start --------*/

.v1-why-section {
    padding: 90px 0;
    background: #FFF;
}

/* LEFT */

.v1-why-subtitle {
    color: #999;
    font-size: 14px;
    margin-bottom: 10px;
}

.v1-why-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.v1-why-text {
    color: #666;
    max-width: 450px;
    margin-bottom: 25px;
}

.v1-why-buttons {
    display: flex;
    gap: 20px;
}

/* BUTTONS */

.v1-why-btn {
    background: #ff4d00;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
}

.v1-why-btn-outline {
    border-bottom: 2px solid #ff4d00;
    text-decoration: none;
    color: #333;
    padding-bottom: 3px;
}

/* FEATURE CARDS */

.v1-why-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid #ddd;
    transition: .4s;
}

.v1-why-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}

.v1-why-card h6 {
    font-weight: 600;
    margin-bottom: 5px;
}

.v1-why-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* ICON */

.v1-why-icon {
    font-size: 28px;
    color: #ffb400;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .v1-why-title {
        font-size: 36px;
    }

    .v1-why-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .v1-why-text {
        font-size: 16px;
    }

}

@media (max-width:575px) {
    .v1-why-title {
        font-size: 25px;
    }

}

/*---------- V1 Why Choose Us  Section End --------*/

/*============= Index.HTML END  =============*/

/*============= Home.HTML Start =============*/

/*-------- V2 Hero Section Start ------*/
.v2-hero-section {
    padding: 90px 0;
    background: var(--light-bg);
}

.v2-hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
}

.v2-hero-desc {
    margin-top: 20px;
    color: #666;
    max-width: 480px;
}

.v2-hero-btn {
    margin-top: 30px;
}


.v2-card-box {
    position: relative;
}

.v2-car-img {
    border-radius: 18px;
    width: 100%;
}

.v2-stat-card {
    position: absolute;
    background: #0d1b2a;
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    font-weight: 600;
    transition: .3s;
}

.v2-stat3:hover {
    transform: translateX(-5px);
}

.v2-stat1:hover {
    transform: translateY(-5px);
}

.v2-stat2:hover {
    transform: translateY(5px);
}

.v2-stat1 {
    text-align: center;
    top: -30px;
    right: -30px;
}

.v2-stat2 {
    text-align: center;
    bottom: -50px;
    right: -30px;
}

.v2-stat3 {
    text-align: center;
    bottom: -40px;
    left: -40px;
}

.v2-stat-card span {
    font-size: 22px;
    color: #ff4d30;
    display: block;
}

@media(max-width:991px) {
    .v2-hero-section {
        padding: 60px 0 30px 0;
    }

    .v2-hero-title {
        font-size: 40px;
    }

    .v2-card-box {
        margin-top: 50px;
    }

    .v2-stat-card {
        position: static;
        margin-top: -30px;
        display: inline-block;
    }

    .v2-hero-section {
        text-align: center;
    }

    .v2-hero-btn {
        text-align: center;
        justify-content: center;
    }

    .v2-hero-desc {
        text-align: center;
        margin: auto;
        margin-top: 20px;
    }

}

@media (max-width:575px) {
    .v2-hero-section {
        padding: 30px 0;
    }

    .dis-non {
        display: none;
    }

    .v2-hero-title {
        font-size: 30px;
    }

    .v2-stat-cards {
        display: none;
    }

}

/*-------- V2 Hero Section End --------*/

/*-------- V2 About Us Section Start ---*/
.v2-about-section {
    padding: 90px 0;
    background: white;
    color: #000;
}

.v2-about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
}

.v2-about-card {
    position: relative;
    border: 3px solid var(--Highlight-Color);
    border-radius: 15px;
    overflow: hidden;
}

.v2-about-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.v2-about-card span {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff7a00;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
}

.v2-exp-box {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--Highlight-Color);
    color: #FFF;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
}

.v2-about-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}


.v2-about-desc {
    color: #555;
    margin-bottom: 30px;
    max-width: 500px;
}

.v2-about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.v2-feature-item h6 {
    color: var(--Highlight-Color);
    margin-bottom: 5px;
}

.v2-feature-item p {
    font-size: 14px;
    color: #555;
}

@media(max-width:991px) {
    .v2-about-section {
        text-align: center;
    }

    .v2-about-desc {
        text-align: center;
        margin: auto;
        margin-bottom: 30px;
    }

    .v2-about-grid {
        margin-bottom: 50px;
    }

    .v2-about-title {
        font-size: 32px;
    }

    .border-style {
        border-bottom: 2px solid var(--Highlight-Color);
    }

}

@media (max-width:575px) {
    .v2-about-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        position: relative;
    }

    .v2-exp-box {
        bottom: -45px;
    }

    .v2-about-title {
        margin-top: 25px;
    }
}

/*-------- V2 About Us Section End -----*/

/*-------- V2 What We Do Start ---------*/
.v2-what-section {
    padding: 90px 0;
    background: var(--light-bg);
}

.v2-what-header h2 {
    color: #000;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.v2-what-header p {
    color: #555;
    margin-bottom: 60px;
}

.v2-what-grid .col-lg-4 {
    height: 280px;
}

.v2-img-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Box Styles */

.v2-box {
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.v2-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.v2-box p {
    color: #555;
}

/* Highlight Card */

.v2-box-highlight {
    background: #FFF;
}

/* Light Card */

.v2-box-light {
    background: #FFF;
    color: #000;
}

.v2-box-light p {
    color: #555;
}

/* Dark Card */

.v2-box-dark {
    background: #FFF;
}

@media(max-width:991px) {

    .v2-what-grid .col-lg-4 {
        height: auto;
    }

    .v2-box {
        padding: 40px 30px;
    }

    .v2-what-header h2 {
        font-size: 30px;
    }
}

@media (max-width:575px) {
    .v2-what-header h2 {
        font-size: 25px;
    }

    .v2-what-header p {
        font-size: 16px;
    }
}

/*-------- V2 What We Do End -----------*/

/*-------- V2 Process Start ------------*/

.v2-process-section {
    padding: 90px 0;
    background: #FFF;
}

.v2-process-header h2 {
    color: #000;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.v2-process-header p {
    color: var(--Text-color);
    margin-bottom: 60px;
}

.v2-process-card {
    background: var(--light-bg);
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s;
    height: 100%;
}

.v2-process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.v2-process-number {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    background: var(--primary-Btn-color);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.v2-process-card h4 {
    color: #000;
    margin-bottom: 10px;
}

.v2-process-card p {
    color: var(--Text-color);
    font-size: 14px;
}

@media(max-width:991px) {

    .v2-process-card {
        margin-bottom: 30px;
    }

    .v2-process-header h2 {
        font-size: 30px;
    }

    .v2-process-header p {
        font-size: 16px;
    }

}

@media (max-width:575px) {
    .v2-process-header h2 {
        font-size: 25px;
    }
}

/*-------- 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: 16px;
    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 ------*/
.em-title {
    font-weight: 700;
    font-size: 40px;
}

.em-subtitle {
    color: #777;
}

.em-card {
    background: #f5f5f5;
    padding-bottom: 30px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    height: 100%;
}


.em-mission-bg {
    background: linear-gradient(135deg, #3aa0ff, #1d6ed8);
}

.em-vision-bg {
    background: linear-gradient(135deg, #ff6a6a, #e63b3b);
}

.em-values-bg {
    background: linear-gradient(135deg, #ffb347, #ff7e00);
}


.em-card p {
    padding: 0 25px;
    color: #666;
    font-size: 15px;
}

/* Card Hover */
.em-card {
    background: #f5f5f5;
    padding-bottom: 30px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.em-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Top image zoom */
.em-card-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    transition: all 0.4s ease;
}

.em-card:hover .em-card-img {
    transform: scale(1.05);
}

/* Icon animation */
.em-icon {
    width: 80px;
    height: 80px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: -40px auto 15px;
    transition: all 0.4s ease;
}

.em-card:hover .em-icon {
    background: #000;
    color: #fff;
    transform: rotate(8deg) scale(1.1);
}

@media (max-width:575px) {
    .em-title {
        font-size: 28px;
    }
}

/*----- Our Mission & Vission END ------*/

/*----- Who We Are Start ---------*/
.em-who {
    padding: 50px 0;
    background: var(--light-bg);
}

.em-who-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}

.em-who-feature-box {
    background: #f8f9fa;
    border-radius: 10px;
    transition: 0.3s;
}

.em-who-feature-box:hover {
    background: #111;
    color: #fff;
    transform: translateY(-5px);
}

.em-who-feature-box:hover p {
    color: #ccc !important;
}

@media (max-width:575px) {
    .em-who {
        text-align: center;
    }
}

/*----- Who We Are End -----------*/

/*---------- testimonial Start ------------------------------------*/
.sc-testimonial {
    padding: 90px 0;
    background: #fff;

}

/* LEFT */
.testi-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0B2D4F;
    margin: 15px 0 25px;
}

.quote {
    font-size: 60px;
    color: var(--Highlight-Color);
    line-height: 0.5;
    font-family: Poppins, sans-serif;
}

.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: var(--Highlight-Color) !important;
    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: 30px;
        text-align: center;
    }

    .testi-content {
        text-align: center;
    }

    .testi-user {
        justify-content: center;
    }

    .testi-slide {
        padding: 0;
    }
}

@media (max-width:575px) {
    .testi-content h2 {
        font-size: 25px;
    }
}

.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;
}

.testi-nav span:hover {
    background: var(--color-blue);
    color: #fff;
}

.dark-mode .testi-nav span {
    background: #000;
    color: #FFF;
}

.dark-mode .testi-nav span:hover {
    background: var(--color-blue);
    color: var(--white-color);
}

@media(max-width:768px) {
    .testi-nav {
        top: 90%;
    }
}

/*---------- testionial END ------------------------------------*/

/*---------- Our Staff Section Start ----------*/
.our-staff {
    padding: 90px 0;
    background: var(--light-bg);
}

.our-staff-title {
    font-size: 35px;
    font-weight: 600;
}

.our-staff-text {
    font-size: 16px;
    color: #444;
}

/* Card */
.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;

}

/* Image */
.team-card img {
    width: 100%;
    object-fit: cover;
    display: block;
    height: 400px;
}

/* Bottom overlay */

/* Text */
.team-info h6 {
    font-weight: 600;
}

.team-info small {
    color: #777;
}

/* Yellow icon box */
.team-icon {
    width: 40px;
    height: 40px;
    background: #f5a623;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #000;
}

/* Hover effect 🔥 */
.team-card:hover img {
    transform: scale(1.05);
    transition: 0.4s;
}


/* Social Box (hidden initially) */
.social-box {
    position: absolute;
    bottom: -80px;
    /* hidden below */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    transition: 0.4s ease;
    z-index: 2;
}

/* Icons */
.social-box i {
    font-size: 22px;
}

.social-box a {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-box a:hover {
    color: var(--Highlight-Color) !important;
}

/* SHOW ON HOVER */
.team-card:hover .social-box {
    bottom: 80px;
    /* slide up */
}

/* Bottom Info */
.team-info {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: #fff;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    z-index: 3;
}

/* Mobile */
@media (max-width: 576px) {
    .team-card img {
        height: 280px;
    }

    .our-staff-title {
        font-size: 25px;
    }
}

/*---------- Our Staff section End ------------*/

/*============= About.HTML End =================*/

/*============= Shop.HTML Start ================*/

.shop-section {

    padding: 90px 10px;
    background: var(--light-bg);
}

/* Titles */
.shop-title {
    font-weight: 700;
    letter-spacing: 2px;
}

.shop-subtitle {
    color: #777;
    margin: 15px 0 30px;
}

/* Badges */
.badge-sale,
.badge-new {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 12px;
    padding: 3px 8px;
    color: #fff;
    font-weight: 600;
}

.badge-sale {
    background: #f4a100;
}

.badge-new {
    background: #ff6a00;
    left: 10px;
}

/* Info */
.product-info {
    margin-top: 15px;
}

.product-info h6 {
    font-weight: 600;
}

/* Stars */
.stars {
    color: #ff6a00;
}

/* Price */
.price {
    color: #ff6a00;
    font-weight: 600;
}

.price span {
    text-decoration: line-through;
    color: #999;
    margin-left: 8px;
}

/* Swiper */
.swiper {
    padding: 20px 0;
}

.swiper-button-next,
.swiper-button-prev {
    color: #ff6a00;
}

/* Premium Card */
.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    transition: 0.4s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

/* Image */
.product-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.product-img img {
    width: 100%;
    transition: 0.4s;
    height: 270px;
}

.product-card:hover img {
    transform: scale(1.08);
}

/* Hover icons */
.hover-icons {
    position: absolute;
    bottom: -60px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    transition: 0.4s;
}

.product-card:hover .hover-icons {
    bottom: 15px;
}

.hover-icons i {
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.hover-icons i:hover {
    background: #ff6a00;
    color: #fff;
}

.dark-mode .hover-icons i {
    background: #000;
    color: #fff;
}

.dark-mode .hover-icons i:hover {
    color: var(--Highlight-Color);
}

/* Tabs premium */
.shop-tabs .sh-nav-link {
    font-weight: 600;
    color: #FFF;
    margin: 0 15px;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    background: var(--primary-Btn-color);
    padding: 10px 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.dark-mode .shop-tabs .sh-nav-link {
    background: var(--primary-Btn-color);
    color: #FFF !important;
}

.shop-tabs .sh-nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.shop-tabs .sh-nav-link.active {
    color: #000;
    background: var(--Highlight-Color);
}

/* WRAPPER */
.shop-slider-wrapper {
    position: relative;
    padding: 0 70px;
}

/* CUSTOM ARROWS */
.custom-prev,
.custom-next {
    position: absolute;
    top: 50%;
    /* KEY FIX */
    transform: translateY(-50%);
    /* PERFECT CENTER */

    z-index: 20;

    width: 55px;
    height: 55px;
    border-radius: 50%;

    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transition: all 0.3s ease;
}

/* LEFT / RIGHT POSITION */
.custom-prev {
    left: -20px;
    /* move slightly outside */
}

.custom-next {
    right: -20px;
}

/* ARROW ICON (clean) */
.custom-prev::before,
.custom-next::before {
    content: '';
    width: 10px;
    height: 10px;
    border: solid #ff6a00;
    border-width: 0 3px 3px 0;
    display: inline-block;
}

/* direction */
.custom-prev::before {
    transform: rotate(135deg);
}

.custom-next::before {
    transform: rotate(-45deg);
}

/* HOVER */
.custom-prev:hover,
.custom-next:hover {
    background: #ff6a00;
    transform: translateY(-50%) scale(1.1);
}

.custom-prev:hover::before,
.custom-next:hover::before {
    border-color: #fff;
}

/* Fix swiper default */
.swiper {
    padding: 20px 0;
}


/*----------- Responsive -------------*/
/* MOBILE FIX */
@media (max-width: 575px) {

    .shop-slider-wrapper {
        padding: 0 20px;
        /* less space */
    }

    .custom-prev,
    .custom-next {
        width: 45px;
        height: 45px;
        top: 55%;
        /* slightly lower for visual balance */
    }

    /* move arrows OUTSIDE screen edges */
    .custom-prev {
        left: -17px;
    }

    .custom-next {
        right: -17px;
    }

}

/*============= Shop.HTML END ==================*/

/*============= Shop Detail.HTML Start =========*/
.shop-detail {
    background: var(--light-bg);
}

.sd-product-card {
    border-radius: 16px;
    padding: 20px;
}

.sd-product-card-images {
    padding: 20px 10px;
    background: #FFF;
    border-radius: 10px;
    transition: .4s;
}

.sd-product-card-images:hover .sd-main-img {
    transform: scale(1.02);
}

.sd-main-img {
    border-radius: 12px;
    height: 350px;
    background-size: contain;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: auto;
    transition: .4s;
}

.sd-thumb-img {
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.3s;
    margin: auto;
    text-align: center;
    height: 110px;
    margin-top: 20px;
}

.sd-thumb-img:hover,
.sd-thumb-active {
    border-color: #6B0F1A;
}

.sd-category {
    color: #6c757d;
    font-size: 14px;
}

.sd-stock {
    background: #d1f2e3;
    color: #198754;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.sd-price {
    font-size: 22px;
    font-weight: 600;
    color: #6B0F1A;
}

.sd-old-price {
    text-decoration: line-through;
    color: #aaa;
    margin-left: 10px;
}

.sd-format-btn {
    border: 1px solid #ddd;
    padding: 6px 14px;
    border-radius: 20px;
    background: transparent;
    transition: 0.3s;
}

.sd-format-btn.active,
.sd-format-btn:hover {
    background: #6B0F1A;
    color: #fff;
    border-color: #6B0F1A;
}

.sd-qty-box {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    width: fit-content;
}

.sd-qty-box button {
    border: none;
    background: #f1f1f1;
    padding: 6px 12px;
}

.dark-mode .sd-qty-box button {
    background: #000;
    color: #FFF;
}

.dark-mode .sd-qty-box input {
    background: #0b0f2f;
    color: #FFF;
}

.sd-qty-box input {
    width: 40px;
    text-align: center;
    border: none;
}

.dark-mode .sd-format-btn {
    color: #FFF;
    background: #171718;
}

.dark-mode .sd-format-btn.active,
.dark-mode .sd-format-btn:hover {
    background: #6B0F1A;
    color: #fff;
    border-color: #6B0F1A;
}

@media (max-width:575px) {
    .sd-product-card {
        text-align: center;
    }

    .sd-format-btn {
        margin-top: 15px;
        margin-right: 10px;
    }

    .sd-qty-box {
        text-align: center;
        margin: auto;
        margin-top: 10px;
    }

    .shop-detail-buttons-group {
        gap: 20px;
    }
}

/* MOBILE GAP FIX */
@media (max-width: 575px) {

    .sd-review-top .col-md-6:first-child {
        margin-bottom: 30px;
        /* space between rating + form */
    }

    .sd-review-form {
        margin-left: 0;
        /* remove desktop alignment */
        margin-top: 10px;
    }

}

/* BUTTON GROUP */
.shop-detail-buttons-group {
    display: flex;
    gap: 10px;
}

/* MOBILE FIX */
@media (max-width: 575px) {

    .shop-detail-buttons-group {
        flex-direction: row;
        /* force row */
    }

    .shop-detail-buttons-group .btn {
        flex: 1;
        /* equal width */
        margin-top: 0 !important;
        /* remove mt3 issue */
    }

}


/*--------- Boook Description Start ------*/

/* DESCRIPTION SECTION */
.sd-desc-section {
    padding: 60px 20px;
    border: 2px solid #000;
    border-radius: 10px;
}

.dark-mode .sd-desc-section {
    border: 2px solid #fff;
}

.sd-desc-wrapper {
    max-width: 800px;
}

/* TITLE */
.sd-desc-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* TEXT */
.sd-desc-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* HIGHLIGHTS */
.sd-desc-highlights {
    margin-top: 25px;
}

.sd-desc-highlights h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.sd-desc-highlights ul {
    padding-left: 18px;
}

.sd-desc-highlights li {
    margin-bottom: 8px;
    color: #444;
}

/* MOBILE */
@media (max-width: 768px) {
    .sd-desc-title {
        font-size: 22px;
    }

    .sd-desc-section {
        padding: 40px 10px;
        border: none;
        border-bottom: 2px solid #000;
        border-radius: none;
    }
}

/*--------- Boook Description End ------*/

/* SECTION */
.sd-review-section {
    padding: 60px 10px;
}

/* TOP */
.sd-review-top {
    border-bottom: 1px solid #000000;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.dark-mode .sd-review-top {
    border-bottom: 1px solid #eee;
}

/* RATING SUMMARY */
.sd-rating-summary h2 {
    font-size: 42px;
    font-weight: 700;
    margin: 0;
}

.sd-rating-summary p {
    color: #777;
    margin: 0;
}

.sd-stars {
    color: #f4b400;
    font-size: 18px;
    margin: 5px 0;
}

/* BARS */
.sd-rating-bars {
    margin-top: 20px;
}

.sd-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.sd-progress {
    flex: 1;
    height: 6px;
    background: #000000;
    border-radius: 10px;
    overflow: hidden;
}

.dark-mode .sd-progress {
    background: #FFF;
}

.sd-progress-fill {
    height: 100%;
    background: #D4AF37;
}

/* WIDTHS */
.sd-w-70 {
    width: 70%;
}

.sd-w-50 {
    width: 50%;
}

.sd-w-25 {
    width: 25%;
}

.sd-w-10 {
    width: 10%;
}

.sd-w-5 {
    width: 5%;
}

/* BUTTON */
.sd-btn-review {
    border: 1px solid #363434;
    padding: 10px 22px;
    border-radius: 30px;
    background: transparent;
    transition: 0.3s;
}

.sd-btn-review:hover {
    background: #6B0F1A;
    color: #fff;
    border-color: #6B0F1A;
}

/* REVIEW LIST */
.sd-review-list h5 {
    margin-bottom: 25px;
}

/* REVIEW ITEM */
.sd-review-item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #363434;
}

/* AVATAR FIX (IMPORTANT) */
.sd-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

/* CONTENT */
.sd-review-content h6 {
    margin: 0;
    font-weight: 600;
}

.sd-review-content p {
    color: #555;
    margin-top: 10px;
}

/* HEADER */
.sd-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sd-review-header span {
    font-size: 13px;
    color: #888;
}

/* REVIEW IMAGES */
.sd-review-images {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.sd-review-images img {
    width: 70px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .sd-review-item {
        flex-direction: column;
    }

    .sd-review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .sd-avatar {
        width: 50px;
        height: 50px;
    }

}

/* FORM */
.sd-review-form {
    max-width: 420px;
    margin-left: auto;
    border: 2px solid #000;
    padding: 20px 15px;
    border-radius: 10px;
}

.dark-mode .sd-review-form {
    border: 2px solid #FFF;
}

.sd-review-form h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.sd-form-group {
    margin-bottom: 15px;
}

.sd-form-group label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

/* INPUT */
.sd-input {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 12px;
    outline: none;
    transition: 0.3s;
}

.sd-input:focus {
    border-color: #6B0F1A;
}

/* BUTTON */
.sd-submit-btn {
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    border: none;
    background: #6B0F1A;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.sd-submit-btn:hover {
    background: #4e0b13;
}

/* STAR INPUT */
.sd-star-input {
    display: flex;
    gap: 5px;
    font-size: 22px;
    cursor: pointer;
}

.sd-star-input span {
    color: #ccc;
    transition: 0.2s;
}

.sd-star-input span.active {
    color: #f4b400;
}

/*--------- FAQ Section Start ---------------*/

/* FAQ SECTION */
.sd-faq-section {
    padding: 90px 0;
    background: #fFF;
}

/* WRAPPER */
.sd-faq-wrapper {
    max-width: 850px;
    margin: auto;
}

/* TITLE */
.sd-faq-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}

/* ITEM */
.sd-faq-item {
    border: none;
    border: 1px solid #000000;
}

.dark-mode .sd-faq-item {
    color: #FFF;
}

/* BUTTON */
.sd-faq-btn {
    font-weight: 500;
    padding: 15px;
    background: transparent;
    box-shadow: none;
    font-size: 20px;
}

.sd-faq-btn:not(.collapsed) {
    color: #000;
    background: var(--primary-color);
}

/* BODY */
.sd-faq-body {
    color: #555;
    padding: 10px 15px 15px;
    line-height: 1.7;
    background-color: var(--light-bg);
}

/* REMOVE DEFAULT BOOTSTRAP ICON */
.accordion-button::after {
    filter: grayscale(1);
}

/* MOBILE */
@media (max-width: 768px) {

    .sd-faq-section {
        padding: 80px 0;
    }

    .sd-faq-title {
        font-size: 22px;
    }

}

/*--------- FAQ Section End -----------------*/

/*============= Shop Detsil.HTML End ===========*/

/*============= Blog.HTML Start==================*/

.book-blog {
    background: #f9f9f9;
}

.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
}

.blog-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-book {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #6B0F1A;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 20px;
}

.blog-content {
    padding: 15px;
}

.blog-content h5 {
    font-size: 16px;
    font-weight: 600;
}

.blog-content p {
    font-size: 14px;
    color: #666;
}

.blog-content a {
    color: #6B0F1A;
    font-weight: 500;
    text-decoration: none;
    transition: .4s;
}

.blog-content a:hover {
    letter-spacing: 2px;
}

.dark-mode .blog-content a {
    color: #830514 !important;
}

.dark-mode .blog-content a:hover {
    letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-img {
        height: 180px;
    }
}

/*============= Blog.HTML END ===================*/

/*============= BLOG DETAILS START ==============*/
.blog-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.blog-meta {
    color: #6B0F1A;
    font-size: 14px;
    margin-bottom: 20px;
}

.blog-hero-img img {
    width: 100%;
    border-radius: 12px;
    height: 400px;
    object-fit: cover;
}

.blog-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

.blog-content h4 {
    margin-top: 25px;
    font-weight: 600;
    color: #222;
}

.related-posts h4 {
    font-weight: 600;
}


.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-card:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-hero-img img {
        height: 250px;
    }

    .blog-title {
        font-size: 22px;
    }
}

.related-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* KEY FIX */
    gap: 10px;
}

.related-header h4 {
    margin: 0;
    font-size: 20px;
}

.view-all {
    text-decoration: none;
    color: #6B0F1A;
    font-weight: 500;
    white-space: nowrap;
    transition: .4s;
}

.view-all:hover {
    letter-spacing: 2px;
}

.dark-mode .related-header a {
    color: #830514 !important;
}

/* Mobile Fix */
@media (max-width: 576px) {
    .related-header {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        text-align: center;
        margin: auto;
    }

    .view-all {
        font-size: 15px;
    }
}

/*============= BLOG DETAILS END ================*/

/*============= CONTACT.HTML START ==============*/

.contact-sec {
    background: var(--light-bg);
}

/* badge */
.contact-badge {
    background: #eef2ff;
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* title */
.contact-title {
    font-size: 38px;
    font-weight: 700;
    color: #000;
    margin-top: 15px;
}

.contact-sub {
    color: #6b7280;
    margin-top: 10px;
    max-width: 500px;
}

/* cards */
.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    transition: .3s;
    border: 1px solid #eee;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--secondary-color);
}

.contact-card .icon {
    font-size: 22px;
    margin-bottom: 10px;
    color: #000;
}
.dark-mode .contact-card .icon{
    color: #FFF;
}

.contact-card h6 {
    font-weight: 600;
    color:var(--Highlight-Color);
}

.contact-card p {
    color: #6b7280;
    font-size: 14px;
}


/* form */
.contact-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}


.form-title {
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
}

.dark-mode .form-input{
    background: #070415;
    color: #FFF;
}

.form-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(245, 124, 0, 0.15);
}

.dark-mode .form-input:focus{
    background: #FFF;
    color: #000;
}

.send-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 14px 22px;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
}

.send-btn:hover {
    background: var(--secondary-color);
}

/* mobile */
@media(max-width:768px) {
    .contact-title {
        font-size: 28px;
    }
}

/*-----------------map-----------*/
.map-sec {
    background: #f5f7fa;
}

.map-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* map iframe */
.map-box iframe {
    width: 100%;
    height: 420px;
    border: 0;
    filter: grayscale(0.2);
}

/* overlay card */
.map-info {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #fff;
    padding: 18px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    max-width: 260px;
}

.map-info h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #0B2D4F;
}

.map-info p {
    margin: 6px 0;
    font-size: 14px;
    color: #6b7280;
}

.map-info a {
    color: #F57C00;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

/* mobile */
@media(max-width:768px) {
    .map-box iframe {
        height: 300px;
    }

    .map-info {
        position: static;
        margin-bottom: 15px;
        box-shadow: none;
    }
}

/*================= CONTACT.HTML END ===============*/

/*------------ CTA SECTION ------------*/

.cta-section {
    background: linear-gradient(90deg, #050505, #161616);
    padding: 80px;
    color: white;
}

.cta-title {
    font-size: 40px;
    font-weight: 700;
}


.cta-text {
    color: #8f9fb3;
    margin-top: 15px;
}

.cta-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.cta-info {
    margin-top: 20px;
    display: flex;
    gap: 30px;
    color: #9ca3af;
}

.cta-info i {
    color: #7c6cff;
    margin-right: 8px;
}

.video-box {
    height: 260px;
    border-radius: 25px;

    background-image: url("../img/book-nook-img-2.png");
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-btn {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

@media (max-width: 575px) {

    .cta-section {
        padding: 20px 10px;
        text-align: center;
    }

    .cta-title {
        font-size: 25px;
    }

    .cta-text {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-info {
        flex-direction: column;
        gap: 15px;
    }

    .video-box {
        margin-top: 20px;
    }

    .cta-buttons {
        align-items: center;
    }
}

@media (max-width: 768px) {

    .cta-section {
        padding: 30px 10px;
    }

    .cta-title {
        font-size: 30px;
    }

    .cta-text {
        font-size: 16px;
    }

    .video-box {
        margin-top: 30px;
    }
}