/* =========================================================
   RETAILS SIGNAGE
   PREMIUM BLUE / CYAN CORPORATE THEME
   Complete replacement stylesheet
   Bootstrap 5 compatible
   ========================================================= */

:root{
    --primary:#2563EB;
    --primary-dark:#1D4ED8;
    --accent:#38BDF8;
    --accent-soft:#E0F2FE;
    --dark:#0B1220;
    --dark-2:#111827;
    --dark-3:#172033;
    --text:#172033;
    --muted:#667085;
    --light:#F7F9FC;
    --white:#fff;
    --border:#E7EBF2;
    --shadow-sm:0 10px 30px rgba(11,18,32,.06);
    --shadow-md:0 20px 50px rgba(11,18,32,.10);
    --shadow-lg:0 30px 80px rgba(11,18,32,.14);
    --radius-sm:12px;
    --radius-md:20px;
    --radius-lg:28px;
    --radius-xl:36px;
    --transition:.35s cubic-bezier(.2,.65,.3,1);
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    overflow-x:hidden;
}

body{
    margin:0;
    padding-top:0;
    overflow-x:hidden;
    font-family:'Poppins',sans-serif;
    color:var(--text);
    background:#fff;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

img{
    max-width:100%;
    display:block;
}

a{
    transition:var(--transition);
}

button,
input,
textarea,
select{
    font-family:inherit;
}

::selection{
    background:var(--primary);
    color:#fff;
}

/* =========================================================
   SCROLLBAR
   ========================================================= */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#eef2f7;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(180deg,var(--primary),var(--accent));
    border-radius:20px;
}

/* =========================================================
   COMMON
   ========================================================= */

.container{
    position:relative;
}

.py-120{
    padding:120px 0;
}

.section-tag,
.section-heading span,
.sub-title{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--primary);
    font-size:13px;
    font-weight:800;
    letter-spacing:2.5px;
    text-transform:uppercase;
}

.section-tag::before,
.section-heading span::before,
.sub-title::before{
    content:"";
    width:28px;
    height:2px;
    border-radius:10px;
    background:linear-gradient(90deg,var(--primary),var(--accent));
}

.section-heading{
    position:relative;
    margin-bottom:55px!important;
}

.section-heading h2{
    margin:15px 0 14px;
    color:var(--dark);
    font-size:48px;
    line-height:1.12;
    font-weight:800;
    letter-spacing:-1.2px;
}

.section-heading p{
    max-width:700px;
    margin:0 auto;
    color:var(--muted);
    font-size:16px;
    line-height:1.9;
}

.section-title{
    color:var(--dark);
    font-size:46px;
    line-height:1.15;
    font-weight:800;
    letter-spacing:-1px;
    margin:15px 0 25px;
}

.section-text{
    color:var(--muted);
    font-size:16px;
    line-height:1.95;
}

.btn-main{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:54px;
    padding:15px 30px;
    overflow:hidden;
    border:1px solid transparent;
    border-radius:999px;
    background:linear-gradient(135deg,var(--primary),var(--accent));
    color:#fff;
    font-size:14px;
    font-weight:700;
    text-decoration:none;
    box-shadow:0 12px 30px rgba(37,99,235,.24);
}

.btn-main::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(110deg,transparent 20%,rgba(255,255,255,.35) 50%,transparent 80%);
    transform:translateX(-120%);
    transition:.7s;
}

.btn-main:hover{
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 18px 40px rgba(37,99,235,.32);
}

.btn-main:hover::before{
    transform:translateX(120%);
}

.btn-outline-light{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:54px;
    padding:15px 30px;
    border:1px solid rgba(255,255,255,.45);
    border-radius:999px;
    color:#fff;
    font-size:14px;
    font-weight:700;
    text-decoration:none;
    backdrop-filter:blur(12px);
    background:rgba(255,255,255,.08);
}

.btn-outline-light:hover{
    color:var(--dark);
    background:#fff;
    border-color:#fff;
    transform:translateY(-3px);
}

.theme-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:46px;
    padding:11px 24px;
    border-radius:999px;
    background:var(--primary);
    color:#fff;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    box-shadow:0 10px 25px rgba(37,99,235,.18);
}

.theme-btn:hover{
    color:#fff;
    background:var(--dark);
    transform:translateY(-3px);
}

/* =========================================================
   TOP BAR
   ========================================================= */

.header-wrapper{
    position:fixed;
    top:0;
    left:0;
    z-index:9999;
    width:100%;
    transition:var(--transition);
}

.topbar{
    position:relative;
    z-index:20;
    padding:9px 0;
    color:#fff;
    background:linear-gradient(100deg,#070d18,#0B1220 55%,#111c31);
    border-bottom:1px solid rgba(255,255,255,.07);
}

.topbar::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:1px;
    background:linear-gradient(90deg,transparent,var(--primary),var(--accent),transparent);
    opacity:.5;
}

.top-contact{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px 25px;
    list-style:none;
    margin:0;
    padding:0;
}

.top-contact li{
    display:flex;
    align-items:center;
    gap:8px;
    color:rgba(255,255,255,.78);
    font-size:12px;
    white-space:nowrap;
}

.top-contact i{
    color:var(--accent);
    font-size:13px;
}

.top-social{
    display:flex;
    justify-content:flex-end;
    gap:8px;
}

.top-social a{
    width:31px;
    height:31px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.10);
    border-radius:50%;
    background:rgba(255,255,255,.05);
    color:#fff;
    text-decoration:none;
    font-size:12px;
}

.top-social a:hover{
    border-color:var(--primary);
    background:var(--primary);
    color:#fff;
    transform:translateY(-2px);
}

/* =========================================================
   MAIN HEADER
   ========================================================= */

#header{
    position:relative;
    background:rgba(255,255,255,.90);
    border-bottom:1px solid rgba(11,18,32,.06);
    box-shadow:0 10px 35px rgba(11,18,32,.06);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    transition:var(--transition);
}

#header::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:1px;
    background:linear-gradient(90deg,transparent,rgba(37,99,235,.20),transparent);
}

#header .navbar{
    min-height:84px;
    padding:10px 0;
    transition:var(--transition);
}

#header .navbar-brand{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    padding:0;
}

#header .navbar-brand img{
    width:auto;
    height:62px;
    object-fit:contain;
    transition:var(--transition);
}

.navbar-nav{
    align-items:center;
    gap:2px;
}

.navbar-nav .nav-link{
    position:relative;
    padding:13px 15px!important;
    color:var(--dark);
    font-size:13px;
    font-weight:700;
    letter-spacing:.15px;
}

.navbar-nav .nav-link::before{
    content:"";
    position:absolute;
    left:15px;
    right:15px;
    bottom:5px;
    height:2px;
    border-radius:10px;
    background:linear-gradient(90deg,var(--primary),var(--accent));
    transform:scaleX(0);
    transform-origin:center;
    transition:var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:var(--primary);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before{
    transform:scaleX(1);
}

.btn-quote{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:48px;
    padding:12px 23px;
    overflow:hidden;
    border:1px solid rgba(37,99,235,.25);
    border-radius:999px;
    background:linear-gradient(135deg,var(--primary),var(--accent));
    color:#fff;
    font-size:13px;
    font-weight:700;
    text-decoration:none;
    box-shadow:0 12px 28px rgba(37,99,235,.20);
}

.btn-quote::after{
    content:"→";
    font-size:16px;
    transition:var(--transition);
}

.btn-quote:hover{
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 18px 35px rgba(37,99,235,.30);
}

.btn-quote:hover::after{
    transform:translateX(4px);
}

.navbar-toggler{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0;
    border:1px solid var(--border)!important;
    border-radius:14px;
    background:#fff;
    color:var(--dark);
    font-size:24px;
    box-shadow:var(--shadow-sm);
}

.navbar-toggler:focus{
    box-shadow:0 0 0 4px rgba(37,99,235,.10);
}

/* JS adds .scrolled to wrapper */
.header-wrapper.scrolled #header,
.header-wrapper.is-scrolled #header{
    background:rgba(255,255,255,.97);
    box-shadow:0 12px 35px rgba(11,18,32,.11);
}

.header-wrapper.scrolled #header .navbar,
.header-wrapper.is-scrolled #header .navbar{
    min-height:68px;
    padding:6px 0;
}

.header-wrapper.scrolled #header .navbar-brand img,
.header-wrapper.is-scrolled #header .navbar-brand img{
    height:52px;
}

/* =========================================================
   HERO
   ========================================================= */

.hero-section{
    position:relative;
    min-height:100vh;
    overflow:hidden;
    background:var(--dark);
}

.hero-section::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:3;
    pointer-events:none;
    background:
        radial-gradient(circle at 75% 35%,rgba(56,189,248,.16),transparent 28%),
        linear-gradient(90deg,rgba(5,10,18,.30),transparent 55%);
}

.hero-section::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    z-index:4;
    height:180px;
    pointer-events:none;
    background:linear-gradient(to bottom,transparent,rgba(5,10,18,.65));
}

.hero-slide{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.hero-slide img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.03);
    animation:heroKenBurns 8s ease-out forwards;
}

@keyframes heroKenBurns{
    from{transform:scale(1.03)}
    to{transform:scale(1.10)}
}

.hero-overlay{
    position:absolute;
    inset:0;
    z-index:1;
    background:
        linear-gradient(90deg,
            rgba(5,10,18,.94) 0%,
            rgba(5,10,18,.78) 34%,
            rgba(5,10,18,.42) 62%,
            rgba(37,99,235,.16) 100%);
}

.hero-slide .container{
    position:relative;
    z-index:5;
}

.hero-slide .min-vh-100{
    min-height:100vh!important;
}

.hero-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:9px 15px 9px 10px;
    margin-bottom:22px;
    border:1px solid rgba(255,255,255,.16);
    border-radius:999px;
    background:rgba(255,255,255,.08);
    color:#fff;
    font-size:11px;
    font-weight:800;
    letter-spacing:1.7px;
    text-transform:uppercase;
    backdrop-filter:blur(14px);
}

.hero-tag::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--accent);
    box-shadow:0 0 0 5px rgba(56,189,248,.12),0 0 18px rgba(56,189,248,.65);
}

.hero-section h1{
    max-width:820px;
    margin:0 0 22px;
    color:#fff;
    font-size:clamp(44px,5.2vw,76px);
    line-height:1.02;
    font-weight:800;
    letter-spacing:-2.5px;
    text-shadow:0 15px 45px rgba(0,0,0,.30);
}

.hero-section h1::first-line{
    color:#fff;
}

.hero-section p{
    max-width:690px;
    margin:0 0 34px;
    color:rgba(255,255,255,.78);
    font-size:17px;
    line-height:1.9;
}

.hero-btns{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
}

.hero-btns .ms-3{
    margin-left:0!important;
}

.hero-floating-card{
    position:absolute;
    right:5%;
    top:22%;
    z-index:6;
    width:210px;
    padding:26px 22px;
    border:1px solid rgba(255,255,255,.17);
    border-radius:24px;
    background:rgba(255,255,255,.09);
    color:#fff;
    text-align:center;
    box-shadow:0 30px 70px rgba(0,0,0,.24);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    animation:floatCard 5s ease-in-out infinite;
}

.hero-floating-card::before{
    content:"";
    position:absolute;
    inset:-1px;
    z-index:-1;
    border-radius:inherit;
    background:linear-gradient(135deg,rgba(56,189,248,.28),transparent 45%,rgba(37,99,235,.20));
    opacity:.7;
}

.hero-floating-card.second{
    top:auto;
    right:11%;
    bottom:19%;
    animation-delay:-2s;
}

.hero-floating-card h3{
    margin:0 0 5px;
    color:#fff;
    font-size:42px;
    line-height:1;
    font-weight:800;
}

.hero-floating-card span{
    color:rgba(255,255,255,.72);
    font-size:11px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

@keyframes floatCard{
    0%,100%{transform:translateY(0)}
    50%{transform:translateY(-12px)}
}

/* hero progress/pagination */
.heroSlider .swiper-pagination{
    z-index:10;
    bottom:35px!important;
    left:auto!important;
    right:6%;
    width:auto!important;
    display:flex;
    align-items:center;
    gap:7px;
}

.heroSlider .swiper-pagination-bullet{
    width:30px;
    height:3px;
    margin:0!important;
    border-radius:20px;
    background:rgba(255,255,255,.35);
    opacity:1;
    transition:var(--transition);
}

.heroSlider .swiper-pagination-bullet-active{
    width:58px;
    background:linear-gradient(90deg,var(--primary),var(--accent));
}

/* =========================================================
   ABOUT
   ========================================================= */

.about-section{
    position:relative;
    padding:120px 0;
    background:#fff;
    overflow:hidden;
}

.about-section::before{
    content:"";
    position:absolute;
    width:360px;
    height:360px;
    right:-180px;
    top:-180px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(56,189,248,.10),transparent 70%);
}

.about-image{
    position:relative;
    padding-right:25px;
}

.about-image::before{
    content:"";
    position:absolute;
    left:-18px;
    top:35px;
    width:70%;
    height:70%;
    border:1px solid rgba(37,99,235,.18);
    border-radius:28px;
    transform:rotate(-5deg);
    z-index:0;
}

.about-image img{
    position:relative;
    z-index:1;
    width:100%;
    border:8px solid #fff;
    border-radius:30px;
    box-shadow:0 30px 70px rgba(11,18,32,.16);
}

.experience-box{
    position:absolute;
    z-index:2;
    right:-5px;
    bottom:35px;
    width:190px;
    padding:25px 18px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:24px;
    background:linear-gradient(145deg,var(--primary),#1d4ed8);
    color:#fff;
    text-align:center;
    box-shadow:0 25px 55px rgba(37,99,235,.32);
}

.experience-box::before{
    content:"";
    position:absolute;
    inset:8px;
    border:1px solid rgba(255,255,255,.16);
    border-radius:18px;
}

.experience-box h2{
    position:relative;
    margin:0;
    font-size:48px;
    line-height:1;
    font-weight:800;
}

.experience-box span{
    position:relative;
    display:block;
    margin-top:8px;
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.feature-box{
    height:100%;
    padding:17px 18px;
    border:1px solid var(--border);
    border-radius:15px;
    background:#fff;
    color:var(--dark);
    font-size:13px;
    font-weight:700;
    box-shadow:0 8px 25px rgba(11,18,32,.04);
    transition:var(--transition);
}

.feature-box i{
    margin-right:9px;
    color:var(--primary);
}

.feature-box:hover{
    border-color:rgba(37,99,235,.25);
    background:var(--dark);
    color:#fff;
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(11,18,32,.12);
}

.feature-box:hover i{
    color:var(--accent);
}

/* =========================================================
   CLIENTS
   ========================================================= */

.clients-section{
    position:relative;
    padding:100px 0;
    overflow:hidden;
    background:#F7F9FC;
}

.client-box{
    height:120px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:25px;
    border:1px solid var(--border);
    border-radius:20px;
    background:#fff;
    box-shadow:0 8px 25px rgba(11,18,32,.035);
    transition:var(--transition);
}

.client-box img{
    max-width:165px;
    max-height:58px;
    width:auto;
    height:auto;
    object-fit:contain;
    filter:grayscale(100%);
    opacity:.62;
    transition:var(--transition);
}

.client-box:hover{
    border-color:rgba(37,99,235,.30);
    transform:translateY(-8px);
    box-shadow:0 22px 45px rgba(37,99,235,.12);
}

.client-box:hover img{
    filter:grayscale(0);
    opacity:1;
    transform:scale(1.07);
}

/* =========================================================
   SERVICES
   ========================================================= */

.services-section{
    position:relative;
    padding:120px 0;
    background:#fff;
    overflow:hidden;
}

.services-section::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    left:-250px;
    top:20%;
    border-radius:50%;
    background:radial-gradient(circle,rgba(37,99,235,.08),transparent 68%);
}

.service-card{
    position:relative;
    height:100%;
    overflow:hidden;
    border:1px solid var(--border);
    border-radius:25px;
    background:#fff;
    box-shadow:0 16px 45px rgba(11,18,32,.07);
    transition:var(--transition);
}

.service-card::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:4px;
    background:linear-gradient(90deg,var(--primary),var(--accent));
    transform:scaleX(0);
    transform-origin:left;
    transition:var(--transition);
}

.service-card:hover{
    border-color:rgba(37,99,235,.20);
    transform:translateY(-12px);
    box-shadow:0 28px 65px rgba(11,18,32,.13);
}

.service-card:hover::after{
    transform:scaleX(1);
}

.service-image{
    position:relative;
    height:245px;
    overflow:hidden;
}

.service-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(5,10,18,.42),transparent 50%);
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s cubic-bezier(.2,.65,.3,1);
}

.service-card:hover .service-image img{
    transform:scale(1.09);
}

.service-content{
    position:relative;
    padding:0 28px 30px;
    text-align:center;
}

.service-icon{
    position:relative;
    z-index:2;
    width:78px;
    height:78px;
    margin:-39px auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:6px solid #fff;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),var(--accent));
    color:#fff;
    font-size:28px;
    box-shadow:0 15px 35px rgba(37,99,235,.25);
}

.service-content h4{
    margin:0 0 12px;
    color:var(--dark);
    font-size:20px;
    font-weight:800;
}

.service-content p{
    margin:0 0 23px;
    color:var(--muted);
    font-size:14px;
    line-height:1.8;
}

.services-section .btn-warning{
    border:0;
    border-radius:999px;
    background:var(--dark);
    color:#fff;
    padding:13px 30px;
    font-size:13px;
    font-weight:700;
    box-shadow:0 12px 28px rgba(11,18,32,.15);
}

.services-section .btn-warning:hover{
    background:var(--primary);
    transform:translateY(-3px);
}

/* =========================================================
   CATEGORY
   ========================================================= */

.category-section{
    position:relative;
    padding:120px 0;
    background:#F7F9FC;
    overflow:hidden;
}

.category-card{
    position:relative;
    height:100%;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.7);
    border-radius:24px;
    background:#fff;
    box-shadow:0 18px 50px rgba(11,18,32,.07);
    transition:var(--transition);
}

.category-card:hover{
    transform:translateY(-12px);
    box-shadow:0 30px 65px rgba(11,18,32,.13);
}

.category-image{
    position:relative;
    height:265px;
    overflow:hidden;
}

.category-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(11,18,32,.48),transparent 60%);
    opacity:.7;
}

.category-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s cubic-bezier(.2,.65,.3,1);
}

.category-card:hover .category-image img{
    transform:scale(1.10);
}

.category-content{
    position:relative;
    padding:24px 25px 27px;
}

.category-content::before{
    content:"";
    position:absolute;
    left:25px;
    top:-3px;
    width:42px;
    height:3px;
    border-radius:10px;
    background:linear-gradient(90deg,var(--primary),var(--accent));
}

.category-content h4{
    margin:0 0 12px;
    color:var(--dark);
    font-size:19px;
    font-weight:800;
}

.category-content a{
    display:inline-flex;
    align-items:center;
    gap:7px;
    color:var(--primary);
    font-size:13px;
    font-weight:700;
    text-decoration:none;
}

.category-content a i{
    transition:var(--transition);
}

.category-content a:hover{
    color:var(--dark);
}

.category-content a:hover i{
    transform:translateX(5px);
}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */

.why-section{
    position:relative;
    padding:120px 0;
    background:#F7F9FC;
    overflow:hidden;
}

.why-section::before{
    content:"";
    position:absolute;
    right:-150px;
    top:-150px;
    width:400px;
    height:400px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(56,189,248,.10),transparent 68%);
}

.why-card{
    position:relative;
    height:100%;
    padding:30px;
    overflow:hidden;
    border:1px solid var(--border);
    border-radius:23px;
    background:#fff;
    box-shadow:0 12px 38px rgba(11,18,32,.055);
    transition:var(--transition);
}

.why-card::before{
    content:"";
    position:absolute;
    right:-40px;
    top:-40px;
    width:110px;
    height:110px;
    border-radius:50%;
    background:rgba(37,99,235,.05);
    transition:var(--transition);
}

.why-card:hover{
    border-color:rgba(37,99,235,.24);
    transform:translateY(-10px);
    box-shadow:0 28px 60px rgba(11,18,32,.11);
}

.why-card:hover::before{
    transform:scale(1.5);
    background:rgba(37,99,235,.09);
}

.why-icon{
    position:relative;
    width:70px;
    height:70px;
    margin-bottom:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(37,99,235,.10);
    border-radius:19px;
    background:linear-gradient(145deg,#EFF6FF,#E0F2FE);
}

.why-icon i{
    color:var(--primary);
    font-size:29px;
    transition:var(--transition);
}

.why-card:hover .why-icon{
    background:linear-gradient(135deg,var(--primary),var(--accent));
    transform:rotate(-4deg);
}

.why-card:hover .why-icon i{
    color:#fff;
}

.why-card h4{
    position:relative;
    margin:0 0 11px;
    color:var(--dark);
    font-size:19px;
    font-weight:800;
}

.why-card p{
    position:relative;
    margin:0;
    color:var(--muted);
    font-size:14px;
    line-height:1.8;
}

/* =========================================================
   TEAM
   ========================================================= */

.team-section{
    padding:120px 0;
    background:#fff;
}

.team-card{
    height:100%;
    overflow:hidden;
    border:1px solid var(--border);
    border-radius:24px;
    background:#fff;
    box-shadow:0 15px 45px rgba(11,18,32,.07);
    transition:var(--transition);
}

.team-card:hover{
    transform:translateY(-10px);
    box-shadow:0 28px 65px rgba(11,18,32,.13);
}

.team-image{
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#EEF5FF,#E5F5FF);
}

.team-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(11,18,32,.30),transparent 45%);
    pointer-events:none;
}

.team-image img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.6s;
}

.team-card:hover .team-image img{
    transform:scale(1.07);
}

.team-social{
    position:absolute;
    left:0;
    right:0;
    bottom:18px;
    z-index:3;
    display:flex;
    justify-content:center;
    gap:8px;
    opacity:0;
    transform:translateY(15px);
    transition:var(--transition);
}

.team-card:hover .team-social{
    opacity:1;
    transform:translateY(0);
}

.team-social a{
    width:39px;
    height:39px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.25);
    border-radius:50%;
    background:rgba(11,18,32,.75);
    color:#fff;
    text-decoration:none;
    backdrop-filter:blur(10px);
}

.team-social a:hover{
    background:var(--primary);
    transform:translateY(-3px);
}

.team-content{
    padding:22px;
    text-align:center;
}

.team-content h4{
    margin:0 0 6px;
    color:var(--dark);
    font-size:18px;
    font-weight:800;
}

.team-content span{
    color:var(--primary);
    font-size:12px;
    font-weight:700;
}

.team-content p{
    margin:12px 0 0;
    color:var(--muted);
    font-size:12px;
    line-height:1.6;
}

/* =========================================================
   COUNTERS
   ========================================================= */

.counter-section{
    position:relative;
    padding:95px 0;
    overflow:hidden;
    background:
        radial-gradient(circle at 15% 50%,rgba(37,99,235,.18),transparent 24%),
        radial-gradient(circle at 85% 20%,rgba(56,189,248,.12),transparent 24%),
        linear-gradient(135deg,#070D18,#0B1220 55%,#111B2E);
}

.counter-section::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
    background-size:45px 45px;
    mask-image:linear-gradient(to bottom,transparent,#000,transparent);
    pointer-events:none;
}

.counter-box{
    position:relative;
    height:100%;
    padding:35px 20px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.10);
    border-radius:24px;
    background:rgba(255,255,255,.055);
    text-align:center;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
    backdrop-filter:blur(12px);
    transition:var(--transition);
}

.counter-box::after{
    content:"";
    position:absolute;
    left:20%;
    right:20%;
    bottom:0;
    height:2px;
    background:linear-gradient(90deg,transparent,var(--accent),transparent);
    opacity:.5;
}

.counter-box:hover{
    border-color:rgba(56,189,248,.35);
    background:linear-gradient(145deg,rgba(37,99,235,.92),rgba(30,64,175,.92));
    transform:translateY(-10px);
    box-shadow:0 30px 65px rgba(37,99,235,.25);
}

.counter-icon{
    width:72px;
    height:72px;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.15);
    border-radius:20px;
    background:rgba(255,255,255,.96);
    color:var(--primary);
    font-size:28px;
    transition:var(--transition);
}

.counter-box:hover .counter-icon{
    background:rgba(11,18,32,.90);
    color:var(--accent);
    transform:rotate(-5deg);
}

.counter-box h2{
    position:relative;
    margin:0 0 7px;
    color:#fff;
    font-size:48px;
    line-height:1;
    font-weight:800;
    letter-spacing:-1px;
}

.counter-box p{
    margin:0;
    color:rgba(255,255,255,.62);
    font-size:12px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.counter-box:hover p{
    color:#fff;
}

/* =========================================================
   PRODUCTS
   ========================================================= */

.products-section{
    position:relative;
    padding:120px 0;
    overflow:hidden;
    background:#F7F9FC;
}

.productSwiper{
    padding:10px 5px 50px!important;
}

.product-card{
    height:100%;
    overflow:hidden;
    border:1px solid var(--border);
    border-radius:24px;
    background:#fff;
    box-shadow:0 16px 50px rgba(11,18,32,.07);
    transition:var(--transition);
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 65px rgba(11,18,32,.13);
}

.product-image{
    position:relative;
    height:260px;
    overflow:hidden;
    background:#EEF3F8;
}

.product-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(11,18,32,.35),transparent 45%);
    opacity:.7;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s;
}

.product-card:hover .product-image img{
    transform:scale(1.08);
}

.product-content{
    padding:25px;
}

.product-category{
    display:inline-flex;
    align-items:center;
    padding:6px 12px;
    margin-bottom:13px;
    border:1px solid rgba(37,99,235,.10);
    border-radius:999px;
    background:#EFF6FF;
    color:var(--primary);
    font-size:10px;
    font-weight:800;
    letter-spacing:.6px;
    text-transform:uppercase;
}

.product-content h4{
    margin:0 0 11px;
    color:var(--dark);
    font-size:20px;
    font-weight:800;
}

.product-content p{
    margin:0 0 20px;
    color:var(--muted);
    font-size:13px;
    line-height:1.8;
}

.product-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--primary);
    font-size:13px;
    font-weight:800;
    text-decoration:none;
}

.product-btn:hover{
    color:var(--dark);
}

.product-btn i{
    transition:var(--transition);
}

.product-btn:hover i{
    transform:translateX(5px);
}

/* =========================================================
   PROCESS
   ========================================================= */

.process-section{
    position:relative;
    padding:120px 0;
    overflow:hidden;
    background:#fff;
}

.process-card{
    position:relative;
    height:100%;
    padding:42px 22px 32px;
    overflow:hidden;
    border:1px solid var(--border);
    border-radius:24px;
    background:#fff;
    text-align:center;
    transition:var(--transition);
}

.process-card:hover{
    border-color:rgba(37,99,235,.25);
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(11,18,32,.11);
}

.process-number{
    position:absolute;
    top:13px;
    right:18px;
    color:#EDF1F7;
    font-size:40px;
    line-height:1;
    font-weight:900;
}

.process-icon{
    position:relative;
    width:76px;
    height:76px;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(37,99,235,.10);
    border-radius:22px;
    background:linear-gradient(145deg,#EFF6FF,#E0F2FE);
    color:var(--primary);
    font-size:30px;
    transition:var(--transition);
}

.process-card:hover .process-icon{
    color:#fff;
    background:linear-gradient(135deg,var(--primary),var(--accent));
    transform:translateY(-3px) rotate(-4deg);
    box-shadow:0 15px 35px rgba(37,99,235,.20);
}

.process-card h4{
    margin:0 0 10px;
    color:var(--dark);
    font-size:18px;
    font-weight:800;
}

.process-card p{
    margin:0;
    color:var(--muted);
    font-size:13px;
    line-height:1.8;
}

/* =========================================================
   PROJECTS
   ========================================================= */

.projects-section{
    position:relative;
    padding:120px 0;
    background:#F7F9FC;
}

.project-card{
    position:relative;
    height:420px;
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 20px 55px rgba(11,18,32,.10);
}

.project-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.8s cubic-bezier(.2,.65,.3,1);
}

.project-card::after{
    content:"";
    position:absolute;
    inset:0;
    border:1px solid rgba(255,255,255,.18);
    border-radius:inherit;
    pointer-events:none;
}

.project-card:hover img{
    transform:scale(1.10);
}

.project-overlay{
    position:absolute;
    inset:0;
    z-index:2;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:flex-start;
    padding:30px;
    background:linear-gradient(to top,rgba(5,10,18,.92),rgba(5,10,18,.08) 65%);
    opacity:0;
    transition:var(--transition);
}

.project-card:hover .project-overlay{
    opacity:1;
}

.project-overlay span{
    margin-bottom:7px;
    color:var(--accent);
    font-size:11px;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.project-overlay h4{
    margin:0;
    color:#fff;
    font-size:23px;
    line-height:1.2;
    font-weight:800;
}

.project-overlay a{
    width:48px;
    height:48px;
    margin-top:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),var(--accent));
    color:#fff;
    text-decoration:none;
    box-shadow:0 12px 30px rgba(37,99,235,.30);
}

.project-overlay a:hover{
    background:#fff;
    color:var(--dark);
    transform:rotate(45deg);
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */

.testimonial-section{
    position:relative;
    padding:120px 0;
    overflow:hidden;
    background:#fff;
}

.testimonialSlider{
    padding:10px 5px 20px!important;
}

.testimonial-card{
    position:relative;
    height:100%;
    padding:30px;
    border:1px solid var(--border);
    border-radius:24px;
    background:#fff;
    box-shadow:0 16px 45px rgba(11,18,32,.06);
    transition:var(--transition);
}

.testimonial-card::before{
    content:"“";
    position:absolute;
    right:22px;
    top:8px;
    color:#E8F0FF;
    font-family:Georgia,serif;
    font-size:90px;
    line-height:1;
}

.testimonial-card:hover{
    border-color:rgba(37,99,235,.20);
    transform:translateY(-8px);
    box-shadow:0 28px 60px rgba(11,18,32,.11);
}

.rating{
    position:relative;
    z-index:1;
    display:flex;
    gap:3px;
    margin-bottom:17px;
    color:#F5B301;
}

.rating i{
    margin:0!important;
    font-size:14px;
}

.testimonial-text{
    position:relative;
    z-index:1;
    min-height:145px;
    margin:0;
    color:var(--muted);
    font-size:14px;
    line-height:1.9;
}

.testimonial-user{
    display:flex;
    align-items:center;
    margin-top:22px;
    padding-top:20px;
    border-top:1px solid var(--border);
}

.testimonial-user img{
    flex:0 0 auto;
    width:58px;
    height:58px;
    margin-right:13px;
    border:3px solid #E0ECFF;
    border-radius:50%;
    object-fit:cover;
}

.testimonial-user h5{
    margin:0 0 3px;
    color:var(--dark);
    font-size:14px;
    font-weight:800;
}

.testimonial-user span{
    color:var(--muted);
    font-size:11px;
}

/* =========================================================
   FAQ
   ========================================================= */

.faq-section{
    position:relative;
    padding:120px 0;
    background:#F7F9FC;
}

.faq-section .accordion-item{
    margin-bottom:14px;
    overflow:hidden;
    border:1px solid var(--border);
    border-radius:18px!important;
    background:#fff;
    box-shadow:0 10px 30px rgba(11,18,32,.045);
}

.faq-section .accordion-button{
    padding:21px 23px;
    color:var(--dark);
    background:#fff;
    font-size:15px;
    font-weight:700;
    box-shadow:none!important;
}

.faq-section .accordion-button:hover{
    color:var(--primary);
}

.faq-section .accordion-button:not(.collapsed){
    color:#fff;
    background:linear-gradient(135deg,var(--primary),#1D4ED8);
}

.faq-section .accordion-button:focus{
    box-shadow:none;
}

.faq-section .accordion-body{
    padding:22px 24px;
    color:var(--muted);
    font-size:14px;
    line-height:1.9;
    background:#fff;
}

.faq-section .accordion-button::after{
    filter:brightness(0);
}

.faq-section .accordion-button:not(.collapsed)::after{
    filter:brightness(0) invert(1);
}

/* =========================================================
   CTA
   ========================================================= */

.cta-section{
    position:relative;
    padding:120px 0;
    overflow:hidden;
    background:#fff;
}

.cta-box{
    position:relative;
    overflow:hidden;
    padding:65px;
    border-radius:32px;
    color:#fff;
    background:
        radial-gradient(circle at 90% 20%,rgba(255,255,255,.18),transparent 22%),
        linear-gradient(135deg,#1D4ED8,var(--primary),#38BDF8);
    box-shadow:0 35px 85px rgba(37,99,235,.25);
}

.cta-box::before{
    content:"";
    position:absolute;
    right:-80px;
    bottom:-150px;
    width:400px;
    height:400px;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50%;
    box-shadow:0 0 0 50px rgba(255,255,255,.025),0 0 0 100px rgba(255,255,255,.02);
}

.cta-tag{
    position:relative;
    z-index:1;
    color:rgba(255,255,255,.82);
    font-size:11px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
}

.cta-box h2{
    position:relative;
    z-index:1;
    max-width:760px;
    margin:17px 0 15px;
    color:#fff;
    font-size:44px;
    line-height:1.15;
    font-weight:800;
    letter-spacing:-1px;
}

.cta-box p{
    position:relative;
    z-index:1;
    max-width:720px;
    margin:0;
    color:rgba(255,255,255,.82);
    font-size:15px;
    line-height:1.8;
}

.cta-buttons{
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:12px;
}

.btn-white,
.btn-dark-custom{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:54px;
    padding:15px 28px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    text-decoration:none;
}

.btn-white{
    background:#fff;
    color:var(--dark);
    box-shadow:0 15px 30px rgba(0,0,0,.12);
}

.btn-white:hover{
    color:var(--dark);
    transform:translateY(-4px);
    box-shadow:0 20px 40px rgba(0,0,0,.18);
}

.btn-dark-custom{
    border:1px solid rgba(255,255,255,.18);
    background:rgba(11,18,32,.90);
    color:#fff;
}

.btn-dark-custom:hover{
    color:#fff;
    background:#050A12;
    transform:translateY(-4px);
}

/* =========================================================
   NEWSLETTER
   ========================================================= */

.newsletter-section{
    padding:80px 0;
    background:#F7F9FC;
}

.newsletter-box{
    position:relative;
    overflow:hidden;
    padding:60px;
    border-radius:30px;
    color:#fff;
    background:
        radial-gradient(circle at 80% 0%,rgba(255,255,255,.15),transparent 25%),
        linear-gradient(135deg,#1D4ED8,var(--primary),var(--accent));
    box-shadow:0 30px 75px rgba(37,99,235,.22);
}

.newsletter-box::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    right:-130px;
    bottom:-170px;
    border:1px solid rgba(255,255,255,.14);
    border-radius:50%;
}

.newsletter-box h2{
    position:relative;
    z-index:1;
    margin:14px 0 10px;
    color:#fff;
    font-size:40px;
    line-height:1.15;
    font-weight:800;
}

.newsletter-box p{
    position:relative;
    z-index:1;
    max-width:620px;
    margin:0;
    color:rgba(255,255,255,.86);
    font-size:14px;
    line-height:1.8;
}

.newsletter-form{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:0;
    padding:7px;
    border:1px solid rgba(255,255,255,.20);
    border-radius:999px;
    background:rgba(255,255,255,.10);
    backdrop-filter:blur(10px);
}

.newsletter-form input{
    flex:1;
    min-width:0;
    height:52px;
    padding:0 20px;
    border:0;
    outline:0;
    border-radius:999px;
    background:#fff;
    color:var(--dark);
    font-size:13px;
}

.newsletter-form input::placeholder{
    color:#8A94A6;
}

.newsletter-form button{
    height:52px;
    padding:0 24px;
    border:0;
    border-radius:999px;
    background:var(--dark);
    color:#fff;
    font-size:13px;
    font-weight:700;
    white-space:nowrap;
    transition:var(--transition);
}

.newsletter-form button:hover{
    background:#fff;
    color:var(--dark);
    transform:translateY(-2px);
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer{
    position:relative;
    padding:90px 0 25px;
    overflow:hidden;
    background:#070D18;
    color:#9AA5B5;
}

.footer::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:0;
    height:1px;
    background:linear-gradient(90deg,transparent,var(--primary),var(--accent),transparent);
}

.footer-logo{
    height:62px;
    width:auto;
    margin-bottom:22px;
}

.footer-text{
    max-width:380px;
    margin:0;
    color:#8D98AA;
    font-size:13px;
    line-height:1.9;
}

.footer h5{
    margin:0 0 22px;
    color:#fff;
    font-size:15px;
    font-weight:800;
}

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

.footer li{
    margin-bottom:11px;
    color:#8994A6;
    font-size:13px;
    line-height:1.7;
}

.footer a{
    color:#8994A6;
    text-decoration:none;
}

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

.footer-social{
    display:flex;
    gap:8px;
    margin-top:24px;
}

.footer-social a{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.08);
    border-radius:50%;
    background:rgba(255,255,255,.04);
    color:#fff;
}

.footer-social a:hover{
    border-color:var(--primary);
    background:var(--primary);
    color:#fff;
    transform:translateY(-3px);
}

.contact-list li{
    display:flex;
    align-items:flex-start;
    gap:10px;
}

.contact-list i{
    flex:0 0 auto;
    margin-top:3px;
    color:var(--accent);
}

.footer hr{
    margin:45px 0 25px;
    border-color:rgba(255,255,255,.08);
}

.footer-bottom{
    padding-top:0;
    color:#667085;
    font-size:12px;
}

.footer-bottom a{
    color:var(--accent);
    font-weight:700;
}

/* =========================================================
   PAGE BANNER
   ========================================================= */

.page-banner{
    position:relative;
    padding:120px 0 90px;
    overflow:hidden;
    background:
        radial-gradient(circle at 75% 20%,rgba(56,189,248,.15),transparent 25%),
        linear-gradient(135deg,#070D18,#0B1220 60%,#14213A);
    color:#fff;
    text-align:center;
}

.page-banner::before{
    content:"";
    position:absolute;
    inset:0;
    opacity:.22;
    background-image:
        linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);
    background-size:45px 45px;
}

.page-banner .container{
    position:relative;
    z-index:1;
}

.page-banner h1{
    margin:10px 0 0;
    color:#fff;
    font-size:clamp(36px,5vw,56px);
    line-height:1.1;
    font-weight:800;
}

.page-banner nav{
    margin-top:15px;
}

.page-banner nav a{
    color:var(--accent);
    text-decoration:none;
}

.page-banner nav .breadcrumb-item.active{
    color:rgba(255,255,255,.65);
}

/* =========================================================
   SERVICE DETAIL / GENERIC CONTENT
   ========================================================= */

.service-description{
    color:var(--muted);
    font-size:16px;
    line-height:1.95;
}

.service-icon-large{
    width:90px;
    height:90px;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(37,99,235,.10);
    border-radius:50%;
    background:linear-gradient(145deg,#EFF6FF,#E0F2FE);
    color:var(--primary);
    font-size:40px;
}

.why-box{
    height:100%;
    padding:30px;
    border:1px solid var(--border);
    border-radius:20px;
    background:#fff;
    box-shadow:0 12px 35px rgba(11,18,32,.06);
    transition:var(--transition);
}

.why-box:hover{
    border-color:rgba(37,99,235,.20);
    transform:translateY(-8px);
    box-shadow:0 25px 55px rgba(11,18,32,.11);
}

.why-box i{
    display:block;
    margin-bottom:18px;
    color:var(--primary);
    font-size:38px;
}

/* =========================================================
   PRODUCTS PAGE
   ========================================================= */

.products-page{
    min-height:50vh;
    padding:100px 0;
    background:#F7F9FC;
}

.products-page .product-card{
    margin-bottom:25px;
}

/* =========================================================
   GALLERY
   ========================================================= */

.gallery-album{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    box-shadow:0 20px 55px rgba(11,18,32,.10);
}

.gallery-album img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.7s;
}

.gallery-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:25px;
    color:#fff;
    background:linear-gradient(135deg,rgba(11,18,32,.85),rgba(37,99,235,.50));
    opacity:0;
    transition:var(--transition);
}

.gallery-album:hover img{
    transform:scale(1.09);
}

.gallery-album:hover .gallery-overlay{
    opacity:1;
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact-section{
    padding:120px 0;
    background:#F7F9FC;
}

.contact-info-card{
    height:100%;
    padding:35px;
    border:1px solid var(--border);
    border-radius:26px;
    background:#fff;
    box-shadow:0 20px 55px rgba(11,18,32,.07);
    transition:var(--transition);
}

.contact-info-card:hover{
    transform:translateY(-7px);
    box-shadow:0 30px 70px rgba(11,18,32,.11);
}

.contact-item{
    display:flex;
    align-items:flex-start;
    margin-bottom:25px;
}

.contact-item:last-child{
    margin-bottom:0;
}

.contact-icon{
    flex:0 0 auto;
    width:62px;
    height:62px;
    margin-right:17px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(37,99,235,.10);
    border-radius:17px;
    background:#EFF6FF;
}

.contact-icon i{
    color:var(--primary);
    font-size:24px;
}

.contact-item h5{
    margin:0 0 5px;
    color:var(--dark);
    font-size:15px;
    font-weight:800;
}

.contact-item p,
.contact-item a{
    margin:0;
    color:var(--muted);
    font-size:13px;
    line-height:1.7;
    text-decoration:none;
}

.contact-item a:hover{
    color:var(--primary);
}

.contact-form-card{
    padding:40px;
    border:1px solid var(--border);
    border-radius:26px;
    background:#fff;
    box-shadow:0 25px 65px rgba(11,18,32,.08);
}

.contact-form-card h3{
    margin:0 0 25px;
    color:var(--dark);
    font-size:26px;
    font-weight:800;
}

.contact-form-card .form-control{
    height:56px;
    padding:0 18px;
    border:1px solid var(--border);
    border-radius:13px;
    background:#fff;
    color:var(--dark);
    box-shadow:none;
}

.contact-form-card textarea.form-control{
    height:170px!important;
    padding-top:15px;
    resize:none;
}

.contact-form-card .form-control:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(37,99,235,.09);
}

.contact-btn{
    min-height:52px;
    padding:13px 32px;
    border:0;
    border-radius:999px;
    background:linear-gradient(135deg,var(--primary),var(--accent));
    color:#fff;
    font-size:13px;
    font-weight:700;
    box-shadow:0 12px 28px rgba(37,99,235,.22);
    transition:var(--transition);
}

.contact-btn:hover{
    background:var(--dark);
    color:#fff;
    transform:translateY(-3px);
}

.contact-map{
    overflow:hidden;
    border-radius:26px;
    box-shadow:0 25px 65px rgba(11,18,32,.09);
}

.contact-map iframe{
    display:block;
    width:100%;
    min-height:420px;
    border:0;
}

.contact-feature{
    margin-top:25px;
    padding:20px;
    border:1px solid var(--border);
    border-radius:18px;
    background:#fff;
    box-shadow:0 12px 30px rgba(11,18,32,.05);
}

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

.contact-feature li{
    margin:12px 0;
    color:var(--text);
    font-size:13px;
    font-weight:600;
}

.contact-feature i{
    margin-right:9px;
    color:var(--primary);
}

/* =========================================================
   SWIPER
   ========================================================= */

.swiper{
    overflow:hidden;
}

.swiper-button-next,
.swiper-button-prev{
    width:46px!important;
    height:46px!important;
    border:1px solid var(--border);
    border-radius:50%;
    background:#fff;
    color:var(--primary)!important;
    box-shadow:0 10px 25px rgba(11,18,32,.10);
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size:15px!important;
    font-weight:900;
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
    background:var(--primary);
    color:#fff!important;
    transform:translateY(-2px);
}

.swiper-pagination-bullet{
    background:#AEB8C7;
    opacity:1;
}

.swiper-pagination-bullet-active{
    background:var(--primary);
}

/* =========================================================
   AOS / ANIMATION HELPERS
   ========================================================= */

[data-aos]{
    will-change:transform,opacity;
}

@keyframes pulseGlow{
    0%,100%{box-shadow:0 0 0 0 rgba(56,189,248,.20)}
    50%{box-shadow:0 0 0 12px rgba(56,189,248,0)}
}

/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media(max-width:1199px){

    .navbar-nav .nav-link{
        padding-left:10px!important;
        padding-right:10px!important;
    }

    .navbar-nav .nav-link::before{
        left:10px;
        right:10px;
    }

    .section-title{
        font-size:40px;
    }

    .section-heading h2{
        font-size:42px;
    }

    .hero-section h1{
        max-width:680px;
    }

    .hero-floating-card{
        width:175px;
        right:2%;
    }

    .hero-floating-card.second{
        right:7%;
    }

    .cta-box{
        padding:50px;
    }

    .cta-box h2{
        font-size:38px;
    }
}

/* =========================================================
   RESPONSIVE - MOBILE NAV / TABLET
   ========================================================= */

@media(max-width:991px){

    body{
        padding-top:0;
    }

    .header-wrapper{
        position:relative;
    }

    .topbar{
        padding:8px 0;
    }

    .top-contact{
        justify-content:center;
        gap:5px 15px;
    }

    .top-contact li{
        font-size:11px;
    }

    .top-social{
        justify-content:center;
        margin-top:7px;
    }

    #header .navbar{
        min-height:72px;
        padding:8px 0;
    }

    #header .navbar-brand img{
        height:55px;
    }

    .navbar-collapse{
        margin-top:12px;
        padding:12px;
        border:1px solid var(--border);
        border-radius:20px;
        background:rgba(255,255,255,.98);
        box-shadow:0 20px 50px rgba(11,18,32,.12);
    }

    .navbar-nav{
        align-items:stretch;
    }

    .navbar-nav .nav-link{
        padding:13px 14px!important;
        border-radius:12px;
    }

    .navbar-nav .nav-link::before{
        left:14px;
        right:auto;
        bottom:8px;
        width:25px;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active{
        background:#F2F6FF;
    }

    .navbar .d-flex.align-items-center{
        margin-top:10px;
        justify-content:center;
    }

    .btn-quote{
        width:100%;
    }

    .hero-slide,
    .hero-slide .min-vh-100{
        min-height:760px!important;
    }

    .hero-section h1{
        max-width:720px;
        font-size:52px;
    }

    .hero-section p{
        max-width:620px;
    }

    .hero-floating-card{
        display:none;
    }

    .heroSlider .swiper-pagination{
        right:50%;
        transform:translateX(50%);
        bottom:25px!important;
    }

    .about-image{
        padding-right:15px;
        margin-bottom:35px;
    }

    .experience-box{
        right:0;
    }

    .cta-buttons{
        align-items:flex-start;
        margin-top:25px;
    }

    .newsletter-form{
        margin-top:25px;
    }
}

/* =========================================================
   RESPONSIVE - MOBILE
   ========================================================= */

@media(max-width:767px){

    .py-120{
        padding:75px 0;
    }

    .section-heading{
        margin-bottom:35px!important;
    }

    .section-heading h2{
        font-size:31px;
        letter-spacing:-.6px;
    }

    .section-heading p{
        font-size:13px;
        line-height:1.8;
    }

    .section-tag,
    .section-heading span,
    .sub-title{
        font-size:10px;
        letter-spacing:1.8px;
    }

    .section-title{
        font-size:32px;
        letter-spacing:-.5px;
    }

    .section-text{
        font-size:14px;
        line-height:1.85;
    }

    .top-contact li:nth-child(n+2){
        display:none;
    }

    .top-social{
        display:none;
    }

    .topbar .col-lg-6{
        text-align:center!important;
    }

    #header .navbar{
        min-height:68px;
    }

    #header .navbar-brand img{
        height:50px;
        max-width:170px;
    }

    .navbar-toggler{
        width:44px;
        height:44px;
        border-radius:12px;
    }

    .hero-slide,
    .hero-slide .min-vh-100{
        min-height:690px!important;
    }

    .hero-overlay{
        background:
            linear-gradient(90deg,
                rgba(5,10,18,.94),
                rgba(5,10,18,.68)),
            linear-gradient(180deg,transparent,rgba(5,10,18,.40));
    }

    .hero-section h1{
        max-width:100%;
        margin-bottom:18px;
        font-size:38px;
        line-height:1.08;
        letter-spacing:-1.3px;
    }

    .hero-section p{
        margin-bottom:25px;
        font-size:14px;
        line-height:1.8;
    }

    .hero-btns{
        display:grid;
        grid-template-columns:1fr;
        width:100%;
    }

    .hero-btns .btn-main,
    .hero-btns .btn-outline-light{
        width:100%;
    }

    .hero-tag{
        margin-bottom:17px;
        font-size:9px;
        letter-spacing:1.3px;
    }

    .heroSlider .swiper-pagination-bullet{
        width:20px;
    }

    .heroSlider .swiper-pagination-bullet-active{
        width:38px;
    }

    .about-section,
    .services-section,
    .category-section,
    .why-section,
    .team-section,
    .products-section,
    .process-section,
    .projects-section,
    .testimonial-section,
    .faq-section,
    .contact-section{
        padding:75px 0;
    }

    .about-image::before{
        left:-8px;
        top:15px;
    }

    .about-image img{
        border-width:5px;
        border-radius:22px;
    }

    .experience-box{
        right:-5px;
        bottom:20px;
        width:145px;
        padding:18px 10px;
        border-radius:18px;
    }

    .experience-box h2{
        font-size:34px;
    }

    .experience-box span{
        font-size:8px;
    }

    .feature-box{
        padding:14px 12px;
        font-size:11px;
    }

    .client-box{
        height:92px;
        padding:15px;
        border-radius:15px;
    }

    .client-box img{
        max-width:105px;
        max-height:45px;
    }

    .service-image{
        height:210px;
    }

    .service-content{
        padding:0 20px 24px;
    }

    .service-content h4{
        font-size:18px;
    }

    .category-image{
        height:220px;
    }

    .category-content{
        padding:20px;
    }

    .category-content h4{
        font-size:17px;
    }

    .why-card{
        padding:24px;
    }

    .why-icon{
        width:62px;
        height:62px;
    }

    .why-card h4{
        font-size:17px;
    }

    .team-image img{
        height:280px;
    }

    .counter-section{
        padding:70px 0;
    }

    .counter-box{
        padding:25px 12px;
    }

    .counter-icon{
        width:58px;
        height:58px;
        font-size:23px;
        border-radius:16px;
    }

    .counter-box h2{
        font-size:34px;
    }

    .counter-box p{
        font-size:9px;
    }

    .product-image{
        height:230px;
    }

    .product-content{
        padding:20px;
    }

    .product-content h4{
        font-size:18px;
    }

    .process-card{
        padding:35px 20px 25px;
    }

    .process-number{
        font-size:32px;
    }

    .process-icon{
        width:68px;
        height:68px;
        border-radius:19px;
        font-size:27px;
    }

    .project-card{
        height:310px;
        border-radius:20px;
    }

    .project-overlay{
        padding:22px;
        opacity:1;
        background:linear-gradient(to top,rgba(5,10,18,.82),transparent 65%);
    }

    .project-overlay h4{
        font-size:19px;
    }

    .project-overlay a{
        width:42px;
        height:42px;
        margin-top:12px;
    }

    .testimonial-card{
        padding:23px;
    }

    .testimonial-text{
        min-height:0;
        font-size:13px;
    }

    .cta-section{
        padding:75px 0;
    }

    .cta-box{
        padding:38px 25px;
        border-radius:24px;
    }

    .cta-box h2{
        font-size:30px;
        letter-spacing:-.5px;
    }

    .cta-box p{
        font-size:13px;
    }

    .btn-white,
    .btn-dark-custom{
        width:100%;
    }

    .newsletter-section{
        padding:60px 0;
    }

    .newsletter-box{
        padding:35px 22px;
        border-radius:24px;
    }

    .newsletter-box h2{
        font-size:30px;
    }

    .newsletter-form{
        flex-direction:column;
        align-items:stretch;
        padding:7px;
        border-radius:20px;
    }

    .newsletter-form input,
    .newsletter-form button{
        width:100%;
    }

    .footer{
        padding:70px 0 25px;
    }

    .footer-logo{
        height:55px;
    }

    .page-banner{
        padding:80px 0 65px;
    }

    .page-banner h1{
        font-size:36px;
    }

    .contact-form-card{
        padding:25px;
        margin-top:25px;
        border-radius:20px;
    }

    .contact-info-card{
        padding:25px;
        border-radius:20px;
    }

    .contact-map iframe{
        min-height:320px;
    }
}

/* =========================================================
   EXTRA SMALL
   ========================================================= */

@media(max-width:420px){

    .hero-section h1{
        font-size:34px;
    }

    .hero-section p{
        font-size:13px;
    }

    .section-heading h2{
        font-size:28px;
    }

    .section-title{
        font-size:29px;
    }

    .experience-box{
        width:130px;
    }

    .experience-box h2{
        font-size:30px;
    }

    .counter-box h2{
        font-size:29px;
    }

    .newsletter-box h2{
        font-size:27px;
    }
}

/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
   ========================================================= */

@media(prefers-reduced-motion:reduce){

    html{
        scroll-behavior:auto;
    }

    *,
    *::before,
    *::after{
        animation-duration:.01ms!important;
        animation-iteration-count:1!important;
        transition-duration:.01ms!important;
    }
}
