/* ===============================
   🔤 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;
} */

[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 span {
    font-size: clamp(18px, 2.5vw, 26px);
}

.main-head {
    font-size: clamp(30px, 4vw, 60px);
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 800;
    color: var(--white) !important;
    letter-spacing: 5px;
}


.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: 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;
}




.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%;
}

.sub-banner-overlay .main-head {
    font-size: clamp(24px, 3vw, 48px);
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
}




/* -------------- 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: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1800px;
    z-index: 99999;
    transition: all 0.3s ease;
}

.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;
}

/* =======================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 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 Styles */
.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::after {
    content: '→';
    transition: transform 0.3s ease;
}

.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 .main-head {
    line-height: 38px;
}

.inner-awards {
    padding: 30px 0px;
}

.awards-wrap .award-img {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.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 {
    padding: 50px 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;
}

/* ================================collage cta section */
.inner-collage-cta .container-fluid {
    width: 70%;
}

.inner-collage-cta {
    padding: 140px 0px 20px 0px;
}

.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;
}

.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;
}

/* ====================all branch */
.all-branch-inner {
    padding: 50px 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;
}

.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%;
}

.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);
}








.service-owl {
    position: relative;
}

.service-owl .owl-dots {
    position: absolute;
    right: 10px;
    bottom: -40px;
    display: flex;
    gap: 10px;
}.service-owl {
    position: relative;
}

.service-owl .owl-dots {
    position: absolute;
    right: 10px;
    bottom: -40px;
    display: flex;
    gap: 10px;
}.service-owl .owl-dots .owl-dot.active span {
    width: 28px;
    border-radius: 20px;

    background: linear-gradient(135deg, red, #ff4d4d);

    box-shadow: 0 6px 15px rgba(255,0,0,0.3);
}.service-owl .owl-dots .owl-dot:hover span {
    background: #fff;
    transform: scale(1.2);
}