/*
-------------------------------
Global Styles
-------------------------------
*/

body {
    font-family: var(--bodyFont);
    font-size: 16px;
    line-height: 1.5;
    color: var(--paraColor);
    overflow-x: hidden;
}

.w_200 {
    width: 200px !important;
}

.w_100_p {
    width: 100% !important;
}

.h_100_p {
    height: 100% !important;
}

.vh {
    visibility: hidden !important;
}

.d_block {
    display: block !important;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
}

p {
    font-size: 16px;
    line-height: 1.6;
}

a {
    font-size: 16px;
    text-decoration: none;
    color: var(--colorBlack);
}

a:focus {
    outline: none;
}

button:focus {
    outline: none;
}

.form-group input:focus {
    box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {

    color: var(--colorBlack);
    line-height: 1.5;
}

a:hover,
a:active,
a:visited,
a:focus {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

a:hover {
    text-decoration: none;
    color: var(--colorPrimary);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu,
.mobile-menuicon {
    display: none;
}

img {
    max-width: 100%;
    height: auto;
}

.bg {
    position: absolute;
    background-color: #000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.4;
}

.bg-area {
    background: #f5f7f9;
}

:root {
    --colorPrimary: #1977f4;
    --colorSecondary: #f1634c;
    --colorBlack: #333;
    --colorWhite: #fff;
    --paraColor: #4b4b4b;
    --borderColor: #ddd;
    --bodyFont: 'Nunito', sans-serif;
}
:root {
    --coral: #F1634C;
    --blue: #1977F4;
    --coral-light: #FF8A76;
    --blue-light: #4A9BFF;
    --coral-dark: #D94832;
    --blue-dark: #1260CC;
    --gradient-main: linear-gradient(135deg, #F1634C 0%, #c0392b 40%, #1977F4 100%);
    --gradient-coral: linear-gradient(135deg, #F1634C 0%, #FF8A76 100%);
    --gradient-blue: linear-gradient(135deg, #1977F4 0%, #4A9BFF 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, #F1634C33 0px, transparent 50%),
                    radial-gradient(at 80% 0%, #1977F422 0px, transparent 50%),
                    radial-gradient(at 0% 50%, #F1634C1A 0px, transparent 50%);
    --dark: #0D1117;
    --surface: #F8FAFE;
    --card-bg: #FFFFFF;
    --text-primary: #0D1117;
    --text-secondary: #5A6478;
    --text-muted: #9AA3B2;
    --border: #E8EDF5;
    --shadow-sm: 0 2px 12px rgba(25, 119, 244, 0.08);
    --shadow-md: 0 8px 32px rgba(25, 119, 244, 0.12);
    --shadow-lg: 0 20px 60px rgba(25, 119, 244, 0.16);
    --shadow-coral: 0 8px 32px rgba(241, 99, 76, 0.25);
    --shadow-blue: 0 8px 32px rgba(25, 119, 244, 0.25);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}
/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');
    
* { box-sizing: border-box; }
body { font-family: var(--font-body); background: var(--surface); }


    /* ===== UTILITY ===== */
    .gradient-text {
        background: var(--gradient-main);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .section-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, rgba(241,99,76,0.1), rgba(25,119,244,0.1));
        border: 1px solid rgba(241,99,76,0.2);
        border-radius: 50px;
        padding: 6px 16px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--coral);
        margin-bottom: 16px;
    }
    .section-tag::before {
        content: '';
        width: 6px; height: 6px;
        border-radius: 50%;
        background: var(--gradient-coral);
    }
    .section-headline {
        font-family: var(--font-display);
        font-size: clamp(28px, 4vw, 44px);
        font-weight: 800;
        line-height: 1.15;
        color: var(--text-primary);
        margin-bottom: 16px;
    }
    .section-headline span {
        background: var(--gradient-main);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .section-sub {
        font-size: 16px;
        color: var(--text-secondary);
        line-height: 1.7;
        /* max-width: 540px; */
        margin: 0 auto;
    }
    
    /* ===== SHARED BTN ===== */
    .btn-gradient {
        display: inline-flex; align-items: center; gap: 8px;
        padding: 14px 36px;
        border-radius: 50px;
        background: var(--gradient-main);
        color: #fff; font-weight: 600; font-size: 15px;
        text-decoration: none;
        border: none;
        transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
        box-shadow: var(--shadow-blue);
    }
    .btn-gradient:hover { opacity: 0.88; transform: translateY(-2px); color: #fff; box-shadow: 0 16px 40px rgba(25,119,244,0.3); }
    

/* Owl Carousel Fix Start */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

/* Display-Flex */
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

/*Preloader*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--colorWhite);
    z-index: 999999;
}

.preloader .status {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-repeat: no-repeat;
    background-position: center;
    margin: -100px 0 0 -100px;
}

/*
-------------------------------
Header-Area
-------------------------------
*/

.header-area {
    clear: both;
    background: var(--colorPrimary);
    position: relative;
}


.header-social ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-social li {
    position: relative;
    display: inline-block;
    margin-right: 10px;
}

.header-social li:before {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    background-color: #e9e9e9;
    top: 0;
    left: -15px;
}

.header-social li:first-child:before {
    display: none;
}

.social-bar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.social-bar li {
    display: inline-block !important;
    margin-right: 10px !important;
}

.social-bar li:last-child {
    margin-right: 0;
}

.social-bar li:before {
    display: none;
}

.social-bar li a {
    color: var(--colorWhite);
    text-decoration: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.social-bar li a:hover {
    color: #f5f5f5;
}

.language a {
    text-decoration: none;
    color: var(--colorWhite);
}

.dropdown-menu a:hover {
    color: var(--colorPrimary);
}

.dropdown-menu {
    display: block;
}

.language i {
    margin-right: 7px;
}

.dropdown-menu a {
    text-decoration: none;
    color: var(--colorBlack);
}

.header-info {
    text-align: right;
}

.header-info ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    align-items: center;
}

.header-info li {
    position: relative;
    display: inline-block;
    color: var(--colorWhite);
    margin-left: 30px;
    padding: 5px 0px;
}

.header-info li:first-child {
    margin-left: 0;
}

.header-info li:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background-color: #c5c1c1c7;
    top: 0;
    left: -17px;
}

.header-info li:first-child:before {
    display: none;
}

.header-info li i {
    margin-right: 5px;
    color: var(--colorWhite);
}

.header-info li a {
    color: var(--colorWhite);
    transition: all 0.3s;
}

.header-info li a:hover {
    color: #f5f5f5;
}

.header-area .nice-select {
    background-color: transparent !important;
    height: 24px;
    line-height: 24px;
    padding-left: 0;
    padding-right: 30px;
    border-radius: 0;
    border: none;
}

.header-area .current {
    font-size: 16px;
    font-weight: 400;
}

.header-area .nice-select:after {
    border-bottom: 2px solid var(--colorWhite);
    border-right: 2px solid var(--colorWhite);
    margin-top: -5px;
    right: 2px;
}

.header-area .nice-select .option {
    color: var(--colorBlack);
    margin: 0;
    padding-right: 20px;
    width: 100%;
}

.header-area .nice-select .option:before {
    display: none;
}

.main-menu .nav-menu li.special-button a {
    border-radius: 6px;
}

#appointment_modal .select2-dropdown {
    z-index: 9999;
}

/*Header Cart*/
.wishlist-dropdown {
    position: absolute;
    top: 100%;
    left: -50%;
    transform: translate(-91%, -2px);
    z-index: 100;
    width: 300px;
    padding-top: 9px;
    color: #777;
    background: var(--colorWhite);
    box-shadow: 0 29px 28px rgba(0, 0, 0, 0.1);
    display: none;
    visibility: hidden;
    opacity: 0;
    padding: 22px 25px;
}

.wishlist-dropdown ul li {
    padding-top: 20px;
    margin-top: 20px;
    overflow: hidden;
    border-top: 1px solid #d3d3d3;
}

.wishlist-dropdown ul li.first-wishlist {
    overflow: hidden;
    padding-top: 0px;
    margin-top: 0px;
    border-top: 0;
}

.wishlist-dropdown ul li:nth-child(2) {
    padding-top: 28px;
    margin-top: 8px;
}

.wishlist-dropdown ul li.first-wishlist a {
    font-weight: 600;
    color: #777;
}

.wishlist-dropdown ul li.first-wishlist a:hover {
    color: #756c6b;
}

.wishlist-dropdown ul li .wish-text {
    text-align: left;
    float: left;
}

.wishlist-dropdown ul li .wish-text a {
    font-size: 16px;
    font-weight: 500
}

.wishlist-dropdown ul li .wish-text a:hover {
    color: var(--colorSecondary);
}

.wishlist-dropdown ul li .wish-text p {
    margin: 0;
}

.wishlist-dropdown ul li .wish-img {
    position: relative;
    float: right;
}

.wishlist-dropdown ul li .wish-img img {
    height: 60px;
}

.wishlist-dropdown ul li .wish-img .close-btn {
    position: absolute;
    text-align: center;
    top: -8px;
    right: -5px;
    display: block;
    background: #f5f5f5;
    width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 16px;
    border-radius: 50%;
    font-weight: 600;
}

.wishlist-dropdown ul li .wish-img .close-btn:hover {
    color: var(--colorSecondary);
}

.wish-cbtn {
    overflow: hidden;
    clear: both;
    text-align: center;
}

.wish-cbtn a {
    display: block;
    background: var(--colorPrimary);
    color: var(--colorWhite);
    padding: 6px 5px 8px;
    margin-top: 7px;
}

.wish-cbtn a:hover {
    background: var(--colorBlack);
}

.cart-button:hover .wishlist-dropdown {
    display: block;
    visibility: visible;
    opacity: 1;
}


/*
-------------------------------
Menu-Area
-------------------------------

.logo {
    min-height: 87px;
}

.logo img {
    width: auto;
    height: 62px;
}

.main-menu {
    float: right;
    margin-right: 0px;
}

ul.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.nav-menu li {
    position: relative;
    float: left;
}

ul.nav-menu li.menu-item-has-children:before {
    position: absolute;
    content: '\f067';
    font-family: 'Font Awesome 5 Free';
    top: 56%;
    right: 4px;
    font-size: 10px;
    font-weight: 600;
    color: var(--colorBlack);
    margin-top: -12px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

ul.nav-menu li.menu-item-has-children li.menu-item-has-children:before {
    right: 15px;
    color: var(--colorBlack);
}

ul.nav-menu li.menu-item-has-children:hover:before {
    color: var(--colorSecondary);
    transform: rotate(45deg);
}

ul.nav-menu li.menu-item-has-children li.menu-item-has-children:hover:before {
    color: var(--colorSecondary);
}

ul.nav-menu li a {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--colorBlack);
    text-decoration: none;
    padding: 32px 20px;
}

ul.nav-menu li ul.sub-menu {
    position: absolute;
    width: 200px;
    left: 0;
    z-index: 999;
    overflow: hidden;
}

ul.nav-menu li ul.sub-menu>li {
    float: none;
    display: none;
    opacity: 0;
}

ul.nav-menu li ul li a {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 15px;
    background: var(--colorWhite);
    color: var(--colorBlack);
    border-bottom: 1px dashed #d3d3d3;
}

ul.nav-menu li ul.sub-menu li ul.sub-menu {
    top: 0;
    left: 100%;
}

ul.nav-menu li:hover>a {
    color: var(--colorSecondary);
}
/* Dropdown */
.nav-menu-new .sub-menu-new {
    list-style: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    background: #fff;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 16px 48px rgba(25,119,244,0.14);
    border: 1px solid #E8EDF5;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    z-index: 999;
}
.nav-menu-new > li {
    position: relative;
}
.nav-menu-new > li:hover .sub-menu-new {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.sub-menu-new li a {
    display: block;
    padding: 10px 14px;
    font-size: 13px; font-weight: 500;
    color: #5A6478;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
    font-family: 'DM Sans', sans-serif;
}
.sub-menu-new li a:hover {
    background: linear-gradient(135deg, rgba(241,99,76,0.07), rgba(25,119,244,0.07));
    color: #1977F4;
}
/* Left accent on hover */
.sub-menu-new li a::before {
    content: '';
    display: inline-block;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F1634C, #1977F4);
    margin-right: 8px;
    opacity: 0;
    transition: opacity 0.2s;
    vertical-align: middle;
}
.sub-menu-new li a:hover::before { opacity: 1; }
 

/*Menu-Keyframes*/

ul.nav-menu li:focus>ul.sub-menu>li,
ul.nav-menu li:hover>ul.sub-menu>li {
    display: block;
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -moz-animation: fade 0.4s forwards;
    -webkit-animation: fade 0.4s forwards;
    animation: fade 0.4s forwards;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

@-moz-keyframes fade {
    0% {
        -moz-transform: translateY(0px);
    }

    100% {
        -moz-transform: translateY(0px);
    }

    0% {
        -moz-transform: translateY(0px);
    }
}

@-webkit-keyframes fade {
    0% {
        -webkit-transform: translateY(0px);
        ;
    }

    100% {
        -webkit-transform: translateY(0px);
        ;
    }

    0% {
        -webkit-transform: translateY(0px);
        ;
    }
}

@keyframes fade {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }

    0% {
        transform: translateY(0px);
    }
}

/*Menu-Keyframes-End*/


/*Mega-Menu Start*/

ul.nav-menu li.menu-static {
    position: static;
}

ul.nav-menu .mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--colorWhite);
    padding: 20px 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

ul.nav-menu .mega-menu ul {
    float: left;
    width: 30.33%;
    margin-left: 32px;
}

ul.nav-menu .mega-menu ul:first-child {
    margin-left: 0;
}

ul.nav-menu li.menu-static a {
    position: relative;
}

ul.nav-menu li.menu-static a.menu-item-has-children:before {
    position: absolute;
    content: '\f067';
    font-family: 'Font Awesome 5 Free';
    top: 56%;
    right: 4px;
    font-size: 10px;
    font-weight: 600;
    color: var(--colorBlack);
    margin-top: -11px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

ul.nav-menu li.menu-static:hover a.menu-item-has-children:before {
    color: var(--colorSecondary);
    transform: rotate(45deg);
}

ul.nav-menu .mega-menu ul:first-child {
    border-left: 0px;
}

ul.nav-menu .mega-menu ul:last-child {
    border-right: 0px;
}

ul.nav-menu .mega-menu ul li {
    display: block;
    opacity: 1;
    float: none;
    padding: 2px;
}

ul.nav-menu .mega-menu ul li.menu-headline {
    font-size: 18px;
    font-weight: 600;
    color: var(--colorBlack);

    padding-left: 14px;
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 8px;
}

ul.nav-menu .mega-menu ul li.menu-headline:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 13.5px;
    width: 70px;
    height: 2px;
    background: var(--colorBlack);
}

ul.nav-menu .mega-menu ul li a {
    font-size: 14px;
    font-weight: 600;
    padding: 8px 10px;
}

ul.nav-menu .mega-menu ul li:nth-child(2) a {
    border-top: 0;
}

ul.nav-menu .mega-menu ul li a i {
    margin-right: 2px;
}

ul.nav-menu li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}


/*Mega-Menu End*/


/* Sticky Menu */

#strickymenu {}

#strickymenu.sticky {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-color: var(--colorWhite);
    border-bottom: 1px solid var(--borderColor);
    z-index: 999;
    -webkit-transition: height 0.3s;
    transition: all 0.3s;
}

#strickymenu.sticky .logo {
    min-height: 70px;
}

#strickymenu.sticky .logo img {
    height: 56px;
}

#strickymenu.sticky ul.nav-menu li a {
    min-height: 70px;
    padding: 24px 20px;
}

#strickymenu.sticky ul.nav-menu li ul li a {
    min-height: 0;
    padding: 10px 15px;
}

     /* ============================================
   HEADER — TOPBAR + NAVBAR
   ============================================ */
 
/* ── Topbar ── */
.header-area-new {
    background: linear-gradient(135deg, #F1634C 0%, #c0392b 45%, #1977F4 100%);
    padding: 0;
    position: relative;
    z-index: 1001;
    overflow: hidden;
}
.header-area-new::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='20' cy='20' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    gap: 16px;
    position: relative;
    z-index: 1;
}
 
/* Social icons */
.topbar-socials {
    display: flex;
    align-items: center;
    gap: 6px;
}
.topbar-socials a {
    width: 30px; height: 30px;
    border-radius: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s, transform 0.3s;
    text-decoration: none;
}
.topbar-socials a:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}
.topbar-socials a img {
    width: 14px; height: 14px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
 
/* Right info row */
.topbar-right {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}
.topbar-item {
    display: flex; align-items: center; gap: 7px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    transition: background 0.3s;
    text-decoration: none;
    white-space: nowrap;
}
.topbar-item:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}
.topbar-item i { font-size: 11px; color: rgba(255,255,255,0.7); }
 
/* Divider */
.topbar-divider {
    width: 1px; height: 16px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}
 
/* Language / Currency selects */
.topbar-select-wrap {
    position: relative;
    display: flex; align-items: center;
}
.topbar-select-wrap select {
    appearance: none;
    -webkit-appearance: none;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: rgba(255,255,255,0.9);
    font-size: 12px; font-weight: 500;
    padding: 5px 28px 5px 12px;
    cursor: pointer;
    outline: none;
    transition: background 0.3s;
    font-family: 'DM Sans', sans-serif;
}
.topbar-select-wrap select:hover { background: rgba(255,255,255,0.2); }
.topbar-select-wrap select option { background: #1a2035; color: #fff; }
.topbar-select-wrap::after {
    content: '';
    position: absolute; right: 10px; top: 50%;
    transform: translateY(-50%);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid rgba(255,255,255,0.7);
    pointer-events: none;
}
 
/* Icon action buttons (user + cart) */
.topbar-action {
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
    position: relative;
    font-size: 13px;
}
.topbar-action:hover {
    background: rgba(255,255,255,0.28);
    transform: translateY(-2px);
    color: #fff;
}
.topbar-action .cart-badge {
    position: absolute;
    top: -5px; right: -5px;
    min-width: 16px; height: 16px;
    border-radius: 50%;
    background: #fff;
    color: #F1634C;
    font-size: 9px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
    padding: 0 3px;
}
 
/* ── Navbar ── */
.navbar-new {
    background: #fff;
    box-shadow: 0 2px 20px rgba(25,119,244,0.08);
    position: relative;
    z-index: 1000;
    transition: box-shadow 0.3s, background 0.3s;
}
.navbar-new.sticky {
    position: fixed;
    top: 0; left: 0; right: 0;
    box-shadow: 0 4px 30px rgba(25,119,244,0.14);
    animation: slideDown 0.35s ease;
}
@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 14px 0;
    gap: 24px;
}
 
/* Logo */
.navbar-logo a {
    display: flex; align-items: center;
    text-decoration: none;
}
.navbar-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}
 
/* Nav menu */
.nav-menu-new {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 4px;
}
.nav-menu-new > li > a {
    display: flex; align-items: center; gap: 4px;
    padding: 8px 16px;
    font-size: 16px; font-weight: 600;
    color: #0D1117;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.25s, color 0.25s;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
}
.nav-menu-new > li > a:hover,
.nav-menu-new > li.active > a {
    background: linear-gradient(135deg, rgba(241,99,76,0.08), rgba(25,119,244,0.08));
    color: #1977F4;
}
/* Dropdown chevron */
.nav-menu-new > li.menu-item-has-children > a::after {
    content: '';
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.5;
    transition: transform 0.3s;
}
.nav-menu-new > li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}
 

/* Appointment CTA button */
.nav-appointment-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    background: linear-gradient(135deg, #F1634C 0%, #c0392b 45%, #1977F4 100%);
    color: #fff !important;
    font-size: 14px; font-weight: 600;
    border: none; cursor: pointer;
    text-decoration: none;
    transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 6px 20px rgba(241,99,76,0.3);
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
}
.nav-appointment-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(241,99,76,0.38);
    color: #fff !important;
    background: linear-gradient(135deg, #F1634C 0%, #c0392b 45%, #1977F4 100%) !important;
}
.nav-appointment-btn i { font-size: 13px; }
 
/* ── Mobile toggle ── */
.mobile-toggle-btn {
    display: none;
    width: 40px; height: 40px;
    border-radius: 10px;
    border: 1px solid #E8EDF5;
    background: #fff;
    align-items: center; justify-content: center;
    cursor: pointer;
    flex-direction: column; gap: 5px;
    padding: 8px;
}
.mobile-toggle-btn span {
    display: block;
    width: 100%; height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #F1634C, #1977F4);
    transition: transform 0.3s, opacity 0.3s;
}
.mobile-toggle-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle-btn.open span:nth-child(2) { opacity: 0; }
.mobile-toggle-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
 
/* ── Responsive ── */
@media (max-width: 991px) {
    .nav-menu-new { display: none; }
    .mobile-toggle-btn { display: flex; }
    .topbar-right { gap: 6px; }
    .topbar-item span { display: none; } /* hide text, keep icons */
    .topbar-divider { display: none; }
 
    /* Mobile nav open */
    .nav-menu-new.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        box-shadow: 0 16px 40px rgba(25,119,244,0.12);
        padding: 12px 16px 20px;
        border-top: 1px solid #E8EDF5;
        z-index: 998;
        gap: 4px;
        align-items: stretch;
    }
    .nav-menu-new.open > li > a {
        padding: 12px 14px;
        font-size: 15px;
    }
    .sub-menu-new {
        position: static;
        opacity: 1; visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #F8FAFE;
        border-radius: 12px;
        margin: 4px 0 4px 12px;
        padding: 4px;
    }
}
@media (max-width: 575px) {
    .topbar-socials { display: none; }
    .navbar-logo img { height: 36px; }
}





/* Search */

.searchbar .search-button {
    font-size: 15px;
    text-align: right;
    position: absolute;
    top: 50%;
    margin-top: -11px;
    right: 54px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.searchbar .search-button:active,
.searchbar .search-button:focus,
.searchbar .search-button:hover {
    cursor: pointer;
    color: var(--colorPrimary);
}

.searchbar .openBtn {
    background: var(--colorSecondary);
    color: var(--colorWhite);
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
}

.searchbar .openBtn:hover {
    background: #bbb;
}

.searchbar .overlay {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
}

.searchbar .overlay-content {
    position: relative;
    top: 46%;
    width: 80%;
    text-align: center;
    margin-top: 30px;
    margin: auto;
}

.searchbar .overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    cursor: pointer;
    color: white;
}

.searchbar .overlay .closebtn:hover {
    color: #ccc;
}

.searchbar .overlay input[type=text] {
    padding: 15px;
    font-size: 17px;
    border: none;
    float: left;
    width: 80%;
    background: white;
}

.searchbar .overlay input[type=text]:hover {
    background: #f1f1f1;
}

.searchbar .overlay button {
    float: left;
    width: 20%;
    padding: 15px;
    background: var(--colorSecondary);
    color: var(--colorWhite);
    font-size: 17px;
    border: none;
    cursor: pointer;
}

.searchbar .overlay button:hover {
    background: var(--colorBlack);
}

.searchbar .cart-button {
    cursor: pointer;
    text-align: right;
    position: absolute;
    top: 50%;
    color: var(--colorSecondary);
    margin-top: -11px;
    right: 15px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}


/*---Mobile Menu----*/

.mobile-menuicon .menu-bar {
    font-size: 24px;
    text-align: right;
    position: absolute;
    top: 50%;
    margin-top: -16px;
    right: 15px;
    color: var(--colorPrimary);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.mobile-menu .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 40px;
    margin-left: 50px;
    color: var(--colorWhite);
}

.mobile-menu .sidenav img {
    max-height: 50px;
    margin-bottom: 20px;
    padding-left: 26px;
    padding-right: 20px;
}

.mobile-menu .sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    background-color: #111;
    padding-top: 40px;
    overflow-x: hidden;
    transition: 0.5s;
}

.mobile-menu .sidenav ul {
    margin: 0;
    padding: 0px 27px 5px 26px;
}

.mobile-menu .sidenav ul ul {
    padding: 0;
}

.mobile-menu .sidenav ul>li>a,
.mobile-menu .sidenav ul>li>span {
    display: block;
    font-size: 16px;
    color: var(--colorWhite);
    position: relative;
    padding-bottom: 9px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.mobile-menu .sidenav ul li.menu-child>span:before {
    position: absolute;
    content: '\f067';
    font-family: 'Font Awesome 5 Free';
    top: 0;
    right: 0;
    font-size: 12px;
    color: var(--colorWhite);
    font-weight: 600;
}

.mobile-menu .sidenav ul li.menu-child:hover>span:before {
    position: absolute;
    content: '\f068';
    font-family: 'Font Awesome 5 Free';
    top: 0;
    right: 0;
}

.mobile-menu .sidenav ul>li>ul>li>a {
    display: none;
    font-size: 14px;
    color: var(--colorWhite);
    padding: 0px 0px 7px 10px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.mobile-menu .sidenav ul>li:hover>ul>li>a {
    display: block;
}

.mobile-menu .sidenav img {
    max-height: 50px;
    margin-bottom: 20px;
    padding-left: 26px;
    padding-right: 20px;
}


/*Mobile Megamenu*/

.mobile-menu .menu-headline {
    font-size: 16px;
    font-weight: 600;
    color: var(--colorWhite);

    padding-left: 4px;
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 8px;
}

.mobile-menu .menu-headline:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 4px;
    width: 70px;
    height: 2px;
    background: var(--colorWhite);
}

.mobile-menu .sidenav ul li.mobile-megamenu ul {
    display: none;
}

.mobile-menu .sidenav ul li.mobile-megamenu:hover ul {
    display: block;
}


/*
-------------------------------
Slider
-------------------------------
*/

.slider-item {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    height: 600px;
    color: var(--colorWhite);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.bg-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--colorBlack);
    opacity: 0.3;
}

.text-animated h1 {
    font-size: 52px;
    font-weight: 700;
    color: var(--colorWhite);
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.text-animated p {
    font-size: 18px;
    color: var(--colorWhite);
    letter-spacing: .16px;
    line-height: 30px;
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}

.text-animated ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.text-animated li {
    display: inline-block;
    margin-top: 15px;
    margin-right: 10px;
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
}

.text-animated li a {
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    background: var(--colorPrimary);
    color: var(--colorWhite);
    border: 1px solid var(--colorPrimary);
    border-radius: 3px;
    padding: 14px 45px;
    text-decoration: none;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.text-animated li.btn-red a {
    background: var(--colorSecondary);
    border: 1px solid var(--colorSecondary);
}

.text-animated li a:hover {
    background-color: var(--colorBlack);
    color: var(--colorWhite);
    border: 1px solid var(--colorBlack);
}

.slider-text.left {
    text-align: left;
}

.slider-text.left p {
    margin-right: 450px;
}

.slider-text.center {
    text-align: center;
}

.slider-text.center p {
    margin-left: 225px;
    margin-right: 225px;
}

.slide-carousel {
    overflow: hidden;
}

.slide-carousel .owl-dots {
    position: absolute;
    bottom: 5%;
    left: calc(50% - 60px);
    z-index: 9999;
    cursor: pointer;
}

.slide-carousel .owl-dots .owl-dot {
    display: inline-block;
    height: 5px;
    width: 40px;
    background: var(--borderColor);
}

.slide-carousel .owl-dots .owl-dot.active {
    background: var(--colorPrimary);
}


/*
-------------------------------
Why Us
-------------------------------

.choose-item {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.choose-item:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--colorPrimary);
    opacity: 0.9;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.choose-col:nth-of-type(2n) .choose-item:before {
    background: var(--colorSecondary);
}

.choose-icon {
    position: relative;
    margin-bottom: 20px;
}

.choose-icon i {
    font-size: 60px;
    color: var(--colorWhite);
}

.choose-text {
    position: relative;
}

.choose-text .title {
    color: var(--colorWhite);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.choose-text p {
    color: var(--colorWhite);
    margin: 0;
}

.choose-item:hover:before {
    opacity: 1;
}

.choose-item:hover .choose-icon i {
    transform: rotate(360deg);
}
*/


    /* ===== WHY US ===== */
    .why-us-new {
        padding: 70px 0;
        background: var(--surface);
    }
    .feature-card-new {
        position: relative;
        border-radius: var(--radius-xl);
        overflow: hidden;
        height: 320px;
        cursor: pointer;
        transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }
    .feature-card-new:hover { transform: translateY(-8px); }
    .feature-card-new .bg-layer {
        position: absolute; inset: 0;
        background-size: cover; background-position: center;
        transition: transform 0.6s ease;
    }
    .feature-card-new:hover .bg-layer { transform: scale(1.06); }
    .feature-card-new .overlay-layer {
        position: absolute; inset: 0;
        background: linear-gradient(180deg, transparent 20%, rgba(13,17,23,0.85) 100%);
    }
    .feature-card-new .card-content {
        position: absolute;
        bottom: 0; left: 0; right: 0;
        padding: 28px;
        z-index: 2;
    }
    .feature-card-new .icon-pill {
        display: inline-flex; align-items: center; justify-content: center;
        width: 48px; height: 48px;
        border-radius: var(--radius-md);
        background: var(--gradient-coral);
        color: #fff;
        font-size: 20px;
        margin-bottom: 14px;
        box-shadow: var(--shadow-coral);
    }
    .feature-card-new h2.title {
        font-family: var(--font-display);
        font-size: 20px; font-weight: 700;
        color: #fff; margin-bottom: 8px;
    }
    .feature-card-new p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; margin: 0; }
    /* Accent bar */
    .feature-card-new::before {
        content: '';
        position: absolute;
        top: 0; left: 0;
        width: 4px; height: 100%;
        background: var(--gradient-coral);
        opacity: 0;
        transition: opacity 0.3s;
        z-index: 3;
    }
    .feature-card-new:hover::before { opacity: 1; }


/*
-------------------------------
Feature
-------------------------------


.about-area {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}

.about-skey {
    position: relative;
}

.about-skey:before {
    position: absolute;
    content: "";
    right: -9px;
    top: -9px;
    width: 0;
    height: 0;
    border-top: 170px solid var(--colorPrimary);
    border-left: 170px solid transparent;
    border-radius: 8px;
}

.about-skey:after {
    position: absolute;
    content: "";
    left: -9px;
    bottom: -9px;
    width: 0;
    height: 0;
    border-bottom: 170px solid var(--colorPrimary);
    border-left: 170px solid transparent;
    z-index: -1;
    border-radius: 8px;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

.about-img {
    position: relative;
    height: 525px;
    border-radius: 8px;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-button {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
}

.video-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: var(--colorSecondary);
    border-radius: 50%;
    animation: video-pop 1500ms ease-out infinite;
}

.video-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: var(--colorSecondary);
    border-radius: 50%;
    transition: all 200ms;
}

.video-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    top: 4px;
    border-left: 28px solid var(--colorWhite);
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.video-button:hover span {
    border-left-color: var(--colorBlack);
}

@keyframes video-pop {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.feature-section-text {
    padding-left: 30px;
}

.feature-section-text h2 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-section-text p {
    opacity: .9;
    font-size: 16px;
    color: #4f5b6d;
    line-height: 24px;
}

.feature-accordion {
    margin-top: 28px;
}

.faq-item {
    margin-bottom: 15px;
    box-shadow: 0 20px 50px 0 rgba(0, 0, 0, .05);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e1e1e1;
}

.faq-header button.faq-button {
    cursor: pointer;
    font-size: 20px !important;
    font-weight: 600;
    text-align: left;
    display: block;
    width: 100%;
    padding: 15px;
    text-decoration: none;
    background: var(--colorSecondary);
    color: var(--colorWhite);
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.faq-header button.faq-button:before {
    position: absolute;
    content: '\f068';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    font-size: 14px;
    right: 0px;
    top: 0px;
    padding: 19.5px 30px;
    color: var(--colorWhite);
    background: var(--colorPrimary);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.faq-header button.faq-button.collapsed {
    background: var(--colorPrimary);
}

.faq-header button.faq-button.collapsed:before {
    background: var(--colorSecondary);
}

.faq-header button.faq-button::after {
    position: absolute;
    content: '';
    width: 13px;
    height: 3px;
    background: #fff;
    top: 27.5px;
    right: 30px;
    transform: rotate(90deg);
    opacity: 0;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.faq-header button.faq-button.collapsed::after {
    opacity: 1;
}


.faq-body {
    border-top: 0;
    padding: 25px;
    line-height: 1.6;
}

.faq-home .faq-body {
    padding: 15px;
}

.faq-body ul {
    list-style: none;
    margin: 0;
    margin-top: 20px;
    padding: 0;
}

.faq-home .faq-body ul {
    margin-top: 10px;
}

.faq-body ul li {
    position: relative;
    margin-top: 5px;
    padding-left: 20px;
}

.faq-body ul li:before {
    position: absolute;
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    top: 2px;
    left: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--colorSecondary);
}
*/

/* ===== HOW WE WORK ===== */
.work-section-new {
    padding: 70px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.work-section-new::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(25,119,244,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.work-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.work-img-wrap img {
    width: 100%;
    border-radius: var(--radius-xl);
    display: block;
}
.work-img-wrap .video-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-blue);
    cursor: pointer;
    transition: transform 0.3s;
}
.work-img-wrap .video-badge::after {
    content: '';
    border-left: 18px solid #fff;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    margin-left: 4px;
}
.work-img-wrap .video-badge:hover { transform: scale(1.1); }
.work-img-wrap .floating-stat {
    position: absolute;
    top: 24px; right: -20px;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 130px;
}
.work-img-wrap .floating-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 28px; font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.work-img-wrap .floating-stat span { font-size: 12px; color: var(--text-secondary); }
.work-title-new {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
}
/* FAQ / Accordion */
.faq-item-new {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s, border-color 0.3s;
}
.faq-item-new:has(.show) {
    border-color: rgba(25,119,244,0.3);
    box-shadow: var(--shadow-sm);
}
.faq-btn-new {
    width: 100%; text-align: left;
    background: none; border: none; outline: none;
    padding: 18px 20px;
    font-family: var(--font-body);
    font-size: 15px; font-weight: 600;
    color: var(--text-primary);
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer;
    transition: color 0.3s;
}
.faq-btn-new:not(.collapsed) { color: var(--blue); }
.faq-btn-new .faq-arrow {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--surface);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s, transform 0.3s;
}
.faq-btn-new:not(.collapsed) .faq-arrow {
    background: var(--gradient-blue);
    transform: rotate(180deg);
}
.faq-btn-new .faq-arrow svg { width: 14px; fill: var(--text-secondary); }
.faq-btn-new:not(.collapsed) .faq-arrow svg { fill: #fff; }
.faq-body-new { padding: 4px 20px 18px; font-size: 14px; color: var(--text-secondary); line-height: 1.7; }



/*
-------------------------------
Service
-------------------------------
*/

/* .main-headline .title {
    font-weight: 700;
    color: #191919;
    font-size: 48px;
    text-align: center;
}

.main-headline .title span {
    color: var(--colorPrimary);
}

.main-headline p {
    opacity: .9;
    font-size: 16px;
    color: #4f5b6d;
    letter-spacing: .16px;
    text-align: center;
    line-height: 24px;
}

.main-headline.white .title {
    color: var(--colorWhite);
    position: relative;
}

.main-headline.white .title span {
    color: var(--colorWhite);
}

.main-headline.white p {
    color: var(--colorWhite);
}

.service-area {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}

.service-coloum-area {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    margin-top: 58px;
    margin-bottom: 40.5px;
}

.service-coloum {
    position: relative;
}

.service-coloum:nth-child(2),
.service-coloum:nth-child(5) {
    margin-top: -35px;
}

.service-item {
    background: var(--colorWhite);
    box-shadow: 0 40px 70px 0 rgba(0, 0, 0, .05);
    border-radius: 8px;
    margin: 14.5px;
    text-align: center;
    padding: 50px 20px 45px;
    width: 340px;
    transform: translateY(0);
    transition: all .3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column
}

.service-item img {
    margin-bottom: 30px;
}

.service-item .title {
    font-size: 22px;
    font-weight: 600;
    color: var(--colorBlack);
}

.service-item p {
    opacity: .9;
    font-size: 18px;
    color: #4f5b6d;
    letter-spacing: .16px;
    text-align: center;
    line-height: 30px;
    margin-bottom: 30px;
}

.service-item a {
    font-size: 16px;
    color: var(--colorPrimary);
    font-weight: 700;
}

.service-item i,
.service-item2 i {
    font-size: 50px;
    margin-bottom: 15px;
    color: var(--colorSecondary);
}

.service-coloum:nth-child(2) .service-item a,
.service-coloum:nth-child(5) .service-item a {
    color: var(--colorSecondary);
}

.service-item:hover {
    transform: translateY(-5px);
}

.home-button {
    text-align: center;
}

.home-button.ser-btn {
    padding-bottom: 180px;
}

.home-button a {
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    background: var(--colorPrimary);
    color: var(--colorWhite);
    border: 1px solid var(--colorPrimary);
    border-radius: 6px;
    padding: 14px 45px;
    text-decoration: none;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.home-button a:hover {
    background: var(--colorBlack);
    border: 1px solid var(--colorBlack);
} */


/* ===== SERVICES ===== */
.service-section-new {
    padding: 70px 0;
    background: var(--surface);
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    gap: 24px;
}
.service-card-new {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), box-shadow 0.35s, border-color 0.35s;
    cursor: pointer;
}
.service-card-new::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.3s;
}
.service-card-new:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card-new:hover::before { opacity: 1; }
.service-card-new .svc-icon {
    width: 60px; height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(241,99,76,0.1), rgba(25,119,244,0.1));
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.service-card-new .svc-icon img { width: 30px; height: 30px; }
.service-card-new h3.title {
    font-family: var(--font-display);
    font-size: 18px; font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}
.service-card-new h3.title a { color: inherit; text-decoration: none; transition: color 0.3s; }
.service-card-new:hover h3.title a { color: var(--blue); }
.service-card-new p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.service-card-new .svc-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600;
    color: var(--coral);
    text-decoration: none;
    transition: gap 0.3s;
}
.service-card-new:hover .svc-link { gap: 10px; }
.btn-gradient-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, var(--gradient-main) border-box;
    font-weight: 600; font-size: 15px;
    color: var(--coral);
    text-decoration: none;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}
.btn-gradient-outline:hover {
    background: var(--gradient-main);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-coral);
}


/*
-------------------------------
Service - 2
-------------------------------
*/

.service-item2 {
    background: var(--colorWhite);
    box-shadow: 0 40px 70px 0 rgba(0, 0, 0, .05);
    border-radius: 5px;
    text-align: center;
    padding: 50px 20px 45px;
    height: 350px;
    transform: translateY(0);
    transition: all .3s ease;
}

.s-border .service-item2 {
    border: 1px solid var(--borderColor);
}

.service-item2 img {
    margin-bottom: 30px;
}

.service-item2 h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--colorBlack);
}

.service-item2 p {
    opacity: .9;
    font-size: 18px;
    color: #4f5b6d;
    letter-spacing: .16px;
    text-align: center;
    line-height: 30px;
    margin-bottom: 30px;
}

.service-item2 a {
    font-size: 16px;
    color: var(--colorSecondary);
}

.service-item2:hover {
    transform: translateY(-5px);
}


/*
-------------------------------
Service - Detail
-------------------------------

.service-detail-area {
    padding-bottom: 60px;
}

.service-detail-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-feature-list h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-feature-list ul li {
    position: relative;
    padding-left: 25px;
    margin: 12px 0px;
}

.service-feature-list ul li:before {
    position: absolute;
    content: '\f14a';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    top: 0;
    left: 0;
    color: var(--colorPrimary);
}

.service-qucikcontact h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-service.feature-section-text {
    padding: 0;
}

.faq-service.feature-section-text h2 {
    font-weight: 700;
    font-size: 24px;
}

.service-widget ul li a {
    display: block;
    background: #edf0fa;
    color: #40436a;
    padding: 24px 40px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    -moz-transition: all 300ms ease-out 0s;
    -webkit-transition: all 300ms ease-out 0s;
    -ms-transition: all 300ms ease-out 0s;
    -o-transition: all 300ms ease-out 0s;
    transition: all 300ms ease-out 0s;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.service-widget ul li a i {
    font-weight: 600;
    font-size: 14px;
    margin-right: 7px;
}

.service-link-list li.active a i {
    margin-right: 12px;
}

.service-widget ul li.active a,
.service-widget ul li a:hover {
    background-color: var(--colorPrimary);
    color: var(--colorWhite);
    padding-left: 50px;
}

.service-widget-contact {
    text-align: center;
    background: var(--colorPrimary);
    color: var(--colorWhite);
    padding: 30px;
    border-radius: 10px;
}

.service-widget-contact h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--colorWhite);
}

.service-widget-contact p {
    margin-bottom: 15px;
}

.service-widget-contact ul li {
    margin-bottom: 7px;
}

.service-widget-contact ul li i {
    margin-right: 4px;
}

.service-widget-contact a {
    display: inline-block;
    background: var(--colorWhite);
    color: var(--colorBlack);
    font-weight: 600;
    padding: 12px 30px;
    margin-top: 10px;
    border-radius: 2px;
}

.video-headline h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 0px
}
*/

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
 
   .service-detail-section {
    padding: 60px 0 90px;
    background: #F8FAFE;
    position: relative;
    overflow: hidden;
}
.service-detail-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(25,119,244,0.05) 0%, transparent 65%);
    top: -150px; right: -100px;
    pointer-events: none;
}
 
/* ── Main Content Card ── */
.svc-main-card {
    background: #fff;
    border-radius: 28px;
    border: 1px solid #E8EDF5;
    box-shadow: 0 8px 40px rgba(25,119,244,0.07);
    overflow: hidden;
    margin-bottom: 28px;
}
 
/* ── Image Gallery ── */
.svc-gallery-wrap { position: relative; }
.swiper-container.pro-detail-top {
    border-radius: 0;
    overflow: hidden;
}
.swiper-container.pro-detail-top .swiper-slide {
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 16/7;
    background: #eef2f8;
}
.swiper-container.pro-detail-top .swiper-slide img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}
/* Swiper arrows */
.swiper-button-next,
.swiper-button-prev {
    width: 44px !important; height: 44px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.9) !important;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12) !important;
    transition: background 0.3s, transform 0.3s !important;
}
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 14px !important;
    color: #1977F4 !important;
    font-weight: 700 !important;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: linear-gradient(135deg, #F1634C, #1977F4) !important;
    transform: scale(1.08) !important;
}
.swiper-button-next:hover::after,
.swiper-button-prev:hover::after { color: #fff !important; }
 
/* Lightbox icon on image */
.catagory-img-holder { position: relative; display: block; }
.catagory-text {
    position: absolute; inset: 0;
    background: rgba(13,17,23,0.0);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.3s, background 0.3s;
}
.catagory-img-holder:hover .catagory-text {
    opacity: 1;
    background: rgba(13,17,23,0.25);
}
.catagory-hover li { list-style: none; }
.catagory-hover li a {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: #1977F4;
    text-decoration: none;
    transition: background 0.3s;
}
.catagory-hover li a:hover {
    background: linear-gradient(135deg, #F1634C, #1977F4);
    color: #fff;
}
 
/* Thumb slider */
.swiper-container.pro-detail-thumbs {
    padding: 12px 16px !important;
    background: #F8FAFE;
    border-top: 1px solid #E8EDF5;
}
.swiper-container.pro-detail-thumbs .swiper-slide {
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s, border-color 0.3s;
    aspect-ratio: 16/10;
}
.swiper-container.pro-detail-thumbs .swiper-slide img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.swiper-container.pro-detail-thumbs .swiper-slide-thumb-active {
    border-color: #F1634C;
    opacity: 1;
}
 
/* Description */
.svc-description {
    padding: 36px 40px;
}
.svc-description h1, .svc-description h2, .svc-description h3 {
    font-family: 'Syne', sans-serif;
    color: #0D1117; margin-bottom: 14px; line-height: 1.25;
}
.svc-description h2 { font-size: clamp(22px, 2.5vw, 30px); font-weight: 800; }
.svc-description h3 { font-size: 20px; font-weight: 700; }
.svc-description p { font-size: 15px; color: #5A6478; line-height: 1.85; margin-bottom: 16px; }
.svc-description ul {
    list-style: none; padding: 0; margin: 0 0 18px;
    display: flex; flex-direction: column; gap: 10px;
}
.svc-description ul li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: #5A6478; line-height: 1.6;
}
.svc-description ul li::before {
    content: '';
    width: 7px; height: 7px; border-radius: 50%;
    background: linear-gradient(135deg, #F1634C, #1977F4);
    flex-shrink: 0; margin-top: 7px;
}
 
/* ── FAQ ── */
.svc-faq-card {
    background: #fff;
    border-radius: 28px;
    border: 1px solid #E8EDF5;
    box-shadow: 0 4px 24px rgba(25,119,244,0.06);
    padding: 36px 40px;
    margin-bottom: 28px;
}
.svc-faq-title {
    font-family: 'Syne', sans-serif;
    font-size: 22px; font-weight: 800;
    color: #0D1117; margin-bottom: 24px;
    display: flex; align-items: center; gap: 12px;
}
.svc-faq-title i {
    width: 40px; height: 40px; border-radius: 12px;
    background: linear-gradient(135deg, rgba(241,99,76,0.1), rgba(25,119,244,0.1));
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; color: #F1634C;
    flex-shrink: 0;
}
 
/* FAQ items */
.svc-faq-item {
    border: 1px solid #E8EDF5;
    border-radius: 14px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.svc-faq-item:has(.show) {
    border-color: rgba(25,119,244,0.25);
    box-shadow: 0 4px 20px rgba(25,119,244,0.08);
}
.svc-faq-btn {
    width: 100%; text-align: left;
    background: none; border: none; outline: none;
    padding: 16px 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; font-weight: 600;
    color: #0D1117;
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer; transition: color 0.3s;
    gap: 12px;
}
.svc-faq-btn:not(.collapsed) { color: #1977F4; }
.svc-faq-arrow {
    width: 30px; height: 30px; border-radius: 50%;
    background: #F8FAFE;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s, transform 0.3s;
}
.svc-faq-btn:not(.collapsed) .svc-faq-arrow {
    background: linear-gradient(135deg, #F1634C, #1977F4);
    transform: rotate(180deg);
}
.svc-faq-arrow svg { width: 14px; stroke: #5A6478; fill: none; stroke-width: 2.5; }
.svc-faq-btn:not(.collapsed) .svc-faq-arrow svg { stroke: #fff; }
.svc-faq-body {
    padding: 4px 20px 18px;
    font-size: 14px; color: #5A6478; line-height: 1.8;
}
.svc-faq-body p { margin-bottom: 8px; }
 
/* ── Related Videos ── */
.svc-videos-card {
    background: #fff;
    border-radius: 28px;
    border: 1px solid #E8EDF5;
    box-shadow: 0 4px 24px rgba(25,119,244,0.06);
    padding: 36px 40px;
    margin-bottom: 28px;
}
.svc-videos-title {
    font-family: 'Syne', sans-serif;
    font-size: 22px; font-weight: 800;
    color: #0D1117; margin-bottom: 24px;
    display: flex; align-items: center; gap: 12px;
}
.svc-videos-title i {
    width: 40px; height: 40px; border-radius: 12px;
    background: linear-gradient(135deg, rgba(241,99,76,0.1), rgba(25,119,244,0.1));
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; color: #F1634C; flex-shrink: 0;
}
.svc-video-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    background: #eef2f8;
    cursor: pointer;
}
.svc-video-item img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.5s;
}
.svc-video-item:hover img { transform: scale(1.05); }
.svc-video-overlay {
    position: absolute; inset: 0;
    background: rgba(13,17,23,0.25);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s;
}
.svc-video-item:hover .svc-video-overlay { background: rgba(13,17,23,0.4); }
.svc-play-btn {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, #F1634C, #1977F4);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 28px rgba(241,99,76,0.4);
    transition: transform 0.3s;
}
.svc-video-item:hover .svc-play-btn { transform: scale(1.12); }
.svc-play-btn svg { width: 20px; fill: #fff; margin-left: 4px; }
 
/* ── SIDEBAR ── */
.service-sidebar-new { position: sticky; top: 100px; }
 
/* Services list widget */
.svc-widget {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #E8EDF5;
    box-shadow: 0 4px 20px rgba(25,119,244,0.06);
    overflow: hidden;
    margin-bottom: 24px;
}
.svc-widget-header {
    padding: 18px 24px;
    background: linear-gradient(135deg, #F1634C 0%, #c0392b 45%, #1977F4 100%);
    font-family: 'Syne', sans-serif;
    font-size: 15px; font-weight: 700; color: #fff;
    letter-spacing: 0.3px;
}
.svc-list {
    list-style: none; margin: 0; padding: 8px; gap: 6px; display: grid;
}
.svc-list li a {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 14px;
    border-radius: 12px;
    font-size: 14px; font-weight: 500; color: #5A6478;
    text-decoration: none;
    transition: background 0.25s, color 0.25s;
}
.svc-list li a i {
    font-size: 10px; color: #9AA3B2;
    transition: color 0.25s, transform 0.25s;
}
.svc-list li a:hover,
.svc-list li.active a {
    background: linear-gradient(135deg, rgba(241,99,76,0.07), rgba(25,119,244,0.07));
    color: #1977F4;
}
.svc-list li a:hover i,
.svc-list li.active a i { color: #F1634C; transform: translateX(3px); }
.svc-list li.active a { font-weight: 700; color: #F1634C; }
 
/* Contact info widget */
.svc-contact-widget {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #E8EDF5;
    box-shadow: 0 4px 20px rgba(25,119,244,0.06);
    overflow: hidden;
    margin-bottom: 24px;
}
.svc-contact-widget .svc-widget-header { display: block; }
.svc-contact-body { padding: 20px 24px; }
.svc-contact-body p {
    font-size: 13px; color: #5A6478; line-height: 1.7;
    margin-bottom: 18px;
}
.svc-contact-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.svc-contact-list li {
    display: flex; align-items: center; gap: 12px;
}
.svc-contact-list li .ci-icon {
    width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
    background: linear-gradient(135deg, rgba(241,99,76,0.09), rgba(25,119,244,0.09));
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    background: linear-gradient(135deg, #F1634C, #1977F4);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.svc-contact-list li .ci-icon i {
    background: linear-gradient(135deg, #F1634C, #1977F4);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.svc-contact-list li span {
    font-size: 13px; color: #5A6478; line-height: 1.6;
}
 
/* Quick contact form widget */
.svc-quick-form-widget {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #E8EDF5;
    box-shadow: 0 4px 20px rgba(25,119,244,0.06);
    overflow: hidden;
    margin-bottom: 24px;
}
.svc-quick-form-body { padding: 20px 24px; }
.svc-quick-form-body .form-group { margin-bottom: 14px; }
.svc-quick-input {
    width: 100%;
    background: #F8FAFE;
    border: 1.5px solid #E8EDF5;
    border-radius: 12px;
    padding: 11px 14px;
    font-size: 13px; color: #0D1117;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
    -webkit-appearance: none;
}
.svc-quick-input::placeholder { color: #9AA3B2; }
.svc-quick-input:focus {
    background: #fff;
    border-color: #1977F4;
    box-shadow: 0 0 0 3px rgba(25,119,244,0.08);
}
textarea.svc-quick-input { min-height: 100px; resize: vertical; }
.svc-quick-submit {
    width: 100%; padding: 12px;
    border-radius: 12px; border: none;
    background: linear-gradient(135deg, #F1634C 0%, #c0392b 45%, #1977F4 100%);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 6px 20px rgba(241,99,76,0.25);
}
.svc-quick-submit:hover {
    opacity: 0.9; transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(241,99,76,0.32);
}
 
/* Responsive */
@media (max-width: 991px) {
    .service-sidebar-new { position: static; margin-top: 32px; }
    .svc-description { padding: 24px 20px; }
    .svc-faq-card,
    .svc-videos-card { padding: 24px 20px; }
}
@media (max-width: 767px) {
    .service-detail-section { padding: 40px 0 64px; }
    .swiper-container.pro-detail-top .swiper-slide { aspect-ratio: 4/3; }
}



/*
-------------------------------
Counterup-Area
-------------------------------


.counter-row {
    width:100%;
    text-align: center;
    padding: 12px 18px;
    margin: 0;
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
    background: var(--colorPrimary);
}

.counter-item {
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #ccc;
    gap: 16px;
}
.counter-item:last-child {
    border-right: none;
}
.counter-item .counter-icon {
    width: 70px;
    height: 70px;
    line-height: 66px;
    border-radius: 12px;
    font-size: 26px;
    color: var(--colorSecondary);
    box-shadow: 0 14px 41px 0 rgba(58, 17, 98, .1);
    background: var(--colorWhite);
}

.counter-item .counter {
    font-size: 36px;
    font-weight: 600;
    color: var(--colorWhite);
    margin: 0;
    margin-bottom: 5px;
}

.counter-item .title {
    font-size: 20px;
    font-weight: 600;
    color: var(--colorWhite);
    margin: 0;
}
*/

/* ===== COUNTER SECTION ===== */
.counter-row-new {
    position: relative;
    background: var(--gradient-main);
    overflow: hidden;
    padding: 12px 0;
}
.counter-row-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.counter-row-new::after {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
}
.counter-card {
    position: relative;
    text-align: center;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    /* background: rgba(255,255,255,0.1); */
    backdrop-filter: blur(16px);
    /* border: 1px solid rgba(255,255,255,0.2); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 16px;
}
.counter-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.18);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.counter-card .counter-icon-wrap {
    width: 64px; height: 64px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    /* margin: 0 auto 16px; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.counter-card .counter-icon-wrap img { width: 32px; height: 32px; filter: brightness(10); }
.counter-card .counter-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    display: block;
}
.counter-card .counter-label {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    margin-top: 6px;
    margin-bottom:0;
    letter-spacing: 0.5px;
}



/*
-------------------------------
Portfolio
-------------------------------
*/

.portfolio-area {
    padding-top: 240px;
    padding-bottom: 80px;
}

.portfolio-menu {
    text-align: center;
    margin-bottom: 6px;
}

.portfolio-menu li {
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    color: var(--colorWhite);
    background: var(--colorPrimary);
    margin-left: -5px;
    padding: 14px 20px;
    position: relative;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.portfolio-menu li:hover {
    background: var(--colorBlack);
}

.portfolio-menu li.filtr-active {
    background: var(--colorSecondary);
}

.portfolio-menu li:before {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    top: 50%;
    transform: translate(0%, -50%);
    left: 0;
    text-decoration: none;
    background: var(--colorWhite);
}

.portfolio-item {
    position: relative;
}

.portfolio-item img {
    width: 100%;
}

.item-img-overlay {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #f7f7f7;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    overflow: hidden;
    -webkit-transition: all .5s;
    transition: all .5s;
    color: var(--colorWhite);
    z-index: 1;
}

.item-img-overlay:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 170%;
    background: var(--colorSecondary);
    -webkit-transform: skewX(45deg);
    transform: skewX(45deg);
    -webkit-transition: all 1s;
    transition: all 1s;
    z-index: -1
}

.item-img-overlay:hover:after {
    top: 0;
    left: -170%
}

.item-img-overlay:hover {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"
}

.img-overlay {
    text-align: center;
}

.prot-text {
    bottom: -50%;
    left: 50%;
    position: absolute;
    text-align: center;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    -webkit-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
}

.item-img-overlay:hover .prot-text {
    bottom: 50%;
    margin-bottom: -50px;
}

.prot-text h5 {
    color: var(--colorBlack);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 25px;
    text-transform: capitalize;
}

.prot-icon a {
    text-align: center;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--colorSecondary);
    color: var(--colorWhite);
    border-radius: 50%;
    margin-right: 5px;
    transition: background 0.3s;
    -webkit-transition: background 0.3s;
}

.prot-icon a.magnific {
    background: var(--colorPrimary);
}

.prot-icon a:hover {
    background: var(--colorBlack);
}


/*
-------------------------------
Single Portfolio
-------------------------------
*/

.portfolio-detail-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.project-info {
    background: var(--colorPrimary);
    padding: 30px;
    color: var(--colorWhite);
}

.project-info h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--colorWhite);
}

.project-info ul li {
    margin: 5px 0;
    padding: 5px 0;
}

.project-info ul li b {
    display: inline-block;
    width: 20%
}

.project-info ul li span {
    display: inline-block;
    width: 78%;
}

.video-item {
    position: relative;
    margin: 0 15px 11px 11px;
}

.video-item:before {
    position: absolute;
    content: "";
    right: -5px;
    top: -5px;
    width: 0;
    height: 0;
    border-top: 130px solid #fa4a4a;
    border-left: 130px solid transparent;
    border-radius: 10px;
}

.video-item:after {
    position: absolute;
    content: "";
    left: -5px;
    bottom: -5px;
    width: 0;
    height: 0;
    border-bottom: 130px solid #fa4a4a;
    border-right: 130px solid transparent;
    z-index: -1;
    border-radius: 10px;
}

.video-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.video-img:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 36, 64, 0.3);
    opacity: 0.5;
}

.video-button {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
}

.video-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: var(--colorWhite);
    border-radius: 50%;
    animation: video-pop 1500ms ease-out infinite;
}

.video-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: var(--colorWhite);
    border-radius: 50%;
    transition: all 200ms;
}

.video-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    top: 4px;
    border-left: 28px solid var(--colorSecondary);
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.video-button:hover span {
    border-left-color: var(--colorBlack);
}

@keyframes video-pop {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}


/*portfolio-carousel*/

.portfolio-carousel {
    overflow: hidden;
}

.portfolio-carousel.owl-carousel .owl-nav .owl-prev,
.portfolio-carousel.owl-carousel .owl-nav .owl-next {
    text-align: center;
    font-size: 18px;
    position: absolute;
    top: 50%;
    width: 40px;
    height: 50px;
    line-height: 48px;
    background: rgb(6 116 195 / 50%);
    color: var(--colorWhite);
    margin-top: -25px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.portfolio-carousel.owl-carousel .owl-nav .owl-prev {
    left: 0;
    margin-left: -40px;
}

.portfolio-carousel.owl-carousel .owl-nav .owl-next {
    right: 0;
    margin-right: -40px;
}

.portfolio-carousel.owl-carousel:hover .owl-nav .owl-prev,
.portfolio-carousel.owl-carousel:hover .owl-nav .owl-next {
    margin-left: 0;
    margin-right: 0;
}

.portfolio-carousel.owl-carousel .owl-nav .owl-prev:hover,
.portfolio-carousel.owl-carousel .owl-nav .owl-next:hover {
    color: var(--colorWhite);
    background: var(--colorSecondary);
}


/* Relative Portfion-carousel Nav */

.owl-carousel.relative-pt-carousel .owl-nav .owl-prev,
.owl-carousel.relative-pt-carousel .owl-nav .owl-next {
    text-align: center;
    font-size: 15px;
    position: absolute;
    width: 38px;
    height: 35px;
    line-height: 36px;
    top: 0;
    margin-top: -15px;
    background: var(--colorSecondary);
    color: var(--colorWhite);
    border-radius: 2px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.owl-carousel.relative-pt-carousel .owl-nav .owl-prev {
    right: 0;
    margin-right: 46px;
}

.owl-carousel.relative-pt-carousel .owl-nav .owl-next {
    right: 0;
    margin-right: 0px;
}

.owl-carousel.relative-pt-carousel .owl-nav .owl-prev:hover,
.owl-carousel.relative-pt-carousel .owl-nav .owl-next:hover {
    color: var(--colorWhite);
    background: var(--colorBlack);
}


/* Relative owl dots */

.owl-carousel.relative-pt-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-carousel.relative-pt-carousel .owl-dots .owl-dot {
    width: 18px;
    height: 18px;
    background: var(--colorWhite);
    border: 5px solid var(--colorPrimary);
    border-radius: 50%;
    display: inline-block;
    margin: 0 3px;
}

.owl-carousel.relative-pt-carousel .owl-dots .owl-dot.active {
    width: 18px;
    height: 18px;
    background: var(--colorWhite);
    border: 5px solid var(--colorSecondary);
}


/*
-------------------------------
Single Portfolio
-------------------------------
*/

.carousel-indicators {
    text-align: inherit;
    position: inherit;
    left: 0;
    bottom: 0;
    margin: 0;
    margin-top: 15px;
}

.carousel-indicators .active,
.carousel-indicators li.active,
.carousel-indicators li {
    width: auto;
    height: auto;
    margin: 0;
}

.carousel-indicators li {
    border: 1px solid var(--colorSecondary);
    border-radius: 0px;
    padding: 5px;
}

.carousel-indicators li img {
    max-width: auto;
    height: auto;
}


/*Portfolio Nav-Carousel*/

.portfolio-nav.owl-carousel .owl-nav .owl-prev,
.portfolio-nav.owl-carousel .owl-nav .owl-next {
    text-align: center;
    display: inline-block;
    position: absolute;
    width: 30px;
    height: 30px;
    top: 50%;
    line-height: 26px;
    font-size: 18px;
    background: var(--colorPrimary);
    color: var(--colorWhite);
    border: 1px solid var(--colorPrimary);
    margin-top: -15px;
    border-radius: 1px;
    -webkit-border-radius: 1px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.portfolio-nav.owl-carousel .owl-nav .owl-prev {
    left: 0px;
}

.portfolio-nav.owl-carousel .owl-nav .owl-next {
    position: absolute;
    right: 0px;
}

.portfolio-nav.owl-carousel:hover .owl-nav .owl-prev,
.portfolio-nav.owl-carousel:hover .owl-nav .owl-next {
    visibility: visible;
    opacity: 1;
}

.portfolio-nav.owl-carousel .owl-nav .owl-prev:hover,
.portfolio-nav.owl-carousel .owl-nav .owl-next:hover {
    background: var(--colorBlack);
}


/*
-------------------------------
Testimonial
-------------------------------


.testimonial-area {
    background: #ecf1f8;
    padding-top: 85px;
    padding-bottom: 100px;
}

.testimonial-texarea {
    border-radius: 15px;
    overflow: hidden;
    max-height: 370px;
}

.testimonial-texarea h1 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--colorPrimary);
    line-height: 1.3;
}

.testimonial-item {
    position: relative;
    display: block;
    background: var(--colorWhite);
    padding: 97px 80px 80px 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background-image: url('../img/shape-3.webp');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
    overflow: hidden;
}

.testimonial-item:before {
    content: '"';
    position: absolute;
    left: 70px;
    top: 20px;
    color: var(--colorSecondary);
    font-size: 85px;
    font-weight: 900;
}

.testimonial-item p {
    font-weight: 600;
    margin-bottom: 15px;
    color: #748196;
}

.testi-info {
    margin-top: 30px;
    position: relative;
    padding: 15px 0px 21px 100px;
}

.testi-info img {
    width: 80px !important;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    border: 2px solid var(--colorSecondary);
}

.testi-info .title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.3;
    color: var(--colorPrimary);
}

.testi-info span {
    font-size: 15px;
    font-weight: 400;
}


/*Testimonial-Dots*

.owl-testimonial .owl-dots {
    position: absolute;
    bottom: 25%;
    right: 10%;
    transform: translate(-50%, 10%);
}

.owl-testimonial .owl-dots .owl-dot {
    width: 18px;
    height: 18px;
    background: var(--colorWhite);
    border: 5px solid var(--colorPrimary);
    border-radius: 50%;
    display: inline-block;
    margin: 0 3px;
}

.owl-testimonial .owl-dots .owl-dot.active {
    width: 18px;
    height: 18px;
    background: var(--colorWhite);
    border: 5px solid var(--colorSecondary);
}

.testi-photo {
    overflow: hidden
}

.testi-photo img {
    transform: scale(1);
    transition: all 0.5s;
}

.testi-photo:hover img {
    transform: scale(1.2);
}

.testimonial-innerbox ul li {
    position: relative;
    float: left;
    max-width: 255px;
    margin: 0px 15px;
    margin-top: 30px;
    text-align: center;
    padding: 48px 60px 49px 60px;
    background: var(--colorSecondary);
}

.testimonial-innerbox ul li:before {
    position: absolute;
    content: '';
    background: rgba(255, 255, 255, 0.1);
    width: 170px;
    height: 170px;
    right: 0px;
    bottom: 0px;
    clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%, 0px 0px);
    transition: all 0.3s;
}

.testimonial-innerbox ul li:hover:before {
    width: 100%;
    height: 100%;
    clip-path: none;
}

.testimonial-innerbox ul li:first-child {
    margin-left: 0;
}

.testimonial-innerbox ul li:last-child {
    background: var(--colorPrimary);
    margin-right: 0;
}

.testimonial-innerbox ul li i {
    position: relative;
    display: inline-block;
    font-size: 60px;
    line-height: 60px;
    color: var(--colorWhite);
    margin-bottom: 24px;
    transition: all 0.9s;
}

.testimonial-innerbox ul li h3 {
    position: relative;
    display: block;
    font-size: 24px;
    color: var(--colorWhite);
    line-height: 29px;
    font-weight: 700;
}

.testimonial-innerbox ul li:hover i {
    transform: rotate(360deg)
}
*/


   
    
/* ===== TESTIMONIALS ===== */
.testi-section-new {
    padding: 70px 0;
    background: #F8FAFE;
    position: relative;
    overflow: hidden;
}
.testi-section-new::before {
    content: '"';
    position: absolute;
    font-family: 'Syne', sans-serif;
    font-size: 600px; font-weight: 900;
    color: rgba(25,119,244,0.03);
    top: -100px; left: -40px;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}
 
/* Slick wrapper overrides */
.testimonial_slider {
    margin: 0 -12px;
    position: relative;
    z-index: 1;
}
.testimonial_slider .slick-list {
    overflow: hidden;
    padding: 12px 0 20px !important;
}
.testimonial_slider .slick-track {
    display: flex !important;
    align-items: stretch;
}
.testi-slide-wrap {
    padding: 0 12px;
    height: inherit;
    outline: none;
}
 
/* Custom slick dots */
.testimonial_slider .slick-dots {
    list-style: none;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 32px 0 0;
}
.testimonial_slider .slick-dots li {
    margin: 0;
    line-height: 0;
}
.testimonial_slider .slick-dots li button {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(25,119,244,0.2);
    border: none; padding: 0;
    font-size: 0;
    cursor: pointer;
    transition: background 0.3s, width 0.3s, border-radius 0.3s;
}
.testimonial_slider .slick-dots li.slick-active button {
    width: 28px;
    border-radius: 4px;
    background: linear-gradient(90deg, #F1634C, #1977F4);
}
 
/* Card */
.testi-card-new {
    background: #fff;
    border-radius: 32px;
    padding: 36px;
    border: 1px solid #E8EDF5;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
}
.testi-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(25,119,244,0.13);
}
 
/* Coral quote badge */
.testi-card-new .quote-mark {
    position: absolute;
    top: 24px; right: 24px;
    width: 40px; height: 40px;
    background: linear-gradient(135deg, #F1634C 0%, #FF8A76 100%);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: #fff; font-weight: 900;
    line-height: 1; padding-bottom: 4px;
    flex-shrink: 0;
}
 
/* Stars */
.testi-card-new .stars {
    display: flex; gap: 3px;
    margin-bottom: 16px;
}
.testi-card-new .stars span {
    color: #FFBE18;
    font-size: 14px;
}
 
/* Comment text */
.testi-card-new .testi-comment {
    font-size: 15px;
    color: #5A6478;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
    /* Clamp to 4 lines so cards stay same height */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
 
/* Author row */
.testi-card-new .author-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid #E8EDF5;
    margin-top: auto;
}
.testi-card-new .author-row img {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #F1634C, #1977F4) border-box;
}
.testi-card-new .author-name {
    font-family: 'Syne', sans-serif;
    font-size: 15px; font-weight: 700;
    color: #0D1117;
    margin: 0 0 2px;
    line-height: 1.3;
}
.testi-card-new .author-role {
    font-size: 12px;
    color: #9AA3B2;
    margin: 0;
}
 


/*
-------------------------------
Testimonial - Page
-------------------------------
*/

.testimonial-page .testimonial-item {
    overflow: hidden;
    padding: 50px 30px 30px 30px;
}

.testimonial-page .testimonial-item:before {
    content: '"';
    position: absolute;
    left: 30px;
    top: -5px;
    color: var(--colorSecondary);
    font-size: 60px;
    font-weight: 900;
}

.testimonial-page .testimonial-item p {
    font-size: 16px;
    color: #4b4b4b;
}

.testimonial-page .testi-info .title {
    font-size: 20px;
}

.testimonial-page .testi-info span {
    font-size: 14px;
}

.testimonial-page .testi-link {
    border-color: var(--colorSecondary) transparent;
    border-style: solid;
    border-width: 0 0 50px 50px;
    bottom: -50px;
    content: "";
    cursor: pointer;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    position: absolute;
    right: -50px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    visibility: visible;
}

.testimonial-page .testi-link a {
    color: var(--colorWhite);
    display: block;
    left: -31px;
    padding: 3px 10px;
    position: absolute;
    top: 18px;
}

.testimonial-page .testimonial-item:hover .testi-link {
    bottom: 0;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    right: 0;
    visibility: visible;
}

.testimonial-page .testi-link:hover {
    border-color: var(--colorBlack) transparent;
}

/*
-------------------------------
Team-Area
-------------------------------


.team-area {
    padding-top: 80px;
    padding-bottom: 80px;
}

.team-item {
    overflow: hidden;
    position: relative;
    border: 1px solid #eee;
    border-radius: 8px;
}

.team-item img {
    width: 100%;
    height: auto;
}

.team-photo {
    overflow: hidden;
    position: relative;
    height: 270px;
}

.team-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.team-photo:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    text-align: left;
    opacity: 0;
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
    background-color: rgba(0, 0, 0, .2);
}

.team-text {
    text-align: left;
    padding: 20px 30px;
    background: var(--colorWhite);
}

.team-text span {
    color: var(--colorSecondary);
}

.team-text a {
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0px;
    text-decoration: none;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.team-text a:hover {
    color: var(--colorSecondary);
}

.team-text p {
    font-size: 15px;
    margin: 0;
}

.team-social {
    text-align: center;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(100%, -88%);
    -webkit-transform: translate(100%, -88%);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.team-social ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-social li {
    display: block;
}

.team-social li a {
    display: block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 12px;
    margin: 7px;
    background: var(--colorWhite);
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.team-social li a:hover {
    color: var(--colorWhite);
    background: var(--colorSecondary);
}

.team-item:hover .team-social {
    transform: translate(0%, -88%);
    -webkit-transform: translate(0%, -88%);
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.team-item:hover .team-photo:after {
    opacity: 1;
}
*/
 /* ===== DOCTORS ===== */
 .doctor-section-new {
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.doctor-section-new::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(241,99,76,0.06) 0%, transparent 70%);
    top: -200px; right: -200px;
    pointer-events: none;
}
.doctor-section-new::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(25,119,244,0.06) 0%, transparent 70%);
    bottom: -100px; left: -100px;
    pointer-events: none;
}
 
/* Card */
.doc-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s;
    position: relative;
    display: flex;
    flex-direction: column;
}
.doc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 64px rgba(25,119,244,0.14);
    border-color: rgba(25,119,244,0.15);
}
 
/* Photo area */
.doc-card__photo {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #eef2f8;
}
.doc-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.doc-card:hover .doc-card__photo img {
    transform: scale(1.06);
}
 
/* Gradient bottom fade on photo */
.doc-card__photo-fade {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 2;
}
 
/* Department badge on photo */
.doc-card__dept {
    position: absolute;
    top: 16px; left: 16px;
    z-index: 3;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border: 1px solid rgba(25,119,244,0.15);
}
 
/* Social icons – always visible at top-right */
.doc-card__socials {
    position: absolute;
    top: 14px; right: 14px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transform: translateX(50px);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), opacity 0.35s;
}
.doc-card:hover .doc-card__socials {
    transform: translateX(0);
    opacity: 1;
}
.doc-card__socials a {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}
.doc-card__socials a:hover {
    background: var(--coral);
    transform: scale(1.12);
}
.doc-card__socials a img {
    width: 15px; height: 15px;
    object-fit: contain;
    display: block;
}
.doc-card__socials a:hover img {
    filter: brightness(0) invert(1);
}
 
/* Info area */
.doc-card__info {
    padding: 20px 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.doc-card__name {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px;
    line-height: 1.3;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}
.doc-card__name:hover { color: var(--coral); }
.doc-card:hover .doc-card__name { color: var(--coral); }
 
.doc-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 12px;
}
.doc-card__meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 400;
}
.doc-card__meta-item i {
    width: 22px; height: 22px;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(241,99,76,0.1), rgba(25,119,244,0.1));
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 10px;
    color: var(--blue);
    flex-shrink: 0;
}
 
/* Bottom CTA strip */
.doc-card__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.doc-card__cta a.view-profile {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 5px;
    transition: gap 0.3s, color 0.3s;
}
.doc-card:hover .doc-card__cta a.view-profile {
    gap: 10px;
    color: var(--coral);
}
.doc-card__cta a.view-profile svg {
    width: 14px; stroke: currentColor;
    transition: stroke 0.3s;
}
.doc-card__avail {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11px; font-weight: 600;
    color: #16a34a;
    background: rgba(22,163,74,0.08);
    border-radius: 50px;
    padding: 4px 10px;
}
.doc-card__avail span {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #16a34a;
    display: inline-block;
    animation: docPulse 2s ease infinite;
}
@keyframes docPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0.5); }
    50%        { box-shadow: 0 0 0 5px rgba(22,163,74,0); }
}
    
/* Slick wrapper */
.doctor_slider {
    margin: 0 -12px;
}
.doctor_slider .slick-list {
    overflow: hidden;
    padding: 12px 0 24px !important;
}
.doctor_slider .slick-track {
    display: flex !important;
    align-items: stretch;
}
.doc-slide-wrap {
    padding: 0 12px;
    height: inherit;
    outline: none;
}
 
/* Custom dots */
.doctor_slider .slick-dots {
    list-style: none;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 32px 0 0;
}
.doctor_slider .slick-dots li { margin: 0; line-height: 0; }
.doctor_slider .slick-dots li button {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(25,119,244,0.2);
    border: none; padding: 0;
    font-size: 0; cursor: pointer;
    transition: background 0.3s, width 0.3s, border-radius 0.3s;
}
.doctor_slider .slick-dots li.slick-active button {
    width: 28px;
    border-radius: 4px;
    background: linear-gradient(90deg, #F1634C, #1977F4);
}
 
/* Custom prev/next arrows */
.doc-slider-arrows {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}
.doc-arrow-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(#fff,#fff) padding-box,
                linear-gradient(135deg,#F1634C,#1977F4) border-box;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    flex-shrink: 0;
}
.doc-arrow-btn:hover {
    background: linear-gradient(135deg,#F1634C,#1977F4);
    transform: scale(1.08);
}
.doc-arrow-btn svg {
    width: 16px;
    stroke: #1977F4;
    fill: none;
    stroke-width: 2.5;
    transition: stroke 0.3s;
}
.doc-arrow-btn:hover svg { stroke: #fff; }





/* Team-carousel Nav */

.owl-carousel.team-carousel .owl-nav .owl-prev,
.owl-carousel.team-carousel .owl-nav .owl-next {
    text-align: center;
    font-size: 15px;
    position: absolute;
    width: 38px;
    height: 35px;
    line-height: 36px;
    top: 0;
    margin-top: -15px;
    background: var(--colorSecondary);
    color: var(--colorWhite);
    border-radius: 2px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.owl-carousel.team-carousel .owl-nav .owl-prev {
    right: 0;
    margin-right: 46px;
}

.owl-carousel.team-carousel .owl-nav .owl-next {
    right: 0;
    margin-right: 0px;
}

.owl-carousel.team-carousel .owl-nav .owl-prev:hover,
.owl-carousel.team-carousel .owl-nav .owl-next:hover {
    color: var(--colorWhite);
    background: var(--colorBlack);
}


/* Team-owl-dots */

.owl-carousel.team-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-carousel.team-carousel .owl-dots .owl-dot {
    width: 18px;
    height: 18px;
    background: var(--colorWhite);
    border: 5px solid var(--colorPrimary);
    border-radius: 50%;
    display: inline-block;
    margin: 0 3px;
}

.owl-carousel.team-carousel .owl-dots .owl-dot.active {
    width: 18px;
    height: 18px;
    background: var(--colorWhite);
    border: 5px solid var(--colorSecondary);
}


/*Team Swiper*/

.team-swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.team-swiper .swiper-slide {
    width: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}


/*
-------------------------------
Team Details
-------------------------------
*/

.team-detail-photo {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--borderColor);
    height: 375px;
}

.team-detail-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.team-detail-text {
    margin-top: 30px;
}

.team-detail-text h4 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 7px;
}

.team-detail-text p {
    margin-top: 20px;
}

.team-detail-text ul {
    list-style: none;
    margin: 0;
    margin-top: 15px;
    padding: 0;
}

.team-detail-text ul li {
    text-align: center;
    display: inline-block;
    margin-right: 7px;
    margin-top: 5px;
}

.team-detail-text ul li:last-child {
    margin-right: 0;
}

.team-detail-text ul li a {
    font-size: 14px;
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 3px;
    background: var(--colorPrimary);
    color: var(--colorWhite);
    transition: all 0.3s;
}

.team-detail-text ul li a:hover {
    background: #313131;
    color: var(--colorWhite);
}

.team-exp-area .event-detail-content {
    background: var(--colorWhite);
}

.progress-gallery {
    margin-top: 15px;
}

.progress-gallery .bar-container {
    position: relative;
    font-size: 15px;
    margin-bottom: 15px;
}

.progress-gallery .bar-container p {
    font-weight: 600;
    margin-bottom: 5px;
}

.progress-gallery .bar-container .progress {
    height: 10px;
}

.progress-gallery .bar-container .progress .progress-bar-custom {
    background-color: var(--colorPrimary);
}

.progress-gallery .bar-container .percentage-show {
    font-weight: 600;
    position: absolute;
    top: 0px;
    right: 0;
    z-index: 9;
}

.progress-gallery .progress-bar {
    transition-duration: 3s;
}

.team-headline h2 {
    font-size: 36px;
    font-weight: 700;
    color: #191919;
    margin: 0;
}

.team-exp-item {
    background-color: var(--colorWhite);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    padding: 30px;
    position: relative;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    margin-bottom: 30px;
    z-index: 55;
    overflow: hidden;
}

.team-exp-icon {
    background-color: #eee;
    border-radius: 20px;
    display: inline-block;
    height: 82px;
    position: relative;
    width: 82px;
    z-index: -2;
    overflow: hidden;
}

.team-exp-area .team-exp-item {
    background: #f1f1f1;
    box-shadow: none;
}

.team-exp-area .team-exp-icon {
    background: var(--colorWhite);
}

.team-exp-icon i {
    color: var(--colorSecondary);
    font-size: 30px;
    line-height: 82px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.team-exp-icon i:after {
    background-color: var(--colorSecondary);
    border-radius: 0px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    width: 100%;
    z-index: -1;
}

.team-exp-item h4 {
    color: var(--colorBlack);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 25px;
    text-transform: capitalize;
}

.team-exp-hover {
    border-color: var(--colorSecondary) transparent;
    border-style: solid;
    border-width: 0 0 50px 50px;
    bottom: -50px;
    content: "";
    cursor: pointer;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    position: absolute;
    right: -50px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    visibility: visible;
}

.team-exp-hover a {
    color: var(--colorWhite);
    display: block;
    left: -31px;
    padding: 3px 10px;
    position: absolute;
    top: 18px;
}

.team-exp-item:hover .team-exp-hover {
    bottom: 0;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    right: 0;
    visibility: visible;
}

.team-exp-item:hover .team-exp-icon i:after {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.team-exp-item:hover .team-exp-icon i {
    color: var(--colorWhite);
}

.experience-item {
    text-align: center;
    position: relative;
    box-shadow: 0px 3px 30px 0px rgba(153, 153, 153, 0.2);
    background: var(--colorWhite);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    padding: 0;
}

.experience-item:before,
.experience-item:after {
    position: absolute;
    content: '';
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.experience-item:after {
    border-bottom: 3px solid var(--colorSecondary);
    border-top: 3px solid var(--colorSecondary);
    transform: scaleX(0);
    transform-origin: 0 100% 0;
}

.experience-item:before {
    border-right: 3px solid var(--colorSecondary);
    border-left: 3px solid var(--colorSecondary);
    transform: scaleY(0);
    transform-origin: 100% 0 0;
}

.experience-colume {
    padding: 40px 30px;
    position: relative;
}

.experience-colume:after {
    position: absolute;
    content: "";
    left: 0px;
    bottom: 0px;
    width: 0;
    height: 0;
    border-bottom: 25px solid var(--colorSecondary);
    border-right: 25px solid transparent;
    z-index: 9;
}

.experience-item i {
    font-size: 36px;
    color: var(--colorSecondary);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.experience-text {
    margin-top: 20px;
}

.experience-text h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--colorBlack);
    margin-bottom: 20px;
}

.experience-text p {
    margin: 0;
}

.experience-item:hover {
    box-shadow: none;
}

.experience-item:hover i {
    color: var(--colorBlack);
}

.experience-item:hover:after {
    transform: scaleX(1);
}

.experience-item:hover:before {
    transform: scaleY(1);
}


/*
-------------------------------
Career-Area
-------------------------------
*/

.career-item {
    background-color: var(--colorWhite);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    padding: 30px;
    position: relative;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    margin-bottom: 30px;
    z-index: 55;
    overflow: hidden;
}

.career-icon {
    background-color: #eee;
    border-radius: 20px;
    display: inline-block;
    height: 82px;
    position: relative;
    width: 82px;
    z-index: -2;
    overflow: hidden;
}

.career-icon i {
    color: var(--colorSecondary);
    font-size: 30px;
    line-height: 82px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.career-icon i:after {
    background-color: var(--colorSecondary);
    border-radius: 0px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    width: 100%;
    z-index: -1;
}

.career-item h4 {
    color: var(--colorPrimary);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 15px;
}

.career-item h5 {
    color: var(--colorSecondary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.career-item:hover .career-hover {
    bottom: 0;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    right: 0;
    visibility: visible;
}

.career-item:hover .career-icon i:after {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.career-item:hover .career-icon i {
    color: var(--colorWhite);
}

.career-location {
    overflow: hidden;
}

.career-location li {
    float: left;
    width: 50%;

    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px
}

.career-hover {
    text-align: center;
}

.career-hover li {
    display: inline-block;
    margin-top: 10px;
    margin-right: 15px;
}

.career-hover li a {
    display: block;
    width: 150px;
    font-weight: 600;
    background: var(--colorPrimary);
    color: var(--colorWhite);
    padding: 10px 5px;
    border-radius: 3px;
    transition: all 0.3s;
}

.career-hover li:last-child {
    margin-right: 0;
}

.career-hover li:last-child a {
    background: var(--colorSecondary);
}

.career-hover li a:hover {
    background: var(--colorBlack);
}


/*
-------------------------------
Career Detail
-------------------------------
*/

.Career-detail-text {
    background: var(--colorWhite);
    border: 1px solid #e9e9e9;
    padding: 30px;
}

.Career-detail-text h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 30px;
    padding-bottom: 12px;
    position: relative;
}

.Career-detail-text h3:before {
    content: '';
    border: 1px solid var(--colorPrimary);
    width: 8px;
    position: absolute;
    bottom: 0px;
    left: 0;
}

.Career-detail-text h3:after {
    content: '';
    border: 1px solid var(--colorPrimary);
    width: 30px;
    position: absolute;
    bottom: 0px;
    left: 11px;
}

.career-sidebar {
    border: 1px solid #e9e9e9;
    background: var(--colorWhite);
}

.career-sidebar-heading {
    background: #23c0e9;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    -webkit-border-top-left-radius: 10px;
    -moz-border-top-left-radius: 10px;
    border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-top-right-radius: 10px;
    border-top-right-radius: 10px;
}

.career-sidebar-heading h4 {
    font-size: 16px;
    color: var(--colorWhite);
    margin: 0;
}

.career-sidebar-img {
    text-align: center;
    padding-top: 30px;
}

.career-sidebar-right-cont {
    text-align: center;
}

.career-sidebar-right-cont-wrapper h4 {
    font-size: 16px;
    color: #000000;
    font-weight: 700;
    padding-top: 30px;
    margin: 0;
}

.career-sidebar-right-cont-wrapper p {
    font-size: 16px;
    color: var(--colorPrimary);
    padding-top: 7px;
}

.career-sidebar-btn-wrapper {
    text-align: center;
    padding-bottom: 50px;
    border-bottom: 1px solid #e9e9e9;
}

.career-sidebar-btn li {
    display: inline-block;
    margin-left: 15px;
}

.career-sidebar-btn li:first-child {
    margin-left: 0;
}

.career-sidebar-btn li:first-child a {
    width: 30px;
    height: 30px;
    border: 1px solid #e9e9e9;
    text-align: center;
    line-height: 30px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    color: #f36969;
    background: transparent;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.career-sidebar-btn li:last-child a {
    display: block;
    width: 100px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #37d09c;
    color: var(--colorWhite);
    font-size: 12px;
    text-transform: uppercase;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.career-sidebar-main-wrapper {
    padding: 50px;
    padding-top: 10px;
}

.career-sidebar-icon {
    float: left;
    width: 20px;
}

.career-sidebar-icon i {
    color: var(--colorSecondary);
}

.career-sidebar-icon-con {
    float: left;
    width: calc(100% - 20px);
    padding-left: 10px;
}

.career-sidebar-icon-con li:first-child {
    font-weight: bold;
    color: #000000;
}

.career-sidebar-wrapper2 {
    overflow: hidden;
    padding-top: 40px;
}

.career-sidebar-list-btn ul {
    margin-top: 40px;
}

.career-sidebar-list-btn li a {
    display: block;
    width: 230px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    color: var(--colorWhite);
    text-transform: uppercase;
    font-weight: bold;
    background: var(--colorSecondary);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.career-sidebar-list-btn li a:hover {
    background: var(--colorBlack);
}

.career-btn a {
    display: inline-block;
    padding: 10px 35px;
    background: var(--colorPrimary);
    color: var(--colorWhite);
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s;
}

.career-btn a:hover {
    background: var(--colorBlack);
}

.job-apply-form h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 30px;
}

.form-group input[type="file"] {
    height: auto;
    border: 0;
    padding: 0;
    padding-bottom: 5px;
}

.cap-row {
    overflow: hidden;
}

.cap-row .cap-number {
    width: 90px;
    float: left;
}

.cap-row .form-control {
    width: 80px;
}

.job-apply-form .btn {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
    padding: 14px 30px;
    border: 1px solid var(--colorPrimary);
    border-radius: 3px;
    background: var(--colorPrimary);
    color: var(--colorWhite);
    -webkit-transition: all 0.3s;
    transition: all 0.3s
}

.job-apply-form .btn:hover {
    border: 1px solid var(--colorSecondary);
    background: var(--colorSecondary);
}

.job-detail-keyword {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
    border: 1px solid #e9e9e9;
    background: var(--colorWhite);
    border-top: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.job-detail-keyword li {
    display: inline-block;
    margin-left: 10px;
}

.job-detail-keyword li:first-child {
    margin-left: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.job-detail-keyword li i {
    margin-right: 5px;
}

.job-detail-keyword li a {
    color: #797979;
    line-height: 18px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.job-detail-keyword li a:hover {
    color: var(--colorSecondary);
}


/*
-------------------------------
Job-Area
-------------------------------
*/

.job-item {
    float: left;
    width: 100%;
    margin-top: 35px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.job-item-wrapper {
    float: left;
    width: 100%;
    background: var(--colorWhite);
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 30px;
    padding-bottom: 30px;
    border: 1px solid #e9e9e9;
    border-bottom: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.job-img {
    float: left;
    width: 105px;
}

.job-wrapper-text {
    float: left;
    width: calc(100% - 105px);
    padding-left: 20px;
    padding-top: 10px;
}

.job-wrapper-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.job-wrapper-text p {
    font-size: 14px;
    color: #23c0e9;
    margin-bottom: 12px;
}

.job-wrapper-text li {
    font-size: 16px;
    float: none;
    margin-left: 0;
}

.job-wrapper-text li:first-child {
    font-weight: 700;
}

.job-wrapper-text li i {
    color: #f36969;
}

.job-wrapper-text li:last-child {
    color: #797979;
}

.job-item-btn ul {
    float: left;
    margin-top: 15px;
}

.job-item-btn li {
    float: left;
    margin-left: 15px;
}

.job-item-btn li:first-child {
    margin-left: 0;
}

.job-item-btn li:first-child a {
    float: left;
    width: 30px;
    height: 30px;
    border: 1px solid #e9e9e9;
    text-align: center;
    line-height: 30px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    color: #f36969;
    background: transparent;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.job-item-btn li:nth-child(2) a {
    float: left;
    width: 100px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #37d09c;
    color: var(--colorWhite);
    font-size: 12px;
    text-transform: uppercase;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.job-item-btn li:last-child a {
    float: left;
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #f36969;
    color: var(--colorWhite);
    font-size: 12px;
    text-transform: uppercase;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.job-item-keyword {
    float: left;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
    border: 1px solid #e9e9e9;
    background: #f9f9f9;
    border-top: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.job-item-keyword li {
    float: left;
    margin-left: 15px;
}

.job-item-keyword li:first-child {
    margin-left: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.job-item-keyword li i {
    margin-right: 5px;
}

.job-item-keyword li a {
    color: #797979;
    line-height: 18px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.job-item:hover .job-item-keyword {
    background: var(--colorPrimary);
}

.job-item:hover .job-item-keyword li,
.job-item:hover .job-item-keyword li a {
    color: var(--colorWhite);
}

.job-item-keyword li a:hover {
    text-decoration: underline;
}


/*
-------------------------------
Blog-Area
-------------------------------

.blog-area {
    padding-top: 80px;
    padding-bottom: 80px;
}

.blog-item {
    border: 1px solid var(--colorWhite);
    margin-top: 30px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.blog-image {
    overflow: hidden;
}

.blog-image img {
    transform: scale(1);
    transition: all 0.5s;
    width: 100%;
}

.blog-image:hover img {
    transform: scale(1.2);
}

.blog-text {
    background: #fdfdfd;
    padding: 20px !important;
    box-shadow: 0px 6px 5px 2px rgb(72 72 72 / 10%);
    padding-top: 0;
}

.blog-item .title {
    line-height: 1;
    margin-top: 6px;
    margin-bottom: 10px;
}

.blog-item .title a {
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.blog-item .title a:hover {
    color: var(--colorSecondary);
}

.blog-item span {
    display: block;
    font-size: 16px;
}

.blog-item span i {
    margin-right: 5px;
    color: var(--colorPrimary);
}

.blog-item p {
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-author span {
    display: inline-block;
    font-size: 13px;
    padding-right: 30px;
    color: #777;
}

.blog-author span:last-child {
    padding-right: 0;
}

.blog-author span i {
    color: var(--colorPrimary);
    margin-right: 3px;
}

.blog-item .sm_btn {
    font-size: 16px;
    color: var(--colorPrimary);
    font-weight: 700;
}

.first-blog .blog-text {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 88%;
    border-radius: 10px;
    background: var(--colorPrimary);
    color: var(--colorWhite);
    box-shadow: none;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.first-blog {
    border: none !important;
    overflow: initial !important;
}

.first-blog .blog-image {
    border: 1px solid var(--colorWhite);
    border-radius: 8px;
}

.first-blog .blog-text .title a,
.first-blog .blog-text .sm_btn,
.first-blog .blog-text .blog-author span,
.first-blog .blog-text .blog-author span i {
    color: var(--colorWhite);
}


/* Blog-carousel Nav 

.owl-carousel.blog-carousel .owl-nav .owl-prev,
.owl-carousel.blog-carousel .owl-nav .owl-next {
    text-align: center;
    font-size: 16px;
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 38px;
    top: 0;
    margin-top: -20px;
    background: var(--colorSecondary);
    color: var(--colorWhite);
    border-radius: 2px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.blog-carousel .owl-nav .owl-prev {
    right: 0;
    margin-right: 48px;
}

.blog-carousel .owl-nav .owl-next {
    right: 0;
    margin-right: 0px;
}

.blog-carousel .owl-nav .owl-prev:hover,
.blog-carousel .owl-nav .owl-next:hover {
    color: var(--colorWhite);
    background: var(--colorBlack);
}


/* Blog-owl-dots 

.owl-carousel.blog-carousel .owl-dots {
    text-align: center;
    margin-top: 15px;
}

.owl-carousel.blog-carousel .owl-dots .owl-dot {
    width: 18px;
    height: 18px;
    background: var(--colorWhite);
    border: 5px solid var(--colorPrimary);
    border-radius: 50%;
    display: inline-block;
    margin: 0 3px;
}

.owl-carousel.blog-carousel .owl-dots .owl-dot.active {
    width: 18px;
    height: 18px;
    background: var(--colorWhite);
    border: 5px solid var(--colorSecondary);
}

*/


 /* ===== BLOG ===== */
 .blog-section-new {
    padding: 70px 0;
    background: var(--surface);
}
.blog-featured-new {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    height: 100%;
    transition: transform 0.35s, box-shadow 0.35s;
    display: flex; flex-direction: column;
}
.blog-featured-new:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.blog-featured-new .blog-img {
    position: relative;
    height: 280px; overflow: hidden;
}
.blog-featured-new .blog-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.blog-featured-new:hover .blog-img img { transform: scale(1.05); }
.blog-img-badge {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--gradient-coral);
    color: #fff; font-size: 11px; font-weight: 700;
    padding: 5px 12px; border-radius: 50px;
    letter-spacing: 0.5px; text-transform: uppercase;
}
.blog-featured-new .blog-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-meta-row { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.blog-meta-row span { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); }
.blog-meta-row i { color: var(--coral); font-size: 12px; }
.blog-featured-new h3.title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; line-height: 1.35; }
.blog-featured-new h3.title a { color: inherit; text-decoration: none; transition: color 0.3s; }
.blog-featured-new:hover h3.title a { color: var(--blue); }
.blog-featured-new p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; flex: 1; }
.btn-read-more {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(25,119,244,0.08);
    transition: background 0.3s, color 0.3s, gap 0.3s;
    align-self: flex-start;
}
.btn-read-more:hover {
    background: var(--gradient-blue);
    color: #fff; gap: 12px;
}
/* Small blog card */
.blog-sm-card {
    display: flex; gap: 16px;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 16px;
    border: 1px solid var(--border);
    margin-bottom: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}
.blog-sm-card:last-child { margin-bottom: 0; }
.blog-sm-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}
.blog-sm-card .sm-img {
    width: 90px; height: 90px;
    border-radius: var(--radius-md);
    overflow: hidden; flex-shrink: 0;
}
.blog-sm-card .sm-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-sm-card .sm-body { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.blog-sm-card .sm-date { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; }
.blog-sm-card .sm-title { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--text-primary); line-height: 1.35; margin: 0; transition: color 0.3s; }
.blog-sm-card:hover .sm-title { color: var(--coral); }


/*
-------------------------------
Blog Page
-------------------------------
*/

.blog-page .blog-item {
    position: relative;
    background: var(--colorWhite);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.blog-page .blog-item .blog-text {
    background: transparent;
}

.blog-page .blog-author {
    text-align: center;
    background: var(--colorPrimary);
    color: var(--colorWhite);
    padding: 13px 30px;
    width: 100%;
    border-left: 5px solid var(--colorSecondary);
    border-right: 5px solid var(--colorSecondary);
}

.blog-page .blog-author span {
    color: var(--colorWhite);
}

.blog-page .blog-author span i {
    color: var(--colorWhite);
}

.blog-page .blog-item .title {
    margin-top: 15px;
}


/* Pagination */

.pagination {
    text-align: center;
    margin-top: 45px;
}

ul.page-numbers {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

ul.page-left {
    margin: 0 !important;
}

ul.page-numbers li {
    display: inline-block;
    /* margin-right: 5px; */
}

ul.page-numbers li:last-child {
    margin-right: 0;
}

ul.page-numbers li a {
    display: block;
    font-weight: 600;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--colorPrimary);
    color: var(--colorWhite);
    text-decoration: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 4px;
}

ul.page-numbers li a:hover {
    background: var(--colorBlack);
    color: var(--colorWhite);
}

ul.page-numbers li span {
    display: block;
    font-weight: 600;
    width: 40px;
    height: 40px;
    line-height: 44px;
    background: var(--colorSecondary);
    color: var(--colorWhite);
    border-radius: 5px;
}


/*
-------------------------------
Single-Blog
-------------------------------
*/

.single-blog-image {
    position: relative;
}

.sidebar {
    margin-top: 30px;
}

.sidebar-item {
    margin-top: 30px;
}

.sidebar-item:first-child {
    margin-top: 0;
}

.sidebar-item h3 {
    display: inline-block;
    position: relative;
    font-size: 22px;
    font-weight: 700;
    padding-bottom: 12px;
    margin-bottom: 30px;
}

.sidebar-item ul li a {
    display: block;
    background: #edf0fa;
    color: #40436a;
    padding: 20px 35px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    -moz-transition: all 300ms ease-out 0s;
    -webkit-transition: all 300ms ease-out 0s;
    -ms-transition: all 300ms ease-out 0s;
    -o-transition: all 300ms ease-out 0s;
    transition: all 300ms ease-out 0s;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.sidebar-item ul li a i {
    font-weight: 600;
    font-size: 14px;
    margin-right: 7px;
}

.sidebar-item li.active a i {
    margin-right: 12px;
}

.sidebar-item ul li.active a,
.sidebar-item ul li a:hover {
    background-color: var(--colorPrimary);
    color: var(--colorWhite);
    padding-left: 45px;
}

.blog-page.single-blog .blog-image {
    position: relative;
}

.single-blog img {
    width: 100%
}

.blog-page.single-blog .blog-author {
    text-align: center;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--colorPrimary);
    color: var(--colorWhite);
    padding: 13px 30px;
    width: 70%;
    border-radius: 3px;
}

.single-blog h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.single-blog p {
    margin: 0;
    margin-top: 15px;
}

.single-blog .blog-text {
    box-shadow: 0px 2px 4px 2px rgb(72 72 72 / 10%);
}

.blog-recent-item {
    display: table;
    margin-bottom: 20px;
}

.blog-recent-photo {
    vertical-align: top;
    display: table-cell;
    float: left;
    width: 105px;
    padding-right: 8px;
}

.blog-recent-photo img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.blog-recent-text {
    vertical-align: top;
    display: table-cell;
    padding-left: 5px;
}

.blog-recent-text a {
    font-weight: 600;
    vertical-align: top;
    display: block;
    margin-bottom: 5px;
    color: #40436a;
    transition: all 0.3s;
}

.blog-recent-text a:hover {
    color: var(--colorSecondary);
}

.blog-post-date {
    position: relative;
    font-size: 13px;
    color: #555;
    padding-left: 21px;
}

.blog-post-date:before {
    position: absolute;
    content: '\f073';
    font-family: 'Font Awesome 5 Free';
    left: 0;
    top: 0;
}

.tagcloud a {
    display: inline-block;
    background: #edf0fa;
    color: #40436a;
    padding: 12px 10px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    margin-bottom: 7px;
    margin-right: 2px;
}

.tagcloud a:hover {
    background-color: var(--colorPrimary);
    color: var(--colorWhite);
}

.comment-form h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.comment-form .c-number {
    color: var(--colorSecondary);
}

.comment-form input {
    height: 45px;
    border-radius: 0;
    border: 1px solid var(--borderColor);
}

.comment-form textarea {
    height: 220px;
    box-shadow: none;
    border: 1px solid var(--borderColor);
    border-radius: 8px;
}

.comment-form .btn {
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    padding: 14px 30px;
    border: 1px solid var(--colorPrimary);
    background: var(--colorPrimary);
    color: var(--colorWhite);
    border-radius: 6px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.comment-form .btn:hover {
    color: var(--colorWhite);
    background: var(--colorSecondary);
    border: 1px solid var(--colorSecondary);
}

.comment-list h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.comment-list .c-number {
    color: var(--colorSecondary);
}

.comment-list ul li {
    border-bottom: 1px solid var(--borderColor);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.comment-list ul li:last-child {
    border: 0;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.comment-list .comment-item {
    overflow: hidden;
    display: table;
    width: 100%;
}

.comment-list .thumb {
    display: table-cell;
    vertical-align: top;
    width: 80px;
}

.comment-list .thumb img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.comment-list .com-text {
    display: table-cell;
    vertical-align: top;
    padding: 0 15px;
}

.comment-list .com-text h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 7px;
}

.comment-list .com-text span.date {
    margin-right: 30px;
    font-size: 14px;
}

.comment-list .com-text span.date i {
    color: var(--colorSecondary);
    margin-right: 3px;
}

.comment-list .com-text span a {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    padding: 5px 20px;
    border-radius: 3px;
    background: var(--colorPrimary);
    color: var(--colorWhite);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.comment-list .com-text span a:hover {
    background: #313131;
    color: var(--colorWhite);
}

.comment-list .com-text p {
    margin-top: 12px;
    margin-bottom: 0;
}

.comment-list ul ul.children {
    margin-top: 20px;
    margin-left: 40px;
}

.comment-list ul ul.children li {
    border: 0;
    padding-bottom: 0px;
    margin-bottom: 0px;
    margin-top: 40px;
}


/*
-------------------------------
Subscribe
-------------------------------
*/

.subscribe-area {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 90px;
    padding-bottom: 110px;
}

.subscribe-area:before {
    position: absolute;
    content: '';
    background: #085dceeb;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.subscribe-area .headline {
    color: var(--colorWhite);
    max-width: 530px;
    margin: 0 auto;
}

.headline.white h2 {
    color: var(--colorWhite)
}

.subscribe-area .headline p {
    padding: 0 50px;
    color: #b9b9b9;
}

.subscribe-form {
    width: 100%;
    max-width: 530px;
    margin: auto;
    position: relative;
    margin-top: 40px;
}

.subscribe-form input {
    height: 56px;
    padding-left: 20px;
    width: 100%;
    border-radius: 6px;
    border: none;
    padding-right: 150px;
}

.subscribe-form .btn-sub {
    position: absolute;
    right: 7px;
    top: 6px;
    border-radius: 6px;
    background: var(--colorSecondary);
    border: none;
    color: var(--colorWhite);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    padding: 10px 20px;
}

.subscribe-form .btn-sub:hover {
    background: var(--colorBlack);
}


/*
-------------------------------
Brand
-------------------------------
*/

.brand-area {
    padding-top: 80px;
    padding-bottom: 80px;
}

.brand-item {
    text-align: center;
    position: relative;
    background: #f5f7f9;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    padding: 0px;
    border: 1px solid var(--borderColor);
    border-radius: 8px;
    overflow: hidden;
}

.brand-item:before,
.brand-item:after {
    position: absolute;
    content: '';
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.brand-item:after {
    border-bottom: 3px solid var(--colorPrimary);
    border-top: 3px solid var(--colorPrimary);
    transform: scaleX(0);
    transform-origin: 0 100% 0;
}

.brand-item:before {
    border-right: 3px solid var(--colorPrimary);
    border-left: 3px solid var(--colorPrimary);
    transform: scaleY(0);
    transform-origin: 100% 0 0;
}

.brand-colume {
    position: relative;
}

.brand-colume:after {
    position: absolute;
    content: "";
    left: 0px;
    bottom: 0px;
    width: 0;
    height: 0;
    border-bottom: 25px solid #56585a;
    border-right: 25px solid transparent;
    z-index: 9;
}

.brand-item img {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    height: 140px;
    object-fit: cover !important;
}

.brand-item:hover {
    box-shadow: none;
}

.brand-item:hover i {
    color: var(--colorBlack);
}

.brand-item:hover:after {
    transform: scaleX(1);
}

.brand-item:hover:before {
    transform: scaleY(1);
}


/*Brand Swiper*/

.brand-swiper {
    width: 100%;
    height: 508px;
    margin-left: auto;
    margin-right: auto;
    padding: 80px 0px;
    overflow: hidden;
}

.brand-swiper .swiper-slide {
    height: calc((100% - 30px) / 2);
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}


/*
-------------------------------
Footer
-------------------------------


.main-footer {
    position: relative;
    background: #0b306e;
}

.top-footer {
    position: relative;
}

.top-footer:before {
    position: absolute;
    content: '';
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    height: 1px;
    left: 0px;
    bottom: 0px;
}

.footer-logo {
    position: relative;
    padding: 41px 85px 35px 0px;
}

.topfooter-bg {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 5000px;
    height: 100%;
    background: #0b2c64;
    clip-path: polygon(0% 0%, 100% 0%, 99% 100%, 0% 100%, 0px 0px);
}

.footer-logo img {
    position: relative;
}

.footer-address {
    width: 100%;
    float: left;
    padding: 35px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-address-first {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 55px;
}

.footer-address ul {
    width: 100%;
}

.footer-address ul li {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 0px 30px 0px 50px;
}

.footer-address ul li:last-child {
    padding: 0px 0px 0px 50px;
}

.footer-address ul li:before {
    position: absolute;
    content: '';
    background: rgba(255, 255, 255, 0.1);
    width: 1px;
    height: 65px;
    top: -10px;
    right: 28px;
}

.footer-address ul li:last-child:before {
    display: none;
}

.footer-address ul li i {
    position: absolute;
    left: 0px;
    top: 6px;
    font-size: 30px;
    line-height: 30px;
    color: var(--colorSecondary);
}

.footer-address ul li .title {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 22px;
    color: var(--colorWhite);
    font-weight: 600;
    margin-bottom: 3px;
}

.footer-address ul li p {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 20px;
    color: #c5c5c5;
    font-weight: 600;
    margin-bottom: 0px;
}

.footer-area {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #d4d4d4;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 60px;
    padding-bottom: 90px;
}

.footer-ribbon::before {
    display: block;
    position: absolute;
    top: 0;
    left: -1.5rem;
    width: 0;
    height: 0;
    content: '';
    border-right: 15px solid #6a9234;
    border-top: 17px solid transparent;
}

.footer-area h1 {
    font-size: 28px;
}

.footer-area h2 {
    font-size: 26px;
}

.footer-item {
    overflow: hidden;
    margin-top: 30px;
}

.footer-item img {
    height: 60px;
}

.footer-item .title {
    font-size: 20px;
    font-weight: 600;
    color: var(--colorWhite);
    margin: 0;
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 40px;
    border-bottom: 1px solid #848383;
}

.footer-item .sm_fbtn {
    font-size: 16px;
    font-weight: 600;
    color: var(--colorWhite);
    display: block;
}

.footer-item .icon {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 25px;
}

.footer-item .icon img {
    height: auto;
}

.footer-item .icon li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--colorSecondary);
    color: var(--colorWhite);
    border-radius: 50%;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.footer-item .icon li a:hover {
    color: var(--colorSecondary);
    background: var(--colorPrimary);
}

.footer-item .title:after {
    content: "";
    position: absolute;
    width: 50px;
    background: var(--colorSecondary);
    left: 0;
    bottom: -2px;
    height: 3px;
}

.footer-about p {
    margin: 0;
}

.footer-item ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-item li {
    display: block;
    padding-bottom: 6px;
}

.footer-item li a {
    position: relative;
    display: block;
    color: #d4d4d4;
    line-height: 1.5;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.footer-item a:hover,
.footer-item li a:hover {
    color: var(--colorSecondary);
}

.textwidget {
    padding-right: 50px;
}

.footer-item li p i {
    margin-right: 5px;
}

.footer-recent-item {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.footer-recent-photo {
    vertical-align: top;
    display: table-cell;
    width: 90px;
    padding-right: 8px;
}

.footer-recent-photo img {
    max-width: 100%;
    height: 65px;
    object-fit: cover;
    border-radius: 6px;
}

.footer-recent-text {
    vertical-align: top;
    display: table-cell;
    padding-left: 5px;
    max-width: 68%;
}

.footer-recent-text a {
    vertical-align: top;
    display: block;
    margin-bottom: 5px;
    color: var(--colorWhite);
}

.footer-post-date {
    position: relative;
    font-size: 13px;
    color: #b7b7b7;
    padding-left: 21px;
}

.footer-post-date:before {
    position: absolute;
    content: '\f073';
    font-family: "Font Awesome 5 Free";
    left: 0;
    top: 0;
}


/*Footer-Copyright
.footer-copyrignt {
    padding-top: 25px;
    padding-bottom: 20px;
}

.copyright-text p {
    color: #d4d4d4;
    margin: 0;
}

.footer-social {
    float: right;
}

.footer-social a {
    display: inline-block;
    color: #d4d4d4;
    font-size: 16px;
    margin-left: 20px;
}

.footer-social a:hover {
    color: var(--colorSecondary);
}


/* ===============================
   FOOTER — LIGHT THEME
   =============================== */
   .footer-new {
    background: #F8FAFE;
    color: #0D1117;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #FFF5F3 0%, #EFF6FF 100%);
}
.footer-new::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(241,99,76,0.05) 0%, transparent 65%);
    top: -200px; right: -150px;
    pointer-events: none; z-index: 0;
}
.footer-new::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(25,119,244,0.05) 0%, transparent 65%);
    bottom: -150px; left: -120px;
    pointer-events: none; z-index: 0;
}
 
/* ── Contact Top Bar ── */
.footer-topbar {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(241, 99, 76, 0.1);
    box-shadow: 0 2px 16px rgba(241, 99, 76, 0.06);
}
.footer-contact-row { display: flex; }
.footer-contact-item {
    flex: 1;
    display: flex; align-items: center; gap: 16px;
    padding: 26px 28px;
    border-right: 1px solid #E8EDF5;
    transition: background 0.3s;
}
.footer-contact-item:last-child { border-right: none; }
.footer-contact-item:hover { background: #F8FAFE; }
.footer-contact-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(241,99,76,0.09), rgba(25,119,244,0.09));
    border: 1px solid rgba(25,119,244,0.1);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.footer-contact-icon i {
    font-size: 16px;
    background: linear-gradient(135deg, #F1634C, #1977F4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-contact-label {
    font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: #9AA3B2; margin: 0 0 4px;
}
.footer-contact-value {
    font-size: 14px; font-weight: 600;
    color: #0D1117; margin: 0; line-height: 1.5;
}
 
/* ── Footer Body ── */
.footer-body {
    position: relative; z-index: 1;
    padding: 60px 0 50px;
}
.footer-col-title {
    font-family: 'Syne', sans-serif;
    font-size: 16px; font-weight: 700;
    color: #0D1117;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 14px;
}
.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 32px; height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #F1634C, #1977F4);
}
 
/* About */
.footer-about-text {
    font-size: 14px; color: #5A6478;
    line-height: 1.8; margin-bottom: 18px;
}
.footer-details-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600;
    color: #F1634C; text-decoration: none;
    margin-bottom: 22px;
    transition: gap 0.3s, color 0.3s;
}
.footer-details-link:hover { gap: 10px; color: #c0392b; }
 
/* Social */
.footer-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-socials a {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--coral);
    border: 1px solid rgba(25, 119, 244, 0.1);
    box-shadow: 0 2px 8px rgba(25,119,244,0.06);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.footer-socials a:hover {
    background: linear-gradient(135deg, #F1634C, #1977F4);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(241,99,76,0.22);
}
.footer-socials a img {
    width: 16px; height: 16px; object-fit: contain;
    transition: filter 0.3s;
}
.footer-socials a:hover img { filter: brightness(0) invert(1); }
 
/* Nav links */
.footer-nav-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-nav-list li a {
    font-size: 14px; color: #5A6478; text-decoration: none;
    display: flex; align-items: center; gap: 10px;
    transition: color 0.3s, gap 0.3s;
}
.footer-nav-list li a::before {
    content: '';
    width: 6px; height: 6px; border-radius: 50%;
    background: linear-gradient(135deg, #F1634C, #1977F4);
    flex-shrink: 0; opacity: 0.35;
    transition: opacity 0.3s, transform 0.3s;
}
.footer-nav-list li a:hover { color: #F1634C; gap: 14px; }
.footer-nav-list li a:hover::before { opacity: 1; transform: scale(1.3); }
 
/* Subscribe box */
.footer-subscribe-box {
    background: #fff;
    border: 1px solid #E8EDF5;
    border-radius: 20px;
    padding: 16px 14px;
    position: relative; overflow: hidden;
    box-shadow: 0 4px 24px rgba(25,119,244,0.07);
}
.footer-subscribe-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F1634C, #1977F4);
    border-radius: 20px 20px 0 0;
}
.footer-subscribe-desc {
    font-size: 13px; color: #5A6478;
    line-height: 1.7; margin-bottom: 18px;
}
.footer-subscribe-form { display: flex; /*flex-direction: column;*/ gap: 10px; }
.footer-subscribe-form input[type="email"] {
    width: 100%;
    background: #F8FAFE;
    border: 1px solid #E8EDF5;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px; color: #0D1117;
    outline: none;
    font-family: 'DM Sans', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.footer-subscribe-form input[type="email"]::placeholder { color: #9AA3B2; }
.footer-subscribe-form input[type="email"]:focus {
    border-color: rgba(241,99,76,0.4);
    box-shadow: 0 0 0 3px rgba(241,99,76,0.08);
}
.footer-subscribe-form button {
    width: 240px; padding: 12px 0px;
    border-radius: 12px; border: none;
    background: linear-gradient(135deg, #F1634C 0%, #c0392b 45%, #1977F4 100%);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 6px 20px rgba(241,99,76,0.25);
}
.footer-subscribe-form button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(241,99,76,0.32);
}
 
/* App badges */
.app-store-area { margin-top: 20px; }
.app-store-area a img {
    height: 52px; object-fit: contain;
    opacity: 0.75;
    border-radius:8px;
    transition: opacity 0.3s, transform 0.3s;
}
.app-store-area a:hover img { opacity: 1; transform: translateY(-2px); }
 
/* Copyright */
.footer-copyright {
    position: relative; z-index: 1;
    background: #fff;
    border-top: 1px solid #E8EDF5;
    padding: 20px 0;
}
.footer-copyright p {
    font-size: 13px; color: #9AA3B2;
    margin: 0; text-align: center;
}
 
/* Responsive */
@media (max-width: 991px) {
    .footer-contact-row { flex-direction: column; }
    .footer-contact-item {
        border-right: none;
        border-bottom: 1px solid #E8EDF5;
        padding: 18px 16px;
    }
    .footer-contact-item:last-child { border-bottom: none; }
}
@media (max-width: 767px) {
    .footer-body { padding: 48px 0 36px; }
    .partners-strip { padding: 32px 0; }
}

/* ===============================
   YOUTUBE CAROUSEL SECTION
   =============================== */
   .youtube-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.youtube-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(241,99,76,0.05) 0%, transparent 70%);
    top: -150px; right: -100px;
    pointer-events: none;
}
.youtube-section::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(25,119,244,0.05) 0%, transparent 70%);
    bottom: -100px; left: -80px;
    pointer-events: none;
}
 
/* Slide wrapper */
.youtube_slider { margin: 0 -12px; }
.youtube_slider .slick-list {
    overflow: hidden;
    padding: 10px 0 24px !important;
}
.youtube_slider .slick-track {
    display: flex !important;
    align-items: stretch;
}
.yt-slide-wrap {
    padding: 0 12px;
    outline: none;
    height: inherit;
}
 
/* Card */
.yt-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #E8EDF5;
    box-shadow: 0 4px 20px rgba(25,119,244,0.07);
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.yt-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(25,119,244,0.13);
    border-color: rgba(25,119,244,0.12);
}
 
/* Thumbnail */
.yt-card__thumb {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    background: #eef2f8;
    flex-shrink: 0;
}
.yt-card__thumb img,
.yt-card__thumb iframe {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    border: none;
    display: block;
    object-fit: cover;
}
 
/* Play overlay */
.yt-card__play {
    position: absolute;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(13,17,23,0.22);
    transition: background 0.3s;
    z-index: 2;
}
.yt-card:hover .yt-card__play {
    background: rgba(13,17,23,0.38);
}
.yt-play-btn {
    width: 58px; height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F1634C, #1977F4);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 28px rgba(241,99,76,0.45);
    transition: transform 0.3s;
}
.yt-card:hover .yt-play-btn { transform: scale(1.12); }
.yt-play-btn svg { width: 22px; fill: #fff; margin-left: 4px; }
 
/* Duration badge */
.yt-duration {
    position: absolute;
    bottom: 10px; right: 10px;
    background: rgba(13,17,23,0.72);
    backdrop-filter: blur(4px);
    color: #fff; font-size: 11px; font-weight: 600;
    padding: 3px 8px; border-radius: 6px;
    z-index: 3; letter-spacing: 0.3px;
}
 
/* Card body */
.yt-card__body {
    padding: 18px 20px 20px;
    flex: 1; display: flex; flex-direction: column;
}
.yt-card__title {
    font-family: 'Syne', sans-serif;
    font-size: 15px; font-weight: 700;
    color: #0D1117; line-height: 1.45;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}
.yt-card:hover .yt-card__title { color: #F1634C; }
.yt-card__meta {
    display: flex; align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; gap: 8px;
    margin-top: auto;
}
.yt-card__views {
    display: flex; align-items: center; gap: 5px;
    font-size: 12px; color: #9AA3B2; font-weight: 500;
}
.yt-card__views i { font-size: 11px; color: #F1634C; }
.yt-yt-badge {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11px; font-weight: 700; color: #fff;
    background: #FF0000;
    padding: 3px 10px; border-radius: 50px;
}
.yt-yt-badge svg { width: 12px; fill: #fff; }
 
/* Slick dots */
.youtube_slider .slick-dots {
    list-style: none;
    display: flex !important;
    justify-content: center; align-items: center;
    gap: 8px; padding: 0; margin: 28px 0 0;
}
.youtube_slider .slick-dots li { margin: 0; line-height: 0; }
.youtube_slider .slick-dots li button {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(25,119,244,0.2);
    border: none; padding: 0; font-size: 0; cursor: pointer;
    transition: background 0.3s, width 0.3s, border-radius 0.3s;
}
.youtube_slider .slick-dots li.slick-active button {
    width: 28px; border-radius: 4px;
    background: linear-gradient(90deg, #F1634C, #1977F4);
}
 
/* Custom arrows */
.yt-slider-arrows {
    display: flex; justify-content: center;
    gap: 12px; margin-top: 28px;
}
.yt-arrow-btn {
    width: 44px; height: 44px; border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(#fff,#fff) padding-box,
                linear-gradient(135deg, #F1634C, #1977F4) border-box;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.yt-arrow-btn:hover {
    background: linear-gradient(135deg, #F1634C, #1977F4);
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(241,99,76,0.25);
}
.yt-arrow-btn svg {
    width: 16px; fill: none;
    stroke: #1977F4; stroke-width: 2.5;
    transition: stroke 0.3s;
}
.yt-arrow-btn:hover svg { stroke: #fff; }
 
@media (max-width: 767px) {
    .youtube-section { padding: 56px 0; }
}




/*scroll-top*/
.scroll-top {
    cursor: pointer;
    text-align: center;
    font-size: 24px;
    position: fixed;
    width: 50px;
    height: 50px;
    line-height: 50px;
    bottom: 90px;
    right: 26px;
    background: var(--colorSecondary);
    color: var(--colorWhite);
    z-index: 99;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 5px;
}

/*Banner Section
.banner-area {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    color: var(--colorWhite);
    padding: 100px 0px;
}

.banner-area:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.1;
}

.banner-text {
    position: relative;
}

.banner-text h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--colorWhite);
}

.banner-text ul li {
    display: inline-block;
}

.banner-text ul li a {
    position: relative;
    font-size: 18px;
    color: var(--colorWhite);
}

.banner-text ul li a:after {
    content: "|";
    color: var(--colorWhite);
    font-size: 18px;
    margin: 0 5px 0 9px;
}

.banner-text ul li span {
    text-decoration: underline;
    text-underline-offset: 4px;
}
*/

/* ── Page Banner ── */
.banner-area {
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.banner-area::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(241,99,76,0.88) 0%, rgba(192,57,43,0.8) 40%, rgba(25,119,244,0.75) 100%);
    z-index: 1;
}
.banner-area::after {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='20' cy='20' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 2;
    pointer-events: none;
}
.banner-area-content {
    position: relative;
    z-index: 3;
    padding: 60px 0;
}
.banner-area h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.15;
}
.banner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0; padding: 0;
}
.banner-breadcrumb li {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    display: flex; align-items: center; gap: 10px;
}
.banner-breadcrumb li::after {
    content: '/';
    color: rgba(255,255,255,0.35);
}
.banner-breadcrumb li:last-child::after { display: none; }
.banner-breadcrumb li a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.3s;
}
.banner-breadcrumb li a:hover { color: #fff; }
.banner-breadcrumb li span { color: #fff; font-weight: 600; }
 


/*
-------------------------------
About Page
-------------------------------


.about1-text h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
}

.sing-name h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
}

.sing-name p {
    font-size: 16px;
    margin: 0;
}

.about1-bgimg {
    position: relative;
    min-height: 400px;
    height: 100%;
    border-radius: 10px;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.about1-inner {
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-25%, -50%);
    max-width: 300px;
    border-radius: 10px;
    border: 5px solid var(--colorPrimary);
}

.about1-inner img {
    border: 0 !important;
}

.mission-text h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.mission-img {
    position: relative;
    margin: 0 15px 11px 0px;
    z-index: 9;
}

.mission-img img {
    width: 100%;
    height: 100%;
}

.mission-img:before {
    position: absolute;
    content: "";
    left: -9px;
    top: -9px;
    width: 0;
    height: 0;
    border-top: 170px solid var(--colorPrimary);
    border-left: 170px solid transparent;
    border-radius: 8px;
    transform: rotate(270deg);
}

.mission-img:after {
    position: absolute;
    content: "";
    right: -9px;
    bottom: -9px;
    width: 0;
    height: 0;
    border-bottom: 170px solid var(--colorPrimary);
    border-left: 170px solid transparent;
    z-index: 2;
    border-radius: 8px;
}

.mission-img.vision-img:before {
    right: -9px;
    top: -9px;
    border-top: 170px solid var(--colorPrimary);
    border-left: 170px solid transparent;
}

.mission-img.vision-img:after {
    right: -9px;
    bottom: -9px;
    border-bottom: 170px solid var(--colorPrimary);
    border-left: 170px solid transparent;
}

.mission-img img {
    position: relative;
    z-index: 9;
    border-radius: 8px;
}

/* .counter-page {
    background-color: var(--colorPrimary);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
} */

/* ============================================
   ABOUT US PAGE
   ============================================ */
 
/* ── About Section ── */
.about-section-new {
    padding: 80px 0 100px;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.about-section-new::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(25,119,244,0.05) 0%, transparent 65%);
    top: -200px; right: -150px;
    pointer-events: none;
}
.about-section-new::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(241,99,76,0.04) 0%, transparent 65%);
    bottom: -100px; left: -80px;
    pointer-events: none;
}
 
/* Text block */
.about-text-wrap {
    position: relative;
    z-index: 1;
    padding-right: 40px;
}
.about-text-wrap h1,
.about-text-wrap h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: #0D1117;
    line-height: 1.2;
    margin-bottom: 20px;
}
.about-text-wrap h1 span,
.about-text-wrap h2 span {
    background: linear-gradient(135deg, #F1634C, #1977F4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-text-wrap p {
    font-size: 15px;
    color: #5A6478;
    line-height: 1.85;
    margin-bottom: 16px;
}
.about-text-wrap ul {
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.about-text-wrap ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #5A6478;
    line-height: 1.6;
}
.about-text-wrap ul li::before {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F1634C, #1977F4);
    flex-shrink: 0;
    margin-top: 6px;
}
 
/* Image frame */
.about-img-frame {
    position: relative;
    z-index: 1;
}
.about-img-bg {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    min-height: 420px;
}
.about-img-bg::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(241,99,76,0.15) 0%, rgba(25,119,244,0.15) 100%);
    z-index: 1;
    border-radius: 28px;
}
.about-img-bg img {
    position: relative;
    z-index: 2;
    width: 85%;
    border-radius: 20px;
    display: block;
    margin: 32px auto 0;
    box-shadow: 0 24px 60px rgba(25,119,244,0.18);
    object-fit: cover;
}
 
/* Floating stat card */
.about-float-stat {
    position: absolute;
    bottom: 28px;
    left: -20px;
    z-index: 4;
    background: #fff;
    border-radius: 18px;
    padding: 16px 22px;
    box-shadow: 0 12px 40px rgba(25,119,244,0.16);
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 180px;
}
.about-float-stat .stat-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(241,99,76,0.12), rgba(25,119,244,0.12));
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: #F1634C;
}
.about-float-stat strong {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 24px; font-weight: 800;
    background: linear-gradient(135deg, #F1634C, #1977F4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.about-float-stat span {
    font-size: 12px; color: #9AA3B2; font-weight: 500;
}
 
/* ── Mission / Vision Section ── */
.mission-section-new {
    padding: 80px 0 100px;
    background: #F8FAFE;
    position: relative;
    overflow: hidden;
}
.mission-section-new::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(241,99,76,0.02) 0%, rgba(25,119,244,0.03) 100%);
    pointer-events: none;
}
 
/* Row card */
.mv-row {
    background: #fff;
    border-radius: 28px;
    border: 1px solid #E8EDF5;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(25,119,244,0.07);
    margin-bottom: 32px;
    transition: box-shadow 0.3s;
}
.mv-row:last-child { margin-bottom: 0; }
.mv-row:hover { box-shadow: 0 16px 60px rgba(25,119,244,0.12); }
 
/* Image side */
.mv-img-col {
    position: relative;
    overflow: hidden;
    min-height: 360px;
}
.mv-img-col img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.mv-row:hover .mv-img-col img { transform: scale(1.04); }
 
/* Gradient overlay on image */
.mv-img-col::after {
    content: '';
    position: absolute; inset: 0;
    pointer-events: none;
}
.mv-img-col.overlay-right::after {
    background: linear-gradient(to left, #fff 0%, transparent 40%);
}
.mv-img-col.overlay-left::after {
    background: linear-gradient(to right, #fff 0%, transparent 40%);
}
 
/* Text side */
.mv-text-col {
    padding: 50px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mv-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(241,99,76,0.08), rgba(25,119,244,0.08));
    border: 1px solid rgba(25,119,244,0.12);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: #1977F4;
    margin-bottom: 20px;
    width: fit-content;
}
.mv-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F1634C, #1977F4);
}
.mv-text-col h2,
.mv-text-col h3 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 800;
    color: #0D1117;
    line-height: 1.25;
    margin-bottom: 18px;
}
.mv-text-col h2 span,
.mv-text-col h3 span {
    background: linear-gradient(135deg, #F1634C, #1977F4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mv-text-col p {
    font-size: 15px;
    color: #5A6478;
    line-height: 1.85;
    margin-bottom: 14px;
}
.mv-text-col ul {
    list-style: none;
    padding: 0; margin: 0 0 16px;
    display: flex; flex-direction: column; gap: 10px;
}
.mv-text-col ul li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: #5A6478; line-height: 1.6;
}
.mv-text-col ul li::before {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F1634C, #1977F4);
    flex-shrink: 0; margin-top: 6px;
}
 
/* Decorative number */
.mv-number {
    position: absolute;
    font-family: 'Syne', sans-serif;
    font-size: 120px; font-weight: 900;
    color: rgba(25,119,244,0.04);
    line-height: 1;
    right: 24px; bottom: -10px;
    pointer-events: none;
    user-select: none;
}
 
/* ── Responsive ── */
@media (max-width: 991px) {
    .about-text-wrap { padding-right: 0; margin-bottom: 40px; }
    .about-float-stat { left: 12px; bottom: 12px; }
    .mv-text-col { padding: 36px 28px; }
    .mv-img-col { min-height: 280px; }
    .mv-img-col.overlay-right::after,
    .mv-img-col.overlay-left::after { display: none; }
}
@media (max-width: 767px) {
    .about-section-new,
    .mission-section-new { padding: 56px 0 72px; }
    .mv-text-col { padding: 28px 20px; }
}



/*
-------------------------------
Contact Page
-------------------------------
*/

.contact-info-item {
    box-shadow: 0 3.4px 2.7px -30px rgba(0, 0, 0, 0.059), 0 8.2px 8.9px -30px rgba(0, 0, 0, 0.071), 0 25px 40px -30px rgba(0, 0, 0, 0.2);
    color: var(--colorWhite);
    border-radius: 8px;
}

.contact-info-item.bg1 {
    background: var(--colorSecondary);
}

.contact-info-item.bg2 {
    background: var(--colorPrimary);
}

.contact-info-item.bg3 {
    background: var(--colorSecondary);
}

.contact-info-item .contact-info {
    padding: 22px 30px 25px;
    margin-top: 25px;
}

.contact-info-item .contact-info span {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: var(--colorWhite);
}

.contact-info-item .contact-info span i {
    margin-right: 5px;
}

.contact-info-item .contact-text p {
    margin-bottom: 3px;
    font-size: 17px;
}

.contact-info-item .contact-text a {
    font-size: 20px;
    font-weight: 600;
    color: var(--colorWhite);
}

.contauct-style1 .form-group label {

    font-weight: 600;
}

.form-control {
    border: 1px solid #bfbfbf;
    height: 44px;
    box-shadow: none;
    background: none;
    border-radius: 6px;
}

.form-control:focus {
    box-shadow: none;
}

textarea.form-control {
    height: 170px;
}

.form-control label {
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-form .btn {
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    padding: 14px 30px;
    border: 1px solid var(--colorPrimary);
    background: var(--colorPrimary);
    color: var(--colorWhite);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 6px;
}

.contact-form .btn:hover {
    border: 1px solid var(--colorSecondary);
    background: var(--colorSecondary);
}


/*
-------------------------------
Photo Gallery
-------------------------------
*/

.gallery-photo {
    position: relative;
    margin-top: 30px;
}

.gallery-photo .gallery-icon {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    margin-top: -18px;
    opacity: 0;
    z-index: 11;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.gallery-photo .gallery-icon a {
    font-size: 24px;
    color: var(--colorWhite);
}

.gallery-photo:hover .gallery-icon {
    opacity: 1;
}

.hover1,
.hover2,
.hover3,
.hover4 {
    position: absolute;
    height: 50%;
    width: 50%;
    background: var(--colorSecondary);
    opacity: 0;
    z-index: 8;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.hover1 {
    bottom: 0;
    left: 0;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}

.hover2 {
    top: 0;
    left: 0;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
}

.hover3 {
    top: 0;
    right: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
}

.hover4 {
    bottom: 0;
    right: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
}

.hover-item:hover .hover1,
.hover-item:hover .hover2,
.hover-item:hover .hover3,
.hover-item:hover .hover4 {
    opacity: 1;
    -webkit-transform: translate(0, 0) scale(1);
    -moz-transform: translate(0, 0) scale(1);
    -ms-transform: translate(0, 0) scale(1);
    -o-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1);
}

.gallery-photo.hover-item:hover .hover1,
.gallery-photo.hover-item:hover .hover2,
.gallery-photo.hover-item:hover .hover3,
.gallery-photo.hover-item:hover .hover4 {
    opacity: 0.7;
}


/*
-------------------------------
Video Gallery
-------------------------------
*/

.video-item:before {
    border-top: 130px solid var(--colorPrimary);
}

.video-item:after {
    border-bottom: 130px solid var(--colorPrimary);
}


/*
-------------------------------
Category
-------------------------------
*/

.catagory-img-holder {
    overflow: hidden;
    position: relative;
}

.catagory-img-holder img {
    max-width: 100%;
    height: auto;
    width: 100%;
    border-radius: 10px 10px 15px 15px;
}

.catagory-text {
    background-color: rgb(6 116 195 / 40%);
    bottom: 0;
    display: inline-block;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    transition: opacity .2s ease-in-out;
    -webkit-transition: opacity .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out;
    -ms-transition: opacity .2s ease-in-out;
    visibility: visible;
    overflow: hidden;
    width: 100%;
    z-index: 200;
}

.catagory-item:hover .catagory-text {
    opacity: 1;
}

.catagory-text-table {
    display: table;
    text-align: center;
    vertical-align: middle;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 7%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.catagory-text-cell {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

ul.catagory-hover {
    list-style: none;
    margin: 0;
    padding: 0;
}

.catagory-hover li a {
    display: block;
    color: var(--colorWhite);
    font-size: 12px;
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 50%;
    background-color: var(--colorSecondary);
    margin: 0 auto;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.catagory-hover li a:hover {
    background-color: var(--colorBlack);
}

.catagory-name h5 {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 0px;
}

.catagory-name h5 a {
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.catagory-name h5 a:hover {
    color: var(--colorSecondary);
}


/*
-------------------------------
Event
-------------------------------
*/

.event-item {
    overflow: hidden;
}

.event-img {
    position: relative;
}

.event-date {
    position: absolute;
    border-color: var(--colorSecondary) transparent;
    border-style: solid;
    border-width: 120px 120px 0px 0px;
    top: 0px;
    left: 0px;
    content: "";
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.blue .event-date {
    border-color: var(--colorPrimary) transparent;
}

.event-date h5 {
    color: var(--colorWhite);
    left: 15px;
    padding: 0;
    top: -110px;
    position: absolute;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 0px;
    line-height: 1.3;
}

.event-date h5 span {
    font-size: 14px;
    font-weight: 600;
    display: block;
    color: var(--colorWhite);
}

.event-counter {
    padding: 17px 20px;
    text-align: center;
    background-color: var(--colorSecondary);
}

.blue .event-counter {
    background-color: var(--colorPrimary);
}

.event-counter ul li {
    color: var(--colorWhite);
    display: inline-block;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    padding: 0 15px;
}

.event-counter ul li:first-child {
    padding-left: 0;
}

.event-counter ul li:last-child {
    border-right: 0;
    padding-right: 0;
}

.event-counter ul li p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.event-counter ul li span {
    font-size: 14px;
}

.event-text {
    padding: 30px;
    background: var(--colorWhite);
    -webkit-box-shadow: 0px 15px 25px 0px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 15px 25px 0px rgba(0, 0, 0, 0.07);
}

.event-text h3 {
    margin-bottom: 15px;
}

.event-text h3 a {
    font-size: 26px;
    font-weight: 600;
    color: var(--colorPrimary);
}

.event-text ul li {
    display: block;
    margin-top: 10px;
}

.event-text ul li i {
    margin-right: 5px;
}


/*
-------------------------------
Event Detail
-------------------------------
*/

.event-detail-tab ul {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 0;
    background: var(--colorPrimary);
}

.event-detail-tab ul li a {
    position: relative;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    display: block;
    background: var(--colorPrimary);
    padding: 15px 20px;
    text-decoration: none;
    color: var(--colorWhite);
}

.event-detail-tab ul li a.active {
    color: var(--colorSecondary);
    background: var(--colorWhite);
    border-left: 1px solid var(--borderColor);
}

.event-detail-tab ul li a.active:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--colorSecondary);
}

.event-detail-content {
    padding: 30px;
    border: 1px solid var(--borderColor);
    border-top: 0;
}

.event-info ul li {
    display: block;
    position: relative;
    padding: 15px 0;
    border-bottom: 1px dashed #d3d3d3;
}

.event-info ul li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.event-info ul li span {
    display: inline-block;
    font-weight: 600;
    width: 125px;
}

.event-form input {
    height: 44px;
    box-shadow: none;
    border: 1px solid var(--borderColor);
    margin-bottom: 10px;
    border-radius: 5px;
}

.event-form textarea {
    height: 150px;
    border: 1px solid var(--borderColor);
    margin-bottom: 10px;
    border-radius: 5px;
}

.contact-form .form-control {
    border-radius: 5px;
    margin-bottom: 0 !important;
}

.event-form .btn {
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    padding: 14px 30px;
    border: 1px solid var(--colorPrimary);
    background: var(--colorPrimary);
    color: var(--colorWhite);
    border-radius: 5px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.event-form .btn:hover {
    border: 1px solid var(--colorSecondary);
    background: var(--colorSecondary);
}


/*
-------------------------------
Price-Table
-------------------------------
*/

.price-item {
    text-align: center;
    background: var(--colorWhite);
    border: 1px solid var(--borderColor);
    transform: scale(1);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.price-item:hover {
    transform: scale(1.04);
    -webkit-box-shadow: 0 0 4px 1px var(--borderColor);
    box-shadow: 0 0 4px 1px var(--borderColor);
}

.price-table:nth-child(2) .price-header {
    background: var(--colorSecondary);
}

.price-table:nth-child(2) .price-header h3 {
    background: #e4442a;
}

.price-table:nth-child(2) .button a {
    background: var(--colorSecondary);
}

.price-header {
    background: #3279e4;
    padding-bottom: 16px;
}

.price-header h3 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 7px;
    background: #2764d4;
    color: var(--colorWhite);
    padding: 12px 0;
}

.price-header h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--colorWhite);
    padding-top: 5px;
    margin-bottom: 0;
}

.price-header p {
    margin: 0;
    color: var(--colorWhite);
}

.price-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.price-body li {
    padding: 15px 0;
    border-bottom: 1px solid var(--borderColor);
}

.price-footer {
    padding: 15px 0;
}

.price-item .button a {
    display: inline-block;
    font-weight: 600;
    color: var(--colorWhite);
    background: #1c63b8;
    border-radius: 50px;
    padding: 12px 26px;
    text-decoration: none;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}


/*
-------------------------------
Case Study
-------------------------------


.case-item .case-image {
    position: relative;
    overflow: hidden;
    background: var(--colorWhite);
    border-radius: 8px;
}

.case-item .case-image .overlay {
    position: absolute;
    text-align: center;
    left: 0px;
    top: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    width: 100%;
    height: 0%;
    background: rgb(6 116 195 / 50%);
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    opacity: 0;
    visibility: hidden;
}

.case-item .case-box:hover .overlay {
    height: 100%;
    -webkit-transition: all 0.7s;
    -o-transition: all 0.7s;
    transition: all 0.7s;
    opacity: 1;
    visibility: visible;
}

.case-item .case-content {
    position: relative;
    padding: 25px 0px 0;
    background: var(--colorWhite);
    border-top: 0px;
    text-align: center;
}

.case-item .case-content .title {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 20px;
}

.case-item .case-content .title a {
    font-size: 24px;
    color: var(--colorBlack);
    font-weight: 700;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.case-item .case-content .title a:hover {
    color: var(--colorBlack);
}

.case-item .case-content .title:after {
    position: absolute;
    content: '';
    left: 50%;
    bottom: 2px;
    width: 15px;
    height: 2px;
    background-color: var(--colorSecondary);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.case-item .case-box:hover h4:after {
    width: 50px;
}

.case-item .case-content .title:before {
    position: absolute;
    content: '';
    left: 50%;
    bottom: -5px;
    width: 30px;
    height: 2px;
    background-color: var(--colorPrimary);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.case-item .case-content p {
    margin: 0;
}

.btn-case {
    position: relative;
    padding: 11px 40px;
    line-height: 24px;
    color: var(--colorBlack);
    text-align: center;
    border-radius: 6px;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    background: var(--colorWhite);
    border: 2px solid var(--colorWhite);
}
*/
/* ===== DEPARTMENTS ===== */
.dept-section-new {
    padding: 70px 0;
    background: #fff;
}
.dept-card-new {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    height: 280px;
}
.dept-card-new img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
    display: block;
}
.dept-card-new:hover img { transform: scale(1.08); }
.dept-card-new .dept-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(13,17,23,0.9) 100%);
    transition: background 0.3s;
}
.dept-card-new:hover .dept-overlay {
    background: linear-gradient(180deg, rgba(25,119,244,0.15) 0%, rgba(241,99,76,0.7) 100%);
}
.dept-card-new .dept-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 24px;
    display: flex; align-items: flex-end; justify-content: space-between;
}
.dept-card-new .dept-title {
    font-family: var(--font-display);
    font-size: 18px; font-weight: 700;
    color: #fff; margin: 0;
    line-height: 1.3;
}
.dept-card-new .dept-arrow {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transform: translateX(60px);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
}
.dept-card-new:hover .dept-arrow { transform: translateX(0); opacity: 1; }
.dept-card-new .dept-arrow svg { width: 16px; fill: #fff; }



/*
-------------------------------
Product
-------------------------------
*/

.shop-ascending {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.shop-ascending label {
    font-size: 16px;
    font-weight: 600;
    margin-right: 15px;
    margin-bottom: 0;
}

.custom-select {
    height: 44px;
    border: 1px solid #bfbfbf;
    border-radius: 0;
    padding: 5px 15px;
}

.shop-ascending .custom-select {
    height: 42px;
    max-width: 220px;
    border: 1px solid #bfbfbf;
    border-radius: 0;
}

.custom-select:focus {
    border-color: #bfbfbf;
    outline: 0;
    box-shadow: none;
}

.product-item {
    position: relative;
}

.product-image {
    display: block;
    position: relative;
    background-color: #fafafa;
    border: 1px solid #e8e8e8;
    transition: all .3s;
}

.pro-img-hold {
    display: block;
}

.pro-img-hold:before {
    background-color: rgba(0, 0, 0, 0.1);
    bottom: 0;
    content: '';
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    transition: all .3s;
    visibility: hidden;
}

.product-item:hover .pro-img-hold:before {
    opacity: 1;
    visibility: visible;
}

.pro-quick {
    text-align: center;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--colorPrimary);
    color: var(--colorWhite);
    padding: 15px 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s;
}

.pro-quick:hover {
    background-color: var(--colorBlack);
    color: var(--colorWhite);
}

.product-item:hover .pro-quick {
    opacity: 1;
    visibility: visible;
}

.product-content {
    text-align: center;
    padding: 15px;
    box-shadow: 0 3px 14px 0px rgba(0, 0, 0, 0.1);
}

.pro-rating i {
    font-size: 14px;
    color: #fca309;
}

.pro-title {
    line-height: 0.5;
    margin-bottom: 12px;
}

.pro-title a {
    font-size: 18px;
    font-weight: 600;
    color: var(--colorBlack);
}

.pro-title a:hover {
    color: var(--colorSecondary);
}

.pro-price {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-action {
    align-items: center;
    display: flex;
    justify-content: center;
}

.product-action .action-btn {
    align-items: center;
    background-color: #f4f4f4;
    border: 1px solid #d8d8d6;
    color: #302e2a;
    display: inline-flex;
    font-size: 16px;
    height: 43px;
    justify-content: center;
    min-width: 40px;
    position: relative;
    transition: all .3s;
    text-decoration: none;
    text-align: center;
}

.product-action .action-btn.add-wishlist {
    right: -42px;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

.product-item:hover .product-action .action-btn.add-wishlist {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.product-action .action-btn.add-wishlist:hover {
    background-color: var(--colorPrimary);
    border-color: var(--colorPrimary);
    color: var(--colorWhite);
}

.product-action .action-btn.add-cart {
    background-color: var(--colorSecondary);
    border: 1px solid var(--colorSecondary);
    color: var(--colorWhite);
    font-weight: 600;
    min-width: 115px;
    padding: 0 2px;
    z-index: 2;
}

.product-action .action-btn.add-cart:hover {
    background-color: var(--colorBlack);
    border-color: var(--colorBlack);
    color: var(--colorWhite);
}

.product-action .action-btn.add-compare {
    left: -42px;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

.product-action .action-btn.add-compare:hover {
    background-color: var(--colorPrimary);
    border-color: var(--colorPrimary);
    color: var(--colorWhite);
}

.product-item:hover .product-action .action-btn.add-compare {
    left: 0;
    opacity: 1;
    visibility: visible;
}


/* Shop-Sidebar */

.shop-sidebar {
    margin-top: 30px;
    border: 1px solid #e1e1e1;
    padding: 15px;
}

.shop-widget {
    margin-top: 40px;
}

.shop-widget:first-child {
    margin-top: 0;
}

.shop-widget h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.shop-widget ul li a {
    display: block;
    background: #edf0fa;
    color: #40436a;
    padding: 20px 35px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    -moz-transition: all 300ms ease-out 0s;
    -webkit-transition: all 300ms ease-out 0s;
    -ms-transition: all 300ms ease-out 0s;
    -o-transition: all 300ms ease-out 0s;
    transition: all 300ms ease-out 0s;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.shop-widget ul li a i {
    font-weight: 600;
    font-size: 14px;
    margin-right: 7px;
}

.shop-widget li.active a i {
    margin-right: 12px;
}

.shop-widget ul li.active a,
.shop-widget ul li a:hover {
    background-color: var(--colorPrimary);
    color: var(--colorWhite);
    padding-left: 45px;
}

.price-range p {
    font-size: 16px;
    margin-bottom: 15px;
}

.price-range span {
    font-weight: 600;
}

.shop-widget .ui-widget.ui-widget-content {
    border: 1px solid #e1e1e1;
}

.shop-widget .ui-widget-header {
    background: var(--colorSecondary);
}

.shop-widget .ui-state-default,
.shop-widget .ui-widget-content .ui-state-default {
    border: 1px solid #e1e1e1;
}

.shop-widget .ui-state-active,
.shop-widget .ui-widget-content .ui-state-active {
    background: var(--colorPrimary);
    border: 1px solid var(--colorPrimary);
}

.shop-widget .button-df a {
    display: inline-block;
    font-weight: 600;
    color: var(--colorWhite);
    background: var(--colorPrimary);
    border-radius: 1px;
    padding: 10px 30px;
    text-decoration: none;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    margin-top: 15px;
}

.shop-widget .button-df a:hover {
    background: var(--colorSecondary);
}

.product-rated-item {
    display: table;
    width: 100%;
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.product-rated-item:last-child {
    border-bottom: 0px;
    margin-bottom: 0;
    padding-bottom: 0;
}

.product-rated-photo {
    vertical-align: top;
    display: table-cell;
    float: left;
    width: 105px;
    padding-right: 8px;
}

.product-rated-photo img {
    max-width: 100%;
    height: auto;
}

.product-rated-text {
    vertical-align: top;
    display: table-cell;
    width: 100%;
    padding-left: 5px;
}

.product-rated-text h3 {
    margin-bottom: 0;
}

.product-rated-text a {
    font-size: 16px;
    text-decoration: none;
    color: var(--colorBlack);
    margin-bottom: 5px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.product-rated-text a:hover {
    color: var(--colorSecondary);
}

.product-rated-text h5 {
    font-size: 14px;
    margin-bottom: 5px;
}

.product-rated-text del {
    margin-left: 8px;
}

.shop-widget ul li span {
    margin-left: 15px;
}


/*
-------------------------------
Single-Shop
-------------------------------
*/

.product-photo-item {
    padding: 60px;
}

.shop-detail-text {
    margin-top: 30px;
}

.shop-detail-text h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.shop-detail-text h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.shop-detail-text h4 del {
    font-size: 20px;
    font-weight: 400;
    margin-left: 8px;
    color: red;
}

.shop-detail-text p {
    margin: 0;
    margin-top: 15px;
}

.shop-detail-choose .custom-select {
    height: 44px;
    border: 1px solid var(--borderColor);
    border-radius: 0;
    margin-top: 15px;
}

.shop-detail-choose {
    margin-top: 15px;
}

.shop-detail-cart {
    margin-top: 15px;
}

.shop-detail-cart ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.shop-detail-cart ul li {
    display: inline-block;
    margin-top: 15px;
    margin-right: 15px;
}

.shop-detail-cart ul li a.cart-btn {
    font-weight: 600;
    display: inline-block;
    background: var(--colorSecondary);
    color: var(--colorWhite);
    text-decoration: none;
    padding: 15px 25px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.shop-detail-cart ul li a.cart-btn:hover {
    color: var(--colorWhite);
    background: var(--colorPrimary);
}

.shop-detail-cart ul li i {
    margin-right: 5px;
}

.shop-detail-cart ul li .ui-spinner {
    width: 125px;
    border: 1px solid var(--colorSecondary);
    border-radius: 0;
    margin-bottom: 1px;
}

.shop-detail-cart ul li input {
    font-size: 16px;
    height: 50px;
    text-indent: 30px;
    margin: 0;
    padding: 0;
}

.shop-detail-cart ul li .ui-button {
    cursor: pointer;
    padding: 0 25px;
    border-left: 1px solid var(--colorSecondary);
    border-radius: 0;
    background: var(--colorSecondary);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.shop-detail-cart ul li .ui-button:hover {
    background: var(--colorPrimary);
    border-left: 1px solid var(--colorPrimary);
}

.shop-detail-cart ul li .ui-button .ui-icon {
    background-image: url("../images/ui-icons_ffffff_256x240.png");
}

.shop-detail-cart ul li .ui-button:hover .ui-icon {
    background-image: url("../images/ui-icons_ffffff_256x240.png");
}

.shop-detail-cat {
    margin-top: 30px;
}

.shop-detail-cat p {
    margin: 0;
}

.shop-detail-cat span {
    font-weight: 600;
}

.shop-detail-tab ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.shop-detail-tab ul li {
    display: inline-block;
    margin-top: 15px;
    margin-right: 15px;
}

.shop-detail-tab ul li:last-child {
    margin-right: 0;
}

.shop-detail-tab ul li a {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--colorBlack);
    background: var(--colorSecondary);
    padding: 12px 25px;
    text-decoration: none;
}

.shop-detail-tab ul li a.active {
    color: var(--colorWhite);
    background: #26476c;
}

.shop-detail-content {
    margin-top: 30px;
}

.review-table h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.review-table .table thead th,
.review-table .table tbody td {
    text-align: left;
}

.review-form h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.review-form label {
    font-size: 16px;
    font-weight: 600;
}

.review-form .review-star {
    font-size: 14px;
    color: #fca309;
}

.review-form textarea {
    height: 220px;
}

.ratings-table {
    width: 100%;
    margin: 20px 0;
    border: 1px solid #dae2e6;
}

.ratings-table thead th {
    padding: 8px;
    background-color: #f6f6f6;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
}

.ratings-table thead th,
.ratings-table tbody td {
    border-right: 1px solid #dae2e6;
    border-bottom: 1px solid #dae2e6;
    line-height: 1.3;
}

.ratings-table tbody td {
    padding: 15px;
    font-size: 16px;
    text-align: center;
    vertical-align: middle;
}

.review-form .btn {
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 12px 25px;
    border: 1px solid var(--colorPrimary);
    border-radius: 0;
    background: var(--colorPrimary);
    color: var(--colorWhite);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.review-form .btn:hover {
    color: var(--colorWhite);
    background: var(--colorSecondary);
    border: 1px solid var(--colorSecondary);
}


/* Recent-Product */

.owlproduct-carousel .owl-nav .owl-prev,
.owlproduct-carousel .owl-nav .owl-next {
    text-align: center;
    font-size: 18px;
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 38px;
    top: 0;
    margin-top: -20px;
    background: var(--colorSecondary);
    color: var(--colorBlack);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.owlproduct-carousel .owl-nav .owl-prev {
    right: 0;
    margin-right: 40px;
}

.owlproduct-carousel .owl-nav .owl-next {
    right: 0;
    margin-right: 0px;
}

.owlproduct-carousel .owl-nav .owl-prev:hover,
.owlproduct-carousel .owl-nav .owl-next:hover {
    color: var(--colorWhite);
    background: #26476c;
}


/* Relative Product Carousel Nav */

.owl-carousel.relative-product-carousel .owl-nav .owl-prev,
.owl-carousel.relative-product-carousel .owl-nav .owl-next {
    text-align: center;
    font-size: 15px;
    position: absolute;
    width: 38px;
    height: 35px;
    line-height: 36px;
    top: 0;
    margin-top: -15px;
    background: var(--colorSecondary);
    color: var(--colorWhite);
    border-radius: 2px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.owl-carousel.relative-product-carousel .owl-nav .owl-prev {
    right: 0;
    margin-right: 46px;
}

.owl-carousel.relative-product-carousel .owl-nav .owl-next {
    right: 0;
    margin-right: 0px;
}

.owl-carousel.relative-product-carousel .owl-nav .owl-prev:hover,
.owl-carousel.relative-product-carousel .owl-nav .owl-next:hover {
    color: var(--colorWhite);
    background: var(--colorBlack);
}


/* Relative owl dots */

.owl-carousel.relative-product-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-carousel.relative-product-carousel .owl-dots .owl-dot {
    width: 18px;
    height: 18px;
    background: var(--colorWhite);
    border: 5px solid var(--colorPrimary);
    border-radius: 50%;
    display: inline-block;
    margin: 0 3px;
}

.owl-carousel.relative-product-carousel .owl-dots .owl-dot.active {
    width: 18px;
    height: 18px;
    background: var(--colorWhite);
    border: 5px solid var(--colorSecondary);
}


/*Single Shop Swiper*/

.shop-area .swiper-container {
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.pro-detail-top {
    height: 80%;
    width: 100%;
}

.pro-detail-thumbs {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.pro-detail-thumbs .swiper-slide {
    height: 100%;
    opacity: 0.4;
}

.pro-detail-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.pro-detail-thumbs .swiper-slide img {
    border-radius: 6px;
    width: 100%;
    object-fit: cover;
}


/*
-------------------------------
Shop-Cart
-------------------------------
*/

.cart-table .table {
    width: 100%;
}

.table {
    margin-bottom: 0;
}

.table thead th,
.table tbody td {
    vertical-align: middle;
    text-align: center;
    border: 1px solid #e1e1e1;
}

.cart-table .table thead th {
    font-size: 16px;
    font-weight: 600;
    color: var(--colorBlack);
    padding: 15px 5px;
}

.cart-table th.c-name {
    min-width: 140px;
}

.cart-table th.c-qnt {
    min-width: 120px;
}

.cart-table th.c-number {
    min-width: 60px;
}

.cart-table th.c-price,
.cart-table th.c-total {
    min-width: 90px;
}

.cart-table .table tbody td {
    font-size: 16px;
    color: var(--colorBlack);
}

.cart-table .table tbody td span {
    font-weight: 600;
}

.cart-table .table tbody td a {
    font-size: 16px;
    color: var(--colorBlack);
    text-decoration: none;
}

.cart-table .table tbody td a:hover {
    color: var(--colorSecondary);
}

.cart-table .table tbody td img {
    max-width: 80px;
    height: auto;
}

.cart-table .table tbody td input {
    border: 1px solid #e1e1e1;
    padding: 10px 15px;
    width: 85px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.cart-table .table tbody td input:focus {
    border-color: var(--colorSecondary);
}

.cart-action {
    margin-top: 25px;
}

.update-cart {
    margin-top: 15px;
    float: left;
    margin-right: 6px;
}

.update-cart a {
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
    padding: 15px 30px;
    background: var(--colorSecondary);
    color: var(--colorWhite);
    margin-bottom: 5px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.update-cart a:hover {
    background: var(--colorPrimary);
    color: var(--colorWhite);
}

.coupon-cart {
    font-size: 16px;
    max-width: 380px;
    height: 54px;
    margin-top: 15px;
}

.ck-cart.coupon-cart {
    max-width: 100%;
}

.coupon-cart .form-control {
    height: 54px;
    font-size: 16px;
    border: 1px solid #bfbfbf;
    border-radius: 0;
}

.coupon-cart .btn {
    cursor: pointer;
    height: 54px;

    font-size: 16px;
    font-weight: 600;
    border: 1px solid var(--colorSecondary);
    border-radius: 0;
    background: var(--colorSecondary);
    color: var(--colorWhite);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.tax-btn.btn {
    cursor: pointer;
    padding: 12px 30px;

    font-size: 16px;
    font-weight: 600;
    border: 1px solid var(--colorSecondary);
    border-radius: 0;
    background: var(--colorSecondary);
    color: var(--colorWhite);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.tax-btn.btn:hover {
    border: 1px solid var(--colorPrimary);
    background: var(--colorPrimary);
    color: var(--colorWhite);
}

.btn.focus,
.btn:focus {
    box-shadow: none;
}

.coupon-cart .btn:hover {
    border: 1px solid var(--colorPrimary);
    background: var(--colorPrimary);
    color: var(--colorWhite);
}

.total-cart h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1;
}

.total-cart td {
    text-align: left !important;
    padding: 12px;
}

.total-cart td.t-bold {
    font-size: 18px;
    font-weight: 600;
    padding: 15px 12px;
}

.proceed-cart {
    margin-top: 15px;
}

.proceed-cart a {
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
    padding: 15px 30px;
    background: var(--colorSecondary);
    color: var(--colorWhite);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.proceed-cart a:hover {
    background: var(--colorPrimary);
    color: var(--colorWhite);
}

.cart-shipping .faq-item {
    border: 1px solid var(--borderColor);
    box-shadow: none;
}

.cart-shipping .faq-header button.faq-button {
    font-size: 18px !important;
    padding: 16px 12px;
    background: transparent;
    color: var(--colorBlack);
    border-bottom: 1px solid var(--borderColor);
}

.cart-shipping .faq-header button.faq-button.collapsed {
    border-bottom: 0;
}

.cart-ship-body {
    padding: 0 15px;
}


/*
-------------------------------
Check Out
-------------------------------
*/

.checkout-table h4,
.checkout-form h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.payment-select h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.checkout-form {
    margin-top: 30px;
}

.checkout-form textarea {
    height: 120px;
}

.checkout-table {
    margin-top: 30px;
}

.order_modal .table_border thead tr th,
.detail-dashboard .table_border thead tr th,
.checkout-table thead tr th {
    background: var(--colorPrimary);
    color: var(--colorWhite);
}

.order_modal .table_border,
.detail-dashboard .table_border,
.checkout-table .table_border {
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    overflow: hidden;
    border-right: 0;
}

.order_modal .table_border table tr th,
.order_modal .table_border table tr td,
.detail-dashboard .table_border table tr th,
.detail-dashboard .table_border table tr td,
.checkout-table table tr th,
.checkout-table table tr td {
    border: none;
    border-right: 1px solid #e1e1e1;
}

.checkout-table table th,
.checkout-table table td {
    text-align: left;
}

.checkout-table table th {
    font-weight: 600;
    color: var(--colorBlack);
}

.checkout-table table td.t-bold {
    font-size: 15px;
    font-weight: 600;
    color: var(--colorBlack);
}

.payment-select {
    margin-top: 30px;
}

.payment-select.headstyle h4:before {
    width: 118px;
    left: 50%;
    margin-left: -59px;
}

.payment-order-button {
    margin-top: 30px;
    text-align: center;
}

.payment-order-button button {
    display: block;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    color: var(--colorWhite);
    background: var(--colorSecondary);
    padding: 15px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.payment-order-button a {
    display: block;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    color: var(--colorWhite);
    background: var(--colorSecondary);
    padding: 15px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.razorpay-payment-button {
    display: block;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    color: var(--colorWhite);
    background: var(--colorSecondary);
    padding: 15px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.payment-order-button a:hover {
    color: var(--colorWhite);
    background: var(--colorPrimary);
}

.d_block {
    display: block;
}

.d_none {
    display: none;
}


/*
-------------------------------
Dashboard Page
-------------------------------
*/

.dashboard-area {
    background: #f5f7f9;
}

.dashboard-account-info {
    text-align: center;
    background: #22acf4;
    padding: 25px 15px;
    border-radius: 8px;
}

.dashboard-account-info img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover !important;
}

.dashboard-account-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--colorWhite);
    margin-top: 10px;
    margin-bottom: 2px;
}

.dashboard-account-info p {
    font-size: 14px;
    color: var(--colorWhite);
    margin-bottom: 0px;
}

.dashboard-widget li a {
    display: block;
    padding: 15px 22px;
    color: var(--colorWhite);
    font-size: 16px;
    border-radius: 5px;
    margin: 4px 0;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.dashboard-widget li i {
    font-size: 14px;
}

.dashboard-widget li:first a {
    border-top: 1px solid #EDEDDE;
}

.dashboard-widget li a::before {
    border-left: 4px solid var(--colorWhite);
}

.dashboard-widget li.active a,
.dashboard-widget li a:hover {
    background: var(--colorSecondary);
    padding-left: 28px;
}

.detail-dashboard {
    background: var(--colorWhite);
    box-shadow: 0 40px 70px 0 rgba(0, 0, 0, .05);
    padding: 35px;
    border-radius: 8px;
}

.dataTables_wrapper .dataTables_filter input {
    height: 25px;
    text-indent: 10px;
    font-weight: 400;
    border: 1px solid var(--borderColor);
}

.detail-dashboard .d-headline {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 12px;
    position: relative;
}

.detail-dashboard .d-headline:before {
    content: '';
    border: 1px solid var(--colorPrimary);
    width: 8px;
    position: absolute;
    bottom: 0px;
    left: 0;
}

.detail-dashboard .d-headline:after {
    content: '';
    border: 1px solid var(--colorPrimary);
    width: 30px;
    position: absolute;
    bottom: 0px;
    left: 11px;
}

.detail-dashboard label {
    font-weight: 600;
}

.add-form .form-control {
    border: 1px solid #bfbfbf !important;
    height: 46px !important;
    border-radius: 6px !important;
}

.add-form input[type="file"] {
    padding: 10px 10px;
}

.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #bfbfbf;
    border-radius: 6px;
    height: 46px;
    line-height: 46px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #495057;
    line-height: 46px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px;
}

.add-form .btn {
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    padding: 12px 40px;
    border: 1px solid var(--colorPrimary);
    background: var(--colorPrimary);
    color: var(--colorWhite);
    border-radius: 6px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.add-form .btn:hover {
    border: 1px solid var(--colorSecondary);
    background: var(--colorSecondary);
}

.add-form span {
    font-size: 15px;
    color: #e02b27;
}

.dash-item {
    background: var(--colorPrimary);
    color: var(--colorWhite);
    padding: 30px 30px;
    border-radius: 6px;
    position: relative;
}

.dash-item.db-red {
    background: #fa4a4a;
}

.dash-item.db-green {
    background: #0cbf6d;
}

.dash-item.db-yellow {
    background: #f49c19;
}

.dash-item i {
    font-size: 20px;
    color: var(--colorWhite);
    width: 50px;
    height: 50px;
    background: #dddddd57;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    margin: 0 auto;
    position: absolute;
    top: 15px;
    left: 15px;
}

.dash-item h4 {
    font-size: 18px;
    margin-bottom: 0px;
    color: var(--colorWhite);
    font-weight: 600;
    text-align: center;
}

.dash-item h2 {
    font-size: 36px;
    margin: 0;
    color: var(--colorWhite);
    font-weight: 900;
    text-align: center;
}

.detail-dashboard .db-bt-ed {
    font-size: 14px;
    display: inline-block;
    background: #0cbf6d;
    width: 65px;
    text-align: center;
    color: var(--colorWhite);
    padding: 3px 0;
    border-radius: 3px;
}

.detail-dashboard .db-bt-ed.bgc {
    background: #fa4a4a;
}

.detail-dashboard .db-bt-ed:hover {
    background: var(--colorBlack);
}

.coustom-dashboard th,
.coustom-dashboard td {
    padding: 0.75rem;
    border: 1px solid var(--borderColor);
}

.coustom-dashboard tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

/* #main-slider {
    position: relative;
} 

.doc-search-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.slider .v-mid-content {
    width: 100%;
    margin-bottom: 20px;
}

.v-mid-content .heading {
    margin-bottom: 30px;
}

.v-mid-content .heading h2 {
    color: var(--colorWhite);
    font-size: 54px;
    font-weight: 700;
}

.v-mid-content .heading p {
    color: var(--colorWhite);
    font-size: 18px;
}

.v-mid-content .select2-container {
    width: 200px !important;
}

.v-mid-content .select2-container--default .select2-selection--single {
    border-color: var(--colorWhite);
    border-radius: 3px;
}

.doc-search-section .box,
.doc-search-section .doc-search-button {
    display: inline-block;
    vertical-align: top;
    padding-left: 2px;
    padding-right: 2px;
}

.doc-search-section .doc-search-button button {
    height: 46px;
    border: 0;
    width: 200px;
    border-radius: 3px;
    background: var(--colorSecondary);
}


/* custom captcha error class *

.captcha-error {
    display: block;
}

@media only screen and (max-width: 991px) {

    .doc-search-section .box,
    .doc-search-section .doc-search-button {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 860px) {

    .doc-search-section .box,
    .doc-search-section .doc-search-button {
        display: block;
        margin-bottom: 10px;
    }

    .v-mid-content .select2-container,
    .doc-search-section .doc-search-button button {
        width: 100% !important;
    }
}

@media only screen and (max-width: 600px) {

    .v-mid-content .select2-container,
    .doc-search-section .doc-search-button button {
        width: calc(100%) !important;
    }
}
*/
.case-study-home-page {
    padding-top: 200px;
}

.case-item .case-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: top;
}

.team-photo img {
    height: 270px;
    object-fit: cover;
    object-position: top;
}

@media only screen and (max-width: 1199px) {
    .case-study-home-page {
        padding-top: 280px;
    }

    .team-photo img {
        height: 320px;
    }

    .case-item .case-image img {
        height: 200px;
    }
}

@media only screen and (max-width: 991px) {
    .team-photo img {
        height: 300px;
    }

    .case-item .case-image img {
        height: 240px;
    }
}

@media only screen and (max-width: 767px) {
    .team-photo img {
        height: 232px;
    }

    .case-item .case-image img {
        height: auto;
    }
}

@media only screen and (max-width: 590px) {
    .team-photo img {
        height: 152px;
    }
}

.video-section-home .video-button:after {
    background: var(--colorSecondary) !important;
}

.video-section-home .video-button:before {
    background: var(--colorPrimary) !important;
}

.video-section-home .video-button span {
    border-left-color: var(--colorWhite) !important;
}

.wh-table th,
.wh-table td {
    text-align: left !important;
}

.wh-table .sch {
    background: var(--colorSecondary);
    color: var(--colorWhite);
    padding: 5px 20px;
    margin-right: 5px;
    float: left;
    border-radius: 6px;
}

.book-appointment #datepicker {
    width: 200px;
}

.book-appointment .schedule-box {
    overflow: hidden;
}

.book-appointment .schedule {
    background: var(--borderColor);
    padding: 5px 20px;
    width: 200px;
    margin-right: 10px;
    margin-bottom: 10px;
    float: left;
}

.menu-item-has-children {
    margin-right: 18px;
}

.doctor-search {
    padding-top: 50px;
}

.doctor-search .s-container {
    width: 100%;
    text-align: center;
    padding: 20px 15px;
    background: #f9f9f9;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border: 1px solid #e6e3e3;
}

/*
.doctor-search .s-box {
    display: inline-block;
    vertical-align: top;
    padding-left: 5px;
    padding-right: 5px;
    width: 25%;
}

.doctor-search .s-button {
    display: inline-block;
    vertical-align: top;
    padding-left: 5px;
    padding-right: 5px;
    width: 25%;
}

.doctor-search .s-button button {
    width: 100% !important;
}

.doctor-search .select2-container {
    width: 100% !important;
}

.doctor-search .s-container form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.doctor-search .select2-container--default .select2-selection--single {
    border-color: var(--colorWhite);
    border-radius: 3px;
}

.doctor-search .s-button button {
    height: 46px;
    border: 0;
    width: 200px;
    border-radius: 3px;
    background: var(--colorPrimary);
    color: var(--colorWhite);
}

@media only screen and (max-width: 991px) {

    .doctor-search .s-box,
    .doctor-search .s-button {
        display: block;
        margin-bottom: 10px !important;
    }

    .doctor-search .select2-container,
    .doctor-search .s-button button {
        width: 100% !important;
    }
}

@media only screen and (max-width: 600px) {

    .doc-search-section .select2-container,
    .doc-search-section .s-button button {
        width: calc(100%) !important;
    }
}
*/

 
/* --- Search Box --- */
.hero-search-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 20px;
    padding: 8px 8px 8px 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: stretch;
    animation: slideUp 0.7s 0.3s ease both;
    max-width: 760px;
}
.doctor-search .hero-search-card {
    max-width:100%;
}
 
.hero-search-card .search-field {
    flex: 1 1 180px;
    position: relative;
    min-width: 150px;
}
.hero-search-card .search-field .field-icon {
    position: absolute;
    left: 14px; top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.45);
    font-size: 14px;
    pointer-events: none;
    z-index: 2;
}
.hero-search-card .search-field select {
    width: 100%;
    height: 52px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 0 16px 0 38px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
    outline: none;
}
.hero-search-card .search-field select:focus {
    background: rgba(255,255,255,0.16);
    border-color: rgba(241,99,76,0.5);
}
.hero-search-card .search-field select option {
    background: #1a2035;
    color: #fff;
}
/* Custom dropdown arrow */
.hero-search-card .search-field::after {
    content: '';
    position: absolute;
    right: 14px; top: 50%;
    transform: translateY(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid rgba(255,255,255,0.4);
    pointer-events: none;
}
 
/* Search button */
.hero-search-btn {
    height: 52px;
    padding: 0 28px;
    border-radius: 12px;
    background: linear-gradient(135deg, #F1634C 0%, #c0392b 40%, #1977F4 100%);
    border: none;
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    display: flex; align-items: center; gap: 10px;
    cursor: pointer;
    flex-shrink: 0;
    transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 24px rgba(241,99,76,0.35);
    white-space: nowrap;
}
.hero-search-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(241,99,76,0.45);
}

.doctor-search .hero-search-btn{
    height: 46px;
    border-radius: 6px;
}
.hero-search-btn svg { width: 16px; flex-shrink: 0; }
 



.bg_f2f2f2 {
    background: #f2f2f2 !important;
}

.bg_ecf1f8 {
    background: #ecf1f8 !important;
}

.special-button {
    height: 30px;
    padding-top: 22px;
}

.special-button a {
    background: var(--colorSecondary);
    padding: 10px 20px !important;
    color: var(--colorWhite) !important;
}

.sticky .special-button {
    padding-top: 14px !important;
}

.sticky .special-button a {
    min-height: 10px !important;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    ul.nav-menu li a {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .counter-row {
        width: 100%;
    }
}

.login-form a.link {
    color: var(--colorSecondary);
}

.login-form a.link:hover {
    color: var(--colorPrimary);
}

.login-form .social_login {
    display: block;
    text-align: center;
    border: 1px solid var(--borderColor);
    border-radius: 4px;
    padding: 6px 20px;
    width: 150px;
    margin: 0 auto;
    margin-top: 10px;
    background: var(--colorSecondary);
    color: var(--colorWhite);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.login-form .social_login:hover {
    background: var(--colorPrimary);
    border-color: var(--colorPrimary);
    color: var(--colorWhite);
}

.login-form .remember .form-check input {
    padding: 0;
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.login-form .remember .form-check label {
    font-size: 15px;
}

h5.appointment-cost {
    font-size: 18px;
    font-weight: 700;
    color: var(--colorSecondary);
    margin-top: 15px;
}

.map-area iframe {
    width: 100% !important;
    margin-bottom: -10px !important;
}

.faq-single-item {
    margin-bottom: 40px;
}

#paymongo .payment-order-button a {
    display: inline-block !important;
}

.contact-form .form-control,
.login-form .form-control {
    margin-bottom: 20px;
}

#appointment_modal1 .modal-header,
#appointment_modal .modal-header {
    position: relative;
    border-color: #bfbfbf;
}

button.close {
    background: none;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 22px;
}

#appointment_modal1 .form-group,
#appointment_modal .form-group {
    margin-bottom: 15px;
}

#appointment_modal1 .form-group label,
#appointment_modal .form-group label {
    font-size: 16px;
    display: block;
    margin-bottom: 3px;
}

#appointment_modal1 .nice-select,
#appointment_modal .nice-select {
    border: solid 1px #bfbfbf !important;
    margin-bottom: 15px;
    border-radius: 6px;
}

#appointment_modal1 .nice-select .current,
#appointment_modal .nice-select .current {
    color: #495057;
    font-size: 16px;
}

#appointment_modal1 .nice-select:after,
#appointment_modal .nice-select:after {
    right: 20px;
}

#appointment_modal1 .form-control,
#appointment_modal .form-control {
    border: 1px solid #bfbfbf;
    height: 40px;
    padding: 0px 15px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

#appointment_modal1 .select2-container--default .select2-selection--single {
    border: 1px solid #dee2e6;
    height: 40px;
    line-height: 40px;
    border-radius: 6px;
}

#appointment_modal1 .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
    padding-left: 15px;
}

.login_area_bg {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 30px;
    border-radius: 10px;
}

.login_area_bg .nav-pills {
    margin-bottom: 20px;
    justify-content: space-between;
}

.login_area_bg .nav-pills .nav-item {
    width: 48%;
}

.login_area_bg .nav-pills .nav-item .nav-link {
    width: 100%;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    transition: all linear .3s;
    border: 1px solid var(--borderColor);
    border-radius: 6px;
}

.login_area_bg .nav-pills .nav-item .nav-link:hover {
    color: var(--colorPrimary);
    border-color: var(--colorPrimary);
}

.login_area_bg .nav-pills .nav-item .nav-link.active {
    background: var(--colorPrimary);
    color: var(--colorWhite);
    border-color: var(--colorPrimary);
}

.login_area_bg form input {
    border: 1px solid var(--borderColor);
    height: auto;
    margin-bottom: 10px !important;
    border-radius: 4px;
}

.login_area_bg form button {
    width: 100%;
    border-radius: 4px;
    margin-top: 12px;
    background: var(--colorPrimary);
    margin-bottom: 10px;
}

.login_area_bg form a.link.text-right {
    display: block;
    text-align: right;
    font-size: 15px;
}

.login_area_bg .select2-container--default .select2-selection--single {
    border: 1px solid var(--borderColor);
    border-radius: 4px;
    height: 38px;
    line-height: 38px;
}

.login_area_bg .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 37px;
    padding-left: 13px;
}

.login_area_bg .select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-left: -10px;
    margin-top: -7px;
}

.login_area_bg .select2-container {
    margin-bottom: 10px;
}

.register-area .login_area_bg form button {
    margin-top: 7px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}

/* #main-slider {
    position: relative;
    min-height: 250px;
} */

.beep {
    position: relative;
}

.beep.parent::after {
    content: '';
    position: absolute;
    top: 4px;
    right: -12px;
    width: 8px;
    height: 8px;
    background-color: #37d09c;
    border-radius: 50%;
    -webkit-animation: pulsate 1s ease-out;
    animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    opacity: 1;
}

@keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        opacity: 0.0;
    }

    50% {
        opacity: 1.0;
    }

    100% {
        -webkit-transform: scale(1.2, 1.2);
        opacity: 0.0;
    }
}

.service_page .service-coloum:nth-child(2),
.service_page .service-coloum:nth-child(5) {
    margin-top: 0;
}

.service_page .service-coloum-area {
    margin-top: 5px;
    margin-bottom: 0;
}

.single-blog .blog-item {
    border: 1px solid var(--borderColor);
    box-shadow: none;
}

/* .about1-text ul li,
.about1-text ol li,
.mission-text ul li,
.mission-text ol li {
    font-size: 16px;
    margin-top: 15px;
    position: relative;
    padding-left: 30px;
}

.about1-text ul li::after,
.about1-text ol li::after,
.mission-text ul li::after,
.mission-text ol li::after {
    position: absolute;
    content: "";
    background: url(../images/about_check.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 15px;
    height: 15px;
    top: 4px;
    left: 0;
} */

.contact_margin {
    margin-top: 160px;
    padding-left: 50px;
}

#appointment_modal .form-select {
    border: 1px solid #bfbfbf;
}

span.shopping-cart {
    top: 0;
    right: -15px;
    width: 20px;
    height: 20px;
    padding: 0;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    font-size: 10px;
}

.account__social-btn {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--colorWhite);
    border: 1px solid var(--borderColor);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    font-size: 16px;
    gap: 10px;
    color: var(--colorBlack);
    padding: 10px 20px;
}

.account__divider {
    position: relative;
    text-align: center;
    padding-block-end: 35px;
    margin-block-start: 35px;
}

.account__divider span {
    font-size: 16px;
    color: var(--paraColor);
    padding: 20px;
    top: -35px;
    left: 45%;
    position: absolute;
    background: var(--colorWhite);
}

.account__divider::before {
    content: "";
    height: 1px;
    width: 100%;
    left: 0;
    top: 0;
    background: var(--borderColor);
    position: absolute;
}

.faq_page_item {
    border: 1px solid #ddd;
    padding: 30px 40px 0px 40px;
    border-radius: 8px;
}

.faq_page_item h2 {
    font-weight: 700;
    font-size: 34px;
}

.faq_img {
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.faq_img img {
    border-radius: 8px;
    height: 100%;
}



/*
.banner_slider_area {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.banner_slider_area::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.banner_slider_item {
    overflow: hidden;
}

.banner_slider_area div,
.banner_slider_area img {
    height: 100% !important;
    object-fit: cover;
}

.banner_slider_area .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 60px;
    gap: 7px;
    z-index: 99;
}

.banner_slider_area .slick-dots li button {
    width: 35px;
    display: block;
    height: 6px;
    font-size: 0;
    background: #fff;
    border-radius: 20px;
    cursor: pointer;
    opacity: .5;
}

.banner_slider_area .slick-dots li.slick-active button {
    opacity: 1;
}
*/
/* .testimonial_slider {
    border-radius: 10px;
    overflow: hidden;
    height: 370px;
}

.testimonial_slider .slick-dots {
    position: absolute;
    display: flex;
    justify-content: end;
    bottom: 40px;
    padding-right: 40px;
    z-index: 99;
}

.testimonial_slider .slick-dots li button {
    width: 18px;
    height: 18px;
    background: var(--colorWhite);
    border: 5px solid var(--colorPrimary);
    border-radius: 50%;
    display: inline-block;
    margin: 0 3px;
    font-size: 0;
}

.testimonial_slider .slick-dots li.slick-active button {
    width: 18px;
    height: 18px;
    background: var(--colorWhite);
    border: 5px solid var(--colorSecondary);
} */

.doctor_slider .team-item {
    margin: 0px 12px;
}

.team_slider_area .container {
    overflow: hidden;
    max-height: 595px;
}

.team_slider_area .nextArrow,
.team_slider_area .prevArrow {
    position: absolute;
    top: 50%;
    left: 0;
    width: 40px;
    height: 40px;
    line-height: 38px;
    background: var(--colorWhite);
    border: 1px solid #eee;
    color: var(--colorBlack);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transform: translateY(-50%) scale(1) !important;
    -webkit-transform: translateY(-50%) scale(1) !important;
    -moz-transform: translateY(-50%) scale(1) !important;
    -ms-transform: translateY(-50%) scale(1) !important;
    -o-transform: translateY(-50%) scale(1) !important;
    padding: 0;
    text-align: center;
    font-size: 13px;
    z-index: 9;
    cursor: pointer;
}

.team_slider_area .nextArrow {
    left: auto;
    right: 0;
}



.team_slider_area .nextArrow,
.team_slider_area .nextArrow:hover,
.team_slider_area .prevArrow:hover {
    background: var(--colorPrimary);
    border-color: var(--colorPrimary);
    color: var(--colorWhite);
}

.brand-carousel {
    height: 142px;
    overflow: hidden;
}

.home_blog_slider {
    overflow: hidden;
    max-height: 492px;
}

.dashboard-account-info,
.dashboard-widget li a {
    background: var(--colorPrimary);
}

.dash-item.db-red {
    background: var(--colorSecondary);
}

.wsus__profile_info {
    margin-top: 25px;
    padding: 30px;
    background: var(--colorWhite);
    border-radius: 8px;
}

.wsus__profile_info_top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.wsus__profile_info h4 {}

.wsus__profile_info .common_btn::after {
    background: var(--colorBlack);
}

.wsus__profile_info .common_btn:hover {
    color: var(--colorWhite);
}

.wsus__profile_info ul {
    display: flex;
    flex-wrap: wrap;
}

.wsus__profile_info ul li {
    width: 100%;
    margin-top: 15px;
    text-transform: capitalize;
    font-size: 16px;
}

.wsus__profile_info ul li span {
    width: 130px;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
}

.wsus__profile_info_top .edit_btn {
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    background: var(--colorPrimary);
    color: var(--colorWhite);
    border-radius: 6px;
    padding: 8px 20px;
    text-decoration: none;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.wsus__profile_info_top .edit_btn:hover {
    background: var(--colorSecondary);
}

.wsus__profile_info_top .del_btn {
    background: var(--colorSecondary);
}

.wsus__profile_info_top .del_btn:hover {
    background: var(--colorPrimary);
}

.profile_edit_area {
    display: none;
}

.profile_info_area.show_edit .profile_info {
    display: none;
}

.profile_info_area.show_edit .profile_edit_area {
    display: block;
}

    
    
    /* ===== RESPONSIVE ===== */
    @media (max-width: 992px) {
        .work-img-wrap .floating-stat { right: 0; }
        .feature-card-new { height: 260px; }
        .dept-card-new { height: 240px; }
    }
    @media (max-width: 768px) {
        .why-us-new, .work-section-new, .service-section-new, .dept-section-new,
        .testi-section-new, .doctor-section-new, .blog-section-new { padding: 60px 0; }
        .counter-card .counter-num { font-size: 36px; }
    }


    /* ===== HERO SLIDER ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}
 
/* --- Background Slider --- */
.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-slider .slide-track {
    display: flex;
    height: 100%;
    transition: transform 0.9s cubic-bezier(0.77, 0, 0.18, 1);
}
.hero-bg-slider .slide-item {
    min-width: 100%;
    height: 100%;
    position: relative;
}
.hero-bg-slider .slide-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
 
/* Gradient overlay on the image */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(13,17,23,0.88) 0%,
        rgba(13,17,23,0.75) 40%,
        rgba(25,119,244,0.25) 100%
    );
    z-index: 1;
}
 
/* Animated mesh blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 2;
    animation: blobFloat 8s ease-in-out infinite alternate;
}
.hero-blob-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #F1634C 0%, transparent 70%);
    top: -120px; left: -100px;
    animation-delay: 0s;
}
.hero-blob-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #1977F4 0%, transparent 70%);
    bottom: -80px; right: -60px;
    animation-delay: -4s;
}
@keyframes blobFloat {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 20px) scale(1.08); }
}
 
/* Dot pattern */
.hero-dots {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}
 
/* --- Hero Content --- */
.hero-content-wrap {
    position: relative;
    z-index: 10;
    padding: 140px 0 100px;
}
 
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 22px;
    animation: slideUp 0.7s ease both;
}
.hero-eyebrow .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--gradient-coral);
    animation: pulse 2s ease infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(241,99,76,0.6); }
    50%        { box-shadow: 0 0 0 6px rgba(241,99,76,0); }
}
 
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 22px;
    animation: slideUp 0.7s 0.1s ease both;
}
.hero-title .highlight {
    position: relative;
    display: inline-block;
}
.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 0;
    width: 100%; height: 6px;
    background: var(--gradient-coral);
    border-radius: 4px;
    opacity: 0.7;
    z-index: -1;
}
.hero-title .gradient-word {
    background: linear-gradient(135deg, #F1634C 0%, #FF8A76 50%, #1977F4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
 
.hero-subtitle {
    font-size: clamp(15px, 1.8vw, 18px);
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 40px;
    animation: slideUp 0.7s 0.2s ease both;
}

/* Trust badges row */
.hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 32px;
    animation: slideUp 0.7s 0.4s ease both;
}
.hero-trust .trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: rgba(255,255,255,0.6);
    font-weight: 500;
}
.hero-trust .trust-item i {
    color: #4ADE80;
    font-size: 14px;
}
.hero-trust .divider {
    width: 1px; height: 16px;
    background: rgba(255,255,255,0.2);
}
 
/* --- Slider Controls --- */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 16px;
}
.slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, width 0.3s;
    border: none;
    padding: 0;
}
.slider-dot.active {
    background: #F1634C;
    width: 28px;
    border-radius: 4px;
}
 
.slider-arrows {
    position: absolute;
    right: 40px;
    bottom: 40px;
    z-index: 20;
    display: flex;
    gap: 10px;
}
.slider-arrow-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.slider-arrow-btn:hover {
    background: rgba(241,99,76,0.6);
    transform: scale(1.08);
}
.slider-arrow-btn svg { width: 18px; }
 
/* Slide progress bar */
.slide-progress {
    position: absolute;
    bottom: 0; left: 0;
    height: 3px;
    background: linear-gradient(90deg, #F1634C, #1977F4);
    z-index: 20;
    animation: progressBar 5s linear infinite;
    transform-origin: left;
}
@keyframes progressBar {
    0%   { width: 0%; }
    100% { width: 100%; }
}
 
/* Slide number */
.slide-number {
    position: absolute;
    top: 50%; right: 40px;
    transform: translateY(-50%);
    z-index: 20;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.slide-number .current {
    font-family: var(--font-display);
    font-size: 40px; font-weight: 800;
    color: #fff; line-height: 1;
}
.slide-number .sep {
    width: 1px; height: 40px;
    background: rgba(255,255,255,0.3);
}
.slide-number .total {
    font-size: 16px; font-weight: 500;
    color: rgba(255,255,255,0.45);
}
 
/* Animations */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
 
/* Scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 36px; left: 40px;
    z-index: 20;
    display: flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 600;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1.5px; text-transform: uppercase;
}
.scroll-hint .mouse {
    width: 20px; height: 32px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    display: flex; align-items: flex-start; justify-content: center;
    padding-top: 5px;
}
.scroll-hint .mouse span {
    width: 3px; height: 7px;
    border-radius: 2px;
    background: #F1634C;
    animation: scrollBob 1.6s ease infinite;
}
@keyframes scrollBob {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50%       { transform: translateY(6px); opacity: 0.4; }
}
 
/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-content-wrap { padding: 120px 0 80px; }
    .slide-number, .scroll-hint { display: none; }
    .slider-arrows { right: 16px; bottom: 20px; }
    .hero-search-card { border-radius: 16px; }
}
@media (max-width: 575px) {
    .hero-section { min-height: 100svh; }
    .hero-search-card .search-field { flex: 1 1 100%; }
    .hero-search-btn { width: 100%; justify-content: center; }
    .hero-trust { gap: 12px; }
    .hero-trust .divider { display: none; }
}




/* cookies consent start */
.wpcc-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    max-width: 400px;
    position: fixed;
    z-index: 9999;
    bottom: 25px;
    left: 25px;
    border: 1px solid #fff;
}

.wpcc-container .wpcc-message {
    line-height: 26px;
    font-size: 16px;
    font-weight: 400;
}

.wpcc-container .wpcc-compliance {
    margin-top: 15px;
}

.wpcc-container .wpcc-compliance a {
    padding: 5px 15px;
    border-radius: 50px;
    cursor: pointer;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    font-size: 14px;
}

/* cookies consent end */

.payment-select a .payment-logo {
    width: 200px !important;
    height: auto !important;
}

.social-bar li img, .footer-item .icon li img {
    width: auto;
    height: 16px;
}

.payment-logo {
    height: 80px;
    width: auto;
    border-radius: 8px;
    cursor: pointer;
}

.app-store-area img {
    max-width: 157px;
    max-height: 52px;
}

.team-detail-text ul li a img,
.team-social li a img {
    height: 16px;
    width: auto;
}

.team-detail-text ul li a img {
    filter: brightness(0) invert(1);
}

.team-social li a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-testi-info img {
    top: auto !important;
}
