:root {
    --primary-color: #2E2E2E;
    --secondary-color: #A6FF00;
    --Accent: #7bbd00;
    --background-color: #2E2E2E;
    --light-bg: #E5E5E5;
    --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: linear-gradient(90deg, #A6FF00, #4CAF00);
    --Secondary-Btn-color: linear-gradient(45deg, #1b1f50, #11153a);
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background: #FFF;
    padding-top: 120px;
    overflow-x: hidden;
}

body p {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

body h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 600;
}

.sub-heading {
    color: var(--secondary-color);
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.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: linear-gradient(180deg, #A6FF00, #4CAF00);
    color: #000;
    padding: 12px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    border: none;
}

.primary-btn:hover {
    background: linear-gradient(90deg, #4CAF00, #A6FF00);
    color: #000;
    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;
    display: inline-block;
    background: #A6FF00;
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.secondary-btn:hover {
    background: #fff;
    color: #000;
}

/*-- 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;
}


.brand-logo {
    width: 120px;
}

/* 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: linear-gradient(90deg, #A6FF00, #4CAF00);
    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: 100%;
}

.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;
    }

}

/*------ END OF NAVBAR -------*/

/*------ FOOTER -------*/
.footer {
    background: var(--footer-color);
    padding-top: 60px;
    font-size: 14px;
}

.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: #000;
    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;
    }

}


/*------ 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 for sections ----*/

.dark-mode .dark-section {
    background: linear-gradient(135deg, #1a1a1a, #2E2E2E);
}

.dark-mode .sr-serv-price {
    color: #FFF;
}

.dark-mode .dark-section-2 {
    background-color: var(--primary-color);
}

.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 .dark-section .primary-btn {
    color: #000 !important;
}

.dark-mode .dark-section .primary-btn:hover {
    color: #000 !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: #000 !important;
}

.dark-mode .dark-section-2 .primary-btn:hover,
.dark-mode .dark-section-2 .secondary-btn:hover {
    color: #000 !important;
}

/*------ END OF DARK MODE  ------*/

/*============= Index.HTML Start ==============*/

/*---------- V1 Hero Section Start --------*/

/* SECTION */
.v1-hero-section {
    overflow: hidden;
}

/* LEFT SIDE */
.v1-hero-left {
    background: #A6FF00;
    position: relative;
    padding: 0px 0;
}

.v1-hero-left-inner {
    position: relative;
}

/* PERFECT RING (LIKE NIKE) */
.v1-hero-left-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-right: 80px solid rgba(153, 255, 0, 0.829);
    border-top: 80px solid rgba(153, 255, 0, 0.829);
    border-bottom: 80px solid rgba(248, 248, 248, 0.829);
    border-left: 80px solid rgba(248, 248, 248, 0.829);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-10%, -50%);
}

/* IMAGE */
.v1-hero-main-img {
    max-width: 500px;
    position: relative;
    z-index: 2;
    margin-left: 400px;
    margin-bottom: 50px;
}

/* RIGHT SIDE */
.v1-hero-right {
    background: #E5E5E5;
    padding: 80px;
}

.dark-mode .v1-hero-right {
    background: linear-gradient(135deg, #1a1a1a, #2E2E2E);
}

.dark-mode .v1-hero-title {
    color: #FFF;
}

.dark-mode .v1-hero-desc {
    color: #bbb;
}

/* CONTENT */
.v1-hero-content {
    margin-left: 400px;
    max-width: 500px;
}

/* TEXT */
.v1-hero-brand {
    color: #7bbd00;
    font-weight: 600;
    margin-bottom: 10px;
}

.v1-hero-title {
    font-size: 60px;
    font-weight: 700;
    color: #000;
}

.v1-hero-title span {
    color: #7bbd00;
}

.v1-hero-desc {
    color: #555;
    margin: 20px 0;
    font-size: 16px;
}

@media (max-width:1000px) {
    .v1-hero-main-img {
        margin-left: 0;
        margin-bottom: 0;
    }

    .v1-hero-content {
        margin-left: 0;
        text-align: center;
        justify-content: center;
        max-width: none;
    }

    .v1-hero-left-circle {
        top: 0;
        left: 0;
        transform: translate(0, 0);
        width: 400px;
        height: 400px;
        border-right: 40px solid #FFF;
        border-top: 40px solid #FFF;
        border-bottom: 40px solid #FFF;
        border-left: 40px solid #FFF;
    }

    .v1-hero-main-img {
        width: 400px;
        height: 400px;
    }

    .v1-hero-left {
        padding: 30px 10px;
    }

    .v1-hero-right {
        padding-top: 100px;
    }
}

@media (max-width:575px) {
    .v1-hero-title {
        font-size: 50px;
    }

    .v1-hero-desc {
        font-size: 16px;
        margin: auto;
        margin-bottom: 20px;
    }

    .v1-hero-right {
        padding: 90px 10px;
    }

    .v1-hero-left-circle {
        width: 300px;
        height: 300px;
        border-right: 30px solid rgba(255, 255, 255, 0.829);
        border-top: 30px solid rgba(255, 255, 255, 0.829);
        border-bottom: 30px solid rgba(255, 255, 255, 0.829);
        border-left: 30px solid rgba(255, 255, 255, 0.829);
        top: 0;
        left: 0;
        transform: translate(0, 0);
    }

    .v1-hero-main-img {
        width: 300px;
        height: 300px;
    }
}

/*---------- V1 Hero  Section End --------*/

/*---------- V1 About Us  Section Start --------*/

/* SECTION */
.v1-abt-section {
    padding: 80px 0;
    background: #2E2E2E;
    border-top: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
}


/* SUBHEADING */
.v1-abt-subheading {
    color: #A6FF00;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 15px;
}

/* HEADING */
.v1-abt-heading {
    color: #fff;
    font-size: 42px;
    margin-bottom: 20px;
}

/* TEXT */
.v1-abt-text {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 25px;
}


/* RIGHT SIDE */
.v1-abt-right {
    padding: 20px;
}

/* IMAGE */
.v1-abt-img {
    max-width: 100%;
    border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .v1-abt-left {
        margin-bottom: 30px;
        padding: 40px;
        text-align: center;
    }

    .v1-abt-heading {
        font-size: 40px;
    }
}

@media (max-width:575px) {
    .v1-abt-heading {
        font-size: 30px;
    }
}

/*---------- V1 About Us  Section End --------*/

/*---------- V1 Service  Section Start --------*/

/* SECTION */
.sr-serv-section {
    background: #E5E5E5;
    padding: 80px 0;
}

/* HEADER */
.sr-serv-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
}

.sr-serv-text {
    color: #555;
    max-width: 600px;
    margin: 10px auto 0;
    font-size: 16px;
}

/* CARD */
.sr-serv-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.sr-serv-card:hover {
    transform: translateY(-10px);
}

/* IMAGE */
.sr-serv-img-box {
    background: #f3f3f3;
    height: 100%;
    width: 100%;
}

.sr-serv-img-box img {
    height: 290px;
    width: 100%;
}

/* BODY */
.sr-serv-card-body {
    text-align: center;
    padding: 20px;
}

.sr-serv-card-body h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.sr-serv-card-body p {
    font-size: 14px;
    color: #666;
}

/* PRICE */
.sr-serv-price {
    font-weight: 700;
    margin: 15px 0;
    color: #000;
}

/* BUTTON */
.sr-serv-btn {
    width: 100%;
    background: #A6FF00;
    color: #000;
    border: none;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.sr-serv-btn:hover {
    background: #A6FF00;
    color: #000;
    transform: translateY(-1px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .sr-serv-title {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .sr-serv-title {
        font-size: 30px;
    }
}


/*---------- V1 Service Section End --------*/

/*---------- V1 Why Choose Us  Section Start --------*/

/* SECTION */
.v1-why-section {
    background: #2E2E2E;
    border-top: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding: 100px 0;
}

/* HEADER */
.v1-why-subheading {
    color: #A6FF00;
    letter-spacing: 3px;
    font-size: 14px;
}

.v1-why-title {
    color: #fff;
    font-size: 42px;
    margin-top: 10px;
}

.v1-why-desc {
    color: #bbb;
    max-width: 600px;
    margin: 15px auto 0;
    font-size: 16px;
    margin-bottom: 50px;
}

/* BOX */
.v1-why-box {
    margin-bottom: 55px;
    margin-top: 55px;
}

.v1-why-box h5 {
    color: #fff;
    font-weight: 600;
}

.v1-why-box p {
    color: #aaa;
    font-size: 14px;
}

/* IMAGE */
.v1-why-img {
    max-width: 100%;
    border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .v1-why-left,
    .v1-why-right {
        text-align: center !important;
    }

    .v1-why-section {
        padding: 20px 10px;
        padding-top: 70px;
    }

    .v1-why-center {
        margin: 30px 0;
    }

    .v1-why-title {
        font-size: 40px;
    }

    .v1-why-desc {
        margin-bottom: 0px;
    }

    .v1-why-left,
    .v1-why-right {
        display: flex;
        flex-direction: row;
        gap: 30px;
        margin-top: 0;
        justify-content: center;
    }
}

@media (max-width:575px) {

    .v1-why-title {
        font-size: 30px;
    }

    .v1-why-left,
    .v1-why-right {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 0;
        justify-content: center;
    }

    .v1-why-box {
        margin: 0px;
    }

    .v1-why-left {
        margin-top: 30px;
    }
}

/*---------- V1 Why Choose Us  Section End --------*/

/*============= Index.HTML END  =============*/

/*============= Home.HTML Start =============*/

/*-------- V2 Hero Section Start ------*/

/* SECTION */
.v2-hero-section {
    padding: 10px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a, #2E2E2E);

}

.v2-hero-section::after {
    content: "";
    position: absolute;
    left: 30px;
    top: 35%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    transform: translateY(-50%);
}

/* LEFT */
.v2-hero-left {
    color: #fff;
}

/* SUBHEADING */
.v2-hero-subheading {
    color: #A6FF00;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 15px;
}

/* TITLE */
.v2-hero-title {
    font-size: 42px;
    margin-bottom: 20px;
}

/* TEXT */
.v2-hero-text {
    color: #bbb;
    margin-bottom: 25px;
    max-width: 500px;
    font-size: 16px;
}

/* BUTTON */
.v2-hero-btn {
    display: inline-block;
    background: #A6FF00;
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.v2-hero-btn:hover {
    background: #fff;
    color: #000;
}

/* RIGHT IMAGE */
.v2-hero-img {
    width: 400px;
    height: 580px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .v2-hero-left {
        text-align: center;
        margin-bottom: 30px;
    }

    .v2-hero-section {
        padding-top: 50px;
    }

    .v2-hero-title {
        font-size: 40px;
        max-width: 550px;
        margin: auto;
        margin-bottom: 20px;
    }

    .v2-hero-text {
        margin: auto;
        margin-bottom: 30px;
    }

    .v2-hero-section::after {
        display: none;
    }
}

@media (max-width:768px) {
    .v2-hero-section::after {
        display: none;
    }
}

@media (max-width:2560px) {
    .v2-hero-section::after {
        display: none;
    }
}

@media (min-width:1024px) {
    .v2-hero-section::after {
        display: inline;
    }
}

/*-------- V2 Hero Section End --------*/

/*-------- V2 About Us Section Start ---*/

/* SECTION */
.v2-abt-section {
    background: #E5E5E5;
    padding: 80px 0;
}

/* IMAGE */
.v2-abt-img {
    max-width: 450px;
    border-radius: 10px;
}

/* RIGHT CONTENT */
.v2-abt-right {
    max-width: 500px;
}

/* SUBHEADING */
.v2-abt-subheading {
    color: #7bbd00;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 15px;
}

/* HEADING */
.v2-abt-heading {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

/* TEXT */
.v2-abt-text {
    color: #555;
    margin-bottom: 25px;
    font-size: 16px;
}

/* BUTTON */
.v2-abt-btn {
    display: inline-block;
    background: #A6FF00;
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.v2-abt-btn:hover {
    background: #000;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .v2-abt-right {
        text-align: center;
        margin: auto;
        margin-top: 30px;
    }

    .v2-abt-heading {
        font-size: 40px;
    }

}

@media (max-width:575px) {
    .v2-abt-heading {
        font-size: 30px;
    }
}

/*-------- V2 About Us Section End -----*/

/*-------- V2 Stat Section Start --------*/

/* SECTION */
.v2-stats-section {
    background: #2E2E2E;
    padding: 50px 0;
}

/* CARD */
.v2-stats-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px 20px;
    transition: 0.3s;
}

.v2-stats-card:hover {
    transform: translateY(-10px);
}

/* ICON */
.v2-stats-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid rgba(166, 255, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.v2-stats-icon i {
    font-size: 28px;
    color: #A6FF00;
}

/* NUMBER */
.v2-stats-number {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
}

/* TEXT */
.v2-stats-card p {
    color: #aaa;
    margin-top: 10px;
    letter-spacing: 1px;
}

/*-------- V2 Stat Section End ----------*/

/*-------- V2 Gallery Start ---------*/

/* SECTION */
.v2-gallery-section {
    padding: 80px 0;
    background: #fff;
}

/* HEADER */
.v2-gallery-title {
    font-size: 42px;
    font-weight: 700;
}

.v2-gallery-text {
    color: #666;
    max-width: 600px;
    margin: 10px auto 0;
    font-size: 16px;
}

/* ITEM */
.v2-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.v2-gallery-item img {
    width: 100%;
    height: 300px;
    display: block;
    transition: 0.4s;
}

/* OVERLAY */
.v2-gallery-overlay {
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 20px;
    transition: 0.4s;
}

/* HOVER EFFECT */
.v2-gallery-item:hover .v2-gallery-overlay {
    bottom: 0;
}

.v2-gallery-item:hover img {
    transform: scale(1.1);
}

/* TEXT */
.v2-gallery-overlay h5 {
    margin: 0;
    font-weight: 600;
}

.v2-gallery-overlay p {
    font-size: 14px;
    color: #ccc;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .v2-gallery-title {
        font-size: 40px;
    }
}

@media (max-width:575px) {
    .v2-gallery-title {
        font-size: 30px;
    }
}

/*-------- V2 Gallery  End -----------*/

/*-------- V2 Process Start ------------*/

/* SECTION */
.v2-our-section {
    background: #2E2E2E;
    padding: 100px 0;
}

/* LEFT */
.v2-our-title {
    color: #fff;
    font-size: 42px;
    margin-bottom: 20px;
}

.v2-our-text {
    color: #bbb;
    font-size: 16px;
}

/* CARD */
.v2-our-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    transition: 0.3s;
}

.v2-our-card:hover {
    transform: translateY(-8px);
}

/* NUMBER */
.v2-our-card h3 {
    color: #A6FF00;
    font-size: 28px;
    margin-bottom: 10px;
}

/* TITLE */
.v2-our-card h5 {
    color: #fff;
    margin-bottom: 10px;
}

/* TEXT */
.v2-our-card p {
    color: #aaa;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .v2-our-left {
        text-align: center;
        margin-bottom: 40px;
    }

    .v2-our-title {
        font-size: 40px;
    }
}

@media (max-width:575px) {
    .v2-our-title {
        font-size: 30px;
    }

    .v2-our-card {
        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/e3/24/90/e324906d9c8a3b0439753b2fc958f83c.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 ------*/

.abt-mv-section {
    padding: 100px 10px;
    background: var(--background-color);
}

.abt-mv-img {
    height: 400px;
    width: 90%;
    border-radius: 20px;
}

.abt-mv-heading {
    font-size: 42px;
    color: #FFF;
    margin-bottom: 20px;
}

.abt-mv-text {
    font-size: 16px;
    color: #bbb;
}

@media (max-width:768px) {
    .abt-mv-section {
        text-align: center;
    }

    .abt-mv-left {
        margin-top: 50px;
    }

    .abt-vi-rigth {
        margin-top: 50px;
        order: 2;
    }

    .abt-vi-left {
        order: 1;
    }

    .abt-mv-heading {
        font-size: 40px;
    }
}

@media (max-width:575px) {
    .abt-mv-heading {
        font-size: 30px;
    }

    .abt-mv-img {
        height: 100%;
        width: 100%;
    }

    .mobile-none {
        display: none;
    }
}


/*----- Our Mission & Vission END ------*/

/*----- Who We Are Start ---------*/

.abt-who-section {
    background: var(--light-bg);
    padding: 100px 10px;
}

.abt-who-heading {
    font-size: 42px;
}

.abt-who-description {
    max-width: 600px;
    margin: 0 auto;
    color: #555;
    font-size: 16px;
}

.abt-who-grid {
    margin: auto;
    justify-content: center;
    justify-items: center;
    text-align: center;
}

.abt-who-box {
    align-items: flex-start;
    justify-content: center;
}

.abt-who-title {
    margin-bottom: 5px;
}

.abt-who-text {
    color: #555;
    font-size: 0.95rem;
}

.abt-who-icon {
    color: var(--Accent);
    text-align: center;
    margin-bottom: 20px;
}

.abt-who-subheading {
    color: var(--Accent);
}

@media (max-width:900px) {
    .abt-who-heading {
        font-size: 40px;
    }
}

@media (max-width:575px) {
    .abt-who-heading {
        font-size: 30px;
    }
}

/*----- Who We Are End -----------*/

/*---------- testimonial Start ---------------*/
.abt-testi-section {
    background: var(--background-color);
    padding: 100px 10px;
}

.abt-testi-card {
    background: #3A3A3A;
    border-radius: 12px;
    transition: 0.3s ease;
}

.abt-testi-card:hover {
    transform: translateY(-5px);
}

.abt-testi-heading {
    color: #FFF;
    font-size: 42px;
}

.abt-testi-description {
    font-size: 16px;
    color: #bbb;
}

.abt-testi-text {
    color: #ddd;
    font-size: 16px;
}

.abt-testi-name {
    color: #A6FF00;
    font-weight: 600;
}

.abt-testi-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #A6FF00;
}

/* Tablet: center last card */
@media (max-width: 991px) {
    .abt-testi-last {
        margin-left: auto;
        margin-right: auto;
    }

    .abt-testi-heading {
        font-size: 40px;
    }
}

@media (max-width:575px) {
    .abt-testi-heading {
        font-size: 30px;
    }
}

/*---------- testionial END ------------------*/

/*---------- Our Staff Section Start ----------*/

.abt-team-section {
    background: var(--light-bg);
    padding: 100px 10px;
}

.abt-team-heading {
    font-size: 42px;
}

.abt-team-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s ease;
}

.abt-team-card:hover {
    transform: translateY(-5px);
}



.abt-team-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.abt-team-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--Accent);
}

.abt-team-role {
    font-size: 0.9rem;
    color: #777;
}

.abt-team-social i {
    margin: 0 5px;
    font-size: 16px;
    cursor: pointer;
    color: #333;
    transition: 0.3s;
    padding: 10px;
    border-radius: 50%;

}

.abt-team-social {
    transform: translateY(100px);
    transition: .3s;
}

.abt-team-card:hover .abt-team-social {
    transform: translateY(0);
}

.abt-team-social i:hover {
    background: var(--Accent);
    color: #000;
}

.abt-team-description {
    max-width: 600px;
    margin: 0 auto;
    color: #555;
    font-size: 16px;
}

@media (max-width:900px) {
    .abt-team-heading {
        font-size: 40px;
    }
}

@media (max-width:575px) {
    .abt-team-heading {
        font-size: 30px;
    }

    .abt-team-img {
        height: 400px;
    }
}

/*---------- Our Staff section End ------------*/

/*============= About.HTML End =================*/

/*============= Service Detail.HTML Start =========*/

.sr-sd-section {
    padding: 100px 10px;
    background: linear-gradient(135deg, #1a1a1a, #2E2E2E);
}


.sr-sd-sidebar {
    background: #2A2A2A;
    border-radius: 10px;
}



.sr-sd-service-item {
    padding: 12px;
    margin-bottom: 8px;
    background: #1e1e1e;
    color: #ccc;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.sr-sd-service-item:hover,
.sr-sd-service-item.active {
    background: #A6FF00;
    color: #000;
}

.sr-sd-contact-box {
    background: linear-gradient(135deg, #A6FF00, #6aff00);
    padding: 20px;
    border-radius: 10px;
    color: #000;
}

.sr-sd-phone {
    font-weight: bold;
}

.sr-sd-img {
    width: 100%;
    border-radius: 10px;
}

.sr-sd-title {
    color: #fff;
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 15px;
}

.sr-sd-subtitle {
    color: #A6FF00;
}

.sr-sd-text {
    color: #ccc;
    font-size: 0.95rem;
}

.sr-sd-features li {
    color: #ddd;
    margin-bottom: 6px;
}

.sr-sd-features i {
    color: #A6FF00;
    margin-right: 8px;
}

.sr-sd-features ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

@media (max-width:900px) {
    .sr-sd-top-left {
        order: 2;
    }

    .sr-sd-section {
        padding: 50px 5px;
        text-align: center;
    }

    .sr-sd-title {
        font-size: 40px;
    }
}

@media (max-width:575px) {
    .sr-sd-title {
        font-size: 30px;
    }
}

/*------ Before & After Section Start ---------*/

/* SECTION */
.sd-af-bf-section {
    background: var(--light-bg);
    padding: 100px 0px;
}

/* HEADER */
.sd-af-bf-title {
    font-size: 42px;
    color: #000;
}

.sd-af-bf-subtitle {
    color: #666;
    max-width: 600px;
    margin: 10px auto 0;
    font-size: 16px;
}

/* 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 ---------------*/

.sr-sd-faq-section {
    background: linear-gradient(135deg, #1a1a1a, #2E2E2E);
    padding: 100px 10px;
}

.sr-sd-faq-title {
    color: #FFF;
    font-size: 42px;
}

.sr-sd-faq-subtitle {
    color: #bbb;
    font-size: 16px;
}

.sr-sd-faq-btn {
    box-shadow: none;
    border: none;
}

.sr-sd-faq-btn:not(.collapsed) {
    background-color: #2E2E2E !important;
    color: var(--secondary-color) !important;
    /* gold accent */
}

.sr-sd-faq-item {
    border-radius: 10px;
    overflow: hidden;
}

.sr-sd-faq-body {
    color: #bbb;
}

.sr-sd-faq-btn::after {
    background-image: none;
    content: "+";
    font-size: 22px;
    color: var(--secondary-color);
    transform: rotate(0deg);
    transition: 0.3s;
}

.sr-sd-faq-btn:not(.collapsed)::after {
    transform: rotate(45deg);
}

@media (max-width:900px) {
    .sr-sd-faq-title {
        font-size: 40px;
    }
}

@media (max-width:575px) {
    .sr-sd-faq-title {
        font-size: 30px;
    }
}

/*--------- FAQ Section End -----------------*/

/*--------- Pricing Section Strat ---------*/

.sd-ser-price-section {
    background: linear-gradient(135deg, #1a1a1a, #2E2E2E);
    padding: 100px 10px;
}

.sd-ser-price-card {
    background: #2a2a2a;
    border-radius: 12px;
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sd-ser-price-card:hover {
    transform: translateY(-8px);
}

.sd-ser-price-amount {
    color: var(--secondary-color);
    font-weight: 700;
}

.sd-ser-price-featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
    background: #242424;
}

.sd-ser-price-title {
    letter-spacing: 1px;
    color: #FFF;
    font-size: 42px;
    margin-bottom: 10px;
}

.sd-ser-price-subtitle {
    font-size: 16px;
    color: #bbb;
}

.list-unstyled li {
    font-size: 15px;
    color: #bbb;
    margin-bottom: 5px;
}

.sd-ser-price-card-title {
    color: #FFF;
    font-size: 22px;
}

@media (max-width:900px) {
    .sd-ser-price-title {
        font-size: 40px;
    }
}

@media (max-width:575px) {
    .sd-ser-price-title {
        font-size: 30px;
    }
}

/*--------- Pricing Section End ---------*/

/*============= Service Detsil.HTML End ===========*/

/*============= Blog.HTML Start==================*/

.sr-blog-section {
    background: #E5E5E5;
}

.sr-blog-card {
    background: #fff;
    padding: 25px 15px;
    border-radius: 10px;
    transition: 0.3s;
    height: 100%;
}

.sr-blog-card img {
    border-radius: 8px;
    margin-bottom: 10px;
    height: 270px;
    width: 100%;
}

.sr-blog-card h5 {
    font-weight: 600;
}

.sr-blog-card p {
    font-size: 14px;
    color: #666;
}

.sr-blog-card a {
    font-size: 16px;
    color: var(--Accent);
    font-weight: 600;
    text-decoration: none;
    transition: .4s;
}

.sr-blog-card:hover {
    transform: translateY(-5px);
}

.sr-blog-card:hover.sr-blog-card a {
    letter-spacing: 1px;
}

/* Tablet center alignment fix */
@media (min-width: 768px) and (max-width: 991px) {
    .sr-blog-container {
        justify-content: center;
    }
}

.dark-mode .sr-blog-search {
    background: #232323;
    color: #FFF;
}

.dark-mode .sr-blog-search::placeholder {
    color: #bbb;
}

.dark-mode .sr-blog-category {
    background-color: #232323;
    color: #fff;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
    padding-right: 35px;
}

/*============= Blog.HTML END ===================*/

/*============= BLOG DETAILS START ==============*/

/*--- Content Section Start ---*/
.sd-blog-de-section {
    background: var(--light-bg);
}

.sd-blog-de-tag {
    color: var(--Accent) !important;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
}

.sd-blog-de-title {
    font-size: 42px;
    font-weight: 700;
    margin: 10px 0 15px;
}

.sd-blog-de-desc {
    color: #555;
    max-width: 800px;
    line-height: 1.7;
    margin: auto;
}

.sd-blog-de-img-wrap {
    margin-top: 30px;
}

.sd-blog-de-img-wrap img {
    border-radius: 12px;
    width: 100%;
}

.sd-blog-de-content {
    background: var(--light-bg);
}

.sd-blog-de-subtitle {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
}

.sd-blog-de-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.sd-blog-de-img {
    width: 100%;
    height: 450px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .sd-blog-de-title {
        font-size: 40px;
    }

    .sd-blog-de-subtitle {
        font-size: 22px;
    }

    .sd-blog-de-img {
        object-fit: contain;
    }

    .sd-blog-de-subtitle {
        font-size: 40px;
    }
}

@media (max-width:575px) {
    .sd-blog-de-img {
        object-fit: contain;
        width: 100%;
        height: 100%;
    }

    .sd-blog-de-subtitle {
        font-size: 30px;
    }

    .sd-blog-de-title {
        font-size: 30px;
    }
}

/*--- Content Section End -----*/

/*---- Related blog Start ------*/

.sd-ser-rel-section {
    background: var(--light-bg);
}

.sd-ser-rel-title {
    font-size: 28px;
    font-weight: 600;
}

.sd-ser-rel-link {
    color: #28a745 !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: .4s;
}

.sd-ser-rel-link:hover {
    letter-spacing: 1px;
}

@media (max-width:575px) {
    .sr-blog-de-topbar {
        display: flex;
        flex-direction: column;
    }

    .sd-ser-rel-title {
        font-size: 25px;
    }
}

/*---- Relaed Blog End ---------*/


/*============= BLOG DETAILS END ================*/

/*============= CONTACT.HTML START ==============*/

.sr-contact-section {
    background: #E5E5E5;
}

.sr-contact-badge {
    display: inline-block;
    background: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
}

.sr-contact-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.sr-contact-desc {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.sr-contact-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.sr-contact-info-item i{
    margin-bottom: 20px;
}

.sr-contact-form-box {
    background: var(--background-color);
    padding: 30px;
    border-radius: 16px;
}

.sr-contact-label {
    font-size: 14px;
    margin-bottom: 5px;
    color: #FFF;
}

.sr-contact-input {
    border-radius: 10px;
    padding: 12px;
    border: none;
}

.sr-contact-input:focus {
    box-shadow: none;
}

.sr-contact-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 30px;
    margin-top: 10px;
    transition: 0.3s;
}

.sr-contact-btn:hover {
    background: #333;
}

.sr-contact-map-section {
    background: #E5E5E5;
  }
  
  .sr-contact-map-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }
  
  .sr-contact-map-wrap iframe {
    width: 100%;
    height: 400px;
    border: 0;
  }

/* Responsive */
@media (max-width: 768px) {
    .sr-contact-title {
        font-size: 30px;
    }
    .sr-contact-section{
        justify-content: center;
        text-align: center;
    }
    .sr-contact-form-box{
        text-align: start;
    }

    .sr-contact-section .row {
      justify-content: center;
      text-align: center;
    }
  
    .sr-contact-info {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .sr-contact-info-item {
      justify-content: center;
    }
  
    .sr-contact-info-item i {
      margin-bottom: 20px; /* remove that extra gap */
    }
  
  }

/*================= CONTACT.HTML END ===============*/

/*------------ CTA SECTION ------------*/

/* SECTION */
.sr-cta-section {
    background: linear-gradient(135deg, #1a1a1a, #2E2E2E);
    padding: 30px 0;
    padding-top: 0;
}


/* SUBHEADING */
.sr-cta-subheading {
    color: #A6FF00;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 15px;
}

/* HEADING */
.sr-cta-heading {
    font-size: 42px;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 20px;
}

/* TEXT */
.sr-cta-text {
    color: #bbb;
    margin-bottom: 25px;
}

/* BUTTON */
.sr-cta-btn {
    display: inline-block;
    background: #A6FF00;
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.sr-cta-btn:hover {
    background: #FFF;
    color: #000;
}

/* IMAGE */
.sr-cta-img {
    width: 67%;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .sr-cta-left {
        text-align: center;
        margin-bottom: 30px;
    }

    .sr-cta-heading {
        font-size: 40px;
    }

    .sr-cta-section {
        padding: 50px 10px;
    }

    .sr-cta-left {
        margin: auto;
        margin-bottom: 20px;
    }
}

@media (max-width:575px) {
    .sr-cta-heading {
        font-size: 30px;
    }
}

/*===================== RTL  =========================*/

.rtl-toggle {
    font-size: 22px;
    cursor: pointer;
    transition: .3s;
    color: #FFF;
}

.rtl-toggle:hover {
    transform: scale(1.1);
}

/* RTL NAVBAR ONLY */
.custom-navbar.rtl-mode {
    direction: rtl;
}

/* Fix center menu */
.custom-navbar.rtl-mode .nav-center {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

/* Fix nav links spacing */
.custom-navbar.rtl-mode .nav-link {
    flex-direction: row-reverse;
}

/* Fix dropdown alignment */
.custom-navbar.rtl-mode .dropdown-menu {
    text-align: right;
}

/* Fix icons spacing */
.custom-navbar.rtl-mode .nav-link i {
    margin-left: 0;
    margin-right: 6px;
}

.custom-navbar.rtl-mode .login-btn {
    margin-left: 0 !important;
    margin-right: 15px;
}

.custom-navbar.rtl-mode .dark-mode-toggle,
.custom-navbar.rtl-mode .rtl-toggle {
    margin-right: 0;
    margin-left: 15px;
}

.custom-navbar.rtl-mode .nav-link {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.custom-navbar.rtl-mode .dropdown-menu {
    text-align: right;
    left: auto !important;
    right: 0 !important;
}

@media (max-width: 991px) {

    .nav-center {
        position: static !important;
        transform: none !important;
        left: auto !important;
        right: auto !important;
        text-align: left;
    }

    /* RTL fix */
    .custom-navbar.rtl-mode .nav-center {
        text-align: right;
    }

}

@media (max-width: 991px) {

    .navbar-collapse {
        padding: 20px 0;
    }

    .custom-navbar.rtl-mode .navbar-collapse {
        text-align: right;
    }

}

@media (max-width: 991px) {

    .navbar-nav {
        gap: 10px;
    }

    .nav-link {
        display: block;
        width: 100%;
    }

}

@media (max-width: 991px) {

    /* STOP RTL affecting login button */
    .custom-navbar.rtl-mode .login-btn {
        direction: ltr !important;
        text-align: center !important;
        width: 100%;
    }

}

@media (max-width: 991px) {

    .custom-navbar.rtl-mode .login-btn {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

}


.custom-navbar.rtl-mode {
    direction: rtl;
}

/* FIX FLEX ORDER (IMPORTANT) */
.custom-navbar.rtl-mode .nav-center {
    direction: rtl;
}

.custom-navbar.rtl-mode .navbar-nav {
    text-align: right;
}


.custom-navbar {
    position: fixed;
    width: 100%;
}

/* Ensure always visible */
.custom-navbar.rtl-mode {
    background: var(--navbar-color);
}

@media (max-width: 900px) {
    .custom-navbar.rtl-mode .login-btn {
        direction: ltr;
        text-align: center;
    }
}

@media (max-width: 1024px) {

    .nav-center {
        max-width: 70%;
        white-space: nowrap;
    }

}

@media (max-width: 1050px) {

    /* LTR */
    .nav-center {
        transform: translateX(-52%);
    }

    /* RTL */
    .custom-navbar.rtl-mode .nav-center {
        transform: translateX(60%);
    }

    .custom-navbar.rtl-mode .brand-logo {
        transform: translateX(30%);
        width: 120px;
    }

}

@media (max-width:900px) {
    .custom-navbar.rtl-mode .brand-logo {
        transform: translateX(0);
        width: 140px;
    }
}