:root {
    --primary-color: #00BDCD;
    --secondary-color: #192A56;
    --brand-blue: #3B71FE;
    --accent-color: #F1FAFF;
    --success-color: #10B981;
    --white: #ffffff;
    --black: #000000;
    --bg-light: #F8FBFF;
    --text-dark: #192A56;
    --text-light: #64748B;
    --font-main: 'Poppins', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

section {
    padding: 120px 0;
}

/* Premium Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, #008a94 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 189, 205, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(0, 189, 205, 0.2);
}

.badge-premium::before,
.badge-premium::after {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.badge-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--primary-color);
}

.section-title-premium {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.1;
    margin-top: 15px;
}

/* Top Bar */
.top-bar {
    background: transparent;
    color: var(--secondary-color);
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1001;
}

.top-bar a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.top-bar a:hover {
    color: var(--primary-color);
}

.top-bar-info {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-bar-social {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;
}

/* Navbar Premium Styling */
.navbar-wrapper {
    position: absolute;
    width: 100%;
    top: 45px;
    z-index: 1000;
}

.navbar {
    padding: 0;
    margin: 0 15px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.navbar.scrolled-fix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    border-radius: 0;
    animation: slideDown 0.5s ease forwards;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar-brand {
    padding: 12px 0 12px 25px;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.navbar-brand span {
    color: var(--primary-color);
}

/* Nav Links */
.nav-link {
    font-weight: 600;
    color: var(--secondary-color) !important;
    margin: 0 10px;
    transition: var(--transition-smooth);
    text-transform: capitalize;
    font-size: 15px;
    padding: 25px 0 !important;
    position: relative;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link.has-dropdown::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 10px;
    opacity: 0.8;
}

/* Animated underline on hover */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 18px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    text-decoration: none !important;
}

/* Dropdown Premium Styling */
.navbar-nav .dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 15px 10px;
    min-width: 200px;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    display: block;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
}

.navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 600;
    color: var(--secondary-color);
    border-radius: 8px;
    font-size: 14px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown-item::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(0, 189, 205, 0.05);
    color: var(--primary-color);
    padding-left: 25px;
}

.dropdown-item:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.dropdown-toggle::after {
    display: none !important;
}

/* Navbar Right */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 15px;
}

.search-icon {
    font-size: 18px;
    color: var(--secondary-color);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.search-icon:hover {
    color: var(--primary-color);
}

/* Get A Quote Button */
.btn-quote {
    background: var(--primary-color) !important;
    /* The blue from the screenshot */
    color: var(--white) !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    text-decoration: none !important;
    box-shadow: none;
    letter-spacing: 0.2px;
}

.btn-quote:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0f1c3d 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(25, 42, 86, 0.3);
    color: var(--white) !important;
    text-decoration: none !important;
}

/* ==============================
   Hero Slider
============================== */
.hero-slider {
    height: 620px;
    width: 100%;
    position: relative;
}

.swiper,
.swiper-slide,
.mainSlider {
    height: 100%;
    width: 100%;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    filter: brightness(0.85);
    transform: scale(1);
    transition: transform 8s ease;
}

.swiper-slide-active .hero-bg {
    transform: scale(1.06);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(15, 25, 70, 0.88) 0%, rgba(15, 25, 70, 0.55) 60%, rgba(15, 25, 70, 0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 0;
    color: var(--white);
    max-width: 620px;
}

.hero-sub {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(30px);
    color: rgba(255, 255, 255, 0.85);
}

.hero-sub::before {
    content: '';
    width: 35px;
    height: 2px;
    background: var(--white);
    flex-shrink: 0;
}

.hero-title {
    font-size: 62px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-desc {
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}

/* Hero Buttons */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(0, 189, 205, 0.35);
}

.btn-hero-primary:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
}

.btn-hero-outline:hover {
    background: var(--white);
    color: var(--secondary-color);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* Swiper Slide Animations */
.swiper-slide-active .hero-sub,
.swiper-slide-active .hero-title,
.swiper-slide-active .hero-desc,
.swiper-slide-active .hero-btns {
    animation: fadeInUp 0.8s forwards;
}

.swiper-slide-active .hero-title {
    animation-delay: 0.15s;
}

.swiper-slide-active .hero-desc {
    animation-delay: 0.3s;
}

.swiper-slide-active .hero-btns {
    animation-delay: 0.45s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Left-side Circular Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
    display: none;
    /* hide default */
}

.hero-nav-arrows {
    position: absolute;
    right: 50px;
    bottom: 50px;
    left: auto;
    top: auto;
    transform: none;
    display: flex;
    flex-direction: row;
    gap: 15px;
    z-index: 30;
}

.hero-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    /* override swiper's ::after/::before default icons */
    position: relative;
    margin: 0;
    top: auto;
    right: auto;
    left: auto;
}

.hero-arrow::after {
    display: none !important;
}

.hero-arrow:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* Curve Wave */
.hero-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 20;
    line-height: 0;
}

.hero-curve svg {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }

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

    .hero-nav-arrows {
        right: 20px;
        bottom: 40px;
        left: auto;
    }
}

/* Premium CTA Button */
.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 15px;
}

.btn-premium:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 189, 205, 0.3);
}

/* ==============================
   About Section
============================== */
.about-section-h {
    overflow: visible;
}

.about-img-wrap {
    padding: 20px 30px 30px;
}

/* Blob shape — circular organic image */
.blob-shape {
    width: 440px;
    max-width: 100%;
    height: 440px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

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

/* Play button — top-right corner of blob */
.play-btn-float {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 0 0 0 rgba(0, 189, 205, 0.6);
    animation: pulsePlay 2s infinite;
    transition: var(--transition-smooth);
}

.play-btn-float:hover {
    transform: translate(-50%, -50%) scale(1.12);
}

@keyframes pulsePlay {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 189, 205, 0.55);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(0, 189, 205, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 189, 205, 0);
    }
}

.blob-wave-decoration {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 1;
    opacity: 0.8;
}

.about-checklist-v2 li {
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-checklist-v2 i {
    color: var(--primary-color);
    font-size: 18px;
}

.about-counter-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-color);
}

.counter-icon-v2 {
    font-size: 36px;
    color: var(--primary-color);
}

.call-now-v2 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.call-icon-v2 {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
}

/* Floating Plane Decor */
.about-floating-icon {
    position: absolute;
    top: -50px;
    left: -100px;
    z-index: -1;
    animation: floatPlane 10s ease-in-out infinite;
}

@keyframes floatPlane {

    0%,
    100% {
        transform: translate(0, 0) rotate(-20deg);
    }

    50% {
        transform: translate(20px, -20px) rotate(-15deg);
    }
}

/* Brands Section */
.brands-section {
    border-top: 1px solid #eee;
    padding: 60px 0;
}

.brand-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.brand-title::before,
.brand-title::after {
    content: '';
    width: 60px;
    height: 2px;
    background: #eee;
}

.brand-logo {
    opacity: 0.7;
    transition: var(--transition-smooth);
    filter: grayscale(1);
    max-height: 40px;
    width: auto;
}

.brand-logo:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* ==============================
   Service Cards (Home) - Ultra Premium Design
============================== */
.services-home {
    background: #F9FBFE;
    /* Modern off-white/blue background */
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.services-home::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 113, 254, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Card wrapper */
.svc-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03), 0 1px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
}

.svc-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(59, 113, 254, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.svc-card:hover {
    box-shadow: 0 25px 60px rgba(0, 189, 205, 0.2);
    border-color: rgba(0, 189, 205, 0.3);
}

/* Image area */
.svc-img {
    position: relative;
    padding: 20px 20px 0 20px;
    /* Precise inset look */
    height: 240px;
    overflow: visible;
}

.svc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.svc-card:hover .svc-img img {
    transform: scale(1.05);
}

/* Iconic Blue Badge */
.svc-icon-badge {
    position: absolute;
    bottom: -28px;
    left: 35px;
    width: 65px;
    height: 65px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 20px rgba(0, 189, 205, 0.35);
    z-index: 10;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 4px solid #ffffff;
}

.svc-card:hover .svc-icon-badge {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.svc-card:hover .svc-body {
    background: var(--primary-color);
}

/* Card body */
.svc-body {
    padding: 55px 35px 35px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.svc-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.svc-card:hover h4 {
    color: var(--white);
}

.svc-body p {
    font-size: 15.5px;
    color: #718096;
    line-height: 1.7;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.svc-card:hover .svc-body p {
    color: rgba(255, 255, 255, 0.9);
}

/* Read More link */
.svc-read-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #1A202C;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    margin-top: auto;
    transition: all 0.3s ease;
}

.svc-card:hover .svc-read-more {
    color: var(--white);
}

/* Section Utilities */
.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 189, 205, 0.08);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, #008a94 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-svc-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--secondary-color);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(25, 42, 86, 0.15);
    letter-spacing: 0.5px;
}

.btn-svc-all:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 189, 205, 0.3);
}

/* ==============================
   How It Works Section
============================== */
.how-it-works {
    background: #fff;
    overflow: hidden;
}

.hiw-item {
    padding: 30px 15px;
    height: 100%;
    transition: var(--transition-smooth);
}

.hiw-item:hover {
    transform: translateY(-10px);
}

.hiw-icon-wrap {
    position: relative;
    display: inline-flex;
    margin: 0 auto;
}

.hiw-num {
    position: absolute;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    left: -10px;
    top: -10px;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0, 189, 205, 0.3);
}

.hiw-icon {
    width: 130px;
    height: 130px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: var(--transition-smooth);
}

.hiw-item:hover .hiw-icon {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 189, 205, 0.4);
    transform: scale(1.08) translateY(-5px);
}

.hiw-item:hover .hiw-text h5 {
    color: var(--primary-color);
}

.hiw-wrapper {
    position: relative;
    padding: 20px 0;
}

.hiw-connector {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 300px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
}

.hiw-path-bg {
    stroke: rgba(0, 189, 205, 0.08);
}

.hiw-path-active {
    stroke: var(--primary-color);
    stroke-dasharray: 12, 12;
    stroke-opacity: 0.8;
    filter: drop-shadow(0 0 8px rgba(0, 189, 205, 0.4));
    animation: dashMove 30s linear infinite;
}

@keyframes dashMove {
    from {
        stroke-dashoffset: 2000;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.hiw-icon i {
    transition: var(--transition-smooth);
}

.hiw-item:hover .hiw-icon i {
    transform: rotateY(360deg);
}

.hiw-text h5 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    transition: var(--transition-smooth);
}

.hiw-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

@media (min-width: 992px) {
    .row.g-4.mt-5>div:nth-child(even) {
        margin-top: 60px;
    }
}

.hiw-step h6 {
    font-size: 17px;
    color: var(--secondary-color);
}

.hiw-step p {
    font-size: 14px;
    max-width: 190px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hiw-steps {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        min-height: unset;
    }

    .hiw-step.top,
    .hiw-step.bottom {
        align-self: center;
        padding: 0;
    }

    .hiw-connector {
        display: none;
    }
}

/* CTA Banner Premium */
.cta-section {
    position: relative;
    z-index: 5;
}

.cta-banner-premium {
    background: linear-gradient(135deg, var(--primary-color) 0%, #008a94 100%);
    border-radius: 50px;
    padding: 70px 60px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 189, 205, 0.4);
}

.cta-banner-premium::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 12px;
}

.cta-subtitle {
    font-size: 17px;
    opacity: 0.85;
    max-width: 520px;
    margin-bottom: 0;
    line-height: 1.6;
}

.cta-contact-icon {
    width: 65px;
    height: 65px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    transition: var(--transition-smooth);
}

.cta-contact-info:hover .cta-contact-icon {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.cta-banner-premium .btn-hero-primary.bg-white {
    background: var(--white) !important;
    color: var(--primary-color) !important;
    border-color: var(--white) !important;
    padding: 16px 35px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cta-banner-premium .btn-hero-primary.bg-white:hover {
    background: var(--secondary-color) !important;
    color: var(--white) !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .cta-banner-premium {
        padding: 50px 30px;
        border-radius: 30px;
        text-align: center;
    }

    .cta-title {
        font-size: 30px;
    }

    .cta-subtitle {
        margin: 0 auto;
    }

    .cta-contact-info {
        justify-content: center;
    }
}

.hero-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 20;
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s all ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-content {
        padding-left: 5%;
    }
}

/* Footer Styling */
/* ==============================
   Main Footer Section
============================== */
.main-footer {
    background: #F8FBFF;
    color: var(--secondary-color);
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

/* Background Overlay / Decor */
.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(0, 189, 205, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 189, 205, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-widget-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 35px;
    position: relative;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 10px;
}

.footer-text {
    color: var(--text-light);
    line-height: 1.8;
}

/* Social Links */
.footer-social .social-link {
    width: 45px;
    height: 45px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.footer-social .social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 189, 205, 0.2);
}

/* Footer Menu links */
.footer-menu li {
    margin-bottom: 15px;
}

.footer-menu a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.footer-menu a i {
    font-size: 10px;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.footer-menu a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.footer-menu a:hover i {
    transform: translateX(3px);
}

/* Contact Details */
.footer-contact-info li {
    color: var(--text-light);
    line-height: 1.6;
}

.footer-contact-info i {
    color: var(--primary-color);
    font-size: 18px;
}

.footer-contact-info a {
    color: var(--text-light);
    transition: var(--transition-smooth);
}

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

/* Newsletter Form */
.footer-newsletter-form .input-group {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 6px;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.footer-newsletter-form .input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 189, 205, 0.1);
}

.footer-newsletter-form .form-control {
    background: transparent;
    border: none;
    color: var(--secondary-color);
    padding-left: 15px;
    box-shadow: none;
}

.footer-newsletter-form .form-control::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.footer-newsletter-form .btn {
    border-radius: 12px !important;
    background: var(--primary-color);
    border: none;
    padding: 10px 18px;
    transition: var(--transition-smooth);
}

.footer-newsletter-form .btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 80px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-bottom-menu a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-bottom-menu a:hover {
    color: var(--primary-color);
}



/* ==============================
   Achievements / Stats Section
============================== */
.achievements-section {
    background: var(--secondary-color);
    padding: 100px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 189, 205, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 20px;
    transition: var(--transition-smooth);
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
    .stat-item::after {
        display: none;
    }
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.stat-item:hover .stat-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-10px) rotateY(360deg);
    box-shadow: 0 15px 30px rgba(0, 189, 205, 0.3);
}

.stat-num {
    display: block;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.8;
}

/* ==============================
   Projects Section (Advanced UI/UX Swiper)
============================== */
.projects-section {
    background: var(--secondary-color);
    padding: 120px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.projects-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(25, 42, 86, 0.92), rgba(25, 42, 86, 0.95)), url('https://images.unsplash.com/photo-1522071823991-b1ae5e6a3048?w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.projectSlider {
    padding: 20px 0 70px !important;
    overflow: visible !important;
}

.project-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 400px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s ease;
}

/* Gradient Overlay for Text Readability */
.project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    opacity: 0.8;
    transition: all 0.5s ease;
    z-index: 1;
}

.project-card:hover::after {
    background: linear-gradient(to top, rgba(0, 189, 205, 0.95) 0%, rgba(0, 189, 205, 0.6) 70%, transparent 100%);
    opacity: 1;
}

.project-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px;
    z-index: 2;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-category {
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
    background: var(--primary-color);
    padding: 6px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 189, 205, 0.3);
}

.project-title {
    font-size: 21px;
    font-weight: 800;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

.project-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.project-btn-wrap {
    margin-top: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
}

.project-view-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
}

.project-view-more i {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Hover States — The "WOW" Factors */
.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.project-card:hover .project-img {
    transform: scale(1.1) rotate(2deg);
    filter: blur(2px) brightness(0.7);
}

.project-card:hover .project-content {
    transform: translateY(-20px);
}

.project-card:hover .project-desc {
    color: var(--white);
    opacity: 1;
    transform: translateY(0);
}

.project-card:hover .project-btn-wrap {
    opacity: 1;
    transform: translateY(0);
}

.project-card:hover .project-view-more i {
    background: var(--white);
    color: var(--primary-color);
}

.project-view-more:hover i {
    transform: translateX(5px) scale(1.1);
    box-shadow: 0 0 20px rgba(0, 189, 205, 0.6);
}


/* Blog slider special pagination if needed */
.blogSlider .swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}


/* ==============================
   Marquee / Ticker Section
============================== */
.marquee-container {
    background: var(--white);
    padding: 80px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    animation: marquee-scroll 40s linear infinite;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    margin-right: 80px;
    font-size: 56px;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -1px;
}

.marquee-item i {
    color: var(--primary-color);
    font-size: 45px;
}

/* ==============================
   Team Members Section
============================== */
.team-section {
    padding: 120px 0;
    background: #F8FBFF;
    position: relative;
}

.btn-all-members {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 20px rgba(0, 189, 205, 0.2);
}

.btn-all-members:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 189, 205, 0.3);
}

.team-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.team-img-wrap {
    width: 100%;
    height: 380px;
    overflow: hidden;
    position: relative;
}

.team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-info {
    background: var(--white);
    padding: 40px 25px 35px;
    text-align: center;
    position: relative;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
    margin-top: -45px;
    z-index: 2;
    transition: var(--transition-smooth);
    border-top: 1px solid rgba(0, 0, 0, 0.02);
}

.team-info h4 {
    color: var(--secondary-color);
    font-weight: 800;
    margin-bottom: 8px;
    font-size: 22px;
    transition: color 0.3s ease;
}

.team-info p {
    color: var(--text-light);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    transition: color 0.3s ease;
}

/* Social Share Toggle */
.team-social-toggle {
    position: absolute;
    bottom: 140px;
    /* Move up to float over image instead of text */
    right: 25px;
    z-index: 10;
}

.share-btn {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 189, 205, 0.3);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.social-links {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 55px;
    /* Stay above share button */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* Hover States */
.team-card:hover .team-img-wrap img {
    transform: scale(1.1);
}

.team-card:hover .team-info {
    background: var(--primary-color);
}

.team-card:hover .team-info h4,
.team-card:hover .team-info p {
    color: var(--white);
}

.team-card:hover .share-btn {
    background: var(--secondary-color);
    transform: rotate(360deg);
}

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

/* Specific Card Variation (matching user screenshot) - Now consistent with pattern */
.team-card.accent-active .team-info {
    background: var(--white);
}

/* No longer needed as all follow same pattern, but keeping for compatibility */
.team-card.accent-active:hover .team-info {
    background: var(--primary-color);
}

/* ==============================
   Testimonials Section
============================== */
.testimonials-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonial-img-box {
    position: relative;
    padding: 20px;
}

.testimonial-main-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.testimonial-quote-icon {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: 0 15px 30px rgba(0, 189, 205, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 15px 30px rgba(0, 189, 205, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 45px rgba(0, 189, 205, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 15px 30px rgba(0, 189, 205, 0.3);
    }
}

.testimonial-slider {
    padding: 20px !important;
}

.testimonial-item {
    background: #F8FBFF;
    padding: 50px;
    border-radius: 30px;
    position: relative;
}

.testimonial-rating {
    margin-bottom: 25px;
    color: #FFC107;
    font-size: 18px;
}

.testimonial-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 35px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-info h5 {
    margin: 0;
    font-weight: 800;
    color: var(--secondary-color);
}

.author-info span {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testi-pagination {
    margin-top: 50px !important;
    position: relative !important;
    text-align: left !important;
}

.testi-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--secondary-color) !important;
    opacity: 0.1 !important;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.testi-pagination .swiper-pagination-bullet-active {
    width: 35px;
    border-radius: 10px;
    background: var(--primary-color) !important;
    opacity: 1 !important;
}

/* ==============================
   Blog Section (Home)
============================== */
.brandSlider .swiper-wrapper {
    transition-timing-function: linear !important;
}

.blog-section-home {
    padding: 120px 0;
    background: var(--white);
}

.text-primary-brand {
    color: var(--primary-color) !important;
}

.bg-primary-brand {
    background-color: var(--primary-color) !important;
}

.border-primary-brand {
    border-color: var(--primary-color) !important;
}

.blog-nav-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid #eee;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--secondary-color);
    transition: var(--transition-smooth);
    background: transparent;
    cursor: pointer;
    z-index: 10;
}

.blog-nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    margin-bottom: 20px;
    position: relative;
}

.blog-card:hover {
    border-color: rgba(0, 189, 205, 0.3);
}

.blog-img-box {
    position: relative;
    height: 260px;
    overflow: hidden;
    margin: 15px;
    border-radius: 15px;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-box img {
    transform: scale(1.1);
}

.blog-date-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 18px;
    text-align: center;
    border-radius: 0 0 15px 0;
    z-index: 2;
}

.blog-date-badge span {
    display: block;
    line-height: 1.1;
}

.blog-date-badge .day {
    font-size: 22px;
    font-weight: 800;
}

.blog-date-badge .month {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 2px;
}

.blog-content {
    padding: 10px 30px 40px;
    transition: var(--transition-smooth);
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.blog-meta i {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.4;
    margin-bottom: 0;
    transition: var(--transition-smooth);
}

.blog-title a {
    text-decoration: none;
    color: inherit;
}

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

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    margin-top: 20px;
    transition: var(--transition-smooth);
}

.blog-read-more:hover {
    color: var(--secondary-color);
    gap: 15px;
}
.text-primary-brand { color: var(--primary-color) !important; }

/* ==========================================================================
   ADVANCED PRIVATE IT COMPANY HERO & DYNAMIC SMART ABOUT STYLES
   ========================================================================== */

/* Enhanced Hero Overlay with Cyber Mesh & Ambient Light */
.hero-overlay-tech {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(0, 189, 205, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(59, 113, 254, 0.2) 0%, transparent 60%),
        linear-gradient(100deg, rgba(12, 21, 55, 0.94) 0%, rgba(15, 25, 70, 0.72) 55%, rgba(15, 25, 70, 0.25) 100%);
    z-index: 2;
}

.hero-cyber-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 189, 205, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 189, 205, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 3;
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   Dynamic Smart About Section
   -------------------------------------------------------------------------- */
.smart-about-wrap {
    position: relative;
    padding: 20px;
}

.smart-img-frame {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: #0f1946;
    padding: 6px;
    box-shadow: 0 30px 60px -15px rgba(0, 189, 205, 0.22), 0 0 0 1px rgba(0, 189, 205, 0.3);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.smart-img-frame:hover {
    box-shadow: 0 35px 70px -10px rgba(0, 189, 205, 0.35), 0 0 25px rgba(0, 189, 205, 0.4);
}

.smart-img-inner {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #0b132b;
}

.smart-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
    filter: brightness(1.03) contrast(1.05);
}

.smart-img-frame:hover .smart-main-img {
    transform: scale(1.05);
}

.smart-tech-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15, 25, 70, 0.7) 0%, transparent 50%),
                linear-gradient(90deg, rgba(0, 189, 205, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

/* Dynamic Live Radar Badge (Top Left) */
.smart-badge-radar {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(15, 25, 70, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 189, 205, 0.4);
    padding: 8px 18px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    animation: floatBadge 4s ease-in-out infinite;
}

.radar-dot {
    position: relative;
    width: 10px;
    height: 10px;
    background: #10B981;
    border-radius: 50%;
}

.radar-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #10B981;
    animation: radarPulse 1.8s ease-out infinite;
}

@keyframes radarPulse {
    0% { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* Floating SLA Metric Card (Bottom Right) */
.smart-card-sla {
    position: absolute;
    bottom: -20px;
    right: -10px;
    z-index: 12;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(15, 25, 70, 0.18), 0 0 0 1px rgba(0, 189, 205, 0.2);
    animation: floatSmartCard 5s ease-in-out infinite alternate;
    max-width: 260px;
}

.smart-sla-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-color), #008a94);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(0, 189, 205, 0.35);
    flex-shrink: 0;
}

.smart-sla-val {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.1;
}

.smart-sla-lbl {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Floating Experience Pill (Bottom Left) */
.smart-card-exp {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 10;
    background: rgba(15, 25, 70, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 12px 20px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.smart-exp-num {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.smart-exp-txt {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    opacity: 0.9;
}

/* Floating Video Play Button Overlay */
.smart-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, var(--primary-color), #0099aa);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    z-index: 11;
    box-shadow: 0 10px 30px rgba(0, 189, 205, 0.5);
    transition: transform 0.3s ease, background 0.3s ease;
}

.smart-play-btn::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(0, 189, 205, 0.6);
    animation: pulseRing 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

.smart-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.12);
    background: #ffffff;
    color: var(--primary-color);
}

/* Interactive Smart Tech Selector Tabs */
.smart-tech-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.smart-tab-btn {
    background: #f0f6ff;
    border: 1px solid rgba(0, 189, 205, 0.15);
    color: var(--secondary-color);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.smart-tab-btn i {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.smart-tab-btn:hover,
.smart-tab-btn.active {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 6px 18px rgba(0, 189, 205, 0.3);
}

.smart-tab-btn:hover i,
.smart-tab-btn.active i {
    color: #ffffff;
}

/* Keyframe Animations */
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes floatSmartCard {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes pulseRing {
    0% { transform: scale(0.9); opacity: 0.9; }
    100% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 991px) {
    .smart-card-sla {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 15px;
        max-width: 100%;
    }
    .smart-badge-radar {
        top: 15px;
        left: 15px;
        font-size: 10px;
    }
    .smart-card-exp {
        bottom: 15px;
        left: 15px;
        padding: 8px 14px;
    }
}



/* ══════════════════════════════════════════════════════════
   SERVICES — Premium Split-Panel Section
══════════════════════════════════════════════════════════ */

.svc-pro-section {
    padding: 120px 0;
    background: #F4F8FF;
    position: relative;
    overflow: hidden;
}

/* Decorative background blobs */
.svc-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.45;
}
.svc-blob-1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(0,189,205,0.18) 0%, transparent 70%);
    top: -100px; right: -120px;
}
.svc-blob-2 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(59,113,254,0.12) 0%, transparent 70%);
    bottom: -80px; left: -80px;
}

/* Heading */
.svc-pro-heading {
    font-size: clamp(28px, 3.8vw, 46px);
    font-weight: 800;
    line-height: 1.18;
    color: var(--secondary-color);
    margin-bottom: 16px;
}
.svc-pro-subheading {
    font-size: 15.5px;
    color: #64748b;
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 0;
}

/* ── Main Panel ── */
.svc-pro-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

@media (max-width: 991px) {
    .svc-pro-panel { grid-template-columns: 1fr; }
    .svc-pro-right { order: -1; }
}

/* ── LEFT PANEL ── */
.svc-pro-left {
    background: #ffffff;
    border-radius: 28px;
    padding: 36px 32px 28px;
    box-shadow: 0 8px 40px rgba(25,42,86,0.07);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.svc-pro-list-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #94a3b8;
    margin-bottom: 20px;
}

/* Animated pulse dot */
.svc-dot-pulse {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    display: inline-block;
    position: relative;
}
.svc-dot-pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0;
    animation: dotPulse 1.8s ease-out infinite;
}
@keyframes dotPulse {
    0%   { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(2);   opacity: 0; }
}

/* Service list */
.svc-pro-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.svc-pro-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid transparent;
    position: relative;
    overflow: hidden;
}
.svc-pro-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0,189,205,0.08) 0%, rgba(59,113,254,0.06) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.svc-pro-item:hover::before,
.svc-pro-item.active::before {
    opacity: 1;
}
.svc-pro-item:hover,
.svc-pro-item.active {
    border-color: rgba(0,189,205,0.35);
    background: rgba(0,189,205,0.04);
}

.svc-pro-item-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.svc-pro-item-icon {
    width: 46px; height: 46px;
    border-radius: 14px;
    background: rgba(0,189,205,0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.svc-pro-item:hover .svc-pro-item-icon,
.svc-pro-item.active .svc-pro-item-icon {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 6px 18px rgba(0,189,205,0.35);
}

.svc-pro-item-title {
    font-size: 15.5px;
    font-weight: 600;
    color: var(--secondary-color);
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}
.svc-pro-item:hover .svc-pro-item-title,
.svc-pro-item.active .svc-pro-item-title {
    color: var(--primary-color);
}

.svc-pro-item-arrow {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,189,205,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.svc-pro-item:hover .svc-pro-item-arrow,
.svc-pro-item.active .svc-pro-item-arrow {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateX(3px);
    box-shadow: 0 4px 14px rgba(0,189,205,0.35);
}

/* CTA card at bottom of left panel */
.svc-cta-card {
    margin-top: 24px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #243770 100%);
    border-radius: 20px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
}
.svc-cta-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(0,189,205,0.4);
    animation: phoneBounce 2.5s ease-in-out infinite;
}
@keyframes phoneBounce {
    0%, 100% { transform: rotate(0deg); }
    20%       { transform: rotate(-15deg); }
    40%       { transform: rotate(15deg); }
    60%       { transform: rotate(-8deg); }
    80%       { transform: rotate(8deg); }
}
.svc-cta-label {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    margin: 0 0 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.svc-cta-phone {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
.svc-cta-phone:hover { color: var(--primary-color); }

/* ── RIGHT PANEL ── */
.svc-pro-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Image frame */
.svc-pro-img-frame {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 24px 70px rgba(25,42,86,0.18);
}
.svc-pro-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.svc-pro-img-frame:hover .svc-pro-img {
    transform: scale(1.04);
}

/* Category badge on image */
.svc-pro-img-badge {
    position: absolute;
    top: 22px; left: 22px;
    background: rgba(25,42,86,0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.12);
}

/* Experience pill — bottom left of image */
.svc-pro-exp-pill {
    position: absolute;
    bottom: 22px; left: 22px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,189,205,0.15);
}
.svc-exp-num {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}
.svc-exp-txt {
    font-size: 11px;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Corner glow on image */
.svc-pro-glow {
    position: absolute;
    bottom: -40px; right: -40px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(0,189,205,0.35) 0%, transparent 65%);
    pointer-events: none;
    border-radius: 50%;
}

/* Detail card below image */
.svc-pro-detail-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 24px 26px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 40px rgba(25,42,86,0.07);
    border: 1px solid rgba(0,189,205,0.1);
    transition: border-color 0.3s ease;
}
.svc-pro-detail-card:hover {
    border-color: rgba(0,189,205,0.35);
}

.svc-pro-detail-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #008a94 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0,189,205,0.3);
    transition: all 0.3s ease;
}

.svc-pro-detail-body {
    flex: 1;
    min-width: 0;
}
.svc-pro-detail-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s;
}
.svc-pro-detail-desc {
    font-size: 13.5px;
    color: #718096;
    margin: 0;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.svc-pro-detail-btn {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #008a94 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,189,205,0.35);
    transition: all 0.3s ease;
}
.svc-pro-detail-btn:hover {
    transform: scale(1.1) translateX(2px);
    box-shadow: 0 10px 24px rgba(0,189,205,0.5);
    color: #fff;
}
