@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800;900&display=swap');

:root {
    --primary: #0d6efd;
    --primary-dark: #0a58ca;
    --secondary: #1a1a2e;
    --accent: #00c9a7;
    --accent2: #845ef7;
    --dark: #0f0f23;
    --dark2: #16213e;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
    --gradient1: linear-gradient(135deg, #0d6efd 0%, #845ef7 100%);
    --gradient2: linear-gradient(135deg, #00c9a7 0%, #0d6efd 100%);
    --gradient3: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Cairo', sans-serif;
    background: var(--white);
    color: #333;
    overflow-x: hidden;
    direction: rtl;
}

img {
    object-fit: cover;
    object-position: center;
}

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none !important;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    text-decoration: none;
}

/* PRELOADER */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: opacity 0.5s ease;
}

.preloader .preloaders {
    text-align: center;
}

.preloader img {
    width: 200px !important;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* TOP INFO BAR */
.top-info-bar {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-info-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info-bar .info-left {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-info-bar .info-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-info-bar .info-left i {
    color: var(--accent);
    font-size: 14px;
}

.top-info-bar .info-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.top-info-bar .info-right a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    transition: var(--transition);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.top-info-bar .info-right a:hover {
    color: var(--white);
    background: var(--primary);
    transform: translateY(-2px);
}

/* MAIN NAVBAR */
.main-navbar {
    background: #000;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 99999;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.main-navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.main-navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo area with colored bars */
.main-navbar .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-navbar .nav-logo img {
    height: 65px;
    width: auto;
    padding: 6px 0;
    transition: var(--transition);
}

.logo-color-bars {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px 0;
}

.logo-color-bars span {
    display: block;
    height: 5px;
    border-radius: 3px;
}

.lcb-1 {
    background: #f97316;
    width: 36px;
}

.lcb-2 {
    background: #a855f7;
    width: 28px;
}

.lcb-3 {
    background: #06b6d4;
    width: 20px;
}

.lcb-4 {
    background: #10b981;
    width: 14px;
}

/* When menu is open, animate bars to X */
.mobile-toggle.open .lcb-1 {
    transform: rotate(45deg) translate(7px, 7px);
    width: 28px;
}

.mobile-toggle.open .lcb-2 {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-toggle.open .lcb-3 {
    transform: rotate(-45deg) translate(5px, -5px);
    width: 28px;
    background: #f97316;
}

.mobile-toggle.open .lcb-4 {
    opacity: 0;
}

.logo-color-bars span {
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

.main-navbar .nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.main-navbar .nav-menu a {
    padding: 22px 9px;
    font-size: 13px;
    font-weight: 600;
    color: #e2e8f0;
    position: relative;
    display: inline-block;
    transition: var(--transition);
    white-space: nowrap;
}

.main-navbar .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: currentColor;
    border-radius: 3px 3px 0 0;
    transition: var(--transition);
}

.main-navbar .nav-menu a:hover::after,
.main-navbar .nav-menu a.active::after {
    width: 100%;
}

/* Individual nav link colors */
.main-navbar .nav-menu a.nav-home {
    color: #fff;
}

.main-navbar .nav-menu a.nav-home:hover {
    color: #fff;
}

.main-navbar .nav-menu a.nav-cyber {
    color: #06b6d4;
}

.main-navbar .nav-menu a.nav-cyber:hover {
    color: #22d3ee;
}

.main-navbar .nav-menu a.nav-apps {
    color: #a855f7;
}

.main-navbar .nav-menu a.nav-apps:hover {
    color: #c084fc;
}

.main-navbar .nav-menu a.nav-web {
    color: #10b981;
}

.main-navbar .nav-menu a.nav-web:hover {
    color: #34d399;
}

.main-navbar .nav-menu a.nav-marketing {
    color: #f97316;
}

.main-navbar .nav-menu a.nav-marketing:hover {
    color: #fb923c;
}

.main-navbar .nav-menu a.nav-media {
    color: #ec4899;
}

.main-navbar .nav-menu a.nav-media:hover {
    color: #f472b6;
}

.main-navbar .nav-menu a.nav-printing {
    color: #eab308;
}

.main-navbar .nav-menu a.nav-printing:hover {
    color: #facc15;
}

.main-navbar .nav-menu a.nav-about {
    color: #e2e8f0;
}

.main-navbar .nav-menu a.nav-about:hover {
    color: #fff;
}

.main-navbar .nav-menu a.nav-contact {
    color: #e2e8f0;
}

.main-navbar .nav-menu a.nav-contact:hover {
    color: #fff;
}

.main-navbar .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-navbar .nav-cta {
    background: var(--gradient1);
    color: var(--white) !important;
    padding: 10px 28px !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px !important;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.main-navbar .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}

.main-navbar .nav-cta::after {
    display: none !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    padding: 8px;
}

/* HERO */
.hero-section {
    position: relative;
    min-height: 85vh;
    background: var(--gradient3);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.08) 0%, transparent 70%);
    animation: heroGlow 8s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(132, 94, 247, 0.06) 0%, transparent 70%);
    animation: heroGlow 10s ease-in-out infinite reverse;
}

@keyframes heroGlow {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -20px);
    }
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: right;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 110, 253, 0.15);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(13, 110, 253, 0.2);
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-content h1 span {
    background: var(--gradient1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--gradient1);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(13, 110, 253, 0.3);
    transition: var(--transition);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(13, 110, 253, 0.4);
    color: var(--white);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    animation: floatImg 6s ease-in-out infinite;
}

.hero-image video {
    width: 100%;
    display: block;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    background: #000;
}

@keyframes floatImg {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-item h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.hero-stat-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* FEATURES BAR */
.features-bar {
    background: var(--white);
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.features-bar .container {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 30px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-bar-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.feature-bar-item:hover {
    background: var(--light);
}

.feature-bar-item .icon-wrap {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.feature-bar-item .icon-wrap.blue {
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary);
}

.feature-bar-item .icon-wrap.green {
    background: rgba(0, 201, 167, 0.1);
    color: var(--accent);
}

.feature-bar-item .icon-wrap.purple {
    background: rgba(132, 94, 247, 0.1);
    color: var(--accent2);
}

.feature-bar-item .icon-wrap.orange {
    background: rgba(255, 159, 28, 0.1);
    color: #ff9f1c;
}

.feature-bar-item h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--secondary);
}

.feature-bar-item p {
    font-size: 12px;
    color: var(--gray);
    margin: 0;
}

.feature-bar-item .icon-wrap.teal {
    background: rgba(0, 150, 136, 0.1);
    color: #009688;
}

.feature-bar-item .icon-wrap.red {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
}

/* Features bar topline style - 6 columns */
.features-bar-topline .container {
    grid-template-columns: repeat(6, 1fr);
}

/* APP DEVELOPMENT SECTION */
.appdev-section {
    background: var(--light);
}

.appdev-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

.appdev-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.appdev-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--white);
}

.appdev-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.appdev-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 18px;
}

.appdev-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.appdev-link:hover {
    color: var(--accent2);
}

.appdev-link i {
    margin-right: 5px;
}

/* SECTION COMMON */
.section-padding {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 110, 253, 0.08);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 16px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* SERVICES */
.services-section {
    background: var(--light);
}

.service-card-new {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient1);
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition);
}

.service-card-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card-new:hover::before {
    transform: scaleX(1);
}

.service-card-new .service-icon {
    width: 75px;
    height: 75px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    transition: var(--transition);
}

.service-card-new .service-icon.blue {
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary);
}

.service-card-new .service-icon.green {
    background: rgba(0, 201, 167, 0.1);
    color: var(--accent);
}

.service-card-new .service-icon.purple {
    background: rgba(132, 94, 247, 0.1);
    color: var(--accent2);
}

.service-card-new .service-icon.orange {
    background: rgba(255, 159, 28, 0.1);
    color: #ff9f1c;
}

.service-card-new .service-icon.red {
    background: rgba(255, 87, 51, 0.1);
    color: #ff5733;
}

.service-card-new .service-icon.teal {
    background: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
}

.service-card-new .service-icon img {
    width: 40px;
    height: 40px;
}

.service-card-new:hover .service-icon {
    transform: scale(1.1);
}

.service-card-new h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.service-card-new p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

/* PRICING */
.pricing-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.pricing-section .section-header h2 {
    color: var(--white);
}

.pricing-section .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-section .section-header .section-badge {
    background: rgba(13, 110, 253, 0.2);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: rgba(13, 110, 253, 0.1);
}

.pricing-card.featured::before {
    content: 'الأكثر طلباً';
    position: absolute;
    top: 20px;
    left: -30px;
    background: var(--gradient1);
    color: var(--white);
    padding: 4px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
}

.pricing-card .pricing-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(13, 110, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--primary);
}

.pricing-card .pricing-icon img {
    width: 45px;
    height: 45px;
}

.pricing-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.pricing-card .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.pricing-card .pricing-features li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-card .pricing-features li i {
    color: var(--accent);
    font-size: 14px;
}

.pricing-card .btn-pricing {
    background: var(--gradient1);
    color: var(--white);
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.pricing-card .btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
    color: var(--white);
}

/* ABOUT */
.about-section {
    background: var(--white);
}

/* About image wrap */
.about-image-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.about-img-main {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: block;
}

.about-image-wrap::before {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    width: 60%;
    height: 60%;
    background: var(--gradient1);
    border-radius: var(--radius);
    z-index: -1;
    opacity: 0.15;
}

.about-exp-badge {
    position: absolute;
    bottom: 25px;
    left: -20px;
    background: var(--gradient1);
    color: #fff;
    padding: 14px 22px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.35);
    text-align: center;
    min-width: 100px;
}

.about-exp-num {
    display: block;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
}

.about-exp-text {
    display: block;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.9;
    margin-top: 4px;
}

/* About content */
.about-content {
    text-align: right;
}

.about-content .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 110, 253, 0.08);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.4;
}

.about-content p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 24px;
}

/* About features list */
.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.about-feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--secondary);
    font-weight: 500;
}

.about-feat-icon {
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .about-exp-badge {
        left: 10px;
        bottom: 10px;
    }

    .about-content h2 {
        font-size: 26px;
    }
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: var(--radius);
    z-index: -1;
    opacity: 0.3;
}

/* STATS */
.stats-section {
    background: var(--gradient3);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(13, 110, 253, 0.1), transparent 60%);
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.stat-card .stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(13, 110, 253, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary);
}

.stat-card h3 {
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

/* HOW WE WORK */
.howwework-section {
    background: var(--light);
}

.howwework-card {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.howwework-card .step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

.howwework-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.howwework-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

/* PARTNERS */
.partners-section {
    background: var(--white);
}

.partner-logo {
    background: var(--light);
    border-radius: var(--radius-sm);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.partner-logo:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* SOLUTIONS */
.solutions-section {
    background: var(--gradient3);
    position: relative;
}

.solution-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.solution-card .solution-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(13, 110, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.solution-card .solution-icon img {
    width: 35px;
    height: 35px;
}

.solution-card h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.solution-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* FAQ */
.faq-section {
    background: var(--light);
}

/* FAQ Side Card */
.faq-side-card {
    background: var(--gradient3);
    border-radius: var(--radius);
    padding: 40px 35px;
    color: #fff;
    position: sticky;
    top: 100px;
}

.faq-side-icon {
    font-size: 50px;
    color: var(--accent);
    margin-bottom: 20px;
    opacity: 0.8;
}

.faq-side-card h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.4;
}

.faq-side-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 28px;
}

.faq-contact-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.faq-btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--primary);
    padding: 11px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.faq-btn-contact:hover {
    background: var(--accent);
    color: #fff;
}

.faq-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 11px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.faq-btn-whatsapp:hover {
    background: #1ebe5d;
    color: #fff;
}

.faq-stats-row {
    display: flex;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
}

.faq-stat {
    text-align: center;
    flex: 1;
}

.faq-stat-num {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: var(--accent);
}

.faq-stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

/* FAQ Items */
.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.faq-item .faq-question {
    padding: 20px 25px;
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-item .faq-question:hover {
    color: var(--primary);
}

.faq-item .faq-question i {
    font-size: 14px;
    transition: var(--transition);
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    color: var(--primary);
    border-bottom: 1px solid #f0f0f0;
}

.faq-item .faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 16px 25px 20px;
    max-height: 500px;
}

.faq-item .faq-answer p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
}

/* CTA */
.cta-section {
    background: var(--gradient1);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-cta {
    background: var(--white);
    color: var(--primary);
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.cta-section .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* FOOTER */
.new-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0;
}

.new-footer h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.new-footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient1);
    border-radius: 3px;
}

.new-footer p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
}

.new-footer .footer-links {
    list-style: none;
    padding: 0;
}

.new-footer .footer-links li {
    margin-bottom: 12px;
}

.new-footer .footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.new-footer .footer-links a::before {
    content: '\f104';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: var(--primary);
}

.new-footer .footer-links a:hover {
    color: var(--white);
    transform: translateX(-5px);
}

.new-footer .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.new-footer .footer-contact li i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 4px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
    margin-top: 60px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
    z-index: 99999;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 2s infinite;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* PAGE HERO */
.page-hero {
    background: var(--gradient3);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(13, 110, 253, 0.1), transparent 60%);
}

.page-hero h1 {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    position: relative;
    z-index: 2;
}

/* SCROLL TOP */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gradient1);
    color: var(--white);
    border: none;
    border-radius: 14px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 99999;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    transition: var(--transition);
}

.scroll-top:hover {
    transform: translateY(-3px);
}

.scroll-top.show {
    display: flex;
}

/* ======================================
   INNER PAGES - PAGE HERO
   ====================================== */
.page-hero-section {
    background: var(--gradient3);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(13, 110, 253, 0.15), transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(0, 201, 167, 0.1), transparent 50%);
}

.page-hero-section h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
}

.page-hero-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero-section .breadcrumb-nav {
    position: relative;
    z-index: 2;
    margin-top: 20px;
}

.page-hero-section .breadcrumb-nav a {
    color: var(--accent);
    text-decoration: none;
}

.page-hero-section .breadcrumb-nav span {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
}

/* ======================================
   INNER PAGE CONTENT SECTIONS
   ====================================== */
.inner-section {
    padding: 80px 0;
}

.inner-section.bg-light-custom {
    background: #f8f9fc;
}

.inner-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.inner-section .section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 15px;
}

.inner-section .section-header p {
    font-size: 17px;
    color: var(--gray);
    max-width: 650px;
    margin: 0 auto;
}

/* ======================================
   BLOG STYLES
   ====================================== */
.blog-card-new:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card-new .blog-img {
    height: 250px;
    overflow: hidden;
}

.blog-card-new .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card-new:hover .blog-img img {
    transform: scale(1.05);
}

.blog-card-new .blog-content {
    padding: 25px;
}

.blog-card-new .blog-date {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}

.blog-card-new .blog-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
    line-height: 1.5;
}

.blog-card-new .blog-content p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-card-new .blog-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.blog-card-new .blog-link:hover {
    color: var(--accent);
    gap: 12px;
}

/* Single Post */
.single-post-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.single-post-content .post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.single-post-content .post-meta span {
    font-size: 14px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.single-post-content .post-meta span i {
    color: var(--primary);
}

.single-post-content h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.single-post-content img {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 25px;
    max-height: 500px;
    object-fit: cover;
}

.single-post-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

/* Sidebar */
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
}

.sidebar-widget h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.sidebar-widget ul {
    padding: 0;
}

.sidebar-widget ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-widget ul li:last-child {
    border-bottom: none;
}

.sidebar-widget ul li a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-widget ul li a::before {
    content: '\f104';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    font-size: 12px;
}

.sidebar-widget ul li a:hover {
    color: var(--primary);
    padding-right: 5px;
}

/* ======================================
   SERVICES INNER PAGE
   ====================================== */
.service-card-inner {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card-inner:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card-inner .service-icon-inner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--white);
}

.service-card-inner .service-num {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-card-inner h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.service-card-inner p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

.service-card-inner img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
}

/* ======================================
   CYBER / APPS / WEB PAGE STYLES
   ====================================== */
.tech-hero {
    background: var(--gradient3);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.tech-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(13, 110, 253, 0.15), transparent 60%);
}

.tech-hero h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.tech-hero .subtitle {
    color: var(--accent);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.tech-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.tech-hero ul {
    position: relative;
    z-index: 2;
    padding-right: 20px;
}

.tech-hero ul li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    padding: 5px 0;
    list-style: disc;
}

.tech-hero img {
    max-width: 100%;
    position: relative;
    z-index: 2;
}

/* Service Boxes in inner pages */
.service-box-new {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
    border-right: 4px solid var(--primary);
    transition: var(--transition);
}

.service-box-new:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(-5px);
}

.service-box-new .icon-box-new {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(13, 110, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-box-new h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.service-box-new h6 {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.service-box-new p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.service-box-new ul {
    padding-right: 20px;
    margin: 10px 0;
}

.service-box-new ul li {
    color: #555;
    font-size: 14px;
    padding: 4px 0;
    list-style: disc;
}

/* Section Titles for inner pages */
.section-title-inner {
    text-align: center;
    margin-bottom: 40px;
}

.section-title-inner .badge-label {
    display: inline-block;
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.section-title-inner h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--secondary);
}

/* ======================================
   COMPARE SECTION (Apps page)
   ====================================== */
.compare-section-new {
    background: var(--dark);
    padding: 80px 0;
}

.compare-section-new h2 {
    color: var(--white);
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 50px;
}

.compare-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 25px 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.compare-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.compare-card .compare-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
}

.compare-card .compare-icon.green {
    background: var(--accent);
}

.compare-card .compare-icon.red {
    background: #e74c3c;
}

.compare-card h6 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 8px;
}

.compare-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

/* ======================================
   FEATURE GRID
   ====================================== */
.feature-card-new {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.feature-card-new:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card-new i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-card-new h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.feature-card-new p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

/* ======================================
   PRICING CARDS (Inner pages)
   ====================================== */
.pricing-card-new {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.pricing-card-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-new.featured {
    border: 2px solid var(--primary);
}

.pricing-card-new .pricing-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient1);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-card-new .pricing-header-new {
    background: var(--gradient3);
    padding: 30px 20px;
    color: var(--white);
}

.pricing-card-new .pricing-header-new i {
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--accent);
}

.pricing-card-new .pricing-header-new h4 {
    font-size: 22px;
    font-weight: 700;
}

.pricing-card-new .pricing-price {
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    display: inline-block;
    padding: 6px 20px;
}

.pricing-card-new .pricing-price .price-amount {
    font-size: 28px;
    font-weight: 900;
    color: var(--accent);
}

.pricing-card-new .pricing-price .price-currency {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.pricing-card-new .pricing-body {
    padding: 25px 20px;
}

.pricing-card-new .pricing-body ul {
    padding: 0;
    text-align: right;
}

.pricing-card-new .pricing-body ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-card-new .pricing-body ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent);
    font-size: 12px;
}

.pricing-card-new .pricing-footer {
    padding: 0 20px 25px;
}

.pricing-card-new .btn-pricing {
    display: inline-block;
    background: var(--gradient1);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.pricing-card-new .btn-pricing:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(13, 110, 253, 0.3);
}

/* ======================================
   CONTACT PAGE
   ====================================== */
.contact-form-section {
    padding: 80px 0;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form-card h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
}

.contact-form-card p {
    color: var(--gray);
    margin-bottom: 30px;
}

.contact-form-card .form-control {
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    transition: var(--transition);
    margin-bottom: 15px;
}

.contact-form-card .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.contact-form-card textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-form-card .btn-submit {
    background: var(--gradient1);
    color: var(--white);
    border: none;
    padding: 14px 45px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: var(--transition);
}

.contact-form-card .btn-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(13, 110, 253, 0.3);
}

.contact-info-card {
    background: var(--gradient3);
    border-radius: var(--radius);
    padding: 40px;
    color: var(--white);
    height: 100%;
}

.contact-info-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-info-card .info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-card .info-item i {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-info-card .info-item h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info-card .info-item p,
.contact-info-card .info-item a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
}

/* ======================================
   ABOUT PAGE
   ====================================== */
.about-section-new {
    padding: 80px 0;
}

.about-section-new h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.about-section-new h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.4;
}

.about-section-new p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

.about-section-new img {
    border-radius: var(--radius);
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.mission-vision-section {
    background: var(--gradient3);
    padding: 80px 0;
}

.mv-card {
    text-align: center;
    padding: 40px 25px;
}

.mv-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 15px;
}

.mv-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.8;
}

.values-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.values-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.values-card span {
    display: inline-block;
    font-size: 40px;
    font-weight: 900;
    color: rgba(13, 110, 253, 0.15);
    margin-bottom: 10px;
}

.values-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.values-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
}

/* ======================================
   FAQ PAGE
   ====================================== */
.faq-section-new {
    padding: 80px 0;
}

.faq-item-new {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.faq-item-new .faq-question-new {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--secondary);
    transition: var(--transition);
}

.faq-item-new .faq-question-new:hover {
    color: var(--primary);
}

.faq-item-new .faq-question-new i {
    transition: var(--transition);
    color: var(--primary);
}

.faq-item-new .faq-question-new.active i {
    transform: rotate(180deg);
}

.faq-item-new .faq-answer-new {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item-new .faq-answer-new.show {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-item-new .faq-answer-new p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
}

/* ======================================
   PRIVACY PAGE
   ====================================== */
.privacy-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 50px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.privacy-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 25px;
    text-align: center;
}

.privacy-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* ======================================
   PACKAGES PAGE
   ====================================== */
.packages-grid {
    padding: 80px 0;
}

.package-card-new {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.package-card-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.package-card-new .package-img {
    height: 180px;
    overflow: hidden;
}

.package-card-new .package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.package-card-new:hover .package-img img {
    transform: scale(1.05);
}

.package-card-new .package-body {
    padding: 25px;
}

.package-card-new h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.package-card-new ul {
    padding: 0;
    text-align: right;
    margin-bottom: 20px;
}

.package-card-new ul li {
    font-size: 14px;
    color: #555;
    padding: 6px 0;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-card-new ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent);
    font-size: 12px;
}

.package-card-new .btn-package {
    display: inline-block;
    background: var(--gradient1);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}

.package-card-new .btn-package:hover {
    transform: scale(1.05);
}

/* ======================================
   ORDER / INTEREST FORM
   ====================================== */
.order-form-section {
    padding: 60px 0;
    background: #f8f9fc;
}

.order-form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.order-form-card h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
}

.order-form-card p {
    color: var(--gray);
    margin-bottom: 25px;
}

.order-form-card .form-control {
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.order-form-card .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.order-form-card .btn-order-new {
    background: var(--gradient1);
    color: var(--white);
    border: none;
    padding: 14px 45px;
    border-radius: 30px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: var(--transition);
}

.order-form-card .btn-order-new:hover {
    transform: scale(1.05);
}

/* ======================================
   PROJECTS / PORTFOLIO PAGE
   ====================================== */
.project-card-new {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    height: 350px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-card-new:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.project-card-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card-new:hover img {
    transform: scale(1.05);
}

.project-card-new .project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 25px;
    color: var(--white);
}

.project-card-new .project-overlay span {
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
}

.project-card-new .project-overlay h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 5px;
}

.project-card-new .project-overlay h4 a {
    color: var(--white);
    text-decoration: none;
}

/* ======================================
   MARKETING PAGE STEPS
   ====================================== */
.marketing-step {
    margin-bottom: 60px;
}

.marketing-step img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.marketing-step h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.marketing-step p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* ======================================
   PRODUCTS / CATEGORY PAGE
   ====================================== */
.product-card-new {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.product-card-new:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-card-new img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.product-card-new:hover img {
    transform: scale(1.05);
}

.product-card-new .product-content {
    padding: 20px;
}

.product-card-new .product-price {
    display: inline-block;
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary);
    padding: 4px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
}

.product-card-new h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.product-card-new p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.product-card-new .btn-details {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.product-card-new .btn-details:hover {
    color: var(--accent);
    gap: 10px;
}

/* ======================================
   COMMENT PAGE
   ====================================== */
.comment-form-section {
    padding: 80px 0;
    background: #f8f9fc;
}

.comment-form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 0 auto;
}

.comment-form-card h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
    text-align: center;
}

.comment-form-card p {
    color: var(--gray);
    text-align: center;
    margin-bottom: 25px;
}

.comment-form-card .form-control {
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    font-family: 'Cairo', sans-serif;
    margin-bottom: 15px;
}

.comment-form-card .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

/* ======================================
   RESPONSIVE - INNER PAGES
   ====================================== */
@media (max-width: 991px) {
    .page-hero-section {
        padding: 100px 0 60px;
    }

    .page-hero-section h1 {
        font-size: 32px;
    }

    .tech-hero {
        padding: 100px 0 60px;
    }

    .tech-hero h2 {
        font-size: 28px;
    }

    .inner-section {
        padding: 60px 0;
    }

    .inner-section .section-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .page-hero-section h1 {
        font-size: 26px;
    }

    .single-post-content {
        padding: 25px;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 25px;
    }

    .privacy-content {
        padding: 25px;
    }
}

/* ======================================
   BLOG CARDS
   ====================================== */
.blog-card-new {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.blog-card-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-card-new img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card-new .blog-body {
    padding: 25px;
}

.blog-card-new .blog-date {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-card-new h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
    line-height: 1.5;
}

.blog-card-new p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-card-new .blog-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card-new .blog-link:hover {
    gap: 10px;
}

/* MARKETING ICONS */
.marketing-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.marketing-icon-item {
    text-align: center;
    padding: 20px;
    transition: var(--transition);
}

.marketing-icon-item:hover {
    transform: translateY(-5px);
}

.marketing-icon-item i {
    font-size: 40px;
    margin-bottom: 10px;
    background: var(--gradient1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.marketing-icon-item p {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .main-navbar .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: #111;
        flex-direction: column;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
        border-radius: 0 0 var(--radius) var(--radius);
        padding: 15px 0;
        z-index: 9999;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .main-navbar .nav-menu.active {
        display: flex;
    }

    .main-navbar .nav-menu a {
        padding: 14px 25px;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .main-navbar .nav-menu a::after {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-item h3 {
        font-size: 24px;
    }

    .features-bar .container {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -30px;
    }

    .features-bar-topline .container {
        grid-template-columns: repeat(3, 1fr);
    }

    .top-info-bar .info-left {
        display: none;
    }

    .top-info-bar .container {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .features-bar .container {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .features-bar-topline .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 28px;
    }

    .stat-card h3 {
        font-size: 32px;
    }

    .main-navbar .nav-cta {
        display: none;
    }

    .pricing-card.featured::before {
        display: none;
    }
}

/* ANIMATIONS */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ========== HERO SLIDER ========== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.hero-slider .slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(13, 110, 253, 0.7), rgba(15, 15, 35, 0.85));
    display: flex;
    align-items: center;
}

.hero-slider .slide-content {
    color: #fff;
    text-align: right;
    max-width: 650px;
}

.hero-slider .slide-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-slider .slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-slider .slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-slider .slide-buttons .btn-slider-primary {
    background: var(--accent);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-slider .slide-buttons .btn-slider-primary:hover {
    background: #00b396;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 201, 167, 0.4);
}

.hero-slider .slide-buttons .btn-slider-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-slider .slide-buttons .btn-slider-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-slider .slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-slider .slider-nav .slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.hero-slider .slider-nav .slider-dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

.hero-slider .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider .slider-arrow:hover {
    background: var(--primary);
}

.hero-slider .slider-arrow.prev-arrow {
    right: 20px;
}

.hero-slider .slider-arrow.next-arrow {
    left: 20px;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 450px;
    }

    .hero-slider .slide-content h2 {
        font-size: 26px;
    }

    .hero-slider .slide-content p {
        font-size: 15px;
    }

    .hero-slider .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .hero-slider .slide-buttons .btn-slider-primary,
    .hero-slider .slide-buttons .btn-slider-secondary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 400px;
    }

    .hero-slider .slide-content h2 {
        font-size: 22px;
    }
}

/* ========== FEATURES STRIP (Dynamic) ========== */
.features-strip {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark2) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.features-strip::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.features-strip::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 201, 167, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.features-strip .container {
    position: relative;
    z-index: 1;
}

.features-strip-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

.strip-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    transition: all 0.3s ease;
    cursor: default;
}

.strip-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.strip-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
}

.strip-item .strip-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s ease;
    position: relative;
}

.strip-item:hover .strip-icon-wrap {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.strip-item .strip-icon-wrap.green {
    background: rgba(0, 201, 167, 0.15);
    color: #00c9a7;
}

.strip-item .strip-icon-wrap.blue {
    background: rgba(13, 110, 253, 0.15);
    color: #5b9bff;
}

.strip-item .strip-icon-wrap.purple {
    background: rgba(132, 94, 247, 0.15);
    color: #a78bfa;
}

.strip-item .strip-icon-wrap.orange {
    background: rgba(255, 159, 28, 0.15);
    color: #ffb03a;
}

.strip-item .strip-icon-wrap.teal {
    background: rgba(0, 150, 136, 0.15);
    color: #4db6ac;
}

.strip-item .strip-icon-wrap.red {
    background: rgba(244, 67, 54, 0.15);
    color: #ef9a9a;
}

.strip-item:hover .strip-icon-wrap.green {
    background: #00c9a7;
    color: #fff;
}

.strip-item:hover .strip-icon-wrap.blue {
    background: var(--primary);
    color: #fff;
}

.strip-item:hover .strip-icon-wrap.purple {
    background: var(--accent2);
    color: #fff;
}

.strip-item:hover .strip-icon-wrap.orange {
    background: #ff9f1c;
    color: #fff;
}

.strip-item:hover .strip-icon-wrap.teal {
    background: #009688;
    color: #fff;
}

.strip-item:hover .strip-icon-wrap.red {
    background: #f44336;
    color: #fff;
}

.strip-item h5 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.4;
}

.strip-item p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .features-strip-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .strip-item:nth-child(3n)::after {
        display: none;
    }
}

@media (max-width: 575px) {
    .features-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .strip-item:nth-child(2n)::after {
        display: none;
    }

    .strip-item {
        padding: 20px 15px;
    }

    .strip-item .strip-icon-wrap {
        width: 58px;
        height: 58px;
        font-size: 22px;
        margin-bottom: 12px;
    }

    .strip-item h5 {
        font-size: 13px;
    }
}