/* ===============================
   🔤 FONT IMPORTS
================================= */
@font-face {
    font-family: 'font-head';
    src: url('../fonts/BebasNeue-Regular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'font-para';
    src: url('../fonts/OpenSans-Regular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'font-menu';
    src: url('../fonts/RethinkSans-Regular.ttf') format('truetype');
    font-display: swap;
}

/* ===============================
  ROOT VARIABLES
================================= */
:root {
    --primary-color: #ff0000;
    --secondary-color: #050317;
    --accent-color: #f5ebdf;

    --white: #ffffff;
    --black: #000000;
    --text-color: #9c9b9b;
    --bg-color: #0c0c0c;

    --font-head: 'font-head', sans-serif;
    --font-menu: 'font-menu', sans-serif;
    --font-para: 'font-para', sans-serif;

    --space-sm: 30px;
    --space-md: 50px;
    --space-lg: 80px;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 20px;

    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.2);

    --transition-fast: 0.3s ease;
    --transition: 0.5s ease;

    --z-header: 1000;
    --z-modal: 2000;
}

::selection {
    background: var(--accent-color);
    color: var(--secondary-color);
}

::-moz-selection {
    background: var(--accent-color);
    color: var(--secondary-color);
}

/* ===============================
    RESET + BASE
================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}

body {
    font-family: var(--font-para);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--black);
    overflow-x: hidden !important;
}

/* ===============================
    TYPOGRAPHY
================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

p {
    font-size: clamp(15px, 1.8vw, 17px);
    color: var(--text-color);
    margin-bottom: 10px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-color);
}


.section {
    padding: var(--space-md) 0;
}

.section-lg {
    padding: var(--space-lg) 0;
}

.container-fluid {
    width: 85%;
}

ul,
ol {
    list-style: none;
}

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

/* ==================================================================
                              COMMON CSS 
==================================================================== */
/* smoother animation feel */
/* .wow {
    visibility: hidden !important;
}

.wow.animate__animated {
    visibility: visible !important;
    animation-duration: 1.2s !important;
    animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1) !important;
} */


.top-header {
    display: none;
}

#scrollTopBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 999999;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#scrollTopBtn::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff1a1a, #990000);
    opacity: 0;
    transition: 0.3s;
    z-index: -1;
}
.error{
    color: var(--primary-color);
}

#scrollTopBtn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.4);
    animation: pulse 2s infinite;
    z-index: -2;
}

#scrollTopBtn:hover {
    transform: translateY(-6px) scale(1.1);
    background: #ff1a1a;
}

#scrollTopBtn:hover::before {
    opacity: 1;
}

#scrollTopBtn i {
    transition: 0.3s;
}

#scrollTopBtn:hover i {
    transform: translateY(-3px);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.6);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}


/* ===============pre loader */

#preloader {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.preloader-content {
    text-align: center;
    width: 300px;
}

.preloader-logo {
    width: 240px;
    margin-bottom: 20px;
    animation: logoPulse 1.5s ease-in-out infinite alternate;
}

@keyframes logoPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.loading-text {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.loader {
    width: 100%;
    height: 8px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    margin-top: 30px;
}

.loader::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;

    background: linear-gradient(90deg, #ff1a1a, #990000);
    border-radius: 10px;

    animation: load 2.5s ease-in-out infinite;
    box-shadow: 0 0 15px #ff1a1a;
}

@keyframes load {
    0% {
        width: 0%;
        left: 0;
    }

    50% {
        width: 100%;
        left: 0;
    }

    100% {
        width: 0%;
        left: 100%;
    }
}





/* =========== connon style */
[data-aos] {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.header-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.header-sec p {
    font-size: 16px;
}

.main-head {
    font-size: clamp(26px, 4vw, 60px);
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 800;
    color: var(--white) !important;
    letter-spacing: 5px;
}

.main-head span {
    font-size: clamp(15px, 2.5vw, 26px);
}

#citySelect option {

    text-transform: capitalize;
}

.sub-main {
    position: relative;
    text-align: center;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    color: var(--white);
    margin: 20px 0;
    letter-spacing: 1px;
}

.sub-head {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 500;
    color: var(--white);
    margin: 10px 0px;
}

.sub-main::before,
.sub-main::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    transform: translateY(-50%);
}

.sub-main::before {
    left: calc(50% - 140px);
    transform: translate(-100px, -50%);
    animation: slideLeft 0.8s ease forwards;
}

.sub-main::after {
    right: calc(50% - 140px);
    transform: translate(100px, -50%);
    animation: slideRight 0.8s ease forwards;
}

@keyframes slideLeft {
    to {
        transform: translate(0, -50%);
    }
}

@keyframes slideRight {
    to {
        transform: translate(0, -50%);
    }
}

.sub-head-1 {
    font-size: clamp(18px, 2.5vw, 28px);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 1;
    transform: translateX(-40px) scale(0.95);
}

.sub-head-1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 80px;
    height: 2px;
    background: var(--white);
    transition: width 0.4s ease;
}



.head-sec {
    position: relative;
    text-align: center;
    overflow: hidden;
    padding: 30px 0px;
}

.head-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.text-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    font-size: clamp(40px, 10vw, 140px);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.06);
    white-space: nowrap;
    z-index: 2;
}

.main-text {
    position: relative;
    z-index: 3;

    font-size: clamp(24px, 3vw, 42px);
    font-weight: 700;
    color: #fff;
}




.sub-head-1 .icon img {
    width: 30px;
}

.sub-head-1 .icon {
    transform: scale(0);
    animation: iconPop 0.5s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes slideLion {
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes iconPop {
    0% {
        transform: scale(0) rotate(-20deg);
    }

    60% {
        transform: scale(1.3) rotate(5deg);
    }

    100% {
        transform: scale(1) rotate(0);
    }
}

.main-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-list li a {
    color: var(--primary-color);
    padding: 0px 5px;
}

.main-list li strong {
    color: var(--primary-color);
    font-weight: 800;
}

.main-list li {
    padding: 10px 15px;
    font-size: 14px;
    color: var(--white);
}

.custom-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 8px 8px 18px;
    border-radius: 50px;
    text-decoration: none;
    background: linear-gradient(90deg, #3a5cff, var(--primary-color));
    color: var(--white);
    font-size: clamp(12px, 1.1vw, 15px);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    text-transform: uppercase;
}

.custom-btn a .btn-text {
    white-space: nowrap;
}

.custom-navbar .navbar-toggler:focus {
    box-shadow: none !important;
}


.custom-btn a .btn-icon {
    width: 36px;
    height: 36px;
    background: var(--accent-color);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
}

.custom-btn a:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.1);
}

.custom-btn a:hover .btn-icon {
    transform: rotate(45deg) scale(1.1);
}

.custom-btn a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.custom-btn a:hover::before {
    left: 120%;
}

.custom-white-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 8px 8px 18px;
    border-radius: 50px;
    text-decoration: none;
    background: #fff;
    color: #000;
    font-size: clamp(12px, 1.1vw, 15px);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    text-transform: uppercase;
}

.custom-white-btn a .btn-text {
    white-space: nowrap;
}

.custom-white-btn a .btn-icon {
    width: 36px;
    height: 36px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
}

.custom-white-btn a:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.custom-white-btn a:hover .btn-icon {
    transform: rotate(45deg) scale(1.1);
}

.custom-white-btn a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.custom-white-btn a:hover::before {
    left: 120%;
}

.inner-sub-banner {
    position: relative;
}

.inner-sub-banner .banner-image {
    width: 100%;
    height: auto;
}

.sub-banner-overlay {
    position: absolute;
    top: 64%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 95%;
}

.side-banner .sub-banner-overlay {
    position: absolute;
    top: 55%;
    left: 5%;
    transform: translateY(-50%);
    text-align: left;
    width: auto;
    max-width: 500px;
}

/* 
.sub-banner-overlay .main-head {
    font-size: clamp(24px, 3vw, 48px);
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
} */


.sub-banner-overlay .main-head {
    width: 100%;
    max-width: 650px;
    margin: 0px auto;
    font-size: clamp(28px, 3.5vw, 34px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.6),
        0 4px 20px rgba(0, 0, 0, 0.4);
}

.sub-banner-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: clamp(60px, 10vw, 10px) 20px;
    text-align: center;
}

.sub-banner-overlay {
    background: none;
    /* padding: clamp(60px, 10vw, 100px) 20px; */
    text-align: center;
}

.sub-banner-overlay .main-head {
    display: inline-block;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

.sub-banner-overlay .main-head {
    display: inline-block;
    padding: 16px 28px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    border-radius: 12px;

    border: 1px solid rgba(255, 255, 255, 0.15);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.4);
}




.sub-banner-heaad {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 10;

}

.sub-banner-heaad {
    position: relative;
}

.sub-banner-heaad::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 1px;
    background: #adadad;

    bottom: -12px;
}

.side-banner .sub-banner-heaad::after {
    content: "";
    position: absolute;
    left: 75%;
}

.sub-banner-heaad .sub-head {
    font-size: clamp(22px, 2.4vw, 44px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.6),
        0 4px 20px rgba(0, 0, 0, 0.4);
}

.sub-banner-heaad p {
    font-size: clamp(14px, 1.2vw, 17px);
    color: #ddd;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sub-bread-crumbs {
    margin-top: 20px;
}

.sub-bread-crumbs ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    list-style: none;
    padding: 0;
}

.side-banner .sub-bread-crumbs ul {
    justify-content: start;
}

.sub-bread-crumbs li:not(:last-child) {
    position: relative;
    padding-right: 15px;
}

.sub-bread-crumbs li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: #888;
}

.sub-bread-crumbs li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.sub-bread-crumbs li:last-child a {
    color: var(--primary-color);
}

/* -------------- HEADER CSS  */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.custom-navbar {
    background: var(--black);
    border-radius: 50px;
    padding: 10px 20px;
    margin: 20px auto;
    width: 95%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.custom-navbar .navbar-nav {
    gap: 40px;
}

.custom-navbar .navbar-nav .nav-link {
    color: var(--white);
    font-size: clamp(13px, 0.9vw, 16px);
    font-family: var(--font-menu);
    transition: 0.3s;
}

.custom-navbar .nav-link {
    position: relative;
    padding-left: 15px;
}

.custom-navbar .nav-link.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 70%;
    background: var(--primary-color);
    border-radius: 5px;
}

.custom-navbar .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.custom-navbar {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1800px;
    z-index: 99999;
    transition: all 0.3s ease;
}

.home-page .top-header {
    display: block !important;
}

.home-page .custom-navbar {
    top: 50px !important;
}

.custom-navbar.sticky {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);

    width: 100%;
    max-width: 1800px;

    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.custom-navbar .navbar-toggler img {
    width: 30px;
}

.custom-navbar .navbar-toggler {
    border: none;
}

.custom-navbar .navbar-toggler-icon {
    filter: invert(1);
}

.custom-offcanvas {
    z-index: 99999;
    background: var(--secondary-color);
}

.custom-offcanvas .nav-link {
    color: var(--white);
    margin-bottom: 10px;
}

.custom-offcanvas .nav-link:hover {
    color: var(--primary-color);
}

.custom-offcanvas {
    background: linear-gradient(180deg, #050317, #000);
    width: 320px !important;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.custom-offcanvas .offcanvas-header {
    padding: 16px;
}

.custom-offcanvas .offcanvas-header {
    position: relative;
    padding-bottom: 12px;
}

.btn-close:focus {
    box-shadow: none !important;
}

.custom-offcanvas .offcanvas-header::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 90%;
    height: 1.5px;
    background: #80808036;
    border-radius: 50px;
    z-index: 99999;
}

.custom-offcanvas span {
    font-size: clamp(14px, 2vw, 15px);
    letter-spacing: 0.5px;
}

.custom-offcanvas .mobile-menu {
    margin-top: 10px;
}

.custom-offcanvas .mobile-menu .nav-link {
    position: relative;
}

.custom-offcanvas .mobile-menu .nav-link::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.custom-offcanvas .mobile-menu .nav-link:hover::before,
.custom-offcanvas .mobile-menu .nav-link.active::before {
    width: 60%;
}

.custom-offcanvas .mobile-menu .nav-link {
    color: var(--white);
    font-size: clamp(15px, 1.2vw, 18px);
    padding: 12px 10px;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.custom-offcanvas .mobile-menu .nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
    padding-left: 18px;
}

.custom-offcanvas .mobile-menu .nav-link i {
    margin-right: 10px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.custom-offcanvas .mobile-menu .nav-link {
    display: flex;
    align-items: center;
}

.custom-offcanvas .mobile-menu .nav-link.active {
    color: var(--primary-color);
}

.custom-offcanvas .mobile-menu .nav-link.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--primary-color);
    border-radius: 5px;
}

.custom-offcanvas .offcanvas-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    margin-top: 20px;
}

.custom-offcanvas .footer-title {
    text-align: center;
    color: var(--white);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.custom-offcanvas .contact-info {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.custom-offcanvas .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #bbb;
    padding: 8px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.custom-offcanvas .contact-item i {
    color: var(--primary-color);
    font-size: 14px;
    min-width: 18px;
    text-align: center;
}


.custom-offcanvas .contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transform: translateX(4px);
}

.custom-offcanvas .contact-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-offcanvas::-webkit-scrollbar {
    width: 4px;
}

.custom-offcanvas::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.custom-offcanvas .social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    justify-content: center;
    align-items: center;
}

.custom-offcanvas .social-item {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid var(--accent-color);
    color: #fff;
    transition: 0.3s;
}

.custom-offcanvas .custom-btn {
    text-align: center;
}

.custom-offcanvas .custom-btn a {
    display: block;
    max-width: 250px;
    margin: 10px auto;
    text-align: center;
}

.custom-offcanvas .social-item i {
    font-size: 12px;
}

.top-header {
    color: #fff;
    font-size: clamp(12px, 1.8vw, 14px);
    padding: 8px 0;
    position: relative;
    overflow: hidden;
    padding-top: 20px;
}

.top-header {
    position: relative;
}

.top-header::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 96%;
    height: 2px;

    background: rgba(255, 255, 255, 0.2);

    transform: translateX(-50%);
}


.top-header .right-bar {
    position: relative;
    padding-right: 15px;
}

.top-header .right-bar::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 2px;
    height: 20px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
}

.top-header .left-text {
    font-weight: 500;
}

.top-header .right-info span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-header .right-info i {
    font-size: 14px;
}

.top-header .social-icons a {
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}


/* -------------- FOOTER CSS  */
.custom-footer {
    position: relative;
    background: url('../images/bg/footer.webp') center/cover no-repeat;
    color: #fff;
    background-attachment: fixed;
}

.footer-support {
    display: none;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.45);
}

.footer-bottom {
    position: relative;
    z-index: 10;
}

.footer-inner {
    position: relative;
    padding: 60px 20px;
}

.footer-logo {
    max-width: 300px;
}

.footer-head span {
    color: var(--primary-color);
}

.footer-head {
    font-size: 22px;
    color: var(--white);
}

.custom-footer .footer-bottom {
    background: #111;
    color: #ccc;
    padding: 12px 20px;
    font-size: 14px;
}

.custom-footer .footer-bottom-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.custom-footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.custom-footer .footer-links a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.custom-footer .footer-links a:hover {
    color: #fff;
}

/* COPY */
.custom-footer .footer-copy {
    font-size: 13px;
}

.custom-footer .footer-copy a {
    color: #ff3c3c;
    text-decoration: none;
    margin-left: 5px;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

.newsletter-box {
    display: flex;
    background: #111;
    border-radius: 5px;
    overflow: hidden;
}

.newsletter-box input {
    flex: 1;
    border: none;
    padding: 10px;
    background: transparent;
    color: #fff;
}

.newsletter-box button {
    border: none;
    padding: 10px 15px;
    color: #fff !important;
    background-color: rgba(128, 128, 128, 0.726);
}

.social-icons-footer {
    display: flex;
    gap: 12px;
}

.social-icons-footer {
    display: flex;
    gap: 12px;
}

.social-icons-footer a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    color: #fff !important;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(12px, 2vw, 15px);
    text-decoration: none;

    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

.social-icons-footer a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    color: var(--white);
    transform: scale(0);
    border-radius: 50%;
    transition: 0.3s ease;
    z-index: 0;
}

.social-icons-footer a i {
    position: relative;
    color: #fff !important;
    z-index: 1;
    transition: 0.3s;
    margin: 0px !important;
}

.social-icons-footer a:hover {
    border: none !important;
}

.social-icons-footer a:hover::before {
    transform: scale(1);
}

.social-icons-footer a:hover i {
    color: #000;
}

.social-icons-footer a:hover {
    transform: translateY(-2px);
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-menu a:hover {
    color: #fff;
    padding-left: 5px;
}

.custom-footer i {
    margin-right: 8px;
    color: var(--white)
}

.footer-bottom {
    background: #000;
    padding: 10px;
    font-size: 14px;
}

.footer-bottom span {
    color: red;
}



/* ==================================================================
                               CSS 
==================================================================== */




/* ==================================home page======================  */
.inner-banner {
    position: relative;
}

.inner-banner .container-fluid {
    width: 100% !important;
    padding: 0px !important;
}

.inner-banner .container-fluid {
    padding: 0;
}

.banner-slider .banner-item img {
    width: 100%;
    height: 800px;
    object-fit: cover;
}

.banner-item {
    position: relative;
}

.banner-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.banner-overlay-2 {
    position: absolute;
    bottom: 12%;
    left: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #fff;
    z-index: 2;
}

.banner-overlay-2>div:first-child {
    flex-shrink: 0;
}

.banner-overlay-2>div:last-child {
    max-width: 600px;
}

.banner-overlay-2 p {
    margin: 0;
    line-height: 1.6;
    opacity: 0.9;
    color: var(--white);
}



/*===================== get in toutch section */
.get-in-touch {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.get-in-touch img {
    width: 100%;
    height: 750px;
    object-fit: cover;
}

.get-in-touch::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.55) 20%,
            rgba(0, 0, 0, 0.25) 60%,
            rgba(0, 0, 0, 0.05) 100%);
}

.get-in-wrap {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);

    z-index: 2;
    width: 100%;
    max-width: 1100px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    flex-direction: column;

}

.wow {
    transform: none !important;
}

.get-content p {
    color: #fff;
    line-height: 1.7;
    font-size: clamp(14px, 1.4vw, 18px);
    opacity: 0.95;
}

.get-content .main-head {
    font-size: clamp(18px, 2.5vw, 35px);
}

.get-content .custom-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.get-content {
    margin-top: 5px;
    margin: 0px auto !important;
}


/* ==================about us sectio */
.home-about {
    padding: 60px 0px;
}

.home-about-right img {
    object-fit: cover;
    border-radius: var(--radius-sm);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.home-about-right img:hover {
    transform: scale(1.01);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* ===================home counter */
.home-counter {
    position: relative;
    width: 100%;
    min-height: 1700px;
    overflow: hidden;
}

.home-counter .container-fluid {
    position: relative;
    z-index: 2;
    height: 100%;
}

.counter-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.home-counter .header-sec {
    margin-top: 390px;
}

.home-counter .main-head {
    text-align: center;
}

.home-counter .container-fluid {
    padding-top: 290px;
}

.counter-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.counter-box {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.3s ease;
}

.counter-box h3 {
    font-size: clamp(28px, 4.5vw, 48px);
    margin: 0;
    font-weight: 600;
}

.counter-box p {
    font-size: clamp(12px, 1.2vw, 16px);
    margin: 0;
    opacity: 0.8;
}

.counter-box:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

/* ================= whu card */
.why-wraper {
    background-color: var(--black);
    position: relative;
}

.why-overlay-2 img {
    animation: floatReverse 6s ease-in-out infinite;
    will-change: transform;
}

@keyframes floatReverse {
    0% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(15px) scale(1.02);
    }

    100% {
        transform: translateY(0px) scale(1);
    }
}

.why-overlay-1 img {
    animation: floatSmooth 6s ease-in-out infinite;
    transform-origin: center;
}

@keyframes floatSmooth {
    0% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.02);
    }

    100% {
        transform: translateY(0px) scale(1);
    }
}

.why-overlay-1 {
    position: absolute;
    top: -2%;
    left: 7%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 10;
}

.why-overlay-2 {
    position: absolute;
    top: 14%;
    left: 90%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 10;
}

.why-overlay-3 {
    position: absolute;
    top: 22%;
    left: 49%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 10;
}

.inner-home-why .custom-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.inner-home-why {
    position: absolute;
    top: -2%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 99;

}

.inner-home-why .container-fluid {
    width: 65%;
}

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box img {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.4s ease;
}

.why-card:hover .icon-box img {
    transform: translateY(-14px) scale(1.15);
    filter: drop-shadow(0 10px 20px rgba(255, 0, 0, 0.25));
}

.why-card {
    position: relative;
    padding: 40px 25px;
    border-radius: 18px;
    color: #fff;
    height: 100%;
    overflow: hidden;

    background: linear-gradient(135deg,
            #1a0066 0%,
            #2b0a91 40%,
            #3a0ca3 70%,
            #4b1fd1 100%);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: 0.4s ease;
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);

    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    font-size: 24px;
}

.why-card h5 {
    margin-bottom: 10px;
    font-size: clamp(18px, 2vw, 24px);
}

.why-card p {
    font-size: clamp(13px, 1.5vw, 14px);
    opacity: 0.8;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* =========================methods */
.methods-inner {
    position: absolute;
    top: 88%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    width: 100%;
    max-width: 900px;
}

.methods-inner .header-sec p {
    text-align: center;
}

.methods-inner .header-sec .main-head {
    text-align: center;
    font-size: clamp(24px, 4vw, 40px);
}

.methods-inner .header-sec .main-head span {
    font-size: clamp(20px, 3.5vw, 34px);
}


.methods-tablink-wrap {
    position: absolute;
    bottom: -3%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.methods-tablink-wrap {
    width: 100%;
    padding: 40px 20px;
    color: #fff;
}


.methods-tab-wrap .tab-pane {
    display: none;
}

.tab-pane.active {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.methods-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}


.methods-dropdown {
    display: none;
}

.methods-tabs .tab {
    font-size: 14px;
    letter-spacing: 1px;
    padding: 10px 0;
    cursor: pointer;
    position: relative;
    color: #aaa;
    transition: 0.3s;
}

.methods-tabs .tab:hover {
    color: #fff;
}

.methods-tabs .tab.active {
    color: #fff;
}

.methods-tabs .tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: #ff2a2a;
}


.methods-tab-wrap {
    padding: 80px 0px;
    width: 100%;
    height: 650px;
}

.methods-content {
    position: relative;
}

.methods-content .methods-right {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-50%, 3%);
    padding: 40px 20px 270px 80px;
    width: 97%;
    max-width: 700px;
    border-radius: 25px;
    background: linear-gradient(135deg, #0b0b0b, #140018);
    border: 1px solid rgba(255, 0, 0, 0.4);
    z-index: 1;
}

.methods-left img {
    width: 62%;
    height: auto;
    border-radius: 18px;
}

.methods-left {
    position: absolute;
    top: 50%;
    left: -30;
    transform: translate(38%, -13%);
    width: 48%;
    z-index: 2;
}

.methods-right .main-head {
    font-size: clamp(22px, 3vw, 36px);
}

/*============================================= home-support */
.home-support {
    padding: 50px 0px;
}

.home-support .header-sec {
    text-align: center;
}

.home-support .header-sec .main-head {
    font-size: clamp(22px, 3vw, 32px);
}

.home-support .header-sec .main-head span {
    font-size: clamp(18px, 2.5vw, 26px);
}


.support-item {
    display: flex;
    gap: 15px;
    color: #ccc;
    transition: 0.3s;
    width: 100%;
    max-width: 250px;
    margin: 30px auto;
    align-items: center;
}

.support-item img {
    width: 70px;
    transition: 0.3s;
}

.support-item:hover img {
    transform: rotate(-5deg) scale(1.02);
    filter: none;
}

.support-item p {
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.6;
    margin: 0;
}

.support-item:hover p {
    color: #fff;
}

/* =====================partnership section */
.inner-partnership .container-fluid {
    width: 100% !important;
    padding: 0px !important;
}

.inner-partnership {
    background: #000;
}

.partnership-left {
    height: 100%;
}

.partnership-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.partnership-right {
    height: 100%;
    padding: 60px;
    color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: linear-gradient(135deg, #0b0b0b, #0d1b2a);
    background-image: url('../images/bg/partership-bg.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.partnership-right p {
    font-size: clamp(13px, 1vw, 15px);
    color: #ccc;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 25px;
}


/* ====================owner words */
.words-inner {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
}

/* background layer */
.words-inner::before {
    content: "";
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;

    background-image: url('../images/bg/words-bg.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    z-index: -1;
    transform: translateZ(0);
    will-change: transform;
}

.words-overlay {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 600px;
    padding: 40px 50px;
    border-radius: 25px;
    background: rgba(48, 2, 2, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 0, 0, 0.5);

    color: #fff;
}

.words-overlay .main-head span {
    font-size: clamp(28px, 3.5vw, 60px);
    color: transparent;
    -webkit-text-stroke: 1.5px #fff;
}

.words-overlay .main-head {
    font-size: clamp(28px, 3.5vw, 60px);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.words-overlay .quote {
    font-size: clamp(14px, 1.2vw, 18px);
    color: #ddd;
    margin-bottom: 20px;
}

.words-overlay .author {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.words-overlay .designation {
    font-size: 13px;
    color: #bbb;
}

/* =======================home gallery section */
.inner-home-gallery {
    padding: 50px 0px;
}

.home-gallery-wrap {
    width: 100%;
    margin: 40px auto;
}

.home-gallery-wrap .gallery-tabs {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 10px !important;
}

.gallery-tabs .gallery-tab-btn {
    position: relative;
    padding: 0 15px;
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
}

.gallery-tabs .gallery-tab-btn:not(:last-child)::before {
    content: "|";
    position: absolute;
    right: -10%;
    top: 40%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 14px;
}

.gallery-tab-btn {
    position: relative;
    background: none;
    border: none;
    color: #aaa;
    font-weight: 500;
    cursor: pointer;
    padding-bottom: 8px;

}

.gallery-tab-btn.active {
    color: #fff;
}

.gallery-tab-btn {
    position: relative;
}

.gallery-tab-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 6px;
    height: 6px;
    background: red;
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    transition: 0.3s ease;
}

.gallery-tab-btn.active::after {
    transform: translateX(-50%) scale(1);
}

.home-gallery-wrap .gallery-tab-content {
    display: none;
    text-align: center;
}

.home-gallery-wrap .gallery-tab-content.active {
    display: block;
}

.gallery-tab-dropdown {
    display: none;
    width: 70%;
    margin: 0px auto;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.home-gallery-wrap .gallery-tab-content>.row {
    display: flex;
    align-items: stretch;
}

.home-gallery-wrap .container-fluid {
    width: 100% !important;
}

.gallery-tab-content .row {
    display: flex;
    align-items: stretch;
}

.gallery-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 6px;
}

.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.right-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    height: 100%;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.overlay span {
    color: #fff;
    font-size: 24px;
    transform: scale(0.7);
    transition: 0.3s;
}

/* hover */
.gallery-box:hover img {
    transform: scale(1.08);
}

.gallery-box:hover .overlay {
    opacity: 1;
}

.gallery-box:hover .overlay span {
    transform: scale(1);
}

/* wrapper */
.gallery-box {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

/* image */
.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

/* DARK OVERLAY */
.gallery-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: 0.4s ease;
    z-index: 1;
}

/* SHINE EFFECT (diagonal light) */
.gallery-box::after {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg,
            transparent 40%,
            rgba(255, 255, 255, 0.3),
            transparent 60%);
    transform: rotate(25deg);
    transition: 0.6s;
    z-index: 2;
}

.overlay span {
    position: relative;
    z-index: 3;
    color: #fff;
    font-size: 26px;
    opacity: 0;
    transform: scale(0.6);
    transition: 0.4s;
    border: 1ox solid var(--white);
    border-radius: 50%;
    padding: 10px;
}

.gallery-box:hover img {
    transform: scale(1.1);
}

.gallery-box:hover::before {
    opacity: 1;
}

.gallery-box:hover::after {
    top: 0;
    left: 0;
}

.gallery-box:hover .overlay span {
    opacity: 1;
    transform: scale(1);
}

.home-gallery-wrap .custom-btn {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 30px;
}


.gallery-iframe {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-iframe {
    margin-top: 20px;
}

.gallery-iframe .video-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #000;
    height: 100%;
    transition: 0.4s ease;
}

.gallery-iframe .video-card iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
    display: block;
}

.gallery-iframe .overlay h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}



/* =======================home services====================== */
.inner-home-services {
    padding: 40px 0px 130px 0px;
}

.service-image-wrap .custom-btn {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-top: 15px;
}

.home-service-wrap {
    position: relative;
    padding: 25px 15px;
    border-radius: 30px;
    overflow: hidden;
    background: #0b0b1a;
}

.home-service-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;

    /* multiple layers */
    background:
        /* dark overlay */
        linear-gradient(rgba(10, 10, 30, 0.7), rgba(10, 10, 30, 0.7)),

        /* background image */
        url('../images/bg/service-bg.webp') center/cover no-repeat,

        /* glow gradients */
        radial-gradient(circle at 20% 30%, rgba(0, 140, 255, 0.5), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 100, 0.5), transparent 40%);

    filter: blur(0px);
    z-index: 0;
}

/* 🧊 GLASS LAYER */
.home-service-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    z-index: 1;
}

/* CONTENT ABOVE */
.home-service-wrap>* {
    position: relative;
    z-index: 2;
}

.home-service-wrap>* {
    position: relative;
    z-index: 2;
}

.home-service-left {
    width: 260px;
    height: 650px;
    overflow: hidden;
    position: relative;
}

.service-vertical-scroll {
    height: 400px;
    /* IMPORTANT: fixed height venum */
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
    /* iPhone smooth scroll 🔥 */
    padding-right: 6px;
}

/* Smooth scroll */
.service-vertical-scroll {
    scroll-behavior: smooth;
}

/* Scrollbar styling (optional nice look) */
.service-vertical-scroll::-webkit-scrollbar {
    width: 5px;
}

.service-vertical-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

/* Item style */
.service-vertical-scroll .item {
    height: 180px;
    margin-bottom: 15px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;

    scroll-snap-align: center;

    opacity: 0.5;
    transform: scale(0.9);
    transition: all 0.4s ease;
}

/* Active (center item) effect */
.service-vertical-scroll .item.active {
    opacity: 1;
    transform: scale(1);
}

/* Image */
.service-vertical-scroll img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-vertical-scroll .item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.service-vertical-scroll span {
    position: absolute;
    bottom: 10px;
    left: 15px;
    color: #fff;
    font-weight: 600;
}

.service-vertical-scroll .item.active {
    opacity: 1;
    transform: scale(1.0) !important;
}









.home-service-right {
    position: relative;
    padding: 40px;
    border-radius: 30px;
    background: #0b0b1a;
    overflow: hidden;
}

.home-service-right {
    position: relative;
    border-radius: 30px;
    padding: 40px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);

    border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-service-right::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 30px;
    opacity: 0.4;
    filter: blur(15px);
    z-index: 0;
}

.home-service-right::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;

    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.15),
            transparent 40%);

    opacity: 0.2;
    z-index: 1;
}

.home-service-right>* {
    position: relative;
    z-index: 2;
}

.home-service-right>* {
    position: relative;
    z-index: 2;
}

.home-service-right .inner-card {
    background: #07071a;
    border-radius: 25px;
    padding: 30px;
}

.home-service-right {
    position: relative;
    padding: 40px;
    border-radius: 30px;
    overflow: hidden;
    background: #0b0b1a;
}

.home-service-right {
    position: relative;
    padding: 40px;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(20, 20, 40, 0.6);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-service-right::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 1.5px;
    background: linear-gradient(120deg, #ff004c, #7b00ff, #00cfff);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.8;
    z-index: 2;
}

.home-service-right::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: radial-gradient(circle at 20% 30%, rgba(255, 0, 100, 0.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 200, 255, 0.15), transparent 40%);
    z-index: 1;
}

.home-service-right>* {
    position: relative;
    z-index: 3;
}

.home-service-right>* {
    position: relative;
    z-index: 2;
}

.inner-card {
    background: #07071a;
    padding: 30px;
    border-radius: 25px;
}

.service-title {
    color: #fff;
    font-size: 28px;
    margin-bottom: 10px;
}

.service-desc {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}

.service-images {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.img-box {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: 0.4s;
}

.img-box:hover img {
    transform: scale(1.05);
}

.service-btn-wrap {
    text-align: right;
    margin-top: 20px;
}

.home-service-wrap .row {
    display: flex;
    align-items: stretch;
}

.home-service-left,
.home-service-right {
    height: 100%;
}

.home-service-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

.service-vertical-scroll {
    height: 500px;
    overflow-y: auto;
}

.service-vertical-scroll .item.active {
    transform: scale(1.05);
    opacity: 1;
}

.service-vertical-scroll .item {
    opacity: 0.5;
    transition: 0.3s;
}

.service-tab-content {
    display: none;
}

.service-tab-content.active {
    display: block;
}

.service-vertical-scroll {
    height: 500px;
    overflow-y: auto;
}

.service-vertical-scroll .item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
    opacity: 0.6;
}

.service-vertical-scroll .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-vertical-scroll .item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 0, 80, 0.7),
            rgba(120, 0, 255, 0.6));
    opacity: 1;
    transition: 0.3s;
    z-index: 1;
}

.service-vertical-scroll .item span {
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: 600;
    text-align: center;
    z-index: 2;
    transition: 0.3s;
}

.service-vertical-scroll .item.active {
    transform: scale(1.05);
    opacity: 1;
}

.service-vertical-scroll .item.active::before {
    opacity: 0;
}

.service-vertical-scroll .item.active span {
    opacity: 0;
}

.service-images {
    margin-top: 20px;
}

.service-images .img-box {
    border-radius: 20px;
    overflow: hidden;
}

.service-images img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ============ home cta */
.inner-home-cta {
    width: 100%;
    background-image: url('../images/bg/cta-bg.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0px;
    position: relative;
    overflow: hidden;
}

.inner-home-cta p {
    color: var(--white);
}

.inner-home-cta .main-head span {
    font-size: clamp(24px, 3vw, 42px);
}

.inner-home-cta .main-head {
    line-height: 44px;
}

.home-cta-left {
    position: relative;
    z-index: 10;
}

.cta-overlay-1 img {
    width: 1000px;
    height: auto;
}

.cta-overlay-1 img {
    animation: ctaFloat 8s ease-in-out infinite;
    transform-origin: center;
    will-change: transform;
    backface-visibility: hidden;
}

@keyframes ctaFloat {
    0% {
        transform: translateY(0px) scale(1.02);
    }

    50% {
        transform: translateY(-12px) scale(1);
    }

    100% {
        transform: translateY(0px) scale(1.02);
    }
}

.cta-overlay-1 {
    position: absolute;
    right: 0%;
    top: 35%;
    z-index: 0;
}

/* ======================home testimonial */
.inner-home-testimonial {
    padding: 50px 0px;
    position: relative;
    background-image: url('../images/bg/testimonial-bg.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.inner-home-testimonial .header-sec p {
    text-align: center;
}

.testiminial-overlay-1 img {
    width: 500px;
    height: auto;
}

.testiminial-overlay-1 {
    position: absolute;
    top: 0%;
    right: 0%;
    z-index: -1 !important;
}


.testimonial-card {
    position: relative;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: 0.4s ease;
}

.testimonial-slider .owl-stage {
    display: flex;
}

.testimonial-slider .owl-item {
    display: flex;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff3c3c, transparent);
}

.testimonial-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff3c3c, transparent);
}

.testimonial-head img {
    width: 80px !important;
    height: auto !important;
    border-radius: 50%;
}

.testimonial-head-wrap .main-head {
    font-size: 24px;
}

.testimonial-head-wrap {
    position: relative;
    padding-top: 25px;
}

.testimonial-head-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);

    width: 90%;
    height: 2px;
    border-radius: 10px;

    background: linear-gradient(90deg, #ff1a1a, #990000);

    box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}



.testimonial-head h4 {
    margin-bottom: 0px !important;
}

.inner-home-testimonial .owl-carousel .owl-stage-outer {

    padding: 30px 0px;
}

.testimonial-head {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    justify-content: center
}

.testimonial-card .star {
    margin-bottom: 12px;
}

.testimonial-card .star span {
    color: gold;
}

.testimonial-card p {
    border-top: 1px solid rgba(128, 128, 128, 0.342);
    border-bottom: 1px solid rgba(128, 128, 128, 0.342);
    padding: 20px 0px;
}

.inner-home-testimonial .custom-btn {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-top: 30px;
}


/* =================faq section */

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;

    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;

    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question span {
    font-size: 20px;
    transition: 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 20px 18px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.inner-faq {
    padding: 0px 0px 40px 0px;
    position: relative;
    overflow: hidden;
}

.faq-overlay-1 {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, 20%);
    opacity: 0.5;
}

/* ==============================================================
                  branch page
=================================================================  */


/*===============brand filter */
.inner-brand {
    padding: 40px 0px;
    background-image: url('../images/bg/testimonial-bg.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.inner-brand .main-head strong {
    color: var(--primary-color);
}

.brand-filter-wrap {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0px auto;
    margin-top: 30px;
}

.filter-box {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.input-group-custom {
    position: relative;
    flex: 1;
    min-width: 240px;
}

.custom-dropdown {
    width: 100%;
    padding: 12px 42px 12px 38px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: #1e293b;
    font-size: 14px;
    appearance: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-dropdown:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(99, 102, 241, 0.5);
}

.custom-dropdown:focus {
    background: rgba(255, 255, 255, 0.45);
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.input-group-custom i:first-child {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: var(--black) !important;
    font-size: 16px;
    z-index: 999;
}

.dropdown-arrow {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    color: #64748b;
    pointer-events: none;
    font-size: 14px;
}

.custom-dropdown option {
    color: #000;
}

.brand-card {
    background: linear-gradient(135deg, #020617, #050321);
    border-radius: 18px;
    padding: 22px;
    color: #fff;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 0, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    transition: 0.3s;
}

.brand-card:hover {
    transform: translateY(-5px);
}

.card-top a:hover h5 {
    color: var(--primary-color);
}

.card-top {
    margin-bottom: 6px;
}

.state {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    color: #ff3b3b;
    border: 1px solid #ff3b3b;
    margin-bottom: 8px;
}

.store-name {
    font-size: clamp(17px, 1.2vw, 20px);
    font-weight: 500;
    color: #e5e7eb;
}

.no-data-msg {
    text-align: center;
    margin: 25px auto;
    padding: 14px 18px;
    max-width: 420px;

    background: linear-gradient(135deg, #fff3f3, #ffe5e8);
    color: #c4001d;

    border: 1px solid #f5c2c7;
    border-left: 4px solid #e60023;
    border-right: 4px solid #e60023;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 500;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);

    transition: all 0.3s ease;
}

.info-item {
    margin-bottom: 14px;
}

.label {
    font-size: 12px;
    color: #ff3b3b;
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}

.info-item p {
    font-size: 14px;
    color: #cbd5f5;
    margin: 0;
}

.info-item a {
    color: #cbd5f5;
    text-decoration: none;
}

.card-footer {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.card-footer a {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.brand-card-wrap {
    margin-top: 30px;
}

.btn-map {
    background: rgba(255, 255, 255, 0.05);
    color: #e5e7eb;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.store-card {
    display: flex;
}

.brand-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.btn-call {
    background: linear-gradient(135deg, #ff0000, #ff3b3b);
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.btn-map:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-call:hover {
    color: var(--white) !important;

    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.1);
}

/* ICON */
.card-footer i {
    margin-right: 6px;
}




/* ===============serviec section in branch */
.inner-services {
    padding: 30px 0px;
    position: relative;
}

.inner-services .contaner-fluid {
    width: 70%;
}

.detail-branch-overlay-1 {
    position: absolute;
    right: 0%;
    top: 10%;
    z-index: -1;
}

.detail-branch-overlay-2 {
    position: absolute;
    left: 0%;
    top: 0%;
    z-index: -1;
}

.inner-services .header-sec {
    position: relative;
}

.header-sec-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.inner-services .main-head {
    font-size: clamp(22px, 4vw, 32px);
}

.services-wrap {
    padding: 30px 0px;
}

.card-services {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.card-services img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.card-services::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.589), rgba(0, 0, 0, 0.1));
    z-index: 1;
}


.service-content {
    position: absolute;
    bottom: -20px !important;
    left: 20px;
    right: 20px;
    color: #fff;
    z-index: 99;
}

.service-content h5 {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 400;
    margin-bottom: 5px;
    position: relative;
    transform: translateY(15px);
    transition: 0.8s;
}

.service-content h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;

    background: linear-gradient(90deg, #fff, #fff);
    transition: 0.4s ease;
}

.card-services:hover .service-content h5::after {
    width: 40px;
}

.service-content p {
    font-size: 13px;
    color: var(--white);
    opacity: 0;
    transform: translateY(15px);
    transition: 0.4s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff0000, #ff4d4d);
    color: #fff;
    font-size: 22px;
    z-index: 3;
    opacity: 0;
    transform: translateY(-15px) scale(0.9);
    transition: 0.4s ease;
}

.service-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 3;
    opacity: 0;
    transform: translateY(15px);
    transition: 0.4s;
}

.service-btn a {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
}

.card-services:hover::after {
    opacity: 1;
}

.card-services:hover .service-content h5 {

    transform: translateY(-40px);
}

.card-services:hover .service-content p {
    opacity: 1;
    transform: translateY(-30px);
}

.card-services:hover .service-icon {
    opacity: 1;
    transform: translateY(0);
}

.card-services:hover .service-btn {
    opacity: 1;
    transform: translateY(0);
}

.card-services {
    position: relative;
    overflow: hidden;
}

.service-link {
    position: absolute;
    bottom: -31px;
    left: 66%;
    transform: translateX(-50%);
    z-index: 0;
}

.service-link a {
    display: inline-block;
    padding: 0px 22px 10px 22px;
    background: #f3f4f6;
    border-radius: 0px 0px 10px 10px;
    font-size: 13px;
    font-weight: 600;
    color: #ff0000;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
    text-transform: capitalize;
}

.service-link a:hover {
    background: #ff0000;
    color: #fff;
}

.services-wrap .col-lg-4 {
    position: relative;
}

/* ==================services content */
.inner-service-contact {
    padding: 40px 0px;
}

.inner-service-contact .sub-main span {
    color: var(--primary-color);
}

.inner-service-contact .header-sec {
    display: flex;
    justify-content: start !important;
}

.services-grid {
    padding: 1rem 0;
}

/* Services Contact Card */
.services-contact {
    position: relative;
    background: linear-gradient(135deg, rgba(5, 3, 23, 0.95) 0%, rgba(2, 1, 22, 0.98) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.75rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(10px);
    height: 100%;
}

.services-contact:hover::before {
    opacity: 0.6;
}

.services-contact:hover::after {
    opacity: 1;
}

/* Icon Wrapper */
.service-icon-wrapper {
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
}

.service-icon-1 {
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.service-icon-1::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-color), transparent);
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.services-contact:hover .service-icon {
    background: rgba(255, 0, 0, 0.2);
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.services-contact:hover .service-icon::before {
    opacity: 0.3;
}

.service-icon-1 i {
    font-size: 28px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.services-contact:hover .service-icon i {
    transform: scale(1.1);
    color: var(--primary-color);
}


.content {
    position: relative;
}

.content h5 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--white);
    margin: 0 0 0.5rem 0;
    position: relative;
    display: inline-block;
}

.content h5::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    transition: width 0.3s ease;
}

.services-contact:hover .content h5::after {
    width: 100%;
}

.content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 0.75rem 0;
    line-height: 1.5;
}

/* Highlight for Hours */
.services-contact .highlight {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #cc0000);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.25rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}


.location-link:hover::after {
    transform: translateX(5px);
}

/* ========map location */
.contact-map-wrapper {
    position: relative;
}

.map-container {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #020116 100%);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 1.5rem 0 1.5rem;
    position: relative;
}

.map-title-section {
    flex: 1;
}

.map-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 0, 0, 0.12);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    margin-bottom: 0.75rem;
    position: relative;
    overflow: hidden;
}

.map-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 0, 0, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.map-badge:hover::before {
    width: 100px;
    height: 100px;
}

.map-badge i {
    font-size: 0.9rem;
}

.map-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    margin: 0 0 0.25rem 0;
    letter-spacing: -0.02em;
}

.map-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.map-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.map-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 0, 0, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.map-btn:hover::before {
    width: 200px;
    height: 200px;
}

.map-btn:hover {
    background: rgba(255, 0, 0, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    color: var(--primary-color);
}

.map-frame-wrapper {
    position: relative;
    margin: 1rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.google-map {
    display: block;
    transition: transform 0.3s ease;
    filter: grayscale(0.1) brightness(0.95);
    transition: all 0.3s ease;
}

.map-container:hover .google-map {
    filter: grayscale(0) brightness(1);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.location-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    pointer-events: auto;
    animation: bounce 2s ease-in-out infinite;
}

.location-pin i {
    font-size: 40px;
    color: var(--primary-color);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.location-pin:hover i {
    transform: scale(1.2);
}

.pin-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    margin-bottom: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.pin-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: var(--primary-color) transparent transparent transparent;
}

.location-pin:hover .pin-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.pin-tooltip strong {
    display: block;
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.pin-tooltip span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
}

.map-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    border-top: 1px solid var(--border-color);
    margin-top: 0.5rem;
}

.address-info {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex: 1;
}

.address-info i {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.address-info div {
    flex: 1;
}

.address-info strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.address-info p {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.map-controls {
    display: flex;
    gap: 0.5rem;
}

.zoom-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.zoom-btn:hover {
    background: rgba(255, 0, 0, 0.15);
    border-color: var(--primary-color);
    transform: scale(1.05);
    color: var(--primary-color);
}

@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
}


/* ================service testimonial */
.inner-main-testimonial {
    width: 100%;
    background-image: url('../images/bg/service-testimonial-bg.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0px 100px 0px;
    background-attachment: fixed;
}

.service-testimonial-wrap .owl-stage-outer {
    padding: 30px 0px;
}

.services-testimonial {
    background: linear-gradient(135deg, #0b0b0b, #111);
    border-radius: 16px;
    padding: 22px;
    color: #fff;
    max-width: 500px;
    transition: 0.3s;
    margin: 0px auto;
}

.services-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.services-testimonial .text-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.services-testimonial .user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-testimonial .user-info img {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
}

.services-testimonial .user-info h6 {
    margin: 0;
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 500;
}

.services-testimonial .user-info span {
    font-size: 12px;
    color: #aaa;
}

.services-testimonial .google-logo img {
    width: 24px !important;
}

.services-testimonial .rating {
    color: #fbbf24;
    font-size: 14px;
    margin-bottom: 12px;
}

.services-testimonial .rating span {
    color: #fff;
    margin-left: 6px;
    font-weight: 600;
}

.services-testimonial .text-content p {
    font-size: 14px;
    color: #ddd;
    line-height: 1.6;
}

.inner-main-testimonial p {
    color: var(--white);
}

.inner-main-testimonial .main-head {
    font-size: clamp(22px, 4vw, 32px);
}

.inner-main-testimonial .main-head strong {
    color: var(--primary-color);
}

.testimonial-slider .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.testimonial-slider .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.testimonial-slider .owl-dot span {
    display: block;
    width: 30px;
    height: 4px;
    background: #fff;
    border-radius: 10px;
    opacity: 0.5;
    transition: 0.3s ease;
}

.testimonial-slider .owl-dot.active span {
    background: #ff0000;
    width: 35px;
    opacity: 1;
}

.service-faq {
    padding: 40px 0px;
}


/* ===================================service why us */
.inner-service-why {
    position: relative;
    padding: 50px 0;
    background:
        linear-gradient(155deg, #000000, #0a0a0a);

    overflow: hidden;
}

.inner-service-why .main-head {
    font-size: 32px;
}


@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.service-why-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.service-why-wrap .why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-why-wrap .why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-why-wrap .why-card:hover::before {
    opacity: 1;
}

.service-why-wrap .why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

.service-why-wrap .why-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 0, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-why-wrap .why-icon i {
    font-size: 36px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.service-why-wrap .why-card:hover .why-icon {
    background: rgba(255, 0, 0, 0.25);
    transform: scale(1.05);
}

.service-why-wrap .why-card:hover .why-icon i {
    transform: scale(1.1);
}

.service-why-wrap .why-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--white);
    margin: 0 0 12px 0;
    position: relative;
    z-index: 1;
}

.service-why-wrap .why-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.why-footer-text {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.why-footer-text i {
    font-size: 32px;
    color: var(--primary-color);
    display: inline-block;
    margin-bottom: 15px;
}

.why-footer-text span {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.why-footer-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =======================branch about us section */
.inner-about-branch {
    padding: 50px 0px;
    position: relative;
}

.about-overlay-1 {
    position: absolute;
    right: 0%;
    top: 50%;
    z-index: -1;
}

.inner-about-branch .main-head {
    font-size: clamp(26px, 4vw, 36px);
}

.inner-about-branch .left-about {
    display: flex;
    justify-content: end;
}

.inner-about-branch .left-about img {
    width: 100%;
    border-radius: 16px;

    animation: floatUpDown 4s ease-in-out infinite;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ===================about us page */
.inner-main-about {
    padding: 80px 0px;
}

.main-about-left img {
    width: 100%;
    animation: imgFloat 6s ease-in-out infinite;
}

@keyframes imgFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.main-about-left {
    display: flex;
    justify-content: end;
}

.inner-sub-banner .main-about-left {
    display: flex;
    justify-content: end;
}

.main-about-right p strong {
    font-weight: 700;
}

.stats-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
}

.about-content-wrap {
    margin: 30px 0px;
}

.stats-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(135deg, #111, #1c1c1c);
    border-radius: 15px;
    overflow: hidden;
}

.stat-box {
    text-align: center;
    padding: 20px;
    color: #fff;
    position: relative;
    transition: all 0.3s ease;
}

.stat-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 25%;
    width: 1px;
    height: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.stat-box h2 {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin: 0;
    text-align: center;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.05);
}

.inner-main-about .stats-wrap {
    margin-top: 20px;
}

.inner-main-about {
    position: relative;
}

.about-text h4 {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(50%) rotate(-90deg);
    font-size: clamp(22px, 6vw, 70px);
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px var(--white);
    letter-spacing: 3px;
    white-space: nowrap;
    animation: floatLoop 4s ease-in-out infinite;
}

@keyframes floatLoop {

    0%,
    100% {
        transform: translateY(-50%) rotate(-90deg);
    }

    50% {
        transform: translateY(-55%) rotate(-90deg);
    }
}




.parterner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #ff0000, #ff3300, #ff0000);
    padding: 12px 0;
}

.parterner .scroll-wrapper {
    overflow: hidden;
}

.parterner .scroll-track {
    display: flex;
    gap: 70px;
    width: max-content;
    animation: scrollLeft 20s linear infinite;
}

.parterner .scroll-track span {
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.parterner .scroll-track i {
    font-size: 16px;
    color: #fff;
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.parterner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to right, #ff0000, transparent);
    z-index: 2;
}

.parterner::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to left, #ff0000, transparent);
    z-index: 2;
}

.parterner:hover .scroll-track {
    animation-play-state: paused;
    cursor: pointer;
}

.scroll-track i {
    transition: transform 0.3s ease;
}

.parterner:hover .scroll-track i {
    transform: scale(1.3);
}

/* =========================================inner expect */
.inner-expect {
    padding: 35px 0px;
}

.expect-left .main-head {
    font-size: clamp(20px, 2.8vw, 32px);
}

.expect-left .main-head span {
    color: var(--primary-color);
    font-size: clamp(20px, 2.8vw, 32px);
}

.expect-left p span {
    background-color: white;
    color: black;
    padding: 0px 5px;
    font-weight: bolder;
    border-radius: 3px;
}

.expect-right {
    display: flex;
    justify-content: center;
}

.expect-right img {
    border-radius: 20px;
}

.expect-left ul li {
    font-size: 14px, 2.3vh, 16px;
    padding: 5px 0px;
}


/* =======================award section */
.inner-awards {
    position: relative;
}

.inner-awards .custom-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.inner-awards .main-head {
    line-height: 38px;
}

.inner-awards {
    padding: 30px 0px;
}

.awards-wrap .award-img {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.awards-wrap .award-img img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.awards-wrap .award-img:hover img {
    transform: scale(1.1);
}

.awards-wrap .award-img:hover .glass-overlay {
    opacity: 1;
}

.awards-wrap .award-img:hover::before {
    animation: shineMove 0.8s ease;
}

@keyframes shineMove {
    100% {
        left: 125%;
    }
}

.awards-overlay-1 {
    position: absolute;
    right: 0%;
    top: -100%;
    z-index: -1;
}

/* ==================vission and mission */
.vission-box {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.inner-vission .container-fluid {
    width: 70%;
    ;
}

.inner-vission {
    padding: 60px 20px;
}

.vission-box {
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    background: #fff;
    background-image: url('../images/bg/vission-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.vission-img img {
    width: 80px;
    margin-bottom: 15px;
    transition: 0.4s;
}

.vission-box h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.vission-box p {
    font-size: 15px;
    color: var(--black);
    position: relative;
    z-index: 10;
}

.vission-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.vission-box:hover img {
    transform: scale(1.1) rotate(5deg);
}

.vission-box {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

/* 
.vission-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
    transition: 0.4s ease;
} */

.vission-box * {
    position: relative;
    z-index: 2;
}

/* ===================teams and condition */
.inner-teams p {
    color: var(--white);
}

.inner-teams {
    padding: 40px 0px;
}

.inner-teams p strong {
    color: var(--primary-color);
}

/* ==============================events page */
.inner-events {
    padding: 40px 0px;
}

.event-wrap .tab-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.event-wrap {
    margin: 30px 0px;
}

.event-wrap .tab-buttons i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 14px;
    transition: 0.3s ease;
}

.event-wrap .tab {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 10px 55px;
    border: none;
    background: #eee;
    font-weight: 500;
    border-radius: 20px;
    cursor: pointer;
}

.event-wrap .tab.active {
    background: #2c2c8c;
    color: #fff;
}

.event-wrap .tab {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.event-wrap .tab::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: 100%;
    left: -50%;
    background: radial-gradient(circle at center, #4a4aff, #2c2c8c);
    border-radius: 40%;
    transition: all 0.6s ease;
    z-index: -1;
}

.event-wrap .tab:hover::before {
    top: -50%;
}

.event-wrap .tab:hover {
    color: #fff;
}

.event-wrap .tab:hover {
    box-shadow: 0 10px 25px rgba(44, 44, 140, 0.3);
}

.event-wrap .tab i {
    transition: transform 0.4s ease;
}

.inner-events .tab-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.inner-events .tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.event-wrap .tab:hover i {
    transform: translateY(-3px) scale(1.1);
}

.event-wrap .tab-dropdown {
    display: none;
    width: 70%;
    margin: 0px auto;
    padding: 10px;
    border-radius: 8px;
}

.event-wrap .tab-content {
    display: none;
    margin-top: 20px;
}

.event-wrap .tab-content.active {
    display: block;
}


.inner-events .img-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.inner-events .img-card img {
    width: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.inner-events .overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.3);

    opacity: 0;
    transition: 0.4s ease;
}

.inner-events .overlay h4 {
    color: #fff;
    transform: translateY(20px);
    transition: 0.4s;
}

.inner-events .img-card:hover img {
    transform: scale(1.1);
}

.inner-events .img-card:hover .overlay {
    opacity: 1;
}

.inner-events .img-card:hover .overlay h4 {
    transform: translateY(0);
}

.inner-events .note {
    max-width: 700px;
    margin: 30px auto;
    padding: 20px 25px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffffff, #f3f4ff);
    border-left: 5px solid #2c2c8c;
    border-right: 5px solid #2c2c8c;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;

    transition: all 0.3s ease;
}

.inner-events .note p {
    margin: 0;
    font-size: 16px 2.3vw 18px;
    color: #333;
    line-height: 1.7;
}

/* ===============inner-membership */
.inner-membership {
    padding: 50px 0px;
    position: relative;
}

.membership-overlay-2 {
    position: absolute;
    left: 0%;
    top: -100%;
    z-index: -1;
}

.inner-membership .main-head {
    font-size: clamp(20px, 2.5vw, 34px);
}

.inner-membership .main-head span {
    color: var(--primary-color);
    font-size: clamp(20px, 2.5vw, 34px);
}

.member-right img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.member-right img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.membership-note {
    max-width: 800px;
    margin: 40px auto;
    padding: 25px 30px;
    text-align: center;
    background: linear-gradient(135deg, #f3f4ff, #ffffff);
    border-radius: 15px;
    border: 1px solid rgba(44, 44, 140, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: 0.3s ease;
}

.membership-note p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.membership-note::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 5px;
    background: linear-gradient(135deg, #ff3b3b, #b30000);
    border-radius: 10px;
}

/* ==============================why membership */
.why-membership {
    padding: 10px 0px 50px 0px;
    position: relative;
}

.why-membership-overlay {
    position: absolute;
    right: 0%;
    bottom: -65%;
    z-index: -1;
}

.why-membership .main-head {
    font-size: clamp(20px, 2.5vw, 34px);

}

.why-membership-left img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.why-membership-right .main-list i {
    font-size: 17px;
}

/* =========================member-package */
.inner-member-package {
    padding: 50px 0px;
    position: relative;
}

.member-package-overlay-1 {
    position: absolute;
    left: 0%;
    top: -60%;
    z-index: -1;
}

.inner-member-package .head-sec .main-head span {
    font-size: clamp(26px, 4vw, 48px) !important;
    color: var(--primary-color);
}

.inner-member-package .head-sec .main-head {
    position: relative;
    display: inline-block;
    font-weight: 700;
    color: #c40000;
    z-index: 1;
    font-size: clamp(26px, 4vw, 48px) !important;
}

.inner-member-package .head-sec .main-head::before {
    content: "";
    position: absolute;
    inset: -8px;

    background: radial-gradient(circle, rgba(255, 0, 0, 0.15), transparent 70%);
    z-index: -2;
}

.package-wraper {
    padding: 60px 0;
}

.package-wraper .membership-card {
    padding: 35px;
    border-radius: 20px;
    height: 100%;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.package-wraper .light-card {
    background: linear-gradient(135deg, #ff3b3b, #b30000);
    color: #fff;
}

.package-wraper .dark-card {
    background: #ffffff;
    color: #111;
}

.package-wraper .membership-card h4 {
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 600;
    margin-bottom: 10px;
}


.package-wraper .membership-card .desc {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.6;
}

.package-wraper .membership-card.dark-card .desc {
    font-size: 16px;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.6;
}

.package-wraper .price {
    font-size: 30px;
    margin-bottom: 20px;
}

.package-wraper .price span {
    font-size: 14px;
    opacity: 0.7;
}

.package-wraper .features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.package-wraper .features li {
    display: flex;
    font-size: clamp(14px, 1.2vw, 16px);
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.package-wraper .light-card .features i {
    color: #fff;
}

.package-wraper .dark-card .features i {
    color: #ff3b3b;
}

.package-wraper .btn-main {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
}

.package-wraper .light-card .btn-main {
    background: #fff;
    color: #b30000;
}

.package-wraper .dark-card .btn-main {
    background: #ff3b3b;
    color: #fff;
}

.package-wraper .membership-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.package-wraper .light-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    pointer-events: none;
}

/* ===============gallery section */
.gallery-inner .event-wrap .tab {
    padding: 10px 25px !important;
}

.gallery-inner {
    padding-top: 40px !important;
    padding-bottom: 30px !important;
}

/*================================carrer page */
.inner-carrer {
    padding: 50px 0px;
}

.why-carrer {
    padding-top: 40px;
}

.why-carrer-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
    background: rgba(128, 128, 128, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.why-carrer-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.why-carrer-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 60px;
    background: var(--primary-color);

}

.why-carrer-card:hover {
    background: rgba(128, 128, 128, 0.15);
    transform: translateY(-6px);
}

.why-carrer-card img {
    width: 70px;
    margin-bottom: 15px;
}

.why-carrer-card h4 {
    font-size: clamp(18px, 2vw, 20px);
    color: var(--white);
    font-weight: 500;
    margin-bottom: 10px;
}

.why-carrer-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ===============inner-carrer-form */
.inner-carrer-form {
    padding: 50px 0px;
}


.carrer0for-wrap .card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
}

.carrer0for-wrap input,
.carrer0for-wrap textarea {
    border-radius: 10px;
    padding: 10px;
}

.carrer0for-wrap .form-control:focus {
    box-shadow: none;
    border-color: #000;
}

.carrer0for-wrap button {
    transition: 0.3s;
}

.carrer0for-wrap button:hover {
    transform: scale(1.05);
}

.inner-carrer-form label span {
    color: var(--primary-color);
}

.carrer-form-wrap .form-label i {
    color: var(--primary-color);
}

.carrer-form-wrap {
    position: relative;
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.carrer-form-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            var(--primary-color),
            var(--secondary-color));
}


.carrer-form-wrap:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.carrer-form-wrap:hover::before {
    background: linear-gradient(90deg,
            var(--primary-color),
            #fff,
            var(--secondary-color));
}

.form-dec {
    margin-top: 20px;
    padding: 15px 18px;
    margin-bottom: 0px !important;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.03);
}

.form-dec .form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-dec .form-check-input {
    margin-top: 4px;
    cursor: pointer;
    border: 1px solid #ccc;
}

.form-dec .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-dec .form-check-label {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
}


/* ==================blog page */
.inner-blog {
    padding: 50px 0px;
}

.blog-wrap {
    margin: 30px 0px;
}

.blog-card {
    position: relative;
    background: #0c0c0c;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.blog-card::before,
.blog-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card::before {
    width: 100px;
    height: 3px;
}

.blog-card::after {
    width: 3px;
    height: 100px;
}

.blog-card:hover::before {
    width: 180px;
}

.blog-card:hover::after {
    height: 180px;
}

.blog-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
}

.blog-content {
    padding: 10px 20px 40px 20px;
}

.blog-content h2 {
    color: #fff;
    font-size: clamp(18px, 2.5vw, 22px);
    margin-bottom: 10px;
}

.blog-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;

    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-img {
    text-align: center;
    margin-bottom: 15px;
}

/* =========================================5k collage paeg  */
.inner-collage-poster .collage-right img {
    border-radius: 15px;
}

.inner-collage-poster {
    padding: 50px 0px;
}

.inner-collage-poster .collage-left .main-head {
    font-size: clamp(20px, 4vw, 32px);
}

.inner-collage-poster .collage-left {
    text-align: left !important;
}

.inner-collage-poster .row {
    margin: 40px 0px;
}

.collage-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0px;
}

.inner-what-learn {
    position: relative;
}

.learning-overlay-1 {
    position: absolute;
    right: 0%;
    top: -100%;
    z-index: -1;
}

.collage-learn-left {
    border-radius: 12px;
    overflow: hidden;
}

.collage-learn-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.app-collage-overlay-1 {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
}

/* ================================collage cta section */
.inner-collage-cta .container-fluid {
    width: 70%;
}

.inner-collage-cta {
    padding: 140px 0px 20px 0px;
    position: relative;
}

.collage-overlay-1 {
    position: absolute;
    left: 10%;
    top: 10%;
}

.collage-cta-wrap {
    width: 100%;
    height: 250px;
    background-color: var(--white);
    border-radius: 20px;
}

.collage-cta-wrap h2 span {
    color: var(--primary-color);
}

.collage-cta-wrap h2 {
    font-size: 32px;
    color: var(--bg-color);
}

.collage-cta-wrap {
    padding: 0px 40px;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.collage-cta-overlay-1 img {
    width: 500px;
    height: auto;
}

.collage-cta-overlay-1 {
    position: absolute;
    right: -20%;
    top: 33%;
    transform: translate(-50%, -50%);
}


/* ========================= certificate */
.inner-certificate {
    padding: 30px 0px;
    position: relative;
}

.certificate-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0px;
}

.certificate-overlay-1 {
    position: absolute;
    left: 0%;
    top: -50%;
    z-index: -1;
}

.collage-from-wrap {
    width: 100%;
    max-width: 80%;
    background-color: var(--white);
    padding: 30px 20px;
    margin: 20px auto;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.collage-from-wrap .custom-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.collage-from-wrap .custom-form input,
.collage-from-wrap .custom-form textarea {
    width: 100%;
    padding: 14px 5px;
    border: none;
    border-bottom: 2px solid #ddd;
    background: transparent;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.collage-from-wrap .custom-form input:focus,
.collage-from-wrap .custom-form textarea:focus {
    border-bottom: 2px solid #e60023;
}

.collage-from-wrap .custom-form input::placeholder,
.collage-from-wrap .custom-form textarea::placeholder {
    color: #aaa;
    font-size: 13px;
}

.collage-from-wrap .custom-form textarea {
    resize: none;
}

.collage-from-wrap .custom-form .row>div {
    margin-bottom: 15px;
}

.custom-form .form-selector select {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background-color: #f8f8f8;
    font-size: 14px;
    color: #333;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.custom-form .form-selector {
    position: relative;
}

.custom-form .form-selector::after {
    content: "\f282";
    font-family: "bootstrap-icons";
    position: absolute;
    right: 15px;
    top: 70%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 14px;
    color: #666;
}

.custom-form .form-selector select:hover {
    border-color: #ff1a1a;
    background-color: #fff;
}

.custom-form .form-selector select:focus {
    border-color: #ff1a1a;
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.1);
    background-color: #fff;
}

.custom-form .form-selector select option {
    color: #333;
}

.inner-collage-form {
    padding: 0px 0px 0px 0px;
}

.collage-gallery {
    padding: 40px 0px;
}

.collage-gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

.collage-gallery .container-fluid {
    width: 70%;
}

.collage-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.5s ease;
    object-fit: cover;
}

.collage-gallery .gallery-item:hover img {
    transform: scale(1.06);
}

.collage-gallery .gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: 0.4s ease;
}

.collage-gallery .gallery-item:hover::after {
    opacity: 1;
}

.collage-gallery .gallery-item::before {
    content: "➜";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    color: #fff;
    font-size: 24px;
    opacity: 0;
    transition: 0.4s ease;
}

.collage-gallery .gallery-item:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.outline-left img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.iner-course-outline .main-head {
    font-size: clamp(24px, 3vw, 32px);
}

.course-section {
    background: #0b0b0b;
    color: #fff;
    padding: 80px 20px;
}

.course-desc {
    color: #bfbfbf;
    margin: 15px 0 25px;
    font-size: 15px;
}

.course-outline-list {
    list-style: none;
    padding: 0;
}

.course-outline-list li {
    font-size: 15px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--black);
    padding: 6px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffffff, #f8f8f8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.course-outline-list li::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    opacity: 0;
    transition: 0.4s ease;
    z-index: -1;
}

.course-outline-list li:hover::before {
    opacity: 1;
}

.course-outline-list li:hover {
    transform: translateY(-5px) scale(1.02);
    color: #fff !important;
    box-shadow: 0 10px 25px rgba(255, 60, 60, 0.35);
}

.course-outline-list li * {
    position: relative;
    z-index: 11;

}

/* Icon Styling */
.course-outline-list i {
    color: var(--primary-color);
    font-size: 18px;
    transition: 0.3s ease;
}

.course-outline-list li:hover i {
    color: #fff;
    transform: scale(1.2);
}

/* ====================all branch */
.all-branch-inner {
    padding: 20px 0px;
}

.all-branch-wrap {
    margin: 30px 0px;

}

.branch-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 5px;
    align-items: center;
    justify-content: center;
}

.branch-list li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 8px;
    background: #f9f9f9;
    color: #222;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: capitalize;
}

.branch-list li a:hover {
    background: #e60023;
    color: #fff;
    transform: translateY(-2px);
}

.branch-list::-webkit-scrollbar {
    width: 6px;
}

.branch-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}


/* ========================service main pahe  */
.car-img {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

.car-img img {
    width: 80%;
    transition: 0.5s ease;
}

.inner-services-detail .container-fluid {
    width: 80%;
}

.inner-services-detail p {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-detail-left {
    position: relative;
    z-index: 99;
}

.inner-services-detail {
    position: relative;
    width: 100%;
    height: 700px;
    padding: 50px 0px 0px 0px;
    overflow: hidden;
}

.services-detail-overlay {
    position: absolute;
    bottom: 0%;
    right: 0%;
}

.service-detail-left .main-head {
    font-size: clamp(24px, 3vw, 32px);
}

.service-image-inner {
    position: relative;
    padding: 30px 0px 40px 0px;
}

.image-overlay-1 {
    position: absolute;
    left: 0%;
    top: -10%;
    z-index: -1;
}

/* ====================service carousle  */
.services-carousel-inner .container-fluid {
    width: 99% !important;
}

.services-carousel-inner {
    position: relative;
    padding: 30px 0px !important;

}

.service-card {
    border-radius: 2px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.service-carousle-wrap {
    margin: 30px 0px;
}

.services-carousel-inner .service-carousle-wrap::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 48%;
    width: 100%;
    height: 70px;
    background: linear-gradient(90deg, red, #ff4d4d, red);
}

.service-card {
    overflow: hidden;
    position: relative;
}

.card-img {
    position: relative;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

.card-img::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0));

    opacity: 0;
    transition: 0.5s ease;
}

.bottom-service-content {
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 100%;
    padding: 0px 20px;
    z-index: 99;
}

.bottom-service-content::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 150%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9),
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0));
    z-index: -1;
}

.bottom-service-content h5 {
    color: #fff;
    font-size: 26px;
    margin: 0;
    transition: 0.5s ease;
}

.bottom-service-content p {
    color: #fff;
    font-size: 14px;
    margin-top: 5px;

    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s ease;
}

.service-card:hover .card-img::after {
    opacity: 1;
}

.service-card:hover img {
    transform: scale(1.08);
}

.service-card:hover .bottom-service-content h5 {
    transform: translateY(-40px);
}

.service-card:hover .bottom-service-content p {
    opacity: 1;
    transform: translateY(-20px);
}




.all-services {
    display: flex;
    justify-content: center;
    align-items: center;
}


.service-owl {
    position: relative !important;
}

.service-owl .owl-dots {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: -40px !important;
    display: flex !important;
    gap: 10px !important;
}

.service-owl .owl-dots .owl-dot span {
    display: block !important;
    width: 12px !important;
    height: 12px !important;
    background: #ccc !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

.service-owl .owl-dots .owl-dot.active span {
    width: 28px !important;
    border-radius: 20px !important;
    background: linear-gradient(135deg, red, #ff4d4d) !important;
    box-shadow: 0 6px 15px rgba(255, 0, 0, 0.3) !important;
}

.service-owl .owl-dots .owl-dot:hover span {
    background: #fff !important;
    transform: scale(1.2) !important;
}

/* ====================services detail page  */
.service-detail-inner .container-fluid {
    width: 100%;
    padding: 0px !important;
}

.service-detail-inner {
    padding: 0px 0px;
    position: relative;
}

.service-overlay-1 {
    position: absolute;
    left: -5%;
    bottom: 0%;
    z-index: -1;
    opacity: 0.2;
}

.service-detail-inner .row.align-items-center {
    align-items: stretch !important;

}

.services-detail-left {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.service-detail-inner .service-detail-right {
    height: 100%;
}

.service-detail-inner .service-detail-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* important */
}

.service-detail-right {
    width: 100%;
}

.service-detail-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-detail-left {
    padding: 30px 50px;
}

.service-detail-inner .sub-head {
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.service-detail-inner .sub-head::after {
    content: "";
    flex: 1;
    height: 2px;
    background-color: var(--primary-color);
    margin-left: 10px;
}

.service-detail-inner .col-lg-6 {
    padding: 0px !important;
}

.service-detail-inner .main-head {
    font-size: clamp(18px, 3.0vw, 28px);
}

.collage-placement-cta {
    margin: 120px 0px;
}

/* ==========================work process section */
.inner-process {
    padding: 60px 0px;
    background-image: url('../images/bg/footer.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.collage-process {
    background-image: url('../images/collage/collage-process.webp');
}

.inner-process .main-head {
    line-height: 28px;
}


.process-wrap {
    padding: 60px 0;
    position: relative;
}

.process-wrap .row::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;

    background: linear-gradient(90deg,
            #ff0000,
            #ff4d4d,
            #ff0000);

    z-index: 0;
    border-radius: 5px;
}

.process-step {
    display: flex;
}

.process-card {
    position: relative;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.2),
            rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 20px 20px;
    border-radius: 10px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 80%;
    overflow: hidden;
    margin: 0 auto;
}

.step-number {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 900 !important;


    font-size: 110px;
    font-weight: 900;
    position: absolute;
    top: -39%;
    right: -13%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 0;
}

.process-card p {
    font-size: 14px;
    color: var(--white);
}

.process-card h5 {
    color: var(--primary-color);
}

/* =============================inner-ideal */
.inner-ideal {
    padding: 50px 0px;
}

.inner-ideal .main-head {
    line-height: 34px !important;
}

.ideal-card {
    position: relative;
    padding: 30px 20px;
    border-radius: 15px;
    height: 100%;
    background: #fff;
    color: #111;
    border: 2px solid #eee;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.center-card {
    background: linear-gradient(135deg, #ff0000, #b30000);
    color: #fff;
    border: none;
    transform: scale(1.05);
    z-index: 2;
}

.ideal-card .icon {
    position: absolute;
    top: 10%;
    left: 10%;

    font-size: 80px;
    /* big icon */

    background: linear-gradient(135deg, #020202, #272727);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    opacity: 0.08;
    /* very light */
    pointer-events: none;
    /* ignore hover */

    z-index: 0;
}

.ideal-card ul {
    list-style: none;
    padding: 0;
}

.ideal-card ul li {
    margin-bottom: 8px;
    padding-left: 18px;
    position: relative;
}


.ideal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.center-card:hover {
    transform: scale(1.05) translateY(-5px);
}

/* ===============services cta */
.service-detail-cta {
    background: linear-gradient(135deg, #8b0000, #ff0000);
    background: linear-gradient(90deg, #1a0000, #ff0000, #1a0000);
    padding: 25px 0;
}

.service-detail-cta .container-fluid {
    width: 70%;

}

.service-detail-cta .detail-wraper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.service-detail-cta .cta-text {
    color: #fff;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 600;
    margin: 0;
}

.services-faq {
    padding: 50px 0px;
}


/* ================services testimonial */
.services-testimonial-inner {
    background: #272727c0;
    padding: 40px 0;
    color: #fff;
}

.services-testimonial-inner .container-fluid {
    width: 70%;
}

.services-testimonial-inner .testi-sub {
    font-size: 12px;
    letter-spacing: 4px;
    color: #aaa;
    position: relative;
}

.services-testimonial-inner .testi-sub::after {
    content: "";
    width: 40px;
    height: 2px;
    background: red;
    display: inline-block;
    margin-left: 10px;
}

.services-testimonial-inner small {
    color: var(--primary-color) !important;
}

.services-testimonial-inner h6 {
    margin: 2px !important;
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 600;
}

.services-testimonial-inner .testi-card {
    background: #1a1a1a;
    padding: 25px 20px;
    width: 100%;
    max-width: 700px;
    border-radius: 12px;
}

.services-testimonial-inner .testi-head {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between
}

.services-testimonial-inner .testi-star {
    display: flex;
    justify-content: end;
}

.services-testimonial-inner .testi-head div {
    flex: 1;
}



.services-testimonial-inner .google-icon {
    width: 20px !important;
}

.services-testimonial-inner .stars {
    color: gold;
    margin: 10px 0;
}

.service-testimonial-left {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: column;
}

.services-testimonial-inner .stars span {
    color: #ccc;
    margin-left: 5px;
}

.services-testimonial-inner .testi-card p {
    color: #ccc;
    font-size: 16px;
}

.services-testimonial-inner .carousel-indicators button {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50%;
    background: #666;
}

.carousel-indicators .active {
    background: red;
}


.custom-navbar .dropdown-menu {
    border: none;
    border-radius: 10px;
    padding: 10px 0;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: #fff;
}

/* ITEM */
.custom-navbar .dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    color: #333;
    position: relative;
    transition: all 0.3s ease;
}

/* LEFT LINE EFFECT */
.custom-navbar .dropdown-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #ff0000;
    transition: 0.3s ease;
}

/* HOVER EFFECT */
.custom-navbar .dropdown-item:hover {
    color: #ff0000;
    padding-left: 28px;
    background: rgba(255, 0, 0, 0.05);
}

.custom-navbar .dropdown-item:hover::before {
    width: 12px;
}

.custom-navbar .dropdown-menu {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: block;
    visibility: hidden;
}

.custom-navbar .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.custom-navbar .dropdown-menu {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: block;
    visibility: hidden;
}

.custom-navbar .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}


/* ==========franchaceh */
.sub-banner-overlay-1 {
    position: absolute;
    left: 12%;
    top: 30%;
    width: 100%;
    max-width: 600px;
}

.sub-banner-overlay-1 p {
    color: var(--white);
}

.sub-banner-overlay-1 .main-head span {
    font-size: 32px;
    color: var(--primary-color);
}

.sub-banner-overlay-1 .main-head {
    font-size: 32px;
}

.franchise-btn-wraper {
    display: flex;
    gap: 20px;
}

.sub-banner-overlay-2 img {
    width: 700px;
    height: auto;
}

.sub-banner-overlay-2 {
    position: absolute;
    top: 20%;
    right: 10%;
}








.franchise-cta-inner .container-fluid {
    width: 70%;

}

.franchise-cta-inner {
    padding: 60px 30px;
}


.franchise-cta-inner .cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #f6e4d9, #f3d2c4);
    border-radius: 15px;
    padding: 30px;
    transition: 0.3s ease;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.franchise-cta-inner .cta-card.white {
    background: white !important;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.franchise-cta-inner .cta-content {
    width: 60%;
}

.franchise-cta-inner .cta-content h4 {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.franchise-cta-inner .cta-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.cta-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #0b7d4f;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #095f3c;
}
.franchise-cta-inner .cta-content {
position: relative;
z-index: 10;
}
.cta-img {
    position: absolute;
    top: 10%;
    right: 0%;
    z-index: 1;
}

.cta-img img {
    width: 200px;
}


/* =================franchise benifits */
.benefits-wraper {
    padding: 20px 0;
}

.inner-franchise-benifits {
    padding: 50px 0px;
}

.inner-franchise-benifits .main-head {
    font-size: clamp(24px, 3vw, 38px);
}

.inner-franchise-benifits .main-head span {
    color: var(--primary-color);
    font-size: clamp(24px, 3vw, 38px);
}

.benifits-wraper {
    display: grid;
    grid-template-columns: repeat(5, auto);
    justify-content: center;
    gap: 15px;
}

.benefit-pill:hover i {
    color: var(--black);
}

.benefit-pill i {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    flex-shrink: 0;
}

.benefit-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: clamp(14px, 2.5vh, 18px);
    background: #f3f4f6;
    color: #333;
    white-space: nowrap;
}

.benefit-pill {
    background: #ffe5e5;
    color: #e30613;
    transition: 0.3s;
}

.benefit-pill:hover {
    background: #e30613;
    color: #fff;
}

.benefit-pill i {
    font-size: 16px;
}

.benefit-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/*========================== franchise modal */

.inner-franchise-modal {
    padding: 60px 0px;
}

.inner-franchise-modal .main-head {
    line-height: 32px;
}

.inner-franchise-modal .modal-wrap .nav-link {
    border-radius: 30px;
    padding: 10px 18px;
    margin: 5px;
    background: #f1f1f1;
    color: #333;
    transition: 0.3s;
}

.inner-franchise-modal .modal-wrap .nav-link.active {
    background: linear-gradient(135deg, #e30613, #2c2f8f);
    color: #fff;
}

.inner-franchise-modal .tab-pane {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
}

.modal-wrap .dropdown-toggle {
    background: linear-gradient(135deg, #e30613, #2c2f8f);
    border: none;
    border-radius: 30px;
    padding: 10px 40px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.modal-wrap .dropdown-toggle:focus {
    box-shadow: none;
}

.modal-wrap .dropdown-menu {
    border-radius: 15px;
    padding: 10px;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.modal-wrap .dropdown-item {
    border-radius: 10px;
    padding: 10px 15px;
    transition: 0.3s;
    font-size: 14px;
}

.modal-wrap .dropdown-item:hover {
    background: #f1f1f1;
}

.modal-wrap .dropdown-item.active-item {
    background: linear-gradient(135deg, #e30613, #2c2f8f);
    color: #fff;
}

.franchise-modal-left {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    transition: 0.3s;
}

.franchise-modal-left:hover {
    transform: translateY(-5px);
}

.franchise-modal-left .main-head {
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 600;
    color: #222 !important;
}

.sub-text {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.section-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #e30613;
}

.franchise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.franchise-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #444;
    border-bottom: 1px dashed #eee;
}

.franchise-list li::before {
    content: "✔";
    color: #e30613;
    font-size: 14px;
    font-weight: bold;
}

.franchise-modal-right img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}







/* ======================== story header */
.inner-story {
    position: relative;
    padding: 50px 0;
}

.inner-story::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.25), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.inner-story::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.2), transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.inner-story .container-fluid {
    position: relative;
    z-index: 1;
}

.story-card {
    background: #fff;
    padding: 18px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 6px;
    padding: 1px;
    background: linear-gradient(120deg, #ff3c3c, #6c63ff);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.story-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.ratio iframe {
    border-radius: 12px;
}

.story-card h4 {
    font-size: 22px;
    color: var(--black);
}

.story-content {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.story-card:hover .story-content {
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.story-content h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.story-content h5 span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #888;
    margin-top: 2px;
}

.story-content p {
    font-size: 15px;
    color: var(--black);
    line-height: 1.7;
    margin-top: 8px;
}

.story-carousel .owl-dots {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 30px;
}

.story-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ccc;
    display: block;
    border-radius: 50%;
    margin: 5px;
    transition: all 0.3s ease;
}

.story-carousel .owl-dot.active span {
    width: 25px;
    background: var(--primary-color);
    border-radius: 20px;
}

.story-carousel .owl-dot:hover span {
    background: var(--primary-color);
}

/* =============================explore places */
.places-inner {
    padding: 50px 0px;
}

.places-inner .main-head {
    line-height: 32px;
}

.places-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    background-color: wheat;

    width: 350px;
    padding: 20px;
    height: auto;
    margin: 0px auto;
}

.place-india img {
    width: 60%;
}

.place-india {
    width: 100%;
    height: auto;
}

.places-wrap {
    margin-top: 20px;
}

.places-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.places-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 15px;
    text-align: center;
}

.tn-places-img h3 {
    color: var(--black) !important;
}

.places-content h3 {
    color: var(--black);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.places-card:hover img {
    transform: scale(1.01);
}

.places-card:hover {
    transform: translateY(-8px);
}

.places-card {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.tn-places-img img {
    width: 600px;
    height: auto;
}

.tn-places-img .main-head {
    font-size: clamp(16px, 2.8vw, 26px);
}

.tn-places-img {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


/* ===============================premium proteetion package */
.inner-packages {
    padding: 50px 0px;
}

.inner-packages .main-head {
    line-height: 32px;
}

.inner-packages {
    padding: clamp(30px, 5vw, 70px) 0;
}

.inner-packages #franchiseTabs {
    gap: 12px;
}

.inner-packages #franchiseTabs .nav-link {
    background: #f3f3f3;
    color: #555;
    border-radius: 12px;
    padding: 12px 24px;
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 500;
    border: none;

    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.inner-packages #franchiseTabs .nav-link:hover {
    background: #e30613;
    color: #fff;
}

.inner-packages #franchiseTabs .nav-link.active {
    background: linear-gradient(135deg, #e30613, #ff3b3b);
    color: #fff;
    box-shadow: 0 8px 20px rgba(227, 6, 19, 0.3);
}

.inner-packages #franchiseTabs .nav-item {
    display: flex;
}

.inner-packages .nav-link i {
    font-size: 16px;
    vertical-align: middle;
}

.inner-packages .plan-box-left {
    position: relative;
    padding: 25px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.inner-packages .plan-box-left::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(#e30613, #ff3b3b);
}

.inner-packages .plan-box-left h4 {
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 600;
    margin-bottom: 5px;

    background: linear-gradient(90deg, #e30613, #ff3b3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.inner-packages .plan-box-left h4 {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.inner-packages .plan-box-left h4::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #e30613;
    border-radius: 10px;
}


.inner-packages .plan-box-left .sub-text {
    color: #777;
    font-size: 14px;
    margin-bottom: 15px;
}

.inner-packages .plan-box-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-box-left p strong {
    color: var(--black);
}

.inner-packages .offer-box {
    color: var(--white);
}

.inner-packages .offer-box p span {
    color: var(--white);
    font-weight: bolder;
}

.inner-packages .plan-box-left ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

.inner-packages .plan-box-left ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #e30613;
    font-size: 14px;
}

.inner-packages .offer-box {
    margin-top: 20px;
    padding: 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e30613, #2c2f8f);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inner-packages .offer-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent);
}

.inner-packages .plan-box-right img {
    width: 100%;
    border-radius: 16px;
    transition: transform 0.4s ease;
}

.inner-packages .plan-box-right:hover img {
    transform: scale(1.01);
}

.inner-packages .plan-box-right {
    position: relative;
}

.inner-packages .plan-box-right::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: -1;
}

.inner-packages .tab-content {
    background-color: #fff;
    padding: 50px 20px;
    border-radius: 10px;
}

/* =============================packaeg table */
.table-wrap {
    padding: 60px;
    background: #000;
}

.plan-compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 30px 0;
}

.plan-compare-table th,
.plan-compare-table td {
    padding: 18px 22px;
    text-align: center;
    border: none;
}

.plan-compare-table th:first-child,
.plan-compare-table td:first-child {
    text-align: left;
    color: #ccc;
    background: transparent;
    font-weight: 500;
    width: 250px;
    padding-left: 10px;
}

.plan-compare-table th:not(:first-child),
.plan-compare-table td:not(:first-child) {
    background: linear-gradient(180deg, #1c1c1c, #111);
    color: #e5e7eb;
}

.plan-compare-table thead th:not(:first-child) {
    border-radius: 16px 16px 0 0;
    background: linear-gradient(90deg, #ff1e1e, #ff4d4d);
    color: #fff;
    font-weight: 600;
    font-size: clamp(14px, 1.2vw, 16px);
}

.plan-compare-table tbody tr:last-child td:not(:first-child) {
    border-radius: 0 0 16px 16px;
}

.plan-compare-table tbody tr td:not(:first-child) {
    position: relative;
}

.plan-compare-table tbody tr td:not(:first-child)::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
}

.plan-compare-table tbody tr:last-child td:not(:first-child)::after {
    display: none;
}

.plan-compare-table td:not(:first-child):hover {
    background: linear-gradient(180deg, #2a2a2a, #111);
}

.plan-compare-table th:nth-child(3),
.plan-compare-table td:nth-child(3) {
    transform: scale(1.08);
    z-index: 2;
    position: relative;
}

.plan-compare-table th:nth-child(3)::before {
    content: "Most Popular";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff1e1e;
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
}


/* =============================packaeg cta section */
.package-cta-inner {
    width: 100%;
    background-image: url(../images/bg/package-cta-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.package-cta-overlay-1 p {
    color: var(--white);
}

.package-cta-overlay-1,
.package-cta-overlay-2 {
    position: static;
}

.package-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

/* =====================protection why */
.why-package {
    position: relative;
}

.why-package-overlay-1 {
    position: absolute;
    left: 0%;
    top: -80%;
    z-index: -1;
}

.package-why-wrap {
    padding: 30px 20px;
}

.package-why-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    width: 400px;
    margin: 0px auto;
}

.package-why-card .icon {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1e3a8a;
}

.package-why-card h4 {
    color: var(--white);
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 500;
    margin-bottom: 10px;
}

.package-why-card i {
    font-size: 42px;
    color: var(--primary-color);
}

.package-why-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.package-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.package-why-card::after {
    content: "";
    position: absolute;
    right: -50px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #ddd;
}

.why-package .col-lg-4:nth-child(3n) .package-why-card::after,
.why-package .col-lg-4:nth-child(5n) .package-why-card::after {
    display: none;
}

/* =================product page */

.inner-product {
    padding: 50px 0px;
}

.inner-product .custom-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.product-card {
    background: #1c1c1c;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    height: 280px;
    transition: 0.3s;
}

.product-img {
    position: absolute;
    right: 0%;
    bottom: -6%;
}

.product-img img {

    transform: rotate(-5deg);
    transition: 0.3s;
}

.product-info p {
    position: absolute;
    top: 15px;
    left: 15px;

    font-size: clamp(13px, 1vw, 15px);
    font-weight: 500;
    color: #ff1e1e;

    background: rgba(255, 30, 30, 0.1);
    padding: 5px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.product-info h4 {
    position: absolute;
    left: 20px;
    bottom: 20px;

    font-size: clamp(16px, 1.2vw, 20px);
    font-weight: 500;
    color: #fff;

    transition: all 0.3s ease;
}

.product-card:hover .product-info h4 {
    color: #ff1e1e;
    transform: translateY(-4px);
}

.product-wrap {
    margin-top: 40px;
}

.product-card:hover img {
    transform: rotate(0deg) scale(1.02);
}

.product-carousel {
    position: relative;
}


.product-carousel {
    position: relative;
}

.product-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(8px);
    color: #fff !important;
    font-size: 16px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s ease;
}

.product-carousel .owl-nav button i {
    position: relative;
    z-index: 2;
    transition: 0.3s;
}

.product-carousel .owl-nav button::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(135deg, #ff1e1e, #ff4d4d);
    transform: translateY(100%);
    transition: transform 0.4s ease;

    border-radius: 50%;
    z-index: 1;
}

.product-carousel .owl-nav button:hover::before {
    transform: translateY(0%);
}

.product-carousel .owl-nav button:hover {
    transform: translateY(-50%) scale(1.08);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(255, 30, 30, 0.35);
}

.product-carousel .owl-nav button:hover i {
    color: #fff;
}

.product-carousel .owl-nav .owl-prev {
    left: -35px;
}

.product-carousel .owl-nav .owl-next {
    right: -35px;
}

.product-carousel .owl-nav button:active {
    transform: translateY(-50%) scale(0.95);
}

.product-carousel .owl-nav button:focus {
    outline: none;
}


/* ===================app features */
.inner-app-features {
    padding: 40px 0px;
}

.app-features-wrap .app-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-features-wrap {
    margin: 30px 0px;
}

.ideal-wrap .row {
    justify-content: center;
}

.inner-app-features .main-head {
    line-height: 34px;
}

.app-link-wrap .item img {
    height: 65px;
}

.app-link-wrap .item {
    border: 2px dotted var(--white) !important;
}

.app-link-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

/* =============================app cta section */
.app-cta-inner {
    position: relative;
    background: linear-gradient(90deg, #ff1e1e, #b30000);
    border-radius: 30px;
    padding: 50px 60px;
    margin: 40px 0px;
}


.collage-placement-cta .app-cta-content .main-head {
    font-size: clamp(20px, 3vw, 32px);
}

.collage-placement-cta .app-cta-content {
    max-width: 800px;
}

.collage-placement-cta {
    margin: 70px 0px;
}

.app-cta-overlay-1 {
    position: absolute;
    top: 50%;
    right: -4%;
    transform: translate(-50%, -50%);
}

.app-cta-inner .main-head {
    color: #fff;
    font-size: clamp(26px, 3vw, 48px);
    font-weight: 700;
    line-height: 1.3;
    max-width: 500px;
}

.app-cta-overlay-1 img {
    width: 550px;
    height: auto;
}

.app-cta-inner .main-head strong {
    color: #fff;
}

.app-cta-inner p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
    font-size: clamp(14px, 1.2vw, 16px);
}

.app-cta-inner .app-link-wrap {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 20px;
}

.app-cta-inner .app-link-wrap img {
    height: 45px;
    transition: 0.3s;
    border: none !important;
}

.app-cta-inner .app-link-wrap img:hover {
    transform: scale(1.02);
}

.app-cta-inner::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    height: 100%;

    background: url('./assets/images/app-mobile.png') no-repeat right bottom;
    background-size: contain;
    pointer-events: none;
}

.app-cta-inner::before {
    content: "";
    position: absolute;
    right: 80px;
    bottom: 0;
    width: 40%;
    height: 100%;

    background: url('./assets/images/app-mobile-2.png') no-repeat right bottom;
    background-size: contain;
    opacity: 0.6;
}

.product-why .main-head {
    line-height: 36px;
}

.product-why {
    padding: 50px 0px;
}

/*==============================================
      testimonial page
========================== =============================== */
.testimonial-main-wrap {
    padding: 60px 20px;
    background: #000;
}

.testimonial-main-wrap .testimonial-card {
    background: #111;
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    color: #fff;
    transition: 0.3s;
}

.testimonial-main-wrap .owl-stage {
    margin: 20px 0px;
}

.testimonial-main-wrap .video-wrap {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
}

.testimonial-main-wrap .video-wrap iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.testimonial-main-wrap .testimonial-card h5 {
    margin-top: 10px;
    font-size: 16px;
}

.testimonial-main-wrap .testimonial-card p {
    font-size: 13px;
    color: #ccc;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.2);
}





.inner-events .testimonial-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 10;
    pointer-events: none;
}

.inner-events .testimonial-carousel .owl-nav button {
    position: relative;
    width: 35px;
    height: 35px;
    background: #111 !important;
    color: #fff !important;
    border-radius: 50%;
    border: 2px solid red;
    pointer-events: all;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-events .testimonial-carousel .owl-nav i {
    font-size: 18px;
    z-index: 2;
}

.inner-events .main-head {
    line-height: 32px;
    text-align: center;
}

.inner-events .testimonial-carousel .owl-nav button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, red, #ff4d4d);
    border-radius: 50%;
    transform: scale(0);
    transition: 0.3s ease;
    z-index: 1;
}

.inner-events .testimonial-carousel .owl-nav button::after {
    content: "";
    position: absolute;
    inset: -6px;
    border: 2px solid red;
    border-radius: 50%;
    opacity: 0;
    transition: 0.3s ease;
}

.inner-events .testimonial-carousel .owl-nav button:hover {
    transform: scale(1.1);
}

.inner-events .testimonial-carousel .owl-nav button:hover::before {
    transform: scale(1);
}

.inner-events .testimonial-carousel .owl-nav button:hover::after {
    opacity: 1;
}


/* ========================================================
                  conatc us pae
=====================================================================  */

.inner-contact-page .head-sec {
    padding: 60px 0px;
}

.inner-contact-page {
    padding: 50px 0px;
}

.contact-form-box .main-head {
    background: linear-gradient(90deg,
            #220000 0%,
            #660000 25%,
            var(--primary-color) 50%,
            #ff3b3b 75%,
            #330000 100%);
    font-size: clamp(28px, 5vw, 55px);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    font-weight: 700;
}

.inner-contact-page .contact-form-box {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    padding: 40px;
    z-index: 1;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.inner-contact-page .contact-form-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.inner-contact-page .form-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.inner-contact-page .form-label i {
    color: var(--primary-color);
    font-size: 16px;
}

.inner-contact-page .form-control,
.inner-contact-page .form-select {
    border-radius: 10px;
    padding: 12px 14px;
    border: 1px solid #e5e5e5;
    background: #fff;
    transition: all 0.25s ease;
}


.inner-contact-page .form-control:focus,
.inner-contact-page .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.08);
    outline: none;
}


.inner-contact-page .form-control:hover,
.inner-contact-page .form-select:hover {
    border-color: #ccc;
}


.inner-contact-page textarea.form-control {
    resize: none;
}

.inner-contact-page .contact-btn {
    background: linear-gradient(135deg, var(--primary-color), #ff4d4d);
    color: #fff;
    border: none;
    border-radius: 30px;
    transition: 0.3s ease;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


.inner-contact-page .contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.2);
}

.inner-contact-page::placeholder {
    color: #aaa;
    font-size: 14px;
}

.inner-contact-page .contact-info-box {
    background: linear-gradient(145deg,
            rgba(5, 3, 23, 0.95),
            rgba(10, 15, 60, 0.85));

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-radius: 18px;
    padding: 32px;
    color: #fff;

    border: 1px solid rgba(255, 255, 255, 0.06);

    position: relative;
    overflow: hidden;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.9),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.inner-contact-page .contact-info-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -30%;
    width: 160%;
    height: 60%;

    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.12),
            transparent 60%);

    transform: rotate(8deg);
    pointer-events: none;
    opacity: 0.4;
}

.inner-contact-page .contact-info-box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;

    background: radial-gradient(circle at top right,
            rgba(27, 42, 255, 0.15),
            transparent 60%);

    z-index: -1;
}


/* .inner-contact-page .contact-info-box:hover {
    transform: translateY(-1px) scale(1.01);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    transition: 0.35s ease;
    z-index: -1;
} */

.inner-contact-page .contact-info-box .info-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);

    border-radius: 12px;
    padding: 12px 15px;
    gap: 12px;

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.inner-contact-page .contact-info-box .info-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;

    background: linear-gradient(120deg,
            rgba(27, 42, 255, 0.15),
            transparent 60%);

    opacity: 0;
    transition: 0.3s;
    z-index: -1;
}

/* .inner-contact-page .contact-info-box .info-item:hover {
    background: rgba(27, 42, 255, 0.08);
    border-color: rgba(27, 42, 255, 0.3);
} */

.inner-contact-page .contact-info-box .info-item:hover::before {
    opacity: 1;
}

.contact-list span {
    color: var(--primary-color);
}

.contact-list a:hover {
    color: var(--primary-color);
}

.contact-social {
    margin-top: 20px;
}

.inner-contact-page .social-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.inner-contact-page .social-icons {
    display: flex;
    gap: 12px;
}

.inner-contact-page .social-link {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;

    color: #c7d2ff;
    font-size: 16px;

    transition: all 0.3s ease;
}

.inner-contact-page .social-link:hover {
    transform: translateY(-4px) scale(1.02);
    color: #fff;
}

.inner-contact-page .social-link.facebook:hover {
    background: #1877f2;
}

.inner-contact-page .social-link.instagram:hover {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.inner-contact-page .social-link.youtube:hover {
    background: #ff0000;
}

.inner-contact-page .social-link.twitter:hover {
    background: #000;
}


/* ======================= outline stock */
.contact-word-section {
    background: transparent;
    overflow: hidden;
    padding: 0px 0;
}

/* marquee container */
.contact-word-section .marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.contact-word-section .marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-left 18s linear infinite;
}

.branch-page .contact-word-section .marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-left 48s linear infinite !important;
}

.contact-word-section .marquee h2 {
    font-size: clamp(40px, 8vw, 120px);
    font-weight: 800;
    white-space: nowrap;
    margin-right: 60px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    letter-spacing: 2px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}


.contact-map {
    overflow: hidden;
    position: relative;
}

.contact-map iframe {
    width: 100%;
    height: 350px;
    border: 0;
    filter: grayscale(100%) contrast(1.1) brightness(0.9);

    transition: all 0.5s ease;
}

.contact-map:hover iframe {
    filter: grayscale(0%) contrast(1) brightness(1);
}

.contact-map::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(5, 3, 23, 0.2);
    pointer-events: none;
    transition: 0.4s;
}

.contact-map:hover::after {
    background: transparent;
}

/*=============================================== franchise process */
.inner-franchise-process {
    padding: 50px 0px;
}

.inner-franchise-process .main-head span {
    font-size: clamp(24px, 3vw, 38px) !important;
    color: var(--primary-color);
}

.inner-franchise-process .main-head {
    font-size: clamp(24px, 3vw, 38px) !important;
}


.inner-franchise-process .container-fluid {
    width: 60%;
}

.inner-franchise-process {
    position: relative;
    width: 100%;
    background-image: url('../images/bg/franchise-bg.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
}

.inner-franchise-process::before {
    content: "";
    position: absolute;
    inset: 0;

    backdrop-filter: blur(6px);

    background: linear-gradient(135deg,
            rgba(40, 40, 40, 0.6),
            rgba(120, 120, 120, 0.3));

    z-index: 1;
}

.inner-franchise-process>* {
    position: relative;
    z-index: 2;
}

.franchise-process-wrap {
    padding: 30px 20px;
}

.inner-franchise-process .process-card {
    position: relative;
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    margin-bottom: 25px;
    overflow: hidden;
    transition: 0.4s ease;
    width: 100% !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.inner-franchise-process .process-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #ff1a1a, #990000);
}

.inner-franchise-process .process-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), transparent);
    opacity: 0;
    transition: 0.4s ease;
}

.inner-franchise-process .process-card:hover::after {
    opacity: 1;
}

.inner-franchise-process .process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.2);
}

.inner-franchise-process .process-card .step {
    font-size: 45px;
    font-weight: 700;
    color: rgba(255, 0, 0, 0.4);
    position: absolute;
    top: 10px;
    right: 20px;
}

.inner-franchise-process .process-card h4 {
    font-size: clamp(16px, 2.5vw, 24px);
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.inner-franchise-process .process-card p {
    font-size: 14px;
    color: var(--black);
}


/* ===============================-===========================
                success page 
=============================================================*/
.success-section {
    background: #0b0b0b;
    display: flex;
    padding: 50px 0px;
    align-items: center;
    justify-content: center;
}

.success-box {
    position: relative;
    background: #111;
    padding: 50px 30px;
    border-radius: 20px;
    max-width: 500px;
    margin: auto;
    overflow: hidden;
    /* box-shadow: 0 0 30px rgba(255, 0, 0, 0.1); */
}

.success-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), transparent);
    opacity: 0.5;
    z-index: 0;
}

.success-box::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ff1a1a, transparent);
    z-index: -1;
}

.success-box * {
    position: relative;
    z-index: 2;
}

.success-icon i {
    font-size: 70px;
    color: #ff1a1a;
    margin-bottom: 20px;
    animation: pop 0.6s ease;
}

@keyframes pop {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.success-title {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
}

.success-text {
    font-size: 15px;
    color: #aaa;
    margin-bottom: 25px;
}


/* ==============franchaise counter */
.why-franchise {
    position: relative;
    padding: 40px 20px;
}

.why-franchise-overlay-1 img {
    width: 800px;
    height: auto;
}

.why-franchise-overlay-1 {
    position: absolute;
    right: -14%;
    top: 30%;
    z-index: -1;
    opacity: 0.2;
}

.why-franchise .circle-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.why-franchise .circle {
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(2px);
}

.why-franchise .circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;

}

.why-franchise .main-head span {
    color: var(--primary-color);
    font-size: clamp(30px, 4vw, 60px);
}

.why-franchise .circle h2 {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--white);
    font-weight: 700;
    transition: 0.3s;
}

.why-franchise .circle p {
    color: var(--white);
    font-size: clamp(12px, 1.5vw, 14px);
    margin-top: 8px;
    text-transform: uppercase;
    text-align: center;
    transition: 0.3s;
}

.why-franchise .circle:hover {
    border-color: #ff0000;
    transform: scale(1.04);
    box-shadow:
        0 0 25px rgba(255, 0, 0, 0.6),
        0 0 40px rgba(30, 58, 138, 0.4);
}

.why-franchise .circle:hover h2 {
    color: #ff0000;
}

.why-franchise .circle:hover p {
    color: #ffffff;
}

.quote-note {
    position: relative;
    padding: clamp(10px, 5vw, 30px);
    margin: 40px auto;
    max-width: 900px;
    text-align: center;
    background: linear-gradient(145deg, #f5f5f5, #e6e6e6);
    border-radius: 16px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08),
        inset 0 0 10px rgba(255, 255, 255, 0.6);
}

.quote-note h3 {
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 600;
    line-height: 1.6;
    color: #1e2a78;
    margin: 0;
    position: relative;
}

.quote-note h3 span {
    font-size: clamp(30px, 5vw, 60px);
    color: #ff0000;
    font-weight: 700;
    line-height: 0;
}

.quote-note::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #1e3a8a, #ff0000);
    border-radius: 10px;
}

.quote-note:hover {
    transform: translateY(-5px);
    transition: 0.3s ease;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 0 20px rgba(255, 0, 0, 0.15);
}

/* ==================franchise form */

.fr-stepper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 750px;
    margin: 0 auto 60px;
}

.fr-progress {
    position: absolute;
    top: 18px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #333;
    z-index: 0;
    border-radius: 10px;
}

.fr-progress::after {
    content: "";
    position: absolute;
    height: 100%;
    width: var(--progress, 0%);
    background: linear-gradient(90deg, #ff0000, #1e3a8a);
    border-radius: 10px;
    transition: width 0.4s ease;
}

.fr-step {
    position: relative;
    flex: 1;
    text-align: center;
    z-index: 1;
}

.fr-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #111;
    border: 2px solid #555;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: 600;
    color: #aaa;

    transition: all 0.3s ease;
}


.fr-step p {
    margin-top: 12px;
    font-size: clamp(12px, 1.5vw, 14px);
    color: #888;
}

.fr-step.active .fr-circle {
    background: red;
    color: #fff;
    border-color: red;
}

.fr-step.active p {
    color: #fff;
    font-weight: 600;
}

.fr-step.completed .fr-circle {
    background: #1e3a8a;
    color: #fff;
    border-color: #1e3a8a;
}










#multiStepForm .custom-form {
    background: #0f0f0f;
    padding: clamp(20px, 4vw, 40px);
    border-radius: 16px
}

#multiStepForm .row {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px
}

#multiStepForm .form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    height: 100%
}

#multiStepForm .form-label {
    display: block;
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 500;
    color: #bbb;
    margin-bottom: 6px
}

#multiStepForm input,
#multiStepForm textarea,
#multiStepForm select {
    width: 100%;
    padding: 8px 8px;
    border-radius: 10px;
    border: 1px solid #2a2a2a;
    background: #1a1a1a;
    color: #fff;
    font-size: clamp(13px, 1.5vw, 15px);
    transition: all .3s ease;
    height: 44px
}

#multiStepForm textarea {
    height: auto;
    min-height: 100px;
    resize: none
}

#multiStepForm input::placeholder,
#multiStepForm textarea::placeholder {
    color: #777
}

#multiStepForm input:hover,
#multiStepForm textarea:hover,
#multiStepForm select:hover {
    border-color: #555
}

#multiStepForm input:focus,
#multiStepForm textarea:focus,
#multiStepForm select:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, .35)
}

#multiStepForm select option {
    color: #fff
}

#multiStepForm .radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px
}

#multiStepForm .radio-group.horizontal {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px
}

#multiStepForm .radio-group.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px
}

#multiStepForm .radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(12px, 1.5vw, 14px);
    color: #aaa;
    cursor: pointer;
    padding: 8px 10px;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    transition: .25s
}

#multiStepForm .radio-group label:hover {
    border-color: #ff0000;
    background: rgba(255, 0, 0, .06)
}

#multiStepForm .radio-group input {
    appearance: none;
    width: 14px !important;
    height: 14px !important;
    border: 2px solid #666;
    border-radius: 50%;
    position: relative;
    transition: .25s
}

#multiStepForm .radio-group input:checked {
    border-color: #ff0000
}

#multiStepForm .radio-group input:checked::before {
    content: "";
    position: absolute;
    inset: 2px;
    background: #ff0000;
    border-radius: 50%
}

#multiStepForm .btn-danger {
    background: linear-gradient(90deg, #ff0000, #1e3a8a);
    border: none;
    border-radius: 50px;
    padding: 10px 26px;
    color: #fff;
    font-size: 14px;
    transition: .3s
}

#multiStepForm .btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, .4)
}

#multiStepForm .req {
    color: #ff0000;
    margin-left: 4px
}

#multiStepForm .next-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    font-size: clamp(13px, 1.5vw, 15px);
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #ff0000, #1e3a8a);
    cursor: pointer;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

#multiStepForm .next-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, .4);
}

#multiStepForm .next-btn:active {
    transform: scale(.96);
}

#multiStepForm .next-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .3), transparent);
    transition: .5s;
}

#multiStepForm .next-btn:hover::before {
    left: 100%;
}

.franchise-btn-wrap {
    display: flex;
    justify-content: end;
    margin-top: 10px;
}

#multiStepForm .prev-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: clamp(13px, 1.5vw, 15px);
    font-weight: 600;
    color: #fff;
    background: transparent;
    border: 1px solid #444;
    cursor: pointer;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

#multiStepForm .prev-btn:hover {
    border-color: #ff0000;
    color: #ff0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 0, 0, .2);
}

#multiStepForm .prev-btn:active {
    transform: scale(.96);
}

#multiStepForm .prev-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 0, 0, .2), transparent);
    transition: .5s;
}

#multiStepForm .prev-btn:hover::before {
    left: 100%;
}

.form-step {
    display: none;
    animation: fade .3s ease;
}

.form-step.active {
    display: block;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateX(20px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}





@media (max-width:768px) {
    #multiStepForm .radio-group.grid-3 {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:575px) {
    #multiStepForm .custom-form {
        padding: 20px
    }

    #multiStepForm .form-label {
        font-size: 12px
    }

    #multiStepForm .radio-group.horizontal {
        flex-direction: column
    }
}