:root {
    --primary-color: #2F86D6;
    --secondary-color: #6EDB3F;
    --color-blue: #0d6efd;
    --white-color: #fff;



    /*--- BackGround Colo ---*/
    --background-color: linear-gradient(135deg,
            #F5D97A,
            #D4AF37,
            #A67C1B,
            #7A5A12);

    --light-bg: #edebeb;

    /*--- Highlite Color ---*/

    --soft-Orange: #FFA94D;
    --dark-Orange: #D96A10;
    --bright-Green: #8EFF5A;
    --dark-Green: #3FAE1F;
    --Highlight-Color: #FF8A2A;

    /*--- Text Color ---*/
    --Heading-Color: #FFF;
    --Text-color: #F5E9DA;
    --text-secondary: #CBB9A8;
    --text-dark: #1A120F;

    /*--- Navbar Color ---*/
    --navbar-color: #FFF;
    --navbar-text-color: #000;

    /*--- Footer Color ---*/
    --footer-color: #FFF;
    --footer-heading-color: #000;
    --footer-text-color: #282828;

    /*--- Footer Bottom Color ----*/
    --footer-bottom-color: #cacaca;
    --footer-bottom-text-color: #000;

    /*---- PRIMARY COLORS ----*/
    --color-bg: #2B1E1A;
    --color-bg-dark: #1A120F;
    --color-surface: #3A2621;


    /*--- BORDER & DIVIDER ---*/
    --border-color: rgba(212, 175, 55, 0.2);

    /*--- SHADOW ---*/

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 5px 20px rgba(212, 175, 55, 0.25);

    /* ===== GRADIENTS ===== */
    --gradient-gold: linear-gradient(135deg,
            var(--gold-light),
            var(--gold-main),
            var(--gold-dark),
            var(--gold-deep));

    --gradient-dark: linear-gradient(180deg,
            #2B1E1A,
            #1A120F);

}

html {
    scroll-behavior: smooth;
}

body {
    background: #FFF;
    padding: 90px 0 0;
}

@media (max-width:768px) {
    body {
        padding: 50px 0 0;
    }

}

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: #3b82f6;
    font-weight: 600;
}

.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;
}

/*---- 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 {
    background: linear-gradient(135deg, #2F86D6, #5BB6FF);
    color: #fff;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: var(--shadow-gold);
}

.primary-btn:hover {
    background: linear-gradient(135deg, #5BB6FF, #2F86D6);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: #FFF;
}

@media (max-width:768px) {
    .primary-btn {
        font-size: 18px;
        padding: 10px 25px;
    }

    .secondary-btn {
        padding: 10px 25px;
    }

}

.secondary-btn {
    background: var(--secondary-color);
    color: #000 !important;
    border: 1px solid var(--gold-main);
    padding: 12px 28px;
    border-radius: 10px;
    transition: 0.3s ease;
    font-weight: 600;
}

.secondary-btn:hover {
    background: #1d4ed8;
    color: #FFF !important;
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    border-radius: var(--radius-md);
}

.btn-ghost:hover {
    border-color: var(--gold-main);
    color: var(--gold-main);
}

/*-- 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: 160px;
}

/* 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(--Highlight-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);
}



/* 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);
}


/* ACTIVE NAV */

.nav-link.active {
    color: var(--Highlight-Color) !important;
}

.nav-link.active::after {
    width: 90%;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--navbar-text-color) !important;
    margin: 0 14px;
    font-weight: 500;
    position: relative;
    padding-bottom: 6px;
}


.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    color: var(--navbar-text-color);
}

.login-btn {
    background: linear-gradient(135deg, #2F86D6, #5BB6FF);
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s;
}

.login-btn:hover {
    background: linear-gradient(135deg, #5BB6FF, #2F86D6);
}

a {
    text-decoration: none;
}

.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 .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: 180px;
    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-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(--footer-bottom-text-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: var(--footer-bottom-text-color);
    margin-right: 20px;
    text-decoration: none;
    transition: .3s;
}

.footer-menu a:hover {
    color: var(--Highlight-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 .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 for sections ----*/

.dark-mode .dark-section {
    background-color: #000;
}

.dark-mode .dark-section .v1-hero-input,
.dark-mode .dark-section .v1-hero-form {
    background-color: #1a1a1a;


}

.dark-mode .dark-section-2 {
    background-color: #070415;
}

.dark-mode .dark-section h1,
.dark-mode .dark-section h2,
.dark-mode .dark-section h3,
.dark-mode .dark-section h4,
.dark-mode .dark-section h5,
.dark-mode .dark-section-2 h1,
.dark-mode .dark-section-2 h2,
.dark-mode .dark-section-2 h3,
.dark-mode .dark-section-2 h4,
.dark-mode .dark-section-2 h5 {
    color: #fff;
}

.dark-mode .dark-section p,
.dark-mode .dark-section li,
.dark-mode .dark-section a,
.dark-mode .dark-section-2 p,
.dark-mode .dark-section-2 li,
.dark-mode .dark-section-2 a {
    color: #ccc;
}

.dark-mode .dark-section-2 li:hover,
.dark-mode .dark-section-2 a:hover,
.dark-mode .dark-section li:hover,
.dark-mode .dark-section a:hover,
.dark-mode .dark-section-2 .sub-heading,
.dark-mode .dark-section .sub-heading {
    color: var(--Highlight-Color);
}

.dark-mode .dark-section-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;
}

.dark-mode .dark-section-2 .primary-btn,
.dark-mode .dark-section .primary-btn {
    color: #FFF !important;
}

/*------ END OF DARK MODE  ------*/

/*============= Index.HTML Start ==============*/

/*---------- V1 Hero Section Start --------*/

.v1-hero-section {
    background: #f8fafc;
    border-radius: 20px;
    padding: 90px 10px;
}

.v1-hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
}

.v1-hero-text {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

.v1-hero-btn {
    padding: 12px 28px;
    font-weight: 500;
    border-radius: 8px;
}

.v1-hero-img {
    max-height: 420px;
    border-radius: 16px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 991px) {
    .v1-hero-title {
        font-size: 40px;
    }

    .v1-hero-section {
        text-align: center;
    }
}

@media (max-width:768px) {
    .v1-hero-section {
        padding: 100px 10px;
    }

    .v1-hero-title {
        font-size: 40px;
    }

    .v1-hero-text {
        font-size: 18px;
        max-width: 600px;
        margin: auto;
        text-align: center;
    }

    .v1-hero-btn {
        margin-top: 20px;
        margin-bottom: 50px;
    }
}

@media (max-width:576px) {
    .v1-hero-title {
        font-size: 30px;
    }

    .v1-hero-text {
        font-size: 16px;
    }

    .v1-hero-btn {
        margin-top: 10px;
        margin-bottom: 40px;
    }

}

/*---------- V1 Hero  Section End --------*/

/*---------- V1 About Us  Section Start --------*/

.v1-abt-section {
    background: var(--light-bg);
    padding: 110px 10px;
}

.v1-abt-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
}

.v1-abt-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

.v1-abt-btn {
    background: var(--secondary-color);
    color: #000;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
}


/* RIGHT SIDE DESIGN */
.v1-abt-img-wrapper {
    position: relative;
    height: 350px;
}

/* LINE */
.v1-abt-line {
    position: absolute;
    top: 20px;
    right: 40px;
    width: 280px;
    height: 250px;
    border: 5px solid #1e293b;
    border-bottom: none;
    border-left: none;
    z-index: 1;
}

.dark-mode .v1-abt-line {
    border-color: #FFF;
}

/* IMAGES */
.v1-abt-img {
    position: absolute;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.v1-abt-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* IMAGE POSITIONS */
.v1-abt-img-1 {
    width: 280px;
    height: 250px;
    top: -70px;
    right: 270px;
    z-index: 2;
}

.v1-abt-img-2 {
    width: 280px;
    height: 250px;
    bottom: -60px;
    right: -30px;
    z-index: 3;
}

/* RESPONSIVE */

@media (max-width:1050px) {

    /* IMAGE POSITIONS */
    .v1-abt-img-1 {
        width: 240px;
        height: 220px;
        right: 230px;
    }

    .v1-abt-img-2 {
        width: 240px;
        height: 220px;
    }

}

@media (max-width: 991px) {
    .v1-abt-img-wrapper {
        margin-top: 30px;
        height: 300px;
    }

    .v1-abt-line {
        right: 20px;
    }
}


@media (max-width:991px) {
    .v1-abt-title {
        font-size: 40px;
    }

    .v1-abt-text {
        font-size: 18px;
    }

    /* IMAGE POSITIONS */
    .v1-abt-img-1 {
        width: 280px;
        height: 250px;
        top: 80px;
        right: 400px;
        z-index: 2;
    }

    .v1-abt-img-2 {
        width: 280px;
        height: 250px;
        top: 80px;
        right: 10px;
        z-index: 3;
    }

    /* LINE */
    .v1-abt-line {
        position: absolute;
        top: 20px;
        right: 140px;
        width: 400px;
        height: 250px;
        border: 5px solid #1e293b;
        border-bottom: none;
        z-index: 1;
    }
}

@media (max-width:575px) {
    .v1-abt-section {
        padding: 50px 10px;
        text-align: center;
    }

    .v1-abt-title {
        font-size: 30px;
    }

    .v1-abt-text {
        font-size: 16px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    /* IMAGE POSITIONS */
    .v1-abt-img-wrapper {
        position: relative;
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 30px;
        height: 100%;
        margin-top: 50px;
    }

    .v1-abt-img {
        position: relative;
    }

    .v1-abt-img-1 {
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        margin: auto;
        z-index: 2;
    }

    .v1-abt-img-2 {
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        margin: auto;
        z-index: 3;
    }

    /* LINE */
    .v1-abt-line {
        display: none;
    }
}

/*---------- V1 About Us  Section End --------*/

/*---------- Our Service Section Start -----*/

.tc-serv-section {
    background: #f8fafc;
}

.tc-serv-heading {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
}

.tc-serv-subtext {
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* CARD */
.tc-serv-card {
    position: relative;
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
}

/* CORNER BORDER DESIGN */
.tc-serv-border {
    position: absolute;
    width: 200px;
    height: 282px;
    border: 6px solid #111827;
    border-right: none;
    top: 0;
    left: 0;
}

.dark-mode .tc-serv-border {
    border-color: #ccc;
}

/* IMAGE */
.tc-serv-img {
    border-radius: 8px;
    overflow: hidden;
}

.tc-serv-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* CONTENT BOX */
.tc-serv-content {
    background: var(--light-bg);
    color: #000;
    padding: 15px;
    border-radius: 6px;
}

.tc-serv-content h5 {
    font-size: 25px;
    margin-bottom: 10px;
}

.tc-serv-content ul {
    padding-left: 18px;
    font-size: 16px;
    margin-bottom: 30px;
}

.tc-serv-content li {
    margin-bottom: 5px;
}

/* BUTTON */
.tc-serv-btn {
    background: var(--secondary-color);
    color: #000 !important;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
}

.tc-serv-btn:hover {
    background: #1d4ed8;
    color: #FFF !important;
}


.tc-serv-card:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .tc-serv-content {
        margin-top: 10px;
    }

    .tc-serv-border {
        top: 10px
    }
}

/* MOBILE FIX */
@media (max-width: 575px) {

    .tc-serv-border {
        border: 6px solid #111827;
        width: 100%;
        height: 47%;
        border-bottom: none;
        top: 0px;
        border-radius: 0px;
    }

    .tc-serv-content {
        text-align: center;
        justify-content: center;
    }

    .tc-serv-content ul {
        max-width: 220px;
        justify-content: center;
        margin: auto;
        text-align: start;
        margin-bottom: 20px;
    }

}

/*---------- Our Service Section End -------*/

/*---------- V1 Why Choose Us  Section Start --------*/

.v1-why-section {
    background: var(--light-bg);
    padding: 100px 10px;
}

/* IMAGE */
.v1-why-img-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.v1-why-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXT */
.v1-why-subtitle {
    font-size: 14px;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 10px;
}

.v1-why-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
}

.v1-why-text {
    color: #64748b;
    line-height: 1.7;
    margin-top: 10px;
}

/* STATS */
.v1-why-stat h3 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 5px;
}

.v1-why-stat p {
    font-size: 14px;
    color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .v1-why-title {
        font-size: 28px;
    }

    .v1-why-section {
        text-align: center;
    }

    .v1-why-stats {
        justify-content: center;
    }
}

/*---------- V1 Why Choose Us  Section End --------*/

/*============= Index.HTML END  =============*/

/*============= Home.HTML Start =============*/

/*-------- V2 Hero Section Start ------*/

.v2-hero-section {
    background: var(--light-bg);
    padding: 100px 10px;
}

/* TITLE */
.v2-hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
}


/* TEXT */
.v2-hero-text {
    color: #64748b;
    margin: 15px 0;
    line-height: 1.7;
}

/* BUTTONS */
.v2-hero-btn-primary {
    background: #22c55e;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
}

.v2-hero-btn-secondary {
    background: #111827;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
}

/* GRID */
.v2-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* CARD BASE */
.v2-hero-card {
    border-radius: 12px;
    overflow: hidden;
}

/* IMAGE CARD */
.v2-hero-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* STAT CARD */
.v2-hero-stat-card {
    background: #111827;
    color: #fff;
    padding: 20px;
}

.v2-hero-stat-card h3 {
    font-size: 28px;
    color: #22c55e;
}

/* TEXT CARD */
.v2-hero-text-card {
    background: #1f2937;
    color: #fff;
    padding: 20px;
}

.v2-hero-text-card h5 span {
    color: #22c55e;
}


/* RESPONSIVE */
@media (max-width: 991px) {
    .v2-hero-title {
        font-size: 40px;
    }

    .v2-hero-grid {
        margin-top: 30px;
    }

    .v2-hero-card {
        justify-content: center;
        text-align: center;
    }

    .v2-hero-stat-card,
    .v2-hero-text-card {
        background: #111827;
        color: #fff;
        padding: 20px;
        border-radius: 16px;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        min-height: 220px;
    }
}

@media (max-width:1024px) {
    .v2-hero-section {
        padding: 100px 10px;
        text-align: center;
        justify-content: center;
    }

    .v2-hero-text {
        max-width: 600px;
        margin: auto;
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .v2-hero-btns {
        justify-content: center;
        text-align: center;
        margin: auto;
        margin-bottom: 30px;
    }
}

@media (max-width:575px) {
    .v2-hero-title {
        font-size: 30px;
    }

    .v2-hero-text {
        font-size: 16px;
    }

    .mobile-none {
        display: none;
    }

    .v2-hero-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

}

/*-------- V2 Hero Section End --------*/

/*-------- V2 About Us Section Start ---*/

.v2-abt-section {
    background: #ffffff;
    padding: 110px 10px;
}

/* TEXT */
.v2-abt-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #22c55e;
    margin-bottom: 10px;
}

.v2-abt-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
}

.v2-abt-text {
    color: #6b7280;
    margin-top: 15px;
    line-height: 1.7;
}

/* RIGHT SIDE */
.v2-abt-img-wrap {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* IMAGE CARD */
.v2-abt-img-card {
    width: 240px;
    height: 340px;
    border-radius: 12px;
    overflow: hidden;
    background: #111827;
    transition: 0.3s;
}

.v2-abt-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}


.v2-abt-img-card:hover {
    transform: scale(1.05);

}

/*--- RESPONSIVE ---*/

@media (max-width: 991px) {
    .v2-abt-img-wrap {
        margin-top: 30px;
        justify-content: center;
    }

    .v2-abt-title {
        font-size: 40px;
    }

    .v2-abt-text {
        font-size: 18px;
        max-width: 700px;
        margin: auto;
        margin-top: 20px;
    }

    .v2-abt-section {
        text-align: center;
    }
}

@media (max-width:575px) {
    .v2-abt-img-wrap {
        flex-direction: column;
        gap: 30px;

    }

    .v2-abt-img-card {
        width: 100%;
        height: 100%;
        margin: auto;
    }

    .v2-abt-title {
        font-size: 30px;
    }

    .v2-abt-text {
        font-size: 16px;
    }
}

/*-------- V2 About Us Section End -----*/

/*-------- V2 What We Do Start ---------*/

.v2-what-section {
    background: var(--light-bg);
    padding: 100px 10px;
}

/* VIDEO */
.v2-what-video-wrap {
    border-radius: 16px;
    overflow: hidden;
}

.v2-what-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXT */
.v2-what-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 10px;
}

.v2-what-title {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 25px;
}

/* STEP ITEMS */
.v2-what-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.v2-what-number {
    width: 40px;
    height: 40px;
    background: #3b82f6;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.v2-what-item h5 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #111827;
}

.v2-what-item p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width:768px) {
    .v2-what-video-wrap {
        margin-bottom: 30px;
    }

    .v2-what-title {
        font-size: 40px;
        margin-bottom: 40px;
    }

}

@media (max-width: 575px) {
    .v2-what-section {
        text-align: center;
    }

    .v2-what-item {
        flex-direction: column;
        align-items: center;
    }

    .v2-what-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .v2-what-item h5 {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

/*-------- V2 What We Do End -----------*/

/*-------- V2 Process Start ------------*/

.v2-proc-section {
    background: #ffffff;
    padding: 100px 10px;
}

/* LEFT */
.v2-proc-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 10px;
}

.v2-proc-title {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
}

.v2-proc-text {
    color: #6b7280;
    margin: 15px 0;
    line-height: 1.7;
}

.v2-proc-btn {
    background: #6366f1;
    color: #fff;
    padding: 10px 24px;
    border-radius: 6px;
}

/* GRID */
.v2-proc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* CARD */
.v2-proc-card {
    background: #f9fafb;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
}

.v2-proc-card:hover {
    transform: translateY(-5px);
}

/* ICON */
.v2-proc-icon {
    font-size: 22px;
    margin-bottom: 10px;
}

/* TEXT */
.v2-proc-card h5 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #111827;
}

.v2-proc-card p {
    font-size: 14px;
    color: #6b7280;
}

.v2-proc-icon {
    width: 45px;
    height: 45px;
    background: #eef2ff;
    color: #6366f1;
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    margin-bottom: 12px;
}

.dark-mode .v2-proc-icon {
    background: #0f172a;
    color: var(--Highlight-Color);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .v2-proc-grid {
        margin-top: 30px;
    }

    .v2-proc-section {
        text-align: center;
    }

    .v2-proc-title {
        font-size: 40px;
    }

    .v2-proc-text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .v2-proc-icon {
        justify-content: center;
        text-align: center;
        margin: auto;
        margin-bottom: 10px;
    }
}

@media (max-width:575px) {
    .v2-proc-title {
        font-size: 30px;
    }

    .v2-proc-text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .v2-proc-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/*-------- 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: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/inner-hero-bg.png')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 ------*/

.v2-mvv-section {
    background: #fff;
}

/* TABS */
.v2-mvv-tabs .abt-nav-link {
    border: none;
    background: #e5e7eb;
    margin-right: 20px;
    border-radius: 6px;
    padding: 8px 25px;
    color: #111827;
    margin-bottom: 30px;
    font-weight: 600;
}

.abt-nav-link i {
    font-size: 22px;
}

.v2-mvv-tabs .abt-nav-link.active {
    background: #2563eb;
    color: #fff;
}

/* IMAGE */
.v2-mvv-img img {
    border-radius: 12px;
}

/* TEXT */
.v2-mvv-section h3 {
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
}

.v2-mvv-section p {
    color: #6b7280;
    margin-top: 10px;
    line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .v2-mvv-section {
        text-align: center;
    }

    .v2-mvv-img {
        margin-bottom: 20px;
    }
}

/*----- Our Mission & Vission END ------*/

/*----- Who We Are Start ---------*/

.abt-who-section {
    background: var(--light-bg);
    padding: 100px 10px;
}

/* TEXT */

.abt-who-title {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
}

.abt-who-text {
    color: #6b7280;
    margin-top: 15px;
    line-height: 1.7;
}

/* IMAGE */
.abt-who-img-wrap {
    padding: 10px;
    border-radius: 12px;
}

.abt-who-img-wrap img {
    border-radius: 8px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .abt-who-section {
        text-align: center;
    }

    .abt-who-img-wrap {
        margin-top: 30px;
    }

    .abt-who-title {
        font-size: 40px;
    }

    .abt-who-text {
        font-size: 16px;
    }

}

@media (max-width:575px) {

    .abt-who-title {
        font-size: 30px;
    }

    .abt-who-text {
        font-size: 16px;
    }

}

/*----- Who We Are End -----------*/

/*---------- testimonial Start -----------*/

.abt-testi-section {
    background: #f8fafc;
    padding: 100px 10px;
}

.abt-testi-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.abt-testi-sec-text {
    max-width: 600px;
    margin: auto;
    margin-bottom: 60px;
    color: #666;
}

.abt-testi-name {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
}

.abt-testi-text {
    margin-top: 15px;
    color: #6b7280;
    line-height: 1.7;
    max-width: 400px;
}

/* IMAGE */
.abt-testi-img {
    width: 220px;
    height: 220px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
    background: #111827;
}

.abt-testi-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTROLS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #111827;
    border-radius: 50%;
    padding: 20px;

}

.carousel-inner {
    max-width: 700px;
    justify-content: center;
    margin: auto;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .abt-testi-section {
        text-align: center;
    }

    .abt-testi-text {
        margin-left: auto;
        margin-right: auto;
    }

    .abt-testi-img {
        margin-top: 20px;
    }
}


@media (max-width:575px) {
    .abt-testi-title {
        font-size: 30px;
    }

    .abt-testi-img {
        width: 120px;
        height: 120px;
    }

    .abt-testi-name {
        font-size: 22px;
    }

    .abt-testi-text {
        font-size: 14px;
    }

    /* CONTROLS */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        padding: 5px;

    }
}

/*---------- testionial END ---------------*/

/*---------- Our Staff Section Start ----------*/

.abt-team-section {
    background: var(--light-bg);
    padding: 100px 10px;
}

/* TITLE */
.abt-team-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
}

.abt-team-text {
    color: #6b7280;
    max-width: 600px;
    margin: 10px auto 0;
}

/* CARD */
.abt-team-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.abt-team-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* OVERLAY */
.abt-team-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px 20px 10px 20px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.62));
    color: #fff;
    transition: 0.3s;
}

/* SOCIAL */
.abt-team-social {
    margin-top: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s;
}

.abt-team-social a {
    color: #fff;
    margin-right: 10px;
    font-size: 16px;
}

.abt-team-social a:hover {
    color: var(--Highlight-Color);
}

/* HOVER EFFECT */
.abt-team-card:hover .abt-team-social {
    opacity: 1;
    transform: translateY(-5px);
}

/* TEXT */
.abt-team-overlay h5 {
    margin-bottom: 5px;
    color: #FFF;
}

.abt-team-overlay p {
    font-size: 14px;
    opacity: 0.8;
}

.abt-team-card:hover img {
    transform: scale(1.05);
    transition: 0.3s;
}

.abt-team-overlay {
    text-align: center;
}

/*---------- Our Staff section End ------------*/

/*============= About.HTML End =================*/

/*============= service.HTML Start ================*/


/*============= service.HTML END ==================*/

/*============= service Detail.HTML Start =========*/

.serv-det-section {
    background: #f8fafc;
    padding: 80px 10px;
}

.serv-det-title {
    font-weight: 600;
    color: #0f172a;
}

.serv-det-text {
    color: #64748b;
    font-size: 15px;
}

.serv-det-subtitle {
    font-weight: 600;
    color: #1e293b;
}

.serv-det-list {
    padding-left: 18px;
    color: #475569;
}

.serv-det-list li {
    margin-bottom: 8px;
}

/* RIGHT CARD */
.serv-det-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.serv-det-video {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.serv-det-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #3b82f6;
    color: #fff;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
}

.serv-det-btn {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 30px;
    font-weight: 500;
}

.serv-det-includes h6 {
    font-weight: 600;
    margin-bottom: 10px;
}

.serv-det-includes ul {
    padding-left: 18px;
    color: #475569;
}

.serv-det-includes li {
    margin-bottom: 6px;
}


.serv-det-video {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.serv-det-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #3b82f6;
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: 0.3s;
}

.serv-det-play-btn:hover {
    background: #2563eb;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Modal */
.serv-det-modal-content {
    background: #000;
    border: none;
}

/*--------- service Description End ------*/

/*--------- FAQ Section Start ---------------*/

.serv-det-faq-title {
    font-weight: 600;
}

.serv-det-faq-count {
    font-size: 14px;
    color: #64748b;
}

/* Accordion */
.serv-det-acc-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.serv-det-acc-btn {
    background: #f1f5f9;
    font-weight: 500;
    border: none;
}

.serv-det-acc-btn:not(.collapsed) {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #fff;
}

.serv-det-acc-body {
    background: #ffffff;
    color: #475569;
}

/* RIGHT CARD */
.serv-det-help-card {
    background: linear-gradient(135deg, #4f46e5, #2563eb);
    padding: 25px;
    border-radius: 16px;
}

.dark-mode .serv-det-acc-btn {
    background: #131313;
    color: #FFF;
}

.dark-mode .serv-det-acc-btn:not(.collapsed) {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #fff;
}

.dark-mode .serv-det-acc-body {
    background: #232323;
    color: #FFF;
}

.dark-mode .serv-det-acc-item {
    background: #131313;
}

/*--------- FAQ Section End -----------------*/

/*--------- Price Section Start -------------*/

.serv-det-price-section {
    background: #f8fafc;
}

.serv-det-price-title {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 20px;
    font-size: 42px;
}

.serv-det-price-text {
    font-size: 16px;
    color: #555;
    margin: auto;
    margin-bottom: 50px;
    max-width: 600px;
    text-align: center;
}

/* CARD */
.serv-det-price-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.serv-det-price-card:hover {
    transform: translateY(-5px);
}

/* HEADER */
.serv-det-price-header {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.serv-det-price-header h2 {
    margin: 0;
    font-size: 32px;
}

/* LIST */
.serv-det-price-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.serv-det-price-list li {
    margin-bottom: 10px;
    color: #475569;
}

/* BUTTON */
.serv-det-price-btn {
    border: 1px solid #3b82f6;
    background: transparent;
    color: #3b82f6;
    padding: 10px 25px;
    border-radius: 30px;
    transition: 0.3s;
}

.serv-det-price-btn:hover {
    background: #3b82f6;
    color: #fff;
}

/* ACTIVE CARD */
.serv-det-price-active {
    transform: scale(1.05);
    border: 2px solid #2563eb;
}

.active-btn {
    background: #2563eb;
    color: #fff;
}

/*--------- Price Section End ---------------*/


/*--- Responsive ---*/

@media (max-width:900px) {
    .serv-det-price-title {
        font-size: 40px;
    }
}

@media (max-width:575px) {
    .serv-det-price-title {
        font-size: 30px;
    }
}

/*============= service Detsil.HTML End ===========*/

/*============= Blog.HTML Start==================*/

.tc-blog-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.tc-blog-card:hover {
    transform: translateY(-5px);
}

.tc-blog-card img {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.tc-blog-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.tc-blog-card p {
    font-size: 14px;
    color: #666;
}

.tc-blog-card a {
    color: var(--Highlight-Color) !important;
    font-weight: 500;
    text-decoration: none;
    transition: .4s;
}

.tc-blog-card a:hover {
    letter-spacing: 2px;
}

.tc-blog-badge {
    position: absolute;
    top: 40px;
    left: 30px;
    background: #0d6efd;
    color: #fff;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 14px;
    transform: translateX(-150px);
    transition: .4s;
}

.tc-blog-card:hover .tc-blog-badge {
    transform: translateX(0px);
}

.tc-blog-search,
.tc-blog-filter {
    border-radius: 8px;
}

.dark-mode .tc-blog-search {
    background: #0a0a0a;
    color: #FFF;
}

.dark-mode .tc-blog-filter {
    background: #242424;
    color: #fff;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 35px;
}

.dark-mode .tc-blog-search::placeholder {
    color: #bbb;
}

/*============= Blog.HTML END ===================*/

/*============= BLOG DETAILS START ==============*/

.blog-deta-widget {
    background: #f8f9fa;
    border-radius: 10px;
}

.blog-deta-btn {
    background: linear-gradient(135deg, #2F86D6, #5BB6FF);
    color: #fff;
}

.blog-deta-cat-list {
    list-style: none;
    padding: 0;
}

.blog-deta-cat-list li {
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 8px;
    background: #eee;
    cursor: pointer;
}

.blog-deta-cat-list li.active {
    background: linear-gradient(135deg, #2F86D6, #5BB6FF);
    color: #fff;
}
.dark-mode .blog-deta-cat-list li{
    background: #070415;
    color: #bbb;
}

.blog-deta-btn:hover{
    color: #FFF;
}
.blog-deta-recent img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 6px;
}

.blog-deta-tags span {
    display: inline-block;
    background: #eee;
    padding: 6px 10px;
    margin: 5px;
    border-radius: 6px;
}

.blog-deta-main-img {
    border-radius: 12px;
}

.blog-deta-meta span {
    margin-right: 15px;
    color: #777;
}
.blog-deta-meta span i{
    color: #0d6efd;
    font-size: 16px;
}

.blog-deta-quote {
    background: #f3fbff;
    padding: 20px;
    border-left: 4px solid #5BB6FF;
    border-radius: 8px;
}
.dark-mode .blog-deta-quote{
    background: #051734;
}

.blog-deta-video {
    border-radius: 10px;
    overflow: hidden;
}

.blog-deta-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #6B0F1A;
    color: #fff;
    padding: 10px 15px;
    border-radius: 50%;
}

.blog-deta-tag {
    background: #eee;
    padding: 5px 10px;
    margin-right: 5px;
    border-radius: 6px;
}

.blog-deta-comment {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 2px solid #999;
}

.blog-deta-stick{
    position: sticky;
    top: 125px;
    height: 150dvh;
}

@media (max-width:900px) {
    .blog-deta-stick{
        position: relative;
        top: 0;
        height: auto;
    }
    .blog-deta-none{
        display: none;
    }
}
@media (min-width:1000px) {
    .blog-deta-desk-none{
        display: none;
    }
}
@media (min-width:2560px) {
    .blog-deta-stick{
        height: auto;
    }
}
@media (max-width:340px) {
    .blog-deta-meta span i{
        font-size: 14px;
    }
}

.dark-mode .form-control{
    background: #242424;
    color: #FFF;
}
.dark-mode .form-control::placeholder{
    color: #bbb;
}
/*============= BLOG DETAILS END ================*/

/*============= CONTACT.HTML START ==============*/

.tc-cont-section {
    background: #f8f9fb;
}

.tc-cont-form-box {
    background: #ffffff;
    border-radius: 16px;
}

.tc-cont-title {
    font-weight: 600;
    color: #0f172a;
}

.tc-cont-subtext {
    color: #64748b;
    font-size: 14px;
}

.tc-cont-input {
    border-radius: 30px;
    padding: 12px 18px;
    border: 1px solid #e2e8f0;
}

.tc-cont-input:focus {
    box-shadow: none;
    border-color: #3b82f6;
}

.tc-cont-btn {
    background: #3b82f6;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    transition: 0.3s;
}

.tc-cont-btn:hover {
    background: #2563eb;
}

/* RIGHT BOX */
.tc-cont-info-box {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    border-radius: 20px;
}

.tc-cont-info-title {
    font-weight: 600;
}

.tc-cont-info-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 12px;
}

.tc-cont-icon {
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.tc-cont-divider {
    border-color: rgba(255, 255, 255, 0.3);
}

.tc-cont-social-text {
    font-size: 14px;
}

.tc-cont-social i {
    font-size: 22px;
    cursor: pointer;
}

.tc-cont-social i:hover {
    color: var(--Highlight-Color);
}

.dark-mode .tc-cont-input {
    background: #111827;
    color: #FFF;
}

.dark-mode .tc-cont-input::placeholder {
    color: #bababa;
}

/*--- Map ---*/

.tc-cont-map-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.dark-mode .tc-cont-map-box {
    filter: grayscale(9);
}

/*--- Responsive ---*/
@media (max-width:575px) {
    .tc-cont-title {
        text-align: center;
    }

    .tc-cont-subtext {
        text-align: center;
    }

    .tc-cont-btns {
        justify-content: center;
        text-align: center;

    }

    .tc-cont-info-title {
        text-align: center;
    }

    .tc-cont-social-text {
        text-align: center;
    }

    .tc-cont-social {
        justify-content: center;
        text-align: center;
    }
}

/*================= CONTACT.HTML END ===============*/

/*------------ CTA SECTION ------------*/

.tc-cta-section {
    position: relative;
    overflow: hidden;
}

/* LEFT CONTENT */
.tc-cta-content {
    background: #1e293b;
    color: #fff;
    padding: 80px 60px;
    position: relative;
    z-index: 2;
}

/* ANGLED SHAPE */
.tc-cta-content::after {
    content: '';
    position: absolute;
    top: 0;
    right: -80px;
    width: 160px;
    height: 100%;
    background: #1e293b;
    transform: skewX(-20deg);
    z-index: -1;
}

/* RIGHT IMAGE */
.tc-cta-bg {
    background: url('../img/cta-img.png') center/cover no-repeat;
    min-height: 350px;
}

/* TEXT */
.tc-cta-title {
    font-size: 36px;
    font-weight: 700;
}

.tc-cta-text {
    margin: 15px 0;
    color: #cbd5f5;
    line-height: 1.7;
}

/* BUTTON */
.tc-cta-btn {
    background: var(--secondary-color);
    color: #000;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 500;
    margin-top: 10px;
}

.tc-cta-btn:hover {
    background: #1d4ed8;
    color: #FFF;
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .tc-cta-content {
        padding: 50px 20px;
        text-align: center;
    }

    .tc-cta-content::after {
        display: none;
    }

    .tc-cta-bg {
        min-height: 250px;
    }
}

@media (max-width:768px) {
    .tc-cta-title {
        font-size: 40px;
    }

    .tc-cta-text {
        font-size: 18px;
    }

    .tc-cta-bg {
        display: none;
    }

    .tc-cta-content {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('../img/cta-img.png') center/cover no-repeat;
    }
}

@media (max-width:576px) {
    .tc-cta-content {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('../img/cta-img.png') right center/cover no-repeat;
    }

    .tc-cta-title {
        font-size: 30px;
    }

    .tc-cta-text {
        font-size: 16px;
    }

}

@media (max-width:991px) {
    .tc-cta-bg {
        display: none;
    }

}