/* ========================================
   MINIMAL CUSTOM.CSS - ONLY FOR UNREDESIGNED PAGES
   ======================================== */

/* Lazy Loading */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

.lazy-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Page-specific styles that haven't been migrated yet */
/* About Page */
.about__one {
    padding: 80px 0;
}

/* Blog Page */
.blog-card {
    margin-bottom: 30px;
}

/* Portfolio Page */
.portfolio-item {
    margin-bottom: 30px;
}

/* FAQ Page */
.faq-item {
    margin-bottom: 20px;
}

/* Privacy Policy & Terms */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Testimonial Page */
.testimonial-card {
    margin-bottom: 30px;
}

/* White Label Page */
.whitelabel-section {
    padding: 60px 0;
}

/* Services Page (non-homepage sections) */
.services-detail {
    padding: 60px 0;
}

/* Note: Navbar, Hero, Features, and Footer are now handled by custom-new.css */

/* ================================
   HOME PAGE STYLES
   ================================ */

/* Premium Banner Section Styles */
.premium-banner-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 120px 0;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 89, 242, 0.15) 0%, rgba(245, 204, 21, 0.1) 50%, rgba(14, 89, 242, 0.05) 100%);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-shapes .shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(14, 89, 242, 0.1), rgba(245, 204, 21, 0.1));
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.shape.shape-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 5%;
    animation-delay: 2s;
}

.shape.shape-3 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 20%;
    animation-delay: 4s;
}

.shape.shape-4 {
    width: 180px;
    height: 180px;
    bottom: 10%;
    left: 15%;
    animation-delay: 1s;
}

.shape.shape-5 {
    width: 100px;
    height: 100px;
    top: 70%;
    left: 40%;
    animation-delay: 3s;
}

.banner-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.banner-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #F8E559;
    border-radius: 50%;
    animation: sparkle 3s linear infinite;
}

.particle.particle-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.particle.particle-2 {
    top: 30%;
    left: 80%;
    animation-delay: 1s;
}

.particle.particle-3 {
    top: 50%;
    left: 20%;
    animation-delay: 2s;
}

.particle.particle-4 {
    top: 70%;
    left: 70%;
    animation-delay: 0.5s;
}

.particle.particle-5 {
    top: 25%;
    left: 60%;
    animation-delay: 1.5s;
}

.particle.particle-6 {
    top: 80%;
    left: 30%;
    animation-delay: 2.5s;
}

.particle.particle-7 {
    top: 40%;
    left: 90%;
    animation-delay: 0.3s;
}

.particle.particle-8 {
    top: 85%;
    left: 85%;
    animation-delay: 1.8s;
}

.premium-banner-content {
    color: white;
    z-index: 10;
    position: relative;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(14, 89, 242, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(14, 89, 242, 0.2);
    border-radius: 50px;
    padding: 12px 25px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.badge-icon {
    background: linear-gradient(45deg, #0E59F2, #2D7CFF);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 14px;
}

.badge-text {
    font-weight: 600;
    font-size: 0.9rem;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 204, 21, 0.3), transparent);
    animation: shimmer 3s infinite;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-highlight {
    background: #0E59F2;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 600px;
}

.banner-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    background: linear-gradient(45deg, #0E59F2, #2D7CFF);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
}

.banner-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-premium-primary {
    background: #0E59F2;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(89, 89, 248, 0.3);
}

.btn-premium-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(22, 119, 255, 0.4);
    color: #1e293b;
}

.btn-premium-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-premium-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(14, 89, 242, 0.3);
    color: white;
    transform: translateY(-2px);
}

.banner-stats {
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #F8E559;
    line-height: 1;
}

.stat-symbol {
    font-size: 1.8rem;
    color: #F8E559;
    font-weight: 700;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 5px;
}

.premium-banner-image {
    position: relative;
    z-index: 10;
}

.image-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.decoration-circle {
    position: absolute;
    background: linear-gradient(45deg, rgba(14, 89, 242, 0.15), rgba(245, 204, 21, 0.15));
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
}

.decoration-circle.circle-1 {
    width: 150px;
    height: 150px;
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.decoration-circle.circle-2 {
    width: 100px;
    height: 100px;
    bottom: -20px;
    left: -20px;
    animation-delay: 4s;
}

.decoration-circle.circle-3 {
    width: 80px;
    height: 80px;
    top: 50%;
    left: -40px;
    animation-delay: 8s;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(14, 89, 242, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.banner-image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.main-banner-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-elements .element {
    position: absolute;
    background: rgba(14, 89, 242, 0.9);
    backdrop-filter: blur(10px);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(14, 89, 242, 0.3);
}

.element.element-1 {
    top: 10%;
    left: -30px;
    animation-delay: 0s;
}

.element.element-2 {
    top: 30%;
    right: -30px;
    animation-delay: 1.5s;
}

.element.element-3 {
    bottom: 30%;
    left: -30px;
    animation-delay: 3s;
}

.element.element-4 {
    bottom: 10%;
    right: -30px;
    animation-delay: 4.5s;
}

/* Premium Brand Section Styles */
.premium-brand-section {
    background: #f8fafc;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.premium-brand-wrapper {
    background: white;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.brand-header {
    text-align: center;
    margin-bottom: 50px;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(14, 89, 242, 0.1);
    border: 1px solid rgba(14, 89, 242, 0.2);
    border-radius: 50px;
    padding: 10px 20px;
    margin-bottom: 20px;
    gap: 8px;
    font-weight: 600;
    color: #0E59F2;
}

.brand-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.brand-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   ABOUT SECTION SERVICES LIST
   ======================================== */

.about__one-content-service {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
    margin: 30px 0;
}

.about__one-content-service .service {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.about__one-content-service .service:hover {
    background: linear-gradient(135deg, rgba(14, 89, 242, 0.1), rgba(22, 119, 255, 0.1));
    border-color: rgba(14, 89, 242, 0.3);
    transform: translateX(5px);
}

.about__one-content-service .service i {
    font-size: 1.25rem;
    color: #0E59F2;
    flex-shrink: 0;
}

.about__one-content-service .service span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .about__one-content-service {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about__one-content-service .service {
        padding: 10px 12px;
    }

    .about__one-content-service .service i {
        font-size: 1.125rem;
    }

    .about__one-content-service .service span {
        font-size: 0.875rem;
    }
}

/* ================================
   NAVBAR & FOOTER STYLES
   ================================ */

/* Mobile Hamburger Button */
.mobile-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.mobile-hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background-color: #0e59f2;
}

.mobile-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.mobile-hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background-color: #0e59f2;
}

/* Mobile Menu Container */
.mobile-menu-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.mobile-menu-container.active {
    right: 0;
}

.mobile-menu-header {
    padding: 20px;
    background: #0e59f2;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo span {
    font-size: 18px;
    font-weight: bold;
}

.mobile-close {
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.mobile-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Mobile Menu List */
.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-list li a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-menu-list li a:hover {
    background: #f8f9fa;
    color: #0e59f2;
    padding-left: 30px;
    text-decoration: none;
}

/* Submenu Styles */
.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8f9fa;
    display: none;
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu li {
    border-bottom: 1px solid #e9ecef;
}

.mobile-submenu li a {
    padding: 12px 40px;
    font-size: 14px;
    color: #666;
}

.mobile-submenu li a:hover {
    background: #e9ecef;
    color: #0e59f2;
    padding-left: 50px;
}

/* Submenu Arrow */
.submenu-trigger .arrow {
    float: right;
    transition: transform 0.3s ease;
    font-weight: bold;
    color: #999;
}

.has-submenu.active .arrow {
    transform: rotate(45deg);
    color: #0e59f2;
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Container Layout Fix */
.header__area-menubar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__area-menubar-left {
    flex: 0 0 auto;
}

.header__area-menubar-center {
    flex: 1 1 auto;
    text-align: center;
}

.header__area-menubar-right {
    flex: 0 0 auto;
}

/* Premium footer refinements */
.premium-footer {
    background: linear-gradient(180deg, #071127 0%, #0b1730 100%);
    color: #dbe9ff;
    position: relative;
    padding-top: 3.25rem;
}

.premium-footer .footer__two-shape {
    opacity: 0.06;
    filter: blur(18px);
    transform: translateY(-10%);
}

.premium-footer a {
    color: #cfe4ff;
}

.premium-footer a:hover {
    color: #fff;
    text-decoration: none;
}

.premium-footer .footer__two-widget h4 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: .85rem
}

.premium-footer .footer__two-widget p {
    color: #b7cbe6;
}

.premium-footer .footer__two-widget-about img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.6);
}

.premium-footer .footer__two-widget-about span {
    color: #fff;
    display: inline-block;
    vertical-align: middle
}

/* Newsletter */
.footer__newsletter {
    display: flex;
    gap: .5rem;
    margin-top: .8rem;
}

.footer__newsletter input {
    flex: 1;
    padding: .62rem .75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    color: #fff
}

.footer__newsletter button {
    background: linear-gradient(90deg, #0b6efd, #6b7cff);
    color: #fff;
    border: none;
    padding: .62rem .9rem;
    border-radius: 8px
}

/* Social icons */
.footer__two-widget-social ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: .6rem
}

.footer__two-widget-social li a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    transition: transform .18s ease, background .18s ease
}

.footer__two-widget-social li a:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.06)
}

/* Quick links & services */
.footer__two-widget-solution ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer__two-widget-solution li {
    margin-bottom: .65rem
}

.footer__two-widget-solution li i {
    margin-right: .6rem;
    color: rgba(255, 255, 255, 0.18)
}

/* Copyright */
.copyright__one {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    margin-top: 1.5rem;
    padding-top: 1.2rem
}

.copyright__one p,
.copyright__one a {
    color: #9fb0cc
}

.copyright__one-right {
    text-align: right;
}

.copyright__one-right span {
    color: #9fb0cc;
    margin: 0 0.5rem;
}

.copyright__one-right a:hover {
    color: #fff;
}

/* ================================
   VPN DEVELOPMENT PAGE STYLES
   ================================ */

/* VPN Development Hero Section */
.vpn-dev-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-background .gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 124, 255, 0.15) 0%, rgba(14, 89, 242, 0.1) 50%, rgba(245, 204, 21, 0.05) 100%);
}

/* Animated Shapes */
.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.animated-shapes .shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(45, 124, 255, 0.1), rgba(245, 204, 21, 0.1));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 80%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

.shape-5 {
    width: 90px;
    height: 90px;
    top: 10%;
    right: 30%;
    animation-delay: 3s;
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #facc15;
    border-radius: 50%;
    animation: sparkle 3s linear infinite;
}

.particle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.particle-2 {
    top: 40%;
    left: 85%;
    animation-delay: 1s;
}

.particle-3 {
    top: 60%;
    left: 25%;
    animation-delay: 2s;
}

.particle-4 {
    top: 80%;
    left: 75%;
    animation-delay: 0.5s;
}

.particle-5 {
    top: 30%;
    left: 60%;
    animation-delay: 1.5s;
}

.particle-6 {
    top: 70%;
    left: 40%;
    animation-delay: 2.5s;
}

/* Hero Content */
.hero-content {
    color: white;
    z-index: 10;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(45, 124, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(45, 124, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.hero-badge .badge-icon {
    background: linear-gradient(45deg, #2d7cff, #0e59f2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 12px;
}

.hero-badge .badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 204, 21, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content .text-highlight {
    background: linear-gradient(135deg, #facc15 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 550px;
}

/* Hero Features Grid */
.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.hero-features-grid .feature-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
    transition: all 0.3s ease;
}

.hero-features-grid .feature-item:hover {
    background: rgba(45, 124, 255, 0.1);
    border-color: rgba(45, 124, 255, 0.3);
    transform: translateY(-2px);
}

.hero-features-grid .feature-icon {
    background: linear-gradient(45deg, #2d7cff, #0e59f2);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 16px;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #2d7cff 0%, #0e59f2 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(45, 124, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary-modern:hover::before {
    left: 100%;
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(45, 124, 255, 0.4);
    color: white;
    text-decoration: none;
}

.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 16px 32px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

/* Hero Metrics */
.hero-metrics {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.metric {
    display: flex;
    align-items: center;
    gap: 15px;
}

.metric-icon {
    background: linear-gradient(45deg, #facc15, #f59e0b);
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.metric-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.metric-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #2a2a3e, #1e1e2e);
    border-radius: 30px;
    padding: 20px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 5;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.vpn-app-ui {
    padding: 30px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.app-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.app-logo {
    color: #2d7cff;
    font-weight: 700;
    font-size: 1.1rem;
}

.connection-status {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.connection-circle {
    width: 200px;
    height: 200px;
    border: 3px solid rgba(45, 124, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 50px 0;
}

.connection-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: #2d7cff;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

.power-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #2d7cff, #0e59f2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(45, 124, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.power-button:hover {
    transform: scale(1.1);
}

.server-info {
    text-align: center;
}

.server-location {
    color: white;
    font-weight: 600;
    margin-bottom: 5px;
}

.server-ping {
    color: #10b981;
    font-size: 0.9rem;
}

/* Floating Cards */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: -20%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -20%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: -15%;
    animation-delay: 2s;
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

.whitelabel-features {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45, 124, 255, 0.1);
    color: #2d7cff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(45, 124, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #0e59f2;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(45, 124, 255, 0.2);
}

.feature-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #2d7cff, #0e59f2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
    margin-bottom: 8px;
}

.feature-list i {
    color: #10b981;
    font-size: 14px;
}

/* ================================
   PORTFOLIO PAGE STYLES
   ================================ */

/* Modern Portfolio Section Styles */
.modern-portfolio-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.portfolio-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.portfolio-shape.shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #0E59F2, #2D7CFF);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.portfolio-shape.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #F8E559, #FFC107);
    top: 60%;
    right: 10%;
    animation-delay: 10s;
}

.portfolio-shape.shape-3 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #28a745, #20c997);
    bottom: 15%;
    left: 20%;
    animation-delay: 5s;
}

.portfolio-header {
    margin-bottom: 60px;
}

.portfolio-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 2px solid #0E59F2;
    border-radius: 50px;
    padding: 10px 25px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #0E59F2;
    box-shadow: 0 5px 15px rgba(14, 89, 242, 0.2);
}

.portfolio-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.portfolio-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Ultra Modern Portfolio Card */
.ultra-modern-portfolio-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ultra-modern-portfolio-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.card-number-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    background: linear-gradient(135deg, #0E59F2, #2D7CFF);
    border-radius: 12px;
    padding: 8px 15px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(14, 89, 242, 0.3);
}

.portfolio-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.image-tilt-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
}

.portfolio-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.ultra-modern-portfolio-card:hover .portfolio-main-image {
    transform: scale(1.05);
}

.corner-accent {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid #F8E559;
    opacity: 0;
    transition: all 0.4s ease;
}

.corner-top-left {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}

.corner-top-right {
    top: 15px;
    right: 15px;
    border-left: none;
    border-bottom: none;
}

.corner-bottom-left {
    bottom: 15px;
    left: 15px;
    border-right: none;
    border-top: none;
}

.corner-bottom-right {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

.ultra-modern-portfolio-card:hover .corner-accent {
    opacity: 1;
}

.modern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 89, 242, 0.95), rgba(45, 124, 255, 0.95));
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.ultra-modern-portfolio-card:hover .modern-overlay {
    opacity: 1;
}

.overlay-inner {
    text-align: center;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.ultra-modern-portfolio-card:hover .overlay-inner {
    transform: translateY(0);
}

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(248, 229, 89, 0.2);
    border: 1px solid rgba(248, 229, 89, 0.3);
    border-radius: 25px;
    padding: 8px 20px;
    color: #F8E559;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #0E59F2;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.explore-btn:hover {
    background: #F8E559;
    color: #1a1a1a;
    transform: translateX(5px);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.explore-btn:hover .btn-icon {
    transform: translateX(5px);
}

.portfolio-info-section {
    padding: 30px;
    background: white;
    position: relative;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.project-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-title a:hover {
    color: #0E59F2;
}

.project-details-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #666;
    font-size: 0.9rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.detail-divider {
    width: 4px;
    height: 4px;
    background: #ddd;
    border-radius: 50%;
}

.view-details-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0E59F2;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-details-link:hover {
    color: #2D7CFF;
    gap: 12px;
}

.no-portfolio-message {
    text-align: center;
    padding: 100px 20px;
    color: #666;
}

.no-portfolio-message i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.no-portfolio-message h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.modern-pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

/* ================================
   BLOGS PAGE STYLES
   ================================ */

/* Ensure author line and title do not add extra bottom spacing */
.blog__one-single-blog-content-top {
    margin-bottom: 0 !important;
}

.blog-heading {
    margin-bottom: 0 !important;
    display: block;
}

/* Blog Responsive Fixes */
.blog__two .container {
    overflow-x: hidden;
}

.blog__one-single-blog {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.blog__one-single-blog:hover {
    transform: translateY(-5px);
}

/* Fix for 50% screen width and responsive issues */
@media (max-width: 1400px) {
    .blog__two .row.gy-4 {
        gap: 20px;
    }
}

@media (max-width: 1200px) {
    .blog__two .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .blog__one-single-blog {
        margin-bottom: 25px;
    }
}

/* Specific fix for medium screens (50% width issue) */
@media (min-width: 768px) and (max-width: 1199px) {
    .blog__two .col-xl-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .blog__one-single-blog-content {
        padding: 15px !important;
    }

    .blog__one-single-blog-image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
}

@media (max-width: 992px) {
    .blog__two .col-xl-4.col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .blog__two .col-xl-4.col-lg-6.col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .blog__one-single-blog {
        margin-bottom: 20px;
        max-width: 100%;
    }

    .blog__one-single-blog-content {
        padding: 12px !important;
    }
}

@media (max-width: 576px) {
    .blog__two {
        padding: 40px 0;
    }

    .blog__one-single-blog-content {
        padding: 10px !important;
    }

    .blog-heading {
        font-size: 1.1rem;
        line-height: 1.4;
    }
}

/* Fix for pagination */
.portfolio__two-pagination {
    margin-top: 20px;
    text-align: center;
}

.portfolio__two-pagination .pagination {
    justify-content: center;
}

/* Better spacing for blog cards */
.blog__one-single-blog-image {
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.blog__one-single-blog-image img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog__one-single-blog:hover .blog__one-single-blog-image img {
    transform: scale(1.05);
}

/* Responsive image heights */
@media (max-width: 992px) {
    .blog__one-single-blog-image img {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .blog__one-single-blog-image img {
        height: 200px;
    }
}

/* ================================
   ABOUT PAGE STYLES
   ================================ */

/* Modern About Section Enhancements */
.brand__area-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.brand__area-item img {
    width: 150px;
    height: 80px;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease;
}

.modern-about-visual {
    position: relative;
}

.modern-experience {
    background: linear-gradient(135deg, #2d7cff 0%, #0e59f2 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(45, 124, 255, 0.3);
    border: none;
}

.experience-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.modern-image-grid {
    position: relative;
}

.modern-image {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.modern-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.floating-stats {
    position: absolute;
    bottom: -30px;
    right: -30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 180px;
    animation: float 3s ease-in-out infinite;
}

.stat-card:nth-child(2) {
    animation-delay: 1.5s;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #2d7cff, #0e59f2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.stat-label {
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Modern About Content */
.modern-about-content {
    padding-left: 30px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45, 124, 255, 0.1);
    color: #2d7cff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

.modern-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 25px;
}

.modern-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 35px;
}

.expertise-highlights {
    margin-bottom: 35px;
}

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

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #facc15, #f59e0b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.highlight-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.modern-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.modern-service-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.modern-service-item:hover {
    background: #2d7cff;
    border-color: #2d7cff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 124, 255, 0.2);
}

.service-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #2d7cff, #0e59f2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.modern-service-item:hover .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.modern-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-modern-primary {
    background: linear-gradient(135deg, #2d7cff 0%, #0e59f2 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(45, 124, 255, 0.3);
}

.btn-modern-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 124, 255, 0.4);
    color: white;
    text-decoration: none;
}

.btn-modern-secondary {
    background: white;
    border: 2px solid #e2e8f0;
    color: #1e293b;
    padding: 14px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-modern-secondary:hover {
    border-color: #2d7cff;
    color: #2d7cff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Company Stats Section */
.company-stats-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.stats-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(45, 124, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #0e59f2;
}

.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(45, 124, 255, 0.15);
}

.stats-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #2d7cff, #0e59f2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 25px;
}

.stats-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
}

.stats-label {
    color: #64748b;
    font-weight: 600;
    font-size: 1rem;
}

/* Mission & Vision Section */
.mission-vision-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(45, 124, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 204, 21, 0.1) 0%, transparent 50%);
}

.mission-vision-section .section-title,
.mission-vision-section .section-subtitle {
    color: white;
}

.mission-vision-section .section-badge {
    background: rgba(245, 204, 21, 0.1);
    color: #facc15;
}

.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.mission-card:hover,
.vision-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.mission-header,
.vision-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.mission-icon,
.vision-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #2d7cff, #0e59f2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

.vision-icon {
    background: linear-gradient(45deg, #facc15, #f59e0b);
}

.mission-header h3,
.vision-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.mission-content p,
.vision-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.mission-points,
.vision-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-points li,
.vision-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.mission-points i {
    color: #10b981;
    font-size: 14px;
}

.vision-points i {
    color: #facc15;
    font-size: 14px;
}

/* Team Section Styles */
.modern-team-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.team-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #2d7cff, #facc15);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #facc15, #f59e0b);
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #8b5cf6, #2d7cff);
    top: 30%;
    right: 30%;
    animation-delay: 10s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #10b981, #059669);
    bottom: 20%;
    left: 20%;
    animation-delay: 15s;
}

.modern-team-section .container {
    position: relative;
    z-index: 2;
}

.team-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #2d7cff, #1e40af);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(45, 124, 255, 0.3);
}

.team-badge .badge-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* ================================
   TESTIMONIAL PAGE STYLES
   ================================ */

/* ========== Testimonial Section Styles ========== */
.testimonial__six {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Animated Background Shapes */
.testimonial__six-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.shape-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    background: #0E59F2;
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -80px;
    background: #0E59F2;
    animation-delay: 5s;
}

.circle-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0E59F2;
    animation-delay: 10s;
}

.testimonial__six .container {
    position: relative;
    z-index: 2;
}

/* Section Header */
.testimonial__six .subtitle-one {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.testimonial__six .subtitle-one i {
    font-size: 0.7rem;
    animation: sparkle 1.5s infinite;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* Gradient Text Effect */
.gradient-text {
    color: #0E59F2;
    font-size: 3rem;
    font-weight: 800;
    margin: 1rem 0;
    line-height: 1.2;
}

/* Section Description */
.section-desc {
    font-size: 1.15rem;
    color: #6c757d;
    margin-bottom: 0;
    font-weight: 400;
}

/* Base Testimonial Cards */
.testimonial__six-card {
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testimonial__six-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #0E59F2;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testimonial__six-card:hover::before {
    transform: scaleX(1);
}

.testimonial__six-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Featured Card Enhancement */
.featured-card {
    transform: scale(1.05);
    border: 2px solid #0E59F2;
}

.featured-card:hover {
    transform: translateY(-10px) scale(1.05);
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 4px;
    right: 20px;
    background: rgba(255, 215, 0, 0.95);
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    z-index: 2;
}

.featured-badge i {
    font-size: 0.7rem;
}

/* Card Header Section */
.card-header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

/* Quote Icon Wrapper */
.quote-icon-wrapper {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #0E59F2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(14, 89, 242, 0.3);
}

.quote-icon-wrapper i {
    color: #ffffff;
    font-size: 1.4rem;
}

/* Star Ratings */
.testimonial-rating {
    display: flex;
    gap: 0.3rem;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.2s ease;
}

.testimonial__six-card:hover .testimonial-rating i {
    animation: starPulse 0.5s ease;
}

@keyframes starPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Testimonial Text */
.testimonial-text {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    padding-left: 1.2rem;
    border-left: 4px solid #0E59F2;
    flex-grow: 1;
}

/* Client Profile Section */
.client-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

/* Client Avatar */
.client-avatar {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: #0E59F2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(14, 89, 242, 0.3);
    position: relative;
}

.avatar-letter {
    color: #ffffff !important;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

/* Client Info */
.client-info {
    flex-grow: 1;
}

.client-info h4 {
    color: #1a202c;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.client-info span {
    color: #0E59F2;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.client-info span i {
    font-size: 0.8rem;
}

/* Testimonial Stats Section */
.testimonial-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0E59F2;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #6c757d;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.stat-divider {
    width: 2px;
    height: 70px;
    background: linear-gradient(180deg, transparent 0%, #0E59F2 50%, transparent 100%);
}

/* ========== See More Button Styles ========== */
.btn-see-more {
    background: linear-gradient(135deg, #0E59F2 0%, #2d7cff 100%);
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(14, 89, 242, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-see-more::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-see-more:hover::before {
    width: 300px;
    height: 300px;
}

.btn-see-more:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 45px rgba(14, 89, 242, 0.5);
    background: linear-gradient(135deg, #2d7cff 0%, #0E59F2 100%);
}

.btn-see-more:active {
    transform: translateY(-2px) scale(1.02);
    transition: all 0.1s ease;
}

.btn-see-more i {
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 1;
}

.btn-see-more.active i {
    transform: rotate(180deg) scale(1.1);
}

.btn-see-more .btn-text {
    position: relative;
    z-index: 1;
}

/* ========== More Testimonials Animation ========== */
.more-testimonials {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
        transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(-50px) scale(0.95);
    transform-origin: top center;
}

.more-testimonials.show {
    max-height: 2500px;
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Card entrance animation when shown */
.more-testimonials.show .testimonial__six-card {
    animation: slideInUpBounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

@keyframes slideInUpBounce {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

    60% {
        opacity: 1;
        transform: translateY(-10px) scale(1.02);
    }

    80% {
        transform: translateY(5px) scale(0.98);
    }

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

/* ================================
   HOME PAGE STYLES
   ================================ */

/* Premium Banner Section Styles */
.premium-banner-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 120px 0;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 89, 242, 0.15) 0%, rgba(245, 204, 21, 0.1) 50%, rgba(14, 89, 242, 0.05) 100%);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-shapes .shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(14, 89, 242, 0.1), rgba(245, 204, 21, 0.1));
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.shape.shape-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 5%;
    animation-delay: 2s;
}

.shape.shape-3 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 20%;
    animation-delay: 4s;
}

.shape.shape-4 {
    width: 180px;
    height: 180px;
    bottom: 10%;
    left: 15%;
    animation-delay: 1s;
}

.shape.shape-5 {
    width: 100px;
    height: 100px;
    top: 70%;
    left: 40%;
    animation-delay: 3s;
}

.banner-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.banner-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #F8E559;
    border-radius: 50%;
    animation: sparkle 3s linear infinite;
}

.particle.particle-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.particle.particle-2 {
    top: 30%;
    left: 80%;
    animation-delay: 1s;
}

.particle.particle-3 {
    top: 50%;
    left: 20%;
    animation-delay: 2s;
}

.particle.particle-4 {
    top: 70%;
    left: 70%;
    animation-delay: 0.5s;
}

.particle.particle-5 {
    top: 25%;
    left: 60%;
    animation-delay: 1.5s;
}

.particle.particle-6 {
    top: 80%;
    left: 30%;
    animation-delay: 2.5s;
}

.particle.particle-7 {
    top: 40%;
    left: 90%;
    animation-delay: 0.3s;
}

.particle.particle-8 {
    top: 85%;
    left: 85%;
    animation-delay: 1.8s;
}

.premium-banner-content {
    color: white;
    z-index: 10;
    position: relative;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(14, 89, 242, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(14, 89, 242, 0.2);
    border-radius: 50px;
    padding: 12px 25px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.badge-icon {
    background: linear-gradient(45deg, #0E59F2, #2D7CFF);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 14px;
}

.badge-text {
    font-weight: 600;
    font-size: 0.9rem;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 204, 21, 0.3), transparent);
    animation: shimmer 3s infinite;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-highlight {
    background: #0E59F2;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 600px;
}

.banner-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    background: linear-gradient(45deg, #0E59F2, #2D7CFF);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
}

.banner-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-premium-primary {
    background: #0E59F2;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(89, 89, 248, 0.3);
}

.btn-premium-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(22, 119, 255, 0.4);
    color: #1e293b;
}

.btn-premium-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-premium-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(14, 89, 242, 0.3);
    color: white;
    transform: translateY(-2px);
}

.banner-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #F8E559;
    line-height: 1;
}

.stat-symbol {
    font-size: 1.8rem;
    color: #F8E559;
    font-weight: 700;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 5px;
}

.premium-banner-image {
    position: relative;
    z-index: 10;
}

.image-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.decoration-circle {
    position: absolute;
    background: linear-gradient(45deg, rgba(14, 89, 242, 0.15), rgba(245, 204, 21, 0.15));
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
}

.decoration-circle.circle-1 {
    width: 150px;
    height: 150px;
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.decoration-circle.circle-2 {
    width: 100px;
    height: 100px;
    bottom: -20px;
    left: -20px;
    animation-delay: 4s;
}

.decoration-circle.circle-3 {
    width: 80px;
    height: 80px;
    top: 50%;
    left: -40px;
    animation-delay: 8s;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(14, 89, 242, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.banner-image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.main-banner-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-elements .element {
    position: absolute;
    background: rgba(14, 89, 242, 0.9);
    backdrop-filter: blur(10px);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(14, 89, 242, 0.3);
}

.element.element-1 {
    top: 10%;
    left: -30px;
    animation-delay: 0s;
}

.element.element-2 {
    top: 30%;
    right: -30px;
    animation-delay: 1.5s;
}

.element.element-3 {
    bottom: 30%;
    left: -30px;
    animation-delay: 3s;
}

.element.element-4 {
    bottom: 10%;
    right: -30px;
    animation-delay: 4.5s;
}

/* Premium Brand Section Styles */
.premium-brand-section {
    background: #f8fafc;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.premium-brand-wrapper {
    background: white;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.brand-header {
    text-align: center;
    margin-bottom: 50px;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(14, 89, 242, 0.1);
    border: 1px solid rgba(14, 89, 242, 0.2);
    border-radius: 50px;
    padding: 10px 20px;
    margin-bottom: 20px;
    gap: 8px;
    font-weight: 600;
    color: #0E59F2;
}

.brand-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.brand-description {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.brand-slider-container {
    margin-bottom: 50px;
}

.premium-brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.brand-image-wrapper {
    position: relative;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: white;
    border-color: rgba(14, 89, 242, 0.2);
}

.brand-image-wrapper img {
    max-width: 80%;
    max-height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(100%) opacity(0.7);
}

.brand-image-wrapper:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 89, 242, 0.9), rgba(245, 204, 21, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.brand-image-wrapper:hover .brand-overlay {
    opacity: 1;
}

.brand-hover-content {
    text-align: center;
    color: white;
    font-weight: 600;
}

.brand-hover-content i {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8fafc;
    padding: 20px 25px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.trust-icon {
    background: linear-gradient(135deg, #0E59F2, #2D7CFF);
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 8px 25px rgba(14, 89, 242, 0.3);
}

.trust-content {
    text-align: center;
}

.trust-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.trust-label {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 2px;
}

/* Premium Services Section Styles */
.premium-services-section {
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.services-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.service-shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(14, 89, 242, 0.03), rgba(245, 204, 21, 0.03));
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.service-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
}

.service-shape.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.service-shape.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

.premium-section-header {
    position: relative;
    z-index: 10;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(14, 89, 242, 0.1);
    border: 1px solid rgba(14, 89, 242, 0.2);
    border-radius: 50px;
    padding: 10px 20px;
    margin-bottom: 25px;
    gap: 8px;
    font-weight: 600;
    color: #0E59F2;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
}

.premium-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.premium-service-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
}

.premium-service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
    border-color: rgba(14, 89, 242, 0.2);
}

.premium-service-card.featured {
    background: linear-gradient(135deg, #0E59F2 0%, #2D7CFF 100%);
    color: white;
    transform: scale(1.05);
}

.premium-service-card.featured:hover {
    transform: translateY(-15px) scale(1.05);
}

.service-card-inner {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Premium Service Icon Styles */
.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 32px;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Individual Icon Gradients */
.vpn-icon {
    background: linear-gradient(135deg, #0E59F2 0%, #2d7cff 100%);
    box-shadow: 0 8px 32px rgba(45, 124, 255, 0.3);
}

.mobile-app-icon {
    background: linear-gradient(135deg, #0E59F2 0%, #2d7cff 100%);
    box-shadow: 0 8px 32px rgba(45, 124, 255, 0.3);
}

.web-dev-icon {
    background: linear-gradient(135deg, #0E59F2 0%, #2d7cff 100%);
    box-shadow: 0 8px 32px rgba(45, 124, 255, 0.3);
}

.design-icon {
    background: linear-gradient(135deg, #0E59F2 0%, #2d7cff 100%);
    box-shadow: 0 8px 32px rgba(45, 124, 255, 0.3);
}

.marketing-icon {
    background: linear-gradient(135deg, #0E59F2 0%, #2d7cff 100%);
    box-shadow: 0 8px 32px rgba(45, 124, 255, 0.3);
}

.ecommerce-icon {
    background: linear-gradient(135deg, #0E59F2 0%, #2d7cff 100%);
    box-shadow: 0 8px 32px rgba(45, 124, 255, 0.3);
}

.graphics-icon {
    background: linear-gradient(135deg, #0E59F2 0%, #2d7cff 100%);
    box-shadow: 0 8px 32px rgba(45, 124, 255, 0.3);
}

/* Icon Animation */
.service-icon i {
    transition: all 0.3s ease;
}

.premium-service-card:hover .service-icon i {
    transform: scale(1.1);
}

.premium-service-card.featured .service-icon {
    transform: scale(1.05);
    animation: featuredPulse 2s ease-in-out infinite;
}

@keyframes featuredPulse {

    0%,
    100% {
        transform: scale(1.05);
        box-shadow: 0 8px 32px rgba(245, 87, 108, 0.3);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 12px 40px rgba(245, 87, 108, 0.5);
    }
}

.service-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.premium-service-card:hover .icon-glow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

/* ================================
   FAQs PAGE STYLES
   ================================ */

/* Force FAQ answer text to sentence case (visual only).
   Lowercase all letters then uppercase the first letter of the paragraph.
   Note: this is a visual transform and will also lowercase proper nouns.
*/
.premium-faq .panel,
.premium-faq .panel p {
    text-transform: lowercase !important;
}

.premium-faq .panel p::first-letter {
    text-transform: uppercase !important;
}

/* If answers include other direct child elements, normalize them too */
.premium-faq .panel * {
    text-transform: none;
    /* allow specific tags (like code) to keep their case) */
}

/* ================================
   TERMS OF SERVICE PAGE STYLES
   ================================ */

.terms-section {
    background: #ffffff;
}

.terms-header {
    text-align: center;
    margin-bottom: 3rem;
}

.last-updated {
    background: rgba(14, 89, 242, 0.1);
    color: var(--primary-color-1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.terms-header h1 {
    color: var(--text-heading-color);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.terms-intro {
    color: var(--body-color);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-section-item {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.terms-section-item:last-child {
    border-bottom: none;
}

.terms-section-item h2 {
    color: var(--text-heading-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.terms-section-item h2 i {
    color: var(--primary-color-1);
    font-size: 1.5rem;
}

.terms-section-item h3 {
    color: var(--text-heading-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

.terms-section-item p {
    color: var(--body-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.terms-list li {
    color: var(--body-color);
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.terms-list li:before {
    content: "•";
    color: var(--primary-color-1);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.terms-list li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .terms-header h1 {
        font-size: 2.2rem;
    }

    .terms-section-item h2 {
        font-size: 1.5rem;
    }
}

/* ================================
   ABOUT PAGE STYLES
   ================================ */

/* Modern About Section Enhancements */
.brand__area-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.brand__area-item img {
    width: 150px;
    height: 80px;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease;
}

.modern-about-visual {
    position: relative;
}

.modern-experience {
    background: linear-gradient(135deg, #2d7cff 0%, #0e59f2 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(45, 124, 255, 0.3);
    border: none;
}

.experience-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.modern-image-grid {
    position: relative;
}

.modern-image {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.modern-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.floating-stats {
    position: absolute;
    bottom: -30px;
    right: -30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 180px;
    animation: float 3s ease-in-out infinite;
}

.stat-card:nth-child(2) {
    animation-delay: 1.5s;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #2d7cff, #0e59f2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.stat-label {
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Modern About Content */
.modern-about-content {
    padding-left: 30px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45, 124, 255, 0.1);
    color: #2d7cff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

.modern-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 25px;
}

.modern-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 35px;
}

.expertise-highlights {
    margin-bottom: 35px;
}

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

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #facc15, #f59e0b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.highlight-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.modern-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.modern-service-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.modern-service-item:hover {
    background: #2d7cff;
    border-color: #2d7cff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 124, 255, 0.2);
}

.service-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #2d7cff, #0e59f2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.modern-service-item:hover .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.modern-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-modern-primary {
    background: linear-gradient(135deg, #2d7cff 0%, #0e59f2 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(45, 124, 255, 0.3);
}

.btn-modern-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 124, 255, 0.4);
    color: white;
    text-decoration: none;
}

.btn-modern-secondary {
    background: white;
    border: 2px solid #e2e8f0;
    color: #1e293b;
    padding: 14px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-modern-secondary:hover {
    border-color: #2d7cff;
    color: #2d7cff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Company Stats Section */
.company-stats-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.stats-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(45, 124, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #0e59f2;
}

.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(45, 124, 255, 0.15);
}

.stats-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #2d7cff, #0e59f2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 25px;
}

.stats-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
}

.stats-label {
    color: #64748b;
    font-weight: 600;
    font-size: 1rem;
}

/* Mission & Vision Section */
.mission-vision-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(45, 124, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 204, 21, 0.1) 0%, transparent 50%);
}

.mission-vision-section .section-title,
.mission-vision-section .section-subtitle {
    color: white;
}

.mission-vision-section .section-badge {
    background: rgba(245, 204, 21, 0.1);
    color: #facc15;
}

.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.mission-card:hover,
.vision-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.mission-header,
.vision-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.mission-icon,
.vision-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #2d7cff, #0e59f2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

.vision-icon {
    background: linear-gradient(45deg, #facc15, #f59e0b);
}

.mission-header h3,
.vision-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.mission-content p,
.vision-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.mission-points,
.vision-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-points li,
.vision-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.mission-points i {
    color: #10b981;
    font-size: 14px;
}

.vision-points i {
    color: #facc15;
    font-size: 14px;
}

/* Team Section Styles */
.modern-team-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.team-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #2d7cff, #facc15);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #facc15, #f59e0b);
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #8b5cf6, #2d7cff);
    top: 30%;
    right: 30%;
    animation-delay: 10s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #10b981, #059669);
    bottom: 20%;
    left: 20%;
    animation-delay: 15s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-30px) rotate(120deg);
    }

    66% {
        transform: translateY(-20px) rotate(240deg);
    }
}

.modern-team-section .container {
    position: relative;
    z-index: 2;
}

.team-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #2d7cff, #1e40af);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(45, 124, 255, 0.3);
}

.badge-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s;
}

.team-badge:hover .badge-shine {
    left: 100%;
}

.team-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 25px;
    line-height: 1.2;
}

.highlight-text {
    background: linear-gradient(135deg, #2d7cff, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 60px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-divider {
    display: flex;
    align-items: center;
    margin: 60px 0 40px;
    gap: 20px;
}

.divider-line {
    height: 2px;
    background: linear-gradient(135deg, #2d7cff, #8b5cf6);
    flex: 1;
    border-radius: 1px;
}

.divider-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #475569;
    padding: 0 20px;
    background: white;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    white-space: nowrap;
}

.team-member-card {
    background: white;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    height: 100%;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 124, 255, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 25px;
}

.team-member-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.team-member-card:hover .card-glow {
    opacity: 1;
}

.leadership-card {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #facc15, #f59e0b) border-box;
}

.developer-card {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #2d7cff, #8b5cf6) border-box;
}

.member-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.member-avatar {
    position: relative;
    width: 80px;
    height: 80px;
}

.avatar-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 3px solid;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.leadership-avatar .avatar-ring {
    border-color: #facc15;
}

.developer-avatar .avatar-ring {
    border-color: #2d7cff;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.avatar-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #64748b;
    border: 3px solid white;
    position: relative;
    z-index: 2;
}

.status-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid white;
    z-index: 3;
}

.status-indicator.online {
    background: #10b981;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0.5;
    }
}

.member-role-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    position: relative;
    overflow: hidden;
}

.ceo-badge {
    background: linear-gradient(135deg, #facc15, #f59e0b);
}

.cto-badge {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.director-badge {
    background: linear-gradient(135deg, #10b981, #059669);
}

.mobile-badge {
    background: linear-gradient(135deg, #2d7cff, #1e40af);
}

.web-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.ecommerce-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.member-info {
    position: relative;
    z-index: 2;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.member-title {
    font-size: 1rem;
    color: #2d7cff;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.specialty {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    color: #475569;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #e2e8f0;
}

.member-social {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-btn.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
}

.social-btn.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.social-btn.github {
    background: linear-gradient(135deg, #333, #24292e);
}

.social-btn.email {
    background: linear-gradient(135deg, #ea4335, #d33b2c);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* About Page Responsive Design */
@media (max-width: 1200px) {
    .floating-stats {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
    }

    .modern-about-content {
        padding-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 992px) {
    .modern-title {
        font-size: 2rem;
    }

    .modern-services {
        grid-template-columns: 1fr;
    }

    .modern-cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .floating-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-card {
        min-width: auto;
        width: 100%;
        max-width: 250px;
    }

    .modern-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .expertise-highlights .highlight-item {
        flex-direction: column;
        text-align: center;
    }

    .mission-header,
    .vision-header {
        flex-direction: column;
        text-align: center;
    }

    .team-main-title {
        font-size: 2.5rem;
    }

    .team-member-card {
        padding: 25px;
        margin-bottom: 30px;
    }

    .member-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .section-divider {
        flex-direction: column;
        gap: 15px;
    }

    .divider-line {
        width: 100px;
        height: 2px;
    }
}

/* ================================
   BLOGS PAGE STYLES
   ================================ */

/* Blog Page Styles */
/* Ensure author line and title do not add extra bottom spacing */
.blog__one-single-blog-content-top {
    margin-bottom: 0 !important;
}

.blog-heading {
    margin-bottom: 0 !important;
    display: block;
}

/* Blog Responsive Fixes */
.blog__two .container {
    overflow-x: hidden;
}

.blog__one-single-blog {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.blog__one-single-blog:hover {
    transform: translateY(-5px);
}

/* Fix for 50% screen width and responsive issues */
@media (max-width: 1400px) {
    .blog__two .row.gy-4 {
        gap: 20px;
    }
}

@media (max-width: 1200px) {
    .blog__two .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .blog__one-single-blog {
        margin-bottom: 25px;
    }
}

/* Specific fix for medium screens (50% width issue) */
@media (min-width: 768px) and (max-width: 1199px) {
    .blog__two .col-xl-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .blog__one-single-blog-content {
        padding: 15px !important;
    }

    .blog__one-single-blog-image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
}

@media (max-width: 992px) {
    .blog__two .col-xl-4.col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .blog__two .col-xl-4.col-lg-6.col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .blog__one-single-blog {
        margin-bottom: 20px;
        max-width: 100%;
    }

    .blog__one-single-blog-content {
        padding: 12px !important;
    }
}

@media (max-width: 576px) {
    .blog__two {
        padding: 40px 0;
    }

    .blog__one-single-blog-content {
        padding: 10px !important;
    }

    .blog-heading {
        font-size: 1.1rem;
        line-height: 1.4;
    }
}

/* Fix for pagination */
.portfolio__two-pagination {
    margin-top: 20px;
    text-align: center;
}

.portfolio__two-pagination .pagination {
    justify-content: center;
}

/* Better spacing for blog cards */
.blog__one-single-blog-image {
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.blog__one-single-blog-image img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog__one-single-blog:hover .blog__one-single-blog-image img {
    transform: scale(1.05);
}

/* Responsive image heights */
@media (max-width: 992px) {
    .blog__one-single-blog-image img {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .blog__one-single-blog-image img {
        height: 200px;
    }
}

/* ================================
   PORTFOLIO PAGE STYLES
   ================================ */

/* Modern Portfolio Section Styles */
.modern-portfolio-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.portfolio-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.portfolio-shape.shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #0E59F2, #2D7CFF);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.portfolio-shape.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #F8E559, #FFC107);
    top: 60%;
    right: 10%;
    animation-delay: 10s;
}

.portfolio-shape.shape-3 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #28a745, #20c997);
    bottom: 15%;
    left: 20%;
    animation-delay: 5s;
}

@keyframes portfolio-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(120deg);
    }

    66% {
        transform: translateY(-10px) rotate(240deg);
    }
}

.portfolio-header {
    margin-bottom: 60px;
}

.portfolio-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 2px solid #0E59F2;
    border-radius: 50px;
    padding: 10px 25px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #0E59F2;
    box-shadow: 0 5px 15px rgba(14, 89, 242, 0.2);
}

.portfolio-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.portfolio-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Ultra Modern Portfolio Card */
.ultra-modern-portfolio-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ultra-modern-portfolio-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.card-number-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    background: linear-gradient(135deg, #0E59F2, #2D7CFF);
    border-radius: 12px;
    padding: 8px 15px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(14, 89, 242, 0.3);
}

.portfolio-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.image-tilt-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
}

.portfolio-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.ultra-modern-portfolio-card:hover .portfolio-main-image {
    transform: scale(1.05);
}

.corner-accent {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid #F8E559;
    opacity: 0;
    transition: all 0.4s ease;
}

.corner-top-left {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}

.corner-top-right {
    top: 15px;
    right: 15px;
    border-left: none;
    border-bottom: none;
}

.corner-bottom-left {
    bottom: 15px;
    left: 15px;
    border-right: none;
    border-top: none;
}

.corner-bottom-right {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

.ultra-modern-portfolio-card:hover .corner-accent {
    opacity: 1;
}

.modern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 89, 242, 0.95), rgba(45, 124, 255, 0.95));
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.ultra-modern-portfolio-card:hover .modern-overlay {
    opacity: 1;
}

.overlay-inner {
    text-align: center;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.ultra-modern-portfolio-card:hover .overlay-inner {
    transform: translateY(0);
}

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(248, 229, 89, 0.2);
    border: 1px solid rgba(248, 229, 89, 0.3);
    border-radius: 25px;
    padding: 8px 20px;
    color: #F8E559;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #0E59F2;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.explore-btn:hover {
    background: #F8E559;
    color: #1a1a1a;
    transform: translateX(5px);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.explore-btn:hover .btn-icon {
    transform: translateX(5px);
}

.portfolio-info-section {
    padding: 30px;
    background: white;
    position: relative;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.project-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-title a:hover {
    color: #0E59F2;
}

.project-details-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #666;
    font-size: 0.9rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.detail-divider {
    width: 4px;
    height: 4px;
    background: #ddd;
    border-radius: 50%;
}

.view-details-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0E59F2;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-details-link:hover {
    color: #2D7CFF;
    gap: 12px;
}

.no-portfolio-message {
    text-align: center;
    padding: 100px 20px;
    color: #666;
}

.no-portfolio-message i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.no-portfolio-message h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.modern-pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

/* Portfolio Responsive Design Fixes */
.modern-portfolio-section .container {
    overflow-x: hidden;
}

/* Large screens - 2 columns */
@media (min-width: 1200px) {
    .portfolio-main-title {
        font-size: 3rem;
    }

    .portfolio-image-container {
        height: 300px;
    }
}

/* Medium-large screens - 2 columns but smaller */
@media (min-width: 992px) and (max-width: 1199px) {
    .modern-portfolio-section .col-xl-6.col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .portfolio-main-title {
        font-size: 2.5rem;
    }

    .portfolio-image-container {
        height: 260px;
    }

    .portfolio-info-section {
        padding: 25px;
    }

    .project-title {
        font-size: 1.3rem;
    }
}

/* Medium screens - 50% width fix */
@media (min-width: 768px) and (max-width: 991px) {
    .modern-portfolio-section .col-xl-6.col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .modern-portfolio-section .container {
        max-width: 95%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .portfolio-main-title {
        font-size: 2.3rem;
    }

    .portfolio-image-container {
        height: 240px;
    }

    .portfolio-info-section {
        padding: 20px;
    }

    .project-title {
        font-size: 1.2rem;
    }

    .ultra-modern-portfolio-card {
        margin-bottom: 25px;
    }
}

/* Small tablets */
@media (min-width: 576px) and (max-width: 767px) {
    .modern-portfolio-section .col-xl-6.col-lg-6.col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .portfolio-main-title {
        font-size: 2rem;
    }

    .portfolio-image-container {
        height: 220px;
    }

    .ultra-modern-portfolio-card {
        margin-bottom: 30px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .modern-portfolio-section .col-xl-6.col-lg-6.col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .portfolio-main-title {
        font-size: 1.8rem;
    }

    .portfolio-description {
        font-size: 1rem;
    }

    .portfolio-image-container {
        height: 200px;
    }

    .portfolio-info-section {
        padding: 20px;
    }

    .project-title {
        font-size: 1.1rem;
    }

    .ultra-modern-portfolio-card {
        margin-bottom: 25px;
        border-radius: 20px;
    }

    .card-number-badge {
        top: 15px;
        left: 15px;
        padding: 6px 12px;
        font-size: 12px;
    }

    .explore-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .project-details-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .detail-divider {
        display: none;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .portfolio-main-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .portfolio-description br {
        display: none;
    }

    .portfolio-image-container {
        height: 180px;
    }

    .portfolio-info-section {
        padding: 15px;
    }

    .project-title {
        font-size: 1rem;
    }

    .no-portfolio-message {
        padding: 60px 15px;
    }

    .no-portfolio-message i {
        font-size: 3rem;
    }

    .no-portfolio-message h3 {
        font-size: 1.5rem;
    }
}

/* Fix for container overflow on all screen sizes */
.portfolio-row {
    margin-left: 0;
    margin-right: 0;
}

.portfolio-row>* {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
}

/* Better gap management for different screen sizes */
@media (max-width: 991px) {
    .portfolio-row.g-4 {
        --bs-gutter-x: 20px;
        --bs-gutter-y: 20px;
    }
}

@media (max-width: 576px) {
    .portfolio-row.g-4 {
        --bs-gutter-x: 15px;
        --bs-gutter-y: 15px;
    }
}

/* ================================
   SERVICES PAGE STYLES
   ================================ */

/* How We Work Section - New Modern Design */
.service-work-process {
    position: relative;
    overflow: hidden;
}

.work-section-header {
    margin-bottom: 60px;
}

.section-badge-work {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 2px solid #0E59F2;
    border-radius: 50px;
    padding: 10px 25px;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    color: #0E59F2;
}

.section-badge-work i {
    font-size: 16px;
}

.work-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.work-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.work-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.work-step {
    position: relative;
}

.work-step-inner {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.work-step:hover .work-step-inner {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(14, 89, 242, 0.15);
    border-color: #0E59F2;
}

.work-number-wrapper {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.work-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
    transition: all 0.3s ease;
}

.work-step:hover .work-number {
    transform: scale(1.1) rotate(-5deg);
}

.work-icon-box {
    margin: 80px 0 30px;
    display: flex;
    justify-content: center;
}

.work-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #0e59f2 0%, #2d7cff 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    box-shadow: 0 10px 30px rgba(14, 89, 242, 0.3);
    transition: all 0.4s ease;
}

.work-step:hover .work-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(14, 89, 242, 0.5);
}

.work-content {
    text-align: center;
}

.work-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.work-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}

.work-points {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.work-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    margin-bottom: 8px;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.work-points li:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.work-points li i {
    color: #0E59F2;
    font-size: 14px;
}

.work-step-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 20px;
}

.decoration-circle {
    position: absolute;
    background: linear-gradient(135deg, rgba(14, 89, 242, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
    border-radius: 50%;
    animation: floatDecoration 8s ease-in-out infinite;
}

.decoration-circle.circle-1 {
    width: 100px;
    height: 100px;
    top: -30px;
    right: -30px;
}

.decoration-circle.circle-2 {
    width: 60px;
    height: 60px;
    bottom: -20px;
    left: -20px;
    animation-delay: 4s;
}

@keyframes floatDecoration {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Why Choose Us Section Styles */
.why-choose-us .section-title h2 {
    color: var(--text-heading-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.why-choose-us .section-title p {
    color: var(--body-color);
    font-size: 16px;
    line-height: 1.6;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 24px;
    flex-shrink: 0;
}

.feature-content h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-heading-color);
    margin-bottom: 8px;
    font-family: var(--heading-font);
}

.feature-content p {
    color: var(--body-color);
    line-height: 1.6;
    margin: 0;
    font-size: 15px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color-1);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: var(--box-shadow-1);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color-1);
    box-shadow: var(--box-shadow-2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 24px;
    margin: 0 auto 20px;
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-heading-color);
    margin-bottom: 8px;
    font-family: var(--heading-font);
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--body-color);
}

/* Service Packages Section Styles */
.service-packages .section-title h2 {
    color: var(--text-heading-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.service-packages .section-title p {
    color: var(--body-color);
    font-size: 16px;
    line-height: 1.6;
}

.package-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--box-shadow-1);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    border: 2px solid var(--border-color-1);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-2);
    border-color: var(--primary-color-1);
}

.package-card.popular {
    border-color: var(--primary-color-2);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color-2);
    color: var(--text-heading-color);
    padding: 6px 20px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--heading-font);
}

.package-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--text-white);
    margin: 0 auto 20px;
}

.package-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-heading-color);
    margin-bottom: 10px;
    font-family: var(--heading-font);
}

.package-description {
    color: var(--body-color);
    margin-bottom: 25px;
    font-size: 15px;
}

.package-price {
    margin-bottom: 30px;
}

.currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--body-color);
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-heading-color);
    font-family: var(--heading-font);
}

.period {
    font-size: 16px;
    color: var(--body-color);
}

.package-features {
    margin-bottom: 30px;
}

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

.package-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-heading-color);
}

.package-features li i {
    width: 16px;
    font-size: 14px;
}

.package-features li.unavailable {
    color: var(--color-2);
}

.package-features li.unavailable i {
    color: #dc3545;
}

.package-features li:not(.unavailable) i {
    color: #28a745;
}

.package-btn {
    background: var(--primary-color-1) !important;
    color: var(--text-white) !important;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    border: 1px solid var(--primary-color-1) !important;
    font-family: var(--heading-font);
}

.package-btn:hover {
    background: var(--primary-color-3) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 89, 242, 0.3);
}

.custom-solution-cta {
    background: var(--bg-white);
    border: 2px solid var(--border-color-1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--box-shadow-1);
}

.custom-solution-cta h4 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-heading-color);
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

.custom-solution-cta p {
    color: var(--body-color);
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.6;
}

.custom-btn {
    background: var(--primary-color-1) !important;
    color: var(--text-white) !important;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--primary-color-1) !important;
    font-family: var(--heading-font);
}

.custom-btn:hover {
    background: var(--primary-color-3) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 89, 242, 0.3);
    gap: 15px;
}

/* Our services card decoration */
.services-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.service-shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(14, 89, 242, 0.03), rgba(245, 204, 21, 0.03));
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.service-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
}

.service-shape.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.service-shape.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

.premium-section-header {
    position: relative;
    z-index: 10;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(14, 89, 242, 0.1);
    border: 1px solid rgba(14, 89, 242, 0.2);
    border-radius: 50px;
    padding: 10px 20px;
    margin-bottom: 25px;
    gap: 8px;
    font-weight: 600;
    color: #0E59F2;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
}

.premium-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.premium-service-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
}

.premium-service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
    border-color: rgba(14, 89, 242, 0.2);
}

.premium-service-card.featured {
    background: linear-gradient(135deg, #0E59F2 0%, #2D7CFF 100%);
    color: white;
    transform: scale(1.05);
}

.premium-service-card.featured:hover {
    transform: translateY(-15px) scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(248, 229, 89, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(248, 229, 89, 0.3);
    border-radius: 25px;
    padding: 8px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #F8E559;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 20;
}

.service-card-inner {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-icon-wrapper {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Premium Service Icon Styles */
.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 32px;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Individual Icon Gradients */
.vpn-icon {
    background: linear-gradient(135deg, #0E59F2 0%, #2d7cff 100%);
    box-shadow: 0 8px 32px rgba(45, 124, 255, 0.3);
}

.mobile-app-icon {
    background: linear-gradient(135deg, #0E59F2 0%, #2d7cff 100%);
    box-shadow: 0 8px 32px rgba(45, 124, 255, 0.3);
}

.web-dev-icon {
    background: linear-gradient(135deg, #0E59F2 0%, #2d7cff 100%);
    box-shadow: 0 8px 32px rgba(45, 124, 255, 0.3);
}

.design-icon {
    background: linear-gradient(135deg, #0E59F2 0%, #2d7cff 100%);
    box-shadow: 0 8px 32px rgba(45, 124, 255, 0.3);
}

.marketing-icon {
    background: linear-gradient(135deg, #0E59F2 0%, #2d7cff 100%);
    box-shadow: 0 8px 32px rgba(45, 124, 255, 0.3);
}

.ecommerce-icon {
    background: linear-gradient(135deg, #0E59F2 0%, #2d7cff 100%);
    box-shadow: 0 8px 32px rgba(45, 124, 255, 0.3);
}

.graphics-icon {
    background: linear-gradient(135deg, #0E59F2 0%, #2d7cff 100%);
    box-shadow: 0 8px 32px rgba(45, 124, 255, 0.3);
}

/* Icon Hover Effects */
.premium-service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow:
        0 20px 40px rgba(45, 124, 255, 0.4),
        0 0 0 8px rgba(45, 124, 255, 0.2);
}

.service-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.premium-service-card:hover .icon-glow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

/* Responsive Icon Adjustments */
@media (max-width: 768px) {
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        border-radius: 16px;
    }

    .icon-glow {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        border-radius: 14px;
    }

    .icon-glow {
        width: 90px;
        height: 90px;
    }
}

.service-content {
    flex-grow: 1;
    margin-bottom: 25px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.premium-service-card.featured .service-title {
    color: white;
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 20px;
}

.premium-service-card.featured .service-description {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #475569;
}

.premium-service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.8);
}

.service-features i {
    color: #0E59F2;
    font-size: 12px;
}

.premium-service-card.featured .service-features i {
    color: #F8E559;
}

.service-footer {
    margin-top: auto;
}

.service-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(14, 89, 242, 0.1);
    color: #0E59F2;
    padding: 12px 20px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    background: #0E59F2;
    color: white;
    transform: translateX(5px);
}

.premium-service-card.featured .service-link {
    background: rgba(248, 229, 89, 0.2);
    color: #F8E559;
}

.premium-service-card.featured .service-link:hover {
    background: #F8E559;
    color: #1e293b;
}

.card-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.decoration-element {
    position: absolute;
    background: linear-gradient(45deg, rgba(14, 89, 242, 0.1), rgba(245, 204, 21, 0.1));
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
}

.decoration-element.element-1 {
    width: 100px;
    height: 100px;
    top: -50px;
    right: -50px;
}

.decoration-element.element-2 {
    width: 60px;
    height: 60px;
    bottom: -30px;
    left: -30px;
    animation-delay: 6s;
}

.services-cta {
    background: white;
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-premium-outline {
    background: transparent;
    border: 2px solid #0E59F2;
    color: #0E59F2;
    padding: 13px 28px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-premium-outline:hover {
    background: #0E59F2;
    color: white;
    transform: translateY(-2px);
}

.btn-premium-primary {
    background: #0E59F2;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(89, 89, 248, 0.3);
}

.btn-premium-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(248, 229, 89, 0.4);
    color: #1e293b;
}

/* Services Animations */
@keyframes services-float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes services-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

/* Services Responsive Design */
@media (max-width: 1400px) {
    .premium-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 1200px) {
    .premium-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .banner-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

/* Keep 3 columns for larger tablets */
@media (min-width: 993px) and (max-width: 1100px) {
    .premium-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .service-card-inner {
        padding: 25px;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .service-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .premium-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .premium-banner-section {
        padding: 80px 0;
        min-height: 80vh;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .banner-actions {
        flex-direction: column;
        align-items: center;
    }

    .banner-stats {
        justify-content: center;
        gap: 20px;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .premium-brand-wrapper {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .trust-indicators {
        gap: 20px;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 20px;
    }

    .premium-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card-inner {
        padding: 30px;
    }

    .services-cta {
        padding: 40px 20px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .banner-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .banner-features {
        gap: 10px;
    }

    .premium-service-card.featured {
        transform: none;
    }

    .premium-service-card.featured:hover {
        transform: translateY(-10px);
    }

    .service-card-inner {
        padding: 25px;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .service-description {
        font-size: 0.9rem;
    }
}

/* Services Responsive Design for How We Work */
@media (max-width: 991px) {
    .work-title {
        font-size: 2.5rem;
    }

    .work-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .work-title {
        font-size: 2rem;
    }

    .work-description {
        font-size: 1rem;
    }

    .work-process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .work-step-inner {
        padding: 35px 25px;
    }

    .work-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .work-icon {
        width: 75px;
        height: 75px;
        font-size: 32px;
    }

    .work-content h4 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .work-title {
        font-size: 1.8rem;
    }

    .section-badge-work {
        padding: 8px 20px;
        font-size: 12px;
    }

    .work-icon-box {
        margin: 70px 0 25px;
    }

    .work-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }

    .work-points li {
        padding: 8px 12px;
        font-size: 13px;
    }
}

/* Services Responsive Styles */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-features {
        gap: 25px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .process-step,
    .stat-card,
    .tech-card,
    .package-card {
        padding: 25px 20px;
        margin-bottom: 25px;
    }

    .step-number {
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .category-title {
        font-size: 20px;
    }

    .package-name {
        font-size: 20px;
    }

    .price {
        font-size: 36px;
    }

    .custom-solution-cta h4 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {

    .step-icon,
    .feature-icon,
    .stat-icon,
    .package-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .tech-icon {
        font-size: 36px;
    }

    .step-content h4,
    .feature-content h5 {
        font-size: 18px;
    }

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

/* Services Feature responsive fix */
@media (max-width: 770px) {
    .feature-item {
        flex-direction: row !important;
        text-align: left !important;
        gap: 15px !important;
        align-items: flex-start !important;
    }

    .feature-icon {
        margin: 0 !important;
    }
}

/* ================================
   WHITE LABEL PAGE STYLES
   ================================ */

/* VPN Development Hero Section */
.vpn-dev-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 124, 255, 0.15) 0%, rgba(14, 89, 242, 0.1) 50%, rgba(245, 204, 21, 0.05) 100%);
}

/* Animated Shapes */
.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(45, 124, 255, 0.1), rgba(245, 204, 21, 0.1));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 80%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

.shape-5 {
    width: 90px;
    height: 90px;
    top: 10%;
    right: 30%;
    animation-delay: 3s;
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #facc15;
    border-radius: 50%;
    animation: sparkle 3s linear infinite;
}

.particle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.particle-2 {
    top: 40%;
    left: 85%;
    animation-delay: 1s;
}

.particle-3 {
    top: 60%;
    left: 25%;
    animation-delay: 2s;
}

.particle-4 {
    top: 80%;
    left: 75%;
    animation-delay: 0.5s;
}

.particle-5 {
    top: 30%;
    left: 60%;
    animation-delay: 1.5s;
}

.particle-6 {
    top: 70%;
    left: 40%;
    animation-delay: 2.5s;
}

/* Hero Content */
.hero-content {
    color: white;
    z-index: 10;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(45, 124, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(45, 124, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.badge-icon {
    background: linear-gradient(45deg, #2d7cff, #0e59f2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 12px;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 204, 21, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-highlight {
    background: linear-gradient(135deg, #facc15 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 550px;
}

/* Hero Features Grid */
.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(45, 124, 255, 0.1);
    border-color: rgba(45, 124, 255, 0.3);
    transform: translateY(-2px);
}

.feature-icon {
    background: linear-gradient(45deg, #2d7cff, #0e59f2);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 16px;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #2d7cff 0%, #0e59f2 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(45, 124, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary-modern:hover::before {
    left: 100%;
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(45, 124, 255, 0.4);
    color: white;
    text-decoration: none;
}

.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 16px 32px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

/* Hero Metrics */
.hero-metrics {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.metric {
    display: flex;
    align-items: center;
    gap: 15px;
}

.metric-icon {
    background: linear-gradient(45deg, #facc15, #f59e0b);
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.metric-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.metric-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #2a2a3e, #1e1e2e);
    border-radius: 30px;
    padding: 20px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 5;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.vpn-app-ui {
    padding: 30px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.app-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.app-logo {
    color: #2d7cff;
    font-weight: 700;
    font-size: 1.1rem;
}

.connection-status {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.connection-circle {
    width: 200px;
    height: 200px;
    border: 3px solid rgba(45, 124, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 50px 0;
}

.connection-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: #2d7cff;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

.power-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #2d7cff, #0e59f2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(45, 124, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.power-button:hover {
    transform: scale(1.1);
}

.server-info {
    text-align: center;
}

.server-location {
    color: white;
    font-weight: 600;
    margin-bottom: 5px;
}

.server-ping {
    color: #10b981;
    font-size: 0.9rem;
}

/* Floating Cards */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: -20%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -20%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: -15%;
    animation-delay: 2s;
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

.whitelabel-features {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45, 124, 255, 0.1);
    color: #2d7cff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(45, 124, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #0e59f2
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(45, 124, 255, 0.2);
}

.feature-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #2d7cff, #0e59f2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
    margin-bottom: 8px;
}

.feature-list i {
    color: #10b981;
    font-size: 14px;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.pricing-section .section-title,
.pricing-section .section-subtitle {
    color: white;
}

.pricing-section .section-badge {
    background: rgba(245, 204, 21, 0.1);
    color: #facc15;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.pricing-card.featured {
    border: 2px solid #facc15;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #facc15, #f59e0b);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.price {
    margin: 20px 0;
}

.currency {
    font-size: 1.5rem;
    color: #facc15;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
}

.pricing-header p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    text-align: left;
}

.pricing-features i {
    color: #10b981;
    font-size: 14px;
}

.pricing-footer {
    margin-top: 30px;
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.process-step {
    text-align: center;
    position: relative;
    padding: 30px 20px;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #2d7cff, #0e59f2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(45, 124, 255, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto 25px;
    color: #2d7cff;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.process-step p {
    color: #64748b;
    line-height: 1.6;
}

/* Why Choose TecClub Section */
.why-choose-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(45, 124, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 204, 21, 0.1) 0%, transparent 50%);
}

.why-choose-content {
    position: relative;
    z-index: 2;
}

.why-choose-section .section-title {
    color: white;
    margin-bottom: 25px;
}

.section-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.why-choose-points {
    margin-bottom: 40px;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.point-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #2d7cff, #0e59f2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.point-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.point-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.trust-indicators {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.trust-label {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.9rem;
}

/* Why Choose Visual */
.why-choose-visual {
    position: relative;
    z-index: 2;
}

.stats-dashboard {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 30px;
    margin-bottom: 30px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-header h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #10b981;
    font-size: 0.9rem;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #2d7cff, #0e59f2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.dashboard-chart {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-header span:first-child {
    color: white;
    font-weight: 600;
}

.growth-percentage {
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 60px;
}

.bar {
    flex: 1;
    background: linear-gradient(180deg, #facc15, #f59e0b);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    animation: growUp 1s ease-out;
}

.floating-badges {
    position: relative;
}

.badge-item {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 12px 18px;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: float 3s ease-in-out infinite;
}

.badge-1 {
    top: 0;
    left: -30px;
    animation-delay: 0s;
}

.badge-2 {
    top: 80px;
    right: -30px;
    animation-delay: 1s;
}

.badge-3 {
    bottom: 0;
    left: -20px;
    animation-delay: 2s;
}

/* Our Expertise Section */
.expertise-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.expertise-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(45, 124, 255, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #0e59f2;
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(45, 124, 255, 0.2);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #2d7cff, #0e59f2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 25px;
}

.expertise-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.expertise-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.tech-tag {
    background: linear-gradient(45deg, rgba(45, 124, 255, 0.1), rgba(245, 204, 21, 0.1));
    color: #2d7cff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(45, 124, 255, 0.2);
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: #1e293b;
}

.faq-section .section-title {
    color: #1e293b;
}

.faq-section .section-subtitle {
    color: #64748b;
}

.faq-section .section-badge {
    background: rgba(45, 124, 255, 0.1);
    color: #2d7cff;
}

.faq-accordion {
    max-width: 100%;
}

.faq-item {
    background: white;
    border: 1px solid rgba(45, 124, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-item:hover {
    background: white;
    border-color: rgba(45, 124, 255, 0.3);
    box-shadow: 0 10px 30px rgba(45, 124, 255, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    position: relative;
}

.faq-question h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    padding-right: 20px;
    line-height: 1.4;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #2d7cff, #0e59f2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: linear-gradient(45deg, #facc15, #f59e0b);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* White Label Animations */
@keyframes whitelabel-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes growUp {
    from {
        height: 0;
    }

    to {
        height: inherit;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(45, 124, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(245, 204, 21, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-feature i {
    color: #10b981;
    font-size: 18px;
}

.cta-actions {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-note {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    font-size: 0.9rem;
}

/* White Label Animations */
@keyframes whitelabel-float {

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

    50% {
        transform: translateY(-20px);
    }
}

@keyframes whitelabel-sparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes whitelabel-shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes whitelabel-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* White Label Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

    .connection-circle {
        width: 160px;
        height: 160px;
    }

    .power-button {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-metrics {
        justify-content: center;
    }

    .phone-mockup {
        width: 200px;
        height: 400px;
        margin-top: 50px;
    }

    .floating-card {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .vpn-dev-hero {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn-primary-modern,
    .btn-secondary-modern {
        padding: 14px 24px;
        width: 100%;
        justify-content: center;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .pricing-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .amount {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-features {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-metrics {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .phone-mockup {
        width: 180px;
        height: 360px;
    }

    .connection-circle {
        width: 120px;
        height: 120px;
    }

    .power-button {
        width: 50px;
        height: 50px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ================================
   PRIVACY POLICY PAGE STYLES
   ================================ */

/* Privacy Policy Page Styling */
.privacy-policy-section {
    background: #ffffff;
}

/* Policy Header */
.policy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.last-updated {
    background: rgba(14, 89, 242, 0.1);
    color: var(--primary-color-1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.last-updated i {
    margin-right: 0.5rem;
}

.policy-header h1 {
    color: var(--text-heading-color);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.policy-intro {
    color: var(--body-color);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Quick Navigation */
.policy-navigation {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color-1);
}

.policy-navigation h3 {
    color: var(--text-heading-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-link {
    background: #ffffff;
    color: var(--primary-color-1);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(14, 89, 242, 0.2);
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary-color-1);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Policy Content */
.policy-content {
    padding-right: 2rem;
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    color: var(--text-heading-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.policy-section h2 i {
    color: var(--primary-color-1);
    font-size: 1.5rem;
}

.policy-section h3 {
    color: var(--text-heading-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

.policy-section h4 {
    color: var(--text-heading-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem;
}

.policy-section p {
    color: var(--body-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.policy-list li {
    color: var(--body-color);
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.policy-list li:before {
    content: "•";
    color: var(--primary-color-1);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.policy-list li:last-child {
    border-bottom: none;
}

/* Tables */
.table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.table th {
    background: var(--primary-color-1);
    color: #ffffff;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    color: var(--body-color);
}

.table tr:last-child td {
    border-bottom: none;
}

/* Special Notices */
.security-notice,
.rights-exercise {
    background: rgba(14, 89, 242, 0.05);
    border: 1px solid rgba(14, 89, 242, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.security-notice i {
    color: var(--primary-color-1);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

/* Contact Information */
.contact-info {
    display: grid;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-item i {
    color: var(--primary-color-1);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.response-time {
    background: rgba(248, 229, 89, 0.1);
    border: 1px solid rgba(248, 229, 89, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.response-time i {
    color: var(--primary-color-2);
}

/* Sidebar */
.policy-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color-1);
}

.sidebar-widget h3 {
    color: var(--text-heading-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-btn {
    background: rgba(14, 89, 242, 0.05);
    color: var(--primary-color-1);
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(14, 89, 242, 0.1);
}

.action-btn:hover {
    background: var(--primary-color-1);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Related Links */
.related-links {
    list-style: none;
    padding: 0;
}

.related-links li {
    margin-bottom: 1rem;
}

.related-links a {
    color: var(--body-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.related-links a:hover {
    color: var(--primary-color-1);
}

.related-links i {
    color: var(--primary-color-1);
    width: 16px;
}

/* Compliance Badges */
.compliance-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.badge-item {
    text-align: center;
    padding: 1rem;
    background: rgba(14, 89, 242, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(14, 89, 242, 0.1);
}

.badge-item i {
    color: var(--primary-color-1);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.badge-item span {
    color: var(--body-color);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Support Info */
.support-info {
    text-align: center;
}

.support-info p {
    color: var(--body-color);
    margin-bottom: 1.5rem;
}

.support-btn {
    background: var(--primary-color-1);
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.support-btn:hover {
    background: var(--primary-color-3);
    transform: translateY(-2px);
    color: #ffffff;
}

.support-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--body-color);
    font-size: 0.9rem;
}

.support-hours i {
    color: var(--primary-color-1);
}

/* Privacy Preferences Modal */
.preferences-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.preferences-modal {
    background: #ffffff;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.3s ease;
}

.preferences-modal-header {
    background: var(--primary-color-1);
    color: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: between;
    align-items: center;
}

.preferences-modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
    margin-left: auto;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.preferences-modal-body {
    padding: 2rem;
}

.preference-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.preference-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.preference-section h4 {
    color: var(--text-heading-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.preference-section h4 i {
    color: var(--primary-color-1);
}

.preference-item {
    margin-bottom: 1.5rem;
}

.preference-toggle {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.preference-toggle:hover {
    background: #f8f9fa;
}

.preference-toggle input[type="checkbox"] {
    display: none;
}

.toggle-slider {
    width: 50px;
    height: 26px;
    background: #ddd;
    border-radius: 26px;
    position: relative;
    transition: background 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.toggle-slider:before {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.preference-toggle input[type="checkbox"]:checked+.toggle-slider {
    background: var(--primary-color-1);
}

.preference-toggle input[type="checkbox"]:checked+.toggle-slider:before {
    transform: translateX(24px);
}

.preference-toggle input[type="checkbox"]:disabled+.toggle-slider {
    background: #ccc;
    cursor: not-allowed;
}

.preference-info {
    flex: 1;
}

.preference-info strong {
    color: var(--text-heading-color);
    font-size: 1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
}

.preference-info p {
    color: var(--body-color);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Data Actions */
.data-action-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.data-action-item i {
    color: var(--primary-color-1);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.data-action-item>div {
    flex: 1;
}

.data-action-item strong {
    color: var(--text-heading-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
}

.data-action-item p {
    color: var(--body-color);
    font-size: 0.9rem;
    margin: 0;
}

.data-action-btn {
    background: var(--primary-color-1);
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.data-action-btn:hover {
    background: var(--primary-color-3);
    transform: translateY(-1px);
}

.data-action-btn.danger {
    background: #dc3545;
}

.data-action-btn.danger:hover {
    background: #c82333;
}

/* Modal Footer */
.preferences-modal-footer {
    background: #f8f9fa;
    padding: 1.5rem 2rem;
    border-radius: 0 0 15px 15px;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.btn-secondary,
.btn-primary {
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary {
    background: #6c757d;
    color: #ffffff;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-primary {
    background: var(--primary-color-1);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--primary-color-3);
    transform: translateY(-1px);
}

/* Privacy Notifications */
.privacy-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-left: 4px solid var(--primary-color-1);
    z-index: 10001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    max-width: 400px;
}

.privacy-notification.show {
    transform: translateX(0);
}

.privacy-notification.success {
    border-left-color: #28a745;
}

.privacy-notification.warning {
    border-left-color: #ffc107;
}

.privacy-notification.info {
    border-left-color: #17a2b8;
}

.privacy-notification i {
    font-size: 1.2rem;
}

.privacy-notification.success i {
    color: #28a745;
}

.privacy-notification.warning i {
    color: #ffc107;
}

.privacy-notification.info i {
    color: #17a2b8;
}

.privacy-notification span {
    color: var(--body-color);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

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

/* Mobile Modal Responsiveness */
@media (max-width: 768px) {
    .preferences-modal {
        width: 95%;
        margin: 1rem;
    }

    .preferences-modal-header,
    .preferences-modal-body,
    .preferences-modal-footer {
        padding: 1rem;
    }

    .preference-toggle {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .data-action-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .preferences-modal-footer {
        flex-direction: column;
    }

    .privacy-notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-header h1 {
        font-size: 2.2rem;
    }

    .nav-links {
        flex-direction: column;
    }

    .policy-content {
        padding-right: 0;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .compliance-badges {
        grid-template-columns: 1fr;
    }

    .contact-info {
        gap: 1rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .policy-header h1 {
        font-size: 1.8rem;
    }

    .policy-navigation {
        padding: 1.5rem;
    }

    .sidebar-widget {
        padding: 1.5rem;
    }

    .table {
        font-size: 0.85rem;
    }

    .table th,
    .table td {
        padding: 0.7rem;
    }
}

/* ================================
   RESPONSIVE CONTAINER FIX
   ================================ */

@keyframes go {
    from {
        margin-left: -100px;
        width: 80px;
    }

    to {
        width: 30px;
        margin-left: 110px;
    }
}

ul {
    list-style: none;
}

.text {
    width: 100px;
    height: 30px;
    background-color: transparent;
    margin-top: 20px;
    text-align: center;
    color: #000;
}

.text::before {
    content: "Loading";
    animation: text 1s 0s infinite;
}

@keyframes text {
    0% {
        content: "Loading";
    }

    30% {
        content: "Loading.";
    }

    60% {
        content: "Loading..";
    }

    100% {
        content: "Loading...";
    }
}

.loading-box {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.34);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* From Uiverse.io by mrhyddenn */
.spinner-container {
    position: fixed;
    /* Ensures the spinner stays in place while scrolling */
    z-index: 999;
    top: 0;
    /* Position it at the top */
    left: 0;
    /* Position it at the left */
    width: 100%;
    /* Full width */
    height: 100vh;
    /* Full height */
    background: rgba(255, 255, 255, 0.34);
    display: flex;
    /* Flexbox layout for easy centering */
    justify-content: center;
    /* Horizontally center the spinner */
    align-items: center;
    /* Vertically center the spinner */
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.spinner {
    font-size: 28px;
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
}

.spinner.center {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.spinner .spinner-blade {
    position: absolute;
    left: 0.4629em;
    bottom: 0;
    width: 0.074em;
    height: 0.2777em;
    border-radius: 0.0555em;
    background-color: transparent;
    -webkit-transform-origin: center -0.2222em;
    -ms-transform-origin: center -0.2222em;
    transform-origin: center -0.2222em;
    animation: spinner-fade9234 1s infinite linear;
}

.spinner .spinner-blade:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.spinner .spinner-blade:nth-child(2) {
    -webkit-animation-delay: 0.083s;
    animation-delay: 0.083s;
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}

.spinner .spinner-blade:nth-child(3) {
    -webkit-animation-delay: 0.166s;
    animation-delay: 0.166s;
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}

.spinner .spinner-blade:nth-child(4) {
    -webkit-animation-delay: 0.249s;
    animation-delay: 0.249s;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.spinner .spinner-blade:nth-child(5) {
    -webkit-animation-delay: 0.332s;
    animation-delay: 0.332s;
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
}

.spinner .spinner-blade:nth-child(6) {
    -webkit-animation-delay: 0.415s;
    animation-delay: 0.415s;
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
}

.spinner .spinner-blade:nth-child(7) {
    -webkit-animation-delay: 0.498s;
    animation-delay: 0.498s;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.spinner .spinner-blade:nth-child(8) {
    -webkit-animation-delay: 0.581s;
    animation-delay: 0.581s;
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
}

.spinner .spinner-blade:nth-child(9) {
    -webkit-animation-delay: 0.664s;
    animation-delay: 0.664s;
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
}

.spinner .spinner-blade:nth-child(10) {
    -webkit-animation-delay: 0.747s;
    animation-delay: 0.747s;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.spinner .spinner-blade:nth-child(11) {
    -webkit-animation-delay: 0.83s;
    animation-delay: 0.83s;
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
}

.spinner .spinner-blade:nth-child(12) {
    -webkit-animation-delay: 0.913s;
    animation-delay: 0.913s;
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
}

@keyframes spinner-fade9234 {
    0% {
        background-color: #69717d;
    }

    100% {
        background-color: transparent;
    }
}

.highlights-container {
    padding: 50px 0;
    text-align: center;
}

.highlight-card {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.highlight-card h1 {
    color: #000;
    font-size: 3rem;
    margin-bottom: 10px;
}

.highlight-card p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #666;
}

.highlight-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

/* ========================================
   TRUSTED TECHNOLOGIES SECTION - PREMIUM REDESIGN
   ======================================== */

/* Tab Navigation - Premium Minimal Style */
.tabs-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

.tabs-nav .nav-item {
    margin: 0;
}

.tabs-nav .nav-item .nav-link {
    padding: 13px 26px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: #6b7280;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.3px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.02);
}

.tabs-nav .nav-item .nav-link h6 {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.35s ease;
}

.tabs-nav .nav-item .nav-link:hover {
    background: #fafbfc;
    border-color: rgba(14, 89, 242, 0.2);
    color: #0E59F2;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(14, 89, 242, 0.08), 0 2px 4px rgba(14, 89, 242, 0.04);
}

.tabs-nav .nav-item .nav-link:hover h6 {
    color: #0E59F2;
}

.tabs-nav .nav-item .nav-link.active {
    background: linear-gradient(135deg, #0E59F2 0%, #1d6aff 100%);
    border-color: rgba(14, 89, 242, 0.3);
    color: #ffffff;
    box-shadow: 0 8px 16px rgba(14, 89, 242, 0.2), 0 3px 6px rgba(14, 89, 242, 0.15);
    transform: translateY(-1px);
}

.tabs-nav .nav-item .nav-link.active h6 {
    color: #ffffff;
}

/* Technology Cards - Premium Glass-Morphism Design */
.tech-list {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.tech-list li:last-child {
    margin-right: 0;
}

.tech-item {
    position: relative;
    border-radius: 18px;
    background: #ffffff;
    padding: 30px 22px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 180px;
    max-height: 180px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Ultra-subtle gradient overlay */
.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 89, 242, 0.02) 0%, rgba(29, 106, 255, 0.01) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 18px;
    z-index: 0;
}

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

.tech-item:hover {
    transform: translateY(-6px);
    border-color: rgba(14, 89, 242, 0.15);
    box-shadow:
        0 12px 24px rgba(14, 89, 242, 0.08),
        0 6px 12px rgba(14, 89, 242, 0.06),
        0 2px 4px rgba(14, 89, 242, 0.04);
}

/* Technology Icon/Logo */
.tech-item img {
    height: 52px;
    width: auto;
    max-width: 75px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    filter: grayscale(0.15) brightness(1.05);
}

.tech-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0) brightness(1);
}

/* Technology Name */
.tech-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin: 14px 0 6px;
    letter-spacing: 0.2px;
    line-break: anywhere;
    word-wrap: break-word;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.tech-item:hover h4 {
    color: #0E59F2;
}

/* Technology Description - Premium Typography */
.tech-item p {
    font-size: 11px;
    font-weight: 500;
    color: #9ca3af;
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 1;
    max-width: 90%;
    transition: color 0.3s ease;
}

.tech-item:hover p {
    color: #6b7280;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .tech-item {
        height: 170px;
        max-height: 170px;
        padding: 26px 20px;
    }

    .tech-item img {
        height: 48px;
    }

    .tech-item h4 {
        font-size: 13px;
        margin: 12px 0 5px;
    }

    .tech-item p {
        font-size: 10.5px;
    }
}

@media screen and (max-width: 768px) {
    .tabs-nav {
        gap: 8px;
        margin-bottom: 35px;
    }

    .tabs-nav .nav-item .nav-link {
        padding: 11px 20px;
        font-size: 12px;
    }

    .tabs-nav .nav-item .nav-link h6 {
        font-size: 12px;
    }

    .tech-item {
        height: 160px;
        max-height: 160px;
        padding: 22px 18px;
        border-radius: 16px;
    }

    .tech-item img {
        height: 44px;
        max-width: 65px;
    }

    .tech-item h4 {
        font-size: 12px;
        margin: 11px 0 5px;
    }

    .tech-item p {
        font-size: 10px;
    }
}

@media screen and (max-width: 520px) {
    .tabs-nav .nav-item .nav-link {
        padding: 10px 16px;
        font-size: 11px;
        border-radius: 12px;
    }

    .tabs-nav .nav-item .nav-link h6 {
        font-size: 11px;
    }

    .tech-item {
        height: 150px;
        max-height: 150px;
        padding: 20px 16px;
        border-radius: 14px;
    }

    .tech-item img {
        height: 40px;
        max-width: 60px;
    }

    .tech-item h4 {
        font-size: 11px;
        margin: 10px 0 4px;
    }

    .tech-item p {
        font-size: 9.5px;
    }
}

@media (max-width: 1000px) {
    .testimonial__six-card {
        margin-top: 5px;
    }
}

@media (max-width: 1300px) {
    .testimonial__six-card {
        margin-top: 5px;
    }
}

.custom-features-section {
    background: linear-gradient(90deg, #1a2341 60%, #232f53 100%);
    color: #fff;
    padding: 60px 0 40px 0;
}

.custom-features-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.custom-features-desc {
    color: #bfc8e2;
    margin-bottom: 32px;
    font-size: 1.08rem;
}

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

.custom-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
}

.custom-feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.icon-blue {
    background: #2d7cff;
}

.icon-purple {
    background: #7c3aed;
}

.icon-green {
    background: #22c55e;
}

.icon-yellow {
    background: #facc15;
}

.custom-feature-item-title {
    font-weight: 600;
    font-size: 1.08rem;
    margin-bottom: 2px;
}

.custom-feature-item-desc {
    color: #bfc8e2;
    font-size: 0.98rem;
    margin-bottom: 0;
}

.custom-features-img {
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.18);
    margin-left: auto;
    margin-right: auto;
    display: block;
}

@media (max-width: 991px) {
    .custom-features-title {
        font-size: 1.4rem;
    }

    .custom-features-section {
        padding: 40px 0 20px 0;
    }
}

@media (max-width: 767px) {
    .custom-features-section {
        padding: 32px 0 10px 0;
    }

    .custom-features-img {
        margin-top: 32px;
    }
}

.why-choose-section {
    background: #fff;
    padding: 60px 0 40px 0;
}

.why-choose-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-choose-desc {
    color: #6c757d;
    margin-bottom: 32px;
    font-size: 1.08rem;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}

.why-choose-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    margin-right: 16px;
    flex-shrink: 0;
}

.why-choose-item-title {
    font-weight: 600;
    font-size: 1.08rem;
    margin-bottom: 2px;
}

.why-choose-item-desc {
    color: #6c757d;
    font-size: 0.98rem;
    margin-bottom: 0;
}

.why-choose-img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.10);
    margin-left: auto;
    margin-right: auto;
    display: block;
}

@media (max-width: 991px) {
    .why-choose-title {
        font-size: 1.4rem;
    }

    .why-choose-section {
        padding: 40px 0 20px 0;
    }
}

@media (max-width: 767px) {
    .why-choose-section {
        padding: 32px 0 10px 0;
    }

    .why-choose-img {
        margin-top: 32px;
    }
}

/* How We Develop VPNs In 3 Simple Steps Section Styles */
.vpn-steps-section {
    background: #f8fbfd;
    padding: 70px 0 40px 0;
}

.vpn-steps-title {
    font-size: 2.3rem;
    font-weight: 900;
    color: #0e59f2;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.vpn-steps-desc {
    font-size: 1.13rem;
    text-align: start;
    margin-bottom: 54px;
    font-weight: 500;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.vpn-step-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(44, 91, 255, 0.07), 0 1.5px 0 #eaf0ff;
    padding: 38px 28px 28px 28px;
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1.5px solid #eaf0ff;
    min-height: 320px;
    position: relative;
    overflow: hidden;
}

.vpn-step-card:hover {
    box-shadow: 0 12px 40px rgba(44, 91, 255, 0.13), 0 1.5px 0 #eaf0ff;
    transform: translateY(-2px) scale(1.025);
    border-color: #2d7cff22;
}

.vpn-step-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 2.2rem;
    box-shadow: 0 2px 12px #2d7cff22;
}

.vpn-step-icon-yellow {
    background: #fff7e6;
}

.vpn-step-icon-cyan {
    background: #e6fcfa;
}

.vpn-step-icon-pink {
    background: #ffe6fa;
}

.vpn-step-title {
    font-weight: 800;
    font-size: 1.35rem;
    color: #222;
    margin-bottom: 12px;
    text-align: center;
}


@media (max-width: 991px) {
    .vpn-steps-title {
        font-size: 1.5rem;
    }

    .vpn-steps-section {
        padding: 40px 0 20px 0;
    }

    .vpn-step-card {
        padding: 28px 12px 18px 12px;
        min-height: 260px;
    }
}

@media (max-width: 767px) {
    .vpn-steps-section {
        padding: 28px 0 8px 0;
    }

    .vpn-step-card {
        min-height: unset;
    }
}

.cursor-pointer {
    cursor: pointer;
}

/* ================================
   OUR TEAM PAGE STYLES
   ================================ */

/* Team Page Styling */
.team-section {
    background: #ffffff;
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.subtitle-one {
    color: var(--primary-color-1);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(14, 89, 242, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-header h2 {
    color: var(--text-heading-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.team-intro {
    color: var(--body-color);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Team Statistics */
.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: linear-gradient(135deg, var(--primary-color-1) 0%, var(--primary-color-3) 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 4rem;
}

.stat-item {
    text-align: center;
    color: #ffffff;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color-2);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h3 {
    color: var(--text-heading-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--body-color);
    font-size: 1.1rem;
}

/* Team Cards */
.team-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(14, 89, 242, 0.15);
}

.team-card.leadership {
    border-top: 4px solid var(--primary-color-1);
}

.team-card.department-head {
    border-top: 3px solid var(--primary-color-2);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

/* Team Image */
.team-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Team Overlay */
.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 89, 242, 0.8) 0%, rgba(64, 106, 255, 0.8) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.team-social {
    display: flex;
    gap: 1rem;
}

.team-social a {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.team-social a:hover {
    background: #ffffff;
    color: var(--primary-color-1);
    transform: scale(1.1);
}

/* Team Content */
.team-content {
    padding: 1.5rem;
}

.team-content h4 {
    color: var(--text-heading-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.position {
    color: var(--primary-color-1);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    display: block;
}

.team-bio {
    color: var(--body-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Team Skills */
.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: rgba(14, 89, 242, 0.1);
    color: var(--primary-color-1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(14, 89, 242, 0.2);
}

/* Team CTA */
.team-cta {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    border: 1px solid rgba(14, 89, 242, 0.1);
}

.cta-content h3 {
    color: var(--text-heading-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--body-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Team Responsive Design */
@media (max-width: 1024px) {
    .team-cta {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .team-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-header h2 {
        font-size: 2rem;
    }

    .team-stats {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .team-cta {
        padding: 2rem;
    }

    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .team-header h2 {
        font-size: 1.7rem;
    }

    .team-intro {
        font-size: 1rem;
    }

    .team-content {
        padding: 1.2rem;
    }
}

/* ================================
   NDA PAGE STYLES
   ================================ */

/* NDA Page Styling */
.nda-section {
    background: #ffffff;
}

.nda-header {
    margin-bottom: 3rem;
}

.nda-header h2 {
    color: var(--text-heading-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.nda-intro {
    color: var(--body-color);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* NDA Importance */
.nda-importance {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(14, 89, 242, 0.1);
}

.importance-content h3 {
    color: var(--text-heading-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.importance-content p {
    color: var(--body-color);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.importance-list {
    list-style: none;
    padding: 0;
}

.importance-list li {
    color: var(--body-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.importance-list i {
    color: var(--primary-color-1);
    font-size: 1.2rem;
    min-width: 20px;
}

.importance-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Protection Cards */
.protection-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.protection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(14, 89, 242, 0.15);
}

.protection-icon {
    background: linear-gradient(135deg, var(--primary-color-1) 0%, var(--primary-color-3) 100%);
    color: #ffffff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.protection-card h4 {
    color: var(--text-heading-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.protection-card p {
    color: var(--body-color);
    line-height: 1.6;
}

/* Process Steps */
.process-step {
    text-align: center;
    margin-bottom: 2rem;
}

.step-number {
    background: linear-gradient(135deg, var(--primary-color-1) 0%, var(--primary-color-3) 100%);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-content h4 {
    color: var(--text-heading-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--body-color);
    line-height: 1.6;
}

/* NDA Form */
.nda-form-wrapper {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(14, 89, 242, 0.1);
}

/* Alert Styles */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-success i {
    color: #28a745;
    margin-right: 0.5rem;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-danger i {
    color: #dc3545;
    margin-right: 0.5rem;
}

.alert ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.5rem;
}

.alert li {
    margin-bottom: 0.25rem;
}

.form-header h3 {
    color: var(--text-heading-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--body-color);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    color: var(--text-heading-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e6ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color-1);
    box-shadow: 0 0 0 3px rgba(14, 89, 242, 0.1);
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.custom-checkbox input[type="checkbox"] {
    margin-top: 0.2rem;
}

.custom-checkbox label {
    color: var(--body-color);
    font-weight: 400;
    margin-bottom: 0;
}

.custom-checkbox a {
    color: var(--primary-color-1);
    text-decoration: none;
}

.custom-checkbox a:hover {
    text-decoration: underline;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color-1);
    color: #ffffff;
    border: 2px solid var(--primary-color-1);
}

.btn-primary:hover {
    background: var(--primary-color-3);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color-1);
    border: 2px solid var(--primary-color-1);
}

.btn-secondary:hover {
    background: var(--primary-color-1);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Download NDA */
.download-nda {
    background: linear-gradient(135deg, var(--primary-color-1) 0%, var(--primary-color-3) 100%);
    padding: 3rem;
    border-radius: 20px;
    color: #ffffff;
}

.download-content h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.download-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.template-features {
    list-style: none;
    padding: 0;
}

.template-features li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.template-features i {
    color: var(--primary-color-2);
}

.btn-download {
    background: #ffffff;
    color: var(--primary-color-1);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    color: var(--primary-color-1);
}

.download-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Custom NDA Contact */
.custom-nda-contact {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(14, 89, 242, 0.1);
}

.custom-nda-contact h3 {
    color: var(--text-heading-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.custom-nda-contact p {
    color: var(--body-color);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.contact-info {
    margin-top: 2rem;
}

.contact-info p {
    color: var(--body-color);
    margin-bottom: 0.5rem;
}

/* NDA Responsive Design */
@media (max-width: 768px) {
    .nda-header h2 {
        font-size: 2rem;
    }

    .nda-importance {
        padding: 2rem;
    }

    .importance-content h3 {
        font-size: 1.5rem;
    }

    .nda-form-wrapper {
        padding: 2rem;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary,
    .btn-download {
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .protection-card {
        padding: 1.5rem;
    }

    .protection-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* ================================
   HOME PAGE STYLES
   ================================ */

/* Premium Banner Section Styles */
.premium-banner-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 120px 0;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 89, 242, 0.15) 0%, rgba(245, 204, 21, 0.1) 50%, rgba(14, 89, 242, 0.05) 100%);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-shapes .shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(14, 89, 242, 0.1), rgba(245, 204, 21, 0.1));
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.shape.shape-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 5%;
    animation-delay: 2s;
}

.shape.shape-3 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 20%;
    animation-delay: 4s;
}

.shape.shape-4 {
    width: 180px;
    height: 180px;
    bottom: 10%;
    left: 15%;
    animation-delay: 1s;
}

.shape.shape-5 {
    width: 100px;
    height: 100px;
    top: 70%;
    left: 40%;
    animation-delay: 3s;
}

.banner-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.banner-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #F8E559;
    border-radius: 50%;
    animation: sparkle 3s linear infinite;
}

.particle.particle-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.particle.particle-2 {
    top: 30%;
    left: 80%;
    animation-delay: 1s;
}

.particle.particle-3 {
    top: 50%;
    left: 20%;
    animation-delay: 2s;
}

.particle.particle-4 {
    top: 70%;
    left: 70%;
    animation-delay: 0.5s;
}

/* Premium Banner Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) rotate(5deg);
    }

    50% {
        transform: translateY(-40px) rotate(10deg);
    }

    75% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* ================================
   VPN DEVELOPMENT PAGE STYLES
   ================================ */

/* VPN Development Hero Section */
.vpn-dev-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0e59f2 0%, #1e3a8a 30%, #1a2341 70%, #0f172a 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Cybersecurity Image Styling */
.cybersecurity-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    margin-bottom: 60px;
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.cybersecurity-image-container:hover {
    transform: translateY(-10px) scale(1.02);
}

.cybersecurity-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    transition: all 0.5s ease;
    filter: brightness(0.9) contrast(1.1);
}

/* Overlay Elements */
.cyber-overlay-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.cyber-shield {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(14, 89, 242, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(14, 89, 242, 0.8);
    animation: pulse 2s infinite;
    z-index: 10;
    opacity: 0.9;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(14, 89, 242, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(14, 89, 242, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(14, 89, 242, 0);
    }
}

.cyber-shield i {
    color: #ffffff;
    font-size: 36px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.7));
}

/* Circuit Lines */
.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(14, 89, 242, 0.7), transparent);
    height: 2px;
}

.circuit-line-1 {
    top: 30%;
    left: 0;
    width: 100%;
    animation: circuit-glow 3s infinite alternate;
}

.circuit-line-2 {
    top: 60%;
    right: 0;
    width: 70%;
    animation: circuit-glow 2.5s 0.5s infinite alternate;
}

.circuit-line-3 {
    top: 85%;
    left: 0;
    width: 85%;
    animation: circuit-glow 3.5s 1s infinite alternate;
}

@keyframes circuit-glow {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 0.9;
    }
}

/* Connection Points */
.connection-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #0e59f2;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(14, 89, 242, 1);
}

.cp-1 {
    top: 30%;
    left: 20%;
    animation: blink 2s infinite;
}

.cp-2 {
    top: 30%;
    right: 25%;
    animation: blink 2s 0.7s infinite;
}

.cp-3 {
    top: 60%;
    right: 30%;
    animation: blink 2s 1.2s infinite;
}

.cp-4 {
    top: 85%;
    left: 15%;
    animation: blink 2s 0.3s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

/* Floating Feature Cards */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(14, 89, 242, 0.1);
    animation: float 6s ease-in-out infinite;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 50px rgba(14, 89, 242, 0.3);
}

.card-security {
    top: 10%;
    left: -8%;
    animation-delay: 0s;
}

.card-speed {
    top: 35%;
    right: -8%;
    animation-delay: 1.5s;
}

.card-global {
    bottom: 25%;
    left: -8%;
    animation-delay: 3s;
}

.card-privacy {
    bottom: 5%;
    right: -8%;
    animation-delay: 4.5s;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0e59f2 0%, #2d7cff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(14, 89, 242, 0.3);
}

.card-icon i {
    color: white;
    font-size: 22px;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.card-subtitle {
    font-size: 13px;
    font-weight: 500;
    color: #666;
}

@keyframes float {

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

    50% {
        transform: translateY(-20px);
    }
}

/* Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 89, 242, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.bg-circle-1 {
    width: 400px;
    height: 400px;
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.bg-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -5%;
    left: -5%;
    animation-delay: 2s;
}

.bg-circle-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

/* VPN Hero Animated Shapes */
.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    animation: floatShape 12s ease-in-out infinite;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -5%;
    left: -10%;
    animation-delay: 0s;
    background: rgba(59, 130, 246, 0.04);
}

.shape-2 {
    width: 300px;
    height: 300px;
    top: 20%;
    right: -15%;
    animation-delay: 3s;
    background: rgba(250, 204, 21, 0.03);
}

.shape-3 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 15%;
    animation-delay: 6s;
    background: rgba(45, 124, 255, 0.04);
}

.shape-4 {
    width: 180px;
    height: 180px;
    top: 60%;
    right: 25%;
    animation-delay: 9s;
    background: rgba(16, 185, 129, 0.03);
}

.shape-5 {
    width: 150px;
    height: 150px;
    bottom: 30%;
    right: 5%;
    animation-delay: 2s;
    background: rgba(139, 92, 246, 0.03);
}

@keyframes floatShape {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-30px) rotate(90deg);
    }

    50% {
        transform: translateY(-60px) rotate(180deg);
    }

    75% {
        transform: translateY(-30px) rotate(270deg);
    }
}

/* VPN Hero Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(250, 204, 21, 0.8);
    border-radius: 50%;
    animation: particleFloat 15s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(250, 204, 21, 0.5);
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    top: 60%;
    left: 80%;
    animation-delay: 3s;
}

.particle-3 {
    bottom: 30%;
    left: 30%;
    animation-delay: 6s;
}

.particle-4 {
    top: 30%;
    right: 20%;
    animation-delay: 9s;
}

.particle-5 {
    bottom: 50%;
    right: 40%;
    animation-delay: 12s;
}

.particle-6 {
    top: 80%;
    left: 60%;
    animation-delay: 15s;
}

@keyframes particleFloat {

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

    10%,
    90% {
        opacity: 1;
    }

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

/* VPN Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 60px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    animation: slideInDown 1s ease-out;
    position: relative;
    overflow: hidden;
}

.badge-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #facc15 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a2341;
    font-size: 14px;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.hero-title {
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
    animation: slideInLeft 1s ease-out 0.3s both;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.text-highlight {
    background: linear-gradient(135deg, #facc15 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 5px rgba(250, 204, 21, 0.5));
    }

    to {
        filter: drop-shadow(0 0 20px rgba(250, 204, 21, 0.8));
    }
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    animation: slideInLeft 1s ease-out 0.5s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* VPN Feature Grid */
.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
    animation: slideInLeft 1s ease-out 0.7s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(8px);
    color: white;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(45, 124, 255, 0.2) 0%, rgba(14, 89, 242, 0.3) 100%);
    border: 1px solid rgba(45, 124, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #2d7cff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, #2d7cff 0%, #0e59f2 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(45, 124, 255, 0.4);
}

/* VPN Modern Buttons */
.hero-actions-1 {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 56px;
    animation: slideInLeft 1s ease-out 0.9s both;
}

.btn-primary-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #2d7cff 0%, #0e59f2 100%);
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 12px 40px rgba(45, 124, 255, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-primary-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-primary-modern:hover::before {
    left: 100%;
}

.btn-primary-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(45, 124, 255, 0.6);
    color: white;
    text-decoration: none;
}

.btn-secondary-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 60px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.1);
}

/* VPN Hero Metrics */
.hero-metrics {
    display: flex;
    gap: 48px;
    animation: slideInLeft 1s ease-out 1.1s both;
}

.metric {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

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

.metric-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.2) 0%, rgba(245, 158, 11, 0.3) 100%);
    border: 1px solid rgba(250, 204, 21, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #facc15;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.metric:hover .metric-icon {
    background: linear-gradient(135deg, #facc15 0%, #f59e0b 100%);
    color: #1a2341;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(250, 204, 21, 0.4);
}

.metric-content {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    animation: countUp 2s ease-out 2s both;
}

.metric-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
    font-weight: 500;
}

/* VPN Hero Visual */
.hero-visual {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.phone-mockup {
    position: relative;
    transform: perspective(1200px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.6s ease;
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {

    0%,
    100% {
        transform: perspective(1200px) rotateY(-15deg) rotateX(5deg) translateY(0px);
    }

    50% {
        transform: perspective(1200px) rotateY(-15deg) rotateX(5deg) translateY(-20px);
    }
}

/* VPN Animation Keyframes */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* ================================
   WHITE LABEL PAGE STYLES
   ================================ */

/* White Label VPN Development Hero Section - Alternative styling */
.vpn-dev-hero.white-label {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

/* White Label Specific Animations */
@keyframes sparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* White Label Responsive Design */
@media (max-width: 768px) {
    .hero-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-metrics {
        flex-direction: column;
        gap: 20px;
    }

    .hero-actions-1 {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-modern,
    .btn-secondary-modern {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .metric-number {
        font-size: 1.8rem;
    }
}

/* Font Awesome icon fix: ensure font-family is not overridden by global font */
.fa,
.fas,
.far,
.fal,
.fab {
    font-family: 'Font Awesome 5 Pro', 'Font Awesome 5 Brands', 'Font Awesome 5 Duotone', sans-serif !important;
    font-style: normal;
    font-weight: 900;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/* Flat Icon font fix */
[class^="flaticon-"],
[class*=" flaticon-"] {
    font-family: 'flaticon_bantec' !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Optional: Prevent icon font from inheriting Space Grotesk */
.fa,
.fas,
.far,
.fal,
.fab,
[class^="flaticon-"],
[class*=" flaticon-"] {
    font-family: inherit;
}

/* ================================
   VPN DEVELOPMENT - ADDITIONAL SECTIONS
   ================================ */

/* Services Overview Section */
.services-overview {
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 30px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(14, 89, 242, 0.1) 0%, rgba(45, 124, 255, 0.1) 100%);
    color: #0e59f2;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(14, 89, 242, 0.2);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 89, 242, 0.05) 0%, rgba(45, 124, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(14, 89, 242, 0.3);
    box-shadow: 0 20px 60px rgba(14, 89, 242, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0e59f2 0%, #2d7cff 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 24px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(14, 89, 242, 0.4);
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    font-size: 15px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.service-features li:hover {
    color: #0e59f2;
    transform: translateX(5px);
}

.service-features li i {
    color: #10b981;
    font-size: 16px;
}

.service-card.featured {
    background: linear-gradient(135deg, #0e59f2 0%, #1e3a8a 100%);
    border-color: #2d7cff;
}

.service-card.featured * {
    color: white !important;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-card.featured:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(14, 89, 242, 0.3);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #facc15 0%, #f59e0b 100%);
    color: #1a202c;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.service-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0e59f2 0%, #2d7cff 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

/* Technology Stack Section */
.tech-stack-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.tech-stack-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(14, 89, 242, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(45, 124, 255, 0.1) 0%, transparent 50%);
}

.tech-content {
    position: relative;
    z-index: 2;
}

.tech-content .section-badge {
    background: rgba(14, 89, 242, 0.2);
    color: #2d7cff;
    border-color: rgba(45, 124, 255, 0.3);
}

.tech-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 16px 0 24px;
    line-height: 1.2;
}

.tech-content>p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.7;
}

.tech-categories {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.tech-category h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tech-category h4 i {
    color: #0e59f2;
    font-size: 20px;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-tag {
    background: rgba(14, 89, 242, 0.1);
    color: #2d7cff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(45, 124, 255, 0.3);
    transition: all 0.3s ease;
    cursor: default;
}

.tech-tag:hover {
    background: linear-gradient(135deg, #0e59f2 0%, #2d7cff 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(14, 89, 242, 0.4);
}

/* Tech Visual Circle */
.tech-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.tech-circle {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-logo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #0e59f2 0%, #2d7cff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    box-shadow: 0 20px 60px rgba(14, 89, 242, 0.4);
    z-index: 10;
    position: relative;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px dashed rgba(45, 124, 255, 0.3);
}

.orbit-1 {
    width: 300px;
    height: 300px;
    animation: rotate 20s linear infinite;
}

.orbit-2 {
    width: 400px;
    height: 400px;
    animation: rotate 30s linear infinite reverse;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.tech-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(14, 89, 242, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(45, 124, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(var(--rotation)) translateY(-150px) rotate(calc(-1 * var(--rotation)));
    transition: all 0.3s ease;
}

.orbit-2 .tech-icon {
    transform: translate(-50%, -50%) rotate(var(--rotation)) translateY(-200px) rotate(calc(-1 * var(--rotation)));
}

.tech-icon:hover {
    background: white;
    transform: translate(-50%, -50%) rotate(var(--rotation)) translateY(-150px) rotate(calc(-1 * var(--rotation))) scale(1.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.orbit-2 .tech-icon:hover {
    transform: translate(-50%, -50%) rotate(var(--rotation)) translateY(-200px) rotate(calc(-1 * var(--rotation))) scale(1.2);
}

/* Development Process Section - Modern Design */
.dev-process-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.dev-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(14, 89, 242, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(14, 89, 242, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.process-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-line {
    display: none;
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

/* Alternating layout */
.process-step:nth-child(odd) {
    grid-template-areas: "number content";
}

.process-step:nth-child(even) {
    grid-template-areas: "content number";
}

.step-number {
    grid-area: number;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #0e59f2 0%, #2d7cff 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 10px 40px rgba(14, 89, 242, 0.3);
    position: relative;
    margin: 0 auto;
    transition: all 0.4s ease;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 30px;
    background: linear-gradient(135deg, #0e59f2, #2d7cff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
}

.process-step:hover .step-number::before {
    opacity: 0.3;
}

.step-content {
    grid-area: content;
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.step-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #0e59f2, #2d7cff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(14, 89, 242, 0.15);
}

.step-content:hover::before {
    opacity: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 28px;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
    transition: all 0.4s ease;
    position: relative;
}

.step-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 24px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    filter: blur(10px);
}

.step-content:hover .step-icon {
    transform: scale(1.1) rotate(-5deg);
}

.step-content:hover .step-icon::after {
    opacity: 0.5;
}

.step-content h4 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 16px;
    line-height: 1.3;
}

.step-content p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* Add decorative elements */
.process-step::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(14, 89, 242, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.process-step:nth-child(odd)::after {
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.process-step:nth-child(even)::after {
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(20px);
    }
}

/* CTA Section */
.dev-cta-section {
    background: linear-gradient(135deg, #0e59f2 0%, #1e3a8a 50%, #0f172a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: particleFloat 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 40%;
    left: 30%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    top: 60%;
    left: 70%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 50%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    top: 30%;
    left: 90%;
    animation-delay: 8s;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    50% {
        transform: translateY(-100px) translateX(50px);
        opacity: 1;
    }

    75% {
        opacity: 1;
    }

    100% {
        transform: translateY(-200px) translateX(100px);
        opacity: 0;
    }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-content>p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-outline-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 60px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
}

.btn-outline-modern:hover {
    background: white;
    color: #0e59f2;
    border-color: white;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 15px;
    font-weight: 600;
}

.cta-feature i {
    font-size: 20px;
    color: #facc15;
}

/* Responsive Design for VPN Development Page */
@media (max-width: 1200px) {
    .tech-circle {
        width: 400px;
        height: 400px;
    }

    .orbit-1 {
        width: 250px;
        height: 250px;
    }

    .orbit-2 {
        width: 350px;
        height: 350px;
    }

    .floating-card {
        padding: 15px;
        gap: 12px;
    }

    .card-icon {
        width: 45px;
        height: 45px;
    }

    .card-icon i {
        font-size: 20px;
    }

    .card-title {
        font-size: 15px;
    }

    .card-subtitle {
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .floating-card {
        position: static;
        margin-bottom: 15px;
        animation: none;
    }

    .floating-elements {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 30px;
    }

    .card-security,
    .card-speed,
    .card-global,
    .card-privacy {
        position: static;
        flex: 1 1 calc(50% - 10px);
        min-width: 200px;
    }

    .process-step {
        grid-template-columns: 1fr;
        grid-template-areas:
            "number"
            "content" !important;
        gap: 30px;
        margin-bottom: 60px;
    }

    .step-number {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .step-content {
        padding: 40px;
    }

    .process-step::after {
        display: none;
    }

    .tech-visual {
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .service-card {
        padding: 25px 20px;
    }

    .step-number {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .step-content {
        padding: 30px 25px;
    }

    .step-content h3 {
        font-size: 1.5rem;
    }

    .tech-circle {
        width: 300px;
        height: 300px;
    }

    .orbit-1 {
        width: 200px;
        height: 200px;
    }

    .orbit-2 {
        width: 280px;
        height: 280px;
    }

    .tech-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .cta-features {
        gap: 24px;
    }

    .cybersecurity-image-container {
        margin-bottom: 40px;
    }

    .floating-card {
        padding: 12px;
    }

    .card-icon {
        width: 40px;
        height: 40px;
    }

    .card-icon i {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .hero-features-grid {
        grid-template-columns: 1fr;
    }

    .floating-elements {
        flex-direction: column;
    }

    .floating-card {
        flex: 1 1 100%;
    }

    .hero-metrics {
        flex-direction: column;
        gap: 24px;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .step-content {
        padding: 25px 20px;
    }

    .step-content h3 {
        font-size: 1.3rem;
    }

    .step-content p {
        font-size: 14px;
    }

    .tech-categories {
        gap: 24px;
    }

    .tech-items {
        gap: 8px;
    }

    .tech-tag {
        padding: 8px 16px;
        font-size: 13px;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-content>p {
        font-size: 1rem;
    }

    .btn-primary-modern,
    .btn-outline-modern {
        width: 100%;
        justify-content: center;
    }
}

/* ================================
   MODERN PORTFOLIO SECTION - 2025 DESIGN
   ================================ */

.modern-portfolio-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

/* Animated Background Shapes */
.portfolio-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.portfolio-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    animation: portfolioFloat 20s infinite ease-in-out;
}

.portfolio-shape.shape-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
    background: linear-gradient(135deg, #0E59F2, #2d7cff);
    animation-delay: 0s;
}

.portfolio-shape.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    animation-delay: 7s;
}

.portfolio-shape.shape-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #0E59F2, #fbbf24);
    animation-delay: 14s;
}

@keyframes portfolioFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    33% {
        transform: translateY(-40px) rotate(120deg) scale(1.1);
    }

    66% {
        transform: translateY(20px) rotate(240deg) scale(0.9);
    }
}

.modern-portfolio-section .container {
    position: relative;
    z-index: 2;
}

/* Portfolio Header */
.portfolio-header {
    margin-bottom: 50px;
}

.portfolio-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 2px solid #0E59F2;
    border-radius: 50px;
    padding: 10px 25px;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    color: #0E59F2;
}

.portfolio-badge i {
    font-size: 16px;
}

.portfolio-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.portfolio-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

/* Modern Portfolio Card */
.modern-portfolio-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-portfolio-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(14, 89, 242, 0.15);
}

/* Portfolio Image */
.portfolio-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: #f8f9fa;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modern-portfolio-card:hover .portfolio-image {
    transform: scale(1.15) rotate(2deg);
}

/* Portfolio Overlay */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 89, 242, 0.95) 0%, rgba(45, 124, 255, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}

.modern-portfolio-card:hover .overlay-content {
    transform: translateY(0);
}

/* Category Badge */
.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 10px 20px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.category-badge i {
    font-size: 12px;
}

/* View Project Button */
.view-project-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #0E59F2;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.view-project-btn:hover {
    transform: scale(1.1);
    background: #fbbf24;
    color: #1a1a1a;
    gap: 18px;
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
}

.view-project-btn i {
    transition: transform 0.4s ease;
}

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

/* Portfolio Content */
.portfolio-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.modern-portfolio-card:hover .portfolio-title {
    color: #0E59F2;
}

/* Portfolio Meta */
.portfolio-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 600;
}

.meta-item i {
    color: #0E59F2;
    font-size: 14px;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0E59F2;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    gap: 12px;
    color: #fbbf24;
}

.portfolio-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.portfolio-link:hover i {
    transform: translateX(3px);
}

/* No Portfolio Message */
.no-portfolio-message {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.no-portfolio-message i {
    font-size: 5rem;
    color: #0E59F2;
    opacity: 0.3;
    margin-bottom: 25px;
}

.no-portfolio-message h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.no-portfolio-message p {
    font-size: 1.1rem;
    color: #666;
}

/* Modern Pagination */
.modern-pagination {
    text-align: center;
    margin-top: 20px;
}

.modern-pagination .pagination {
    display: inline-flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.modern-pagination .page-item {
    list-style: none;
}

.modern-pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: white;
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #e9ecef;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modern-pagination .page-link:hover {
    background: #0E59F2;
    color: white;
    border-color: #0E59F2;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(14, 89, 242, 0.3);
}

.modern-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #0E59F2 0%, #2d7cff 100%);
    color: white;
    border-color: #0E59F2;
    box-shadow: 0 8px 20px rgba(14, 89, 242, 0.3);
}

.modern-pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 991px) {
    .portfolio-main-title {
        font-size: 2.5rem;
    }

    .portfolio-description {
        font-size: 1rem;
    }

    .modern-portfolio-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .portfolio-main-title {
        font-size: 2rem;
    }

    .portfolio-description br {
        display: none;
    }

    .portfolio-content {
        padding: 25px;
    }

    .portfolio-title {
        font-size: 1.3rem;
    }

    .view-project-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .category-badge {
        padding: 8px 16px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .portfolio-main-title {
        font-size: 1.8rem;
    }

    .portfolio-badge {
        padding: 8px 20px;
        font-size: 12px;
    }

    .modern-portfolio-card {
        margin-bottom: 20px;
    }

    .portfolio-content {
        padding: 20px;
    }

    .portfolio-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .portfolio-meta {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .view-project-btn {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }

    .modern-pagination .page-link {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }

    .no-portfolio-message {
        padding: 50px 20px;
    }

    .no-portfolio-message i {
        font-size: 4rem;
    }

    .no-portfolio-message h3 {
        font-size: 1.5rem;
    }

    .no-portfolio-message p {
        font-size: 1rem;
    }
}

/* ================================
   PREMIUM PORTFOLIO DETAIL PAGE - 2025 DESIGN
   ================================ */

.premium-portfolio-detail {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

/* Background Shapes */
.detail-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.detail-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
    animation: detailFloat 25s infinite ease-in-out;
}

.detail-shape.shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    background: linear-gradient(135deg, #0E59F2, #2d7cff);
}

.detail-shape.shape-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -150px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    animation-delay: 8s;
}

.detail-shape.shape-3 {
    width: 400px;
    height: 400px;
    top: 50%;
    right: 10%;
    background: linear-gradient(135deg, #0E59F2, #fbbf24);
    animation-delay: 16s;
}

@keyframes detailFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    33% {
        transform: translateY(-60px) rotate(120deg) scale(1.15);
    }

    66% {
        transform: translateY(30px) rotate(240deg) scale(0.85);
    }
}

.premium-portfolio-detail .container {
    position: relative;
    z-index: 2;
}

/* Project Hero Section */
.project-hero {
    text-align: center;
    padding: 40px 0;
}

.project-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0E59F2 0%, #2d7cff 100%);
    color: white;
    border-radius: 50px;
    padding: 12px 30px;
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(14, 89, 242, 0.3);
    animation: badgePulse 3s infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(14, 89, 242, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(14, 89, 242, 0.4);
    }
}

.project-hero-badge i {
    font-size: 16px;
}

.project-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
    background: linear-gradient(135deg, #1a1a1a 0%, #0E59F2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 15px;
    font-weight: 600;
}

.hero-meta-item i {
    color: #0E59F2;
    font-size: 16px;
}

.hero-meta-divider {
    width: 2px;
    height: 20px;
    background: #ddd;
}

.project-rating-stars {
    display: flex;
    gap: 4px;
}

.project-rating-stars i {
    color: #fbbf24;
    font-size: 14px;
}

.rating-text {
    color: #1a1a1a;
    font-weight: 700;
}

/* Featured Image */
.project-featured-image {
    position: relative;
    margin-bottom: 60px;
}

.featured-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    aspect-ratio: 16/9;
    background: #f8f9fa;
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.featured-image-wrapper:hover .featured-img {
    transform: scale(1.08);
}

.image-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    pointer-events: none;
}

/* Main Content */
.project-main-content {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.content-section {
    margin-bottom: 40px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #0E59F2;
    padding: 15px 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 16px;
    color: #1a1a1a;
}

.section-label i {
    color: #0E59F2;
    font-size: 18px;
}

.content-body {
    color: #555;
    font-size: 16px;
    line-height: 1.9;
}

.premium-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 35px 0 20px 0;
    line-height: 1.3;
}

.premium-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 30px 0 15px 0;
}

.premium-content p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.9;
}

.premium-content ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.premium-content ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.premium-content ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #0E59F2;
    font-size: 14px;
    width: 24px;
    height: 24px;
    background: rgba(14, 89, 242, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Project Gallery */
.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

/* Sidebar */
.project-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sidebar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(14, 89, 242, 0.15);
}

.sidebar-card .card-header {
    background: linear-gradient(135deg, #0E59F2 0%, #2d7cff 100%);
    color: white;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-card .card-header i {
    font-size: 20px;
}

.sidebar-card .card-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.sidebar-card .card-body {
    padding: 30px;
}

/* Project Info Card */
.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.info-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-weight: 600;
    font-size: 14px;
}

.info-label i {
    color: #0E59F2;
    font-size: 16px;
}

.info-value {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 15px;
}

.info-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 0;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-display i {
    color: #fbbf24;
    font-size: 14px;
}

.rating-number {
    margin-left: 8px;
    color: #1a1a1a;
    font-weight: 700;
}

/* Share Card */
.share-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 15px;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.share-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.facebook-btn {
    background: linear-gradient(135deg, #1877f2 0%, #0d5dcd 100%);
}

.twitter-btn {
    background: linear-gradient(135deg, #1da1f2 0%, #0c85d0 100%);
}

.linkedin-btn {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, #0E59F2 0%, #2d7cff 100%);
    box-shadow: 0 15px 45px rgba(14, 89, 242, 0.3);
}

.cta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(14, 89, 242, 0.4);
}

.cta-content {
    padding: 40px 30px;
    text-align: center;
    color: white;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: ctaIconFloat 3s infinite ease-in-out;
}

@keyframes ctaIconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.cta-icon i {
    font-size: 2rem;
    color: white;
}

.cta-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: black;
}

.cta-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #0E59F2;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: scale(1.1);
    background: #fbbf24;
    color: #1a1a1a;
    gap: 18px;
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
}

.cta-button i {
    transition: transform 0.4s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Back to Portfolio Button */
.back-to-portfolio-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #0E59F2;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(14, 89, 242, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.back-to-portfolio-btn:hover {
    transform: translateY(-5px);
    background: #0E59F2;
    color: white;
    gap: 18px;
    box-shadow: 0 15px 50px rgba(14, 89, 242, 0.3);
}

.back-to-portfolio-btn i {
    transition: transform 0.4s ease;
}

.back-to-portfolio-btn:hover i {
    transform: translateX(-5px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .project-hero-title {
        font-size: 2.8rem;
    }

    .project-main-content {
        padding: 40px 30px;
    }

    .project-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .project-hero {
        padding: 30px 0;
    }

    .project-hero-title {
        font-size: 2.2rem;
    }

    .project-hero-meta {
        flex-direction: column;
        gap: 15px;
    }

    .hero-meta-divider {
        display: none;
    }

    .featured-image-wrapper {
        border-radius: 20px;
    }

    .project-main-content {
        padding: 30px 25px;
        border-radius: 20px;
    }

    .section-label {
        padding: 12px 20px;
        font-size: 15px;
    }

    .premium-content h2 {
        font-size: 1.7rem;
    }

    .premium-content h3 {
        font-size: 1.3rem;
    }

    .share-buttons {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .project-hero-badge {
        padding: 10px 25px;
        font-size: 13px;
    }

    .project-hero-title {
        font-size: 1.9rem;
    }

    .hero-meta-item {
        font-size: 14px;
    }

    .featured-image-wrapper {
        border-radius: 15px;
        aspect-ratio: 4/3;
    }

    .project-main-content {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .section-label {
        padding: 10px 18px;
        font-size: 14px;
        gap: 10px;
    }

    .section-label i {
        font-size: 16px;
    }

    .content-body {
        font-size: 15px;
    }

    .premium-content h2 {
        font-size: 1.5rem;
        margin: 25px 0 15px 0;
    }

    .premium-content h3 {
        font-size: 1.2rem;
        margin: 20px 0 12px 0;
    }

    .premium-content ul li {
        padding-left: 30px;
    }

    .sidebar-card .card-header {
        padding: 20px 25px;
    }

    .sidebar-card .card-header h3 {
        font-size: 1.1rem;
    }

    .sidebar-card .card-body {
        padding: 25px;
    }

    .share-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cta-content {
        padding: 35px 25px;
    }

    .cta-icon {
        width: 70px;
        height: 70px;
    }

    .cta-icon i {
        font-size: 1.7rem;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 14px;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 15px;
    }

    .back-to-portfolio-btn {
        padding: 16px 35px;
        font-size: 15px;
    }
}

/* ================================
   ULTRA MODERN PORTFOLIO CARDS - 2025 UNIQUE DESIGN
   ================================ */

.ultra-modern-portfolio-card {
    position: relative;
    background: white;
    border-radius: 30px;
    overflow: visible;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ultra-modern-portfolio-card:hover {
    transform: translateY(-20px) scale(1.02);
}

/* Card Number Badge */
.card-number-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    z-index: 10;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0E59F2 0%, #2d7cff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(14, 89, 242, 0.4);
    animation: badgePulseGlow 3s infinite;
}

@keyframes badgePulseGlow {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(14, 89, 242, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 15px 40px rgba(14, 89, 242, 0.6);
        transform: scale(1.1);
    }
}

.card-number-badge .number {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    font-family: 'Outfit', sans-serif;
}

/* Image Container with Tilt */
.portfolio-image-container {
    position: relative;
    padding: 30px 30px 0 30px;
}

.image-tilt-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.ultra-modern-portfolio-card:hover .image-tilt-wrapper {
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 0 25px 70px rgba(14, 89, 242, 0.25);
}

.portfolio-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.ultra-modern-portfolio-card:hover .portfolio-main-image {
    transform: scale(1.12);
    filter: brightness(0.95);
}

/* Animated Corner Accents */
.corner-accent {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.corner-accent::before,
.corner-accent::after {
    content: '';
    position: absolute;
    background: #fbbf24;
}

.corner-top-left {
    top: -5px;
    left: -5px;
}

.corner-top-right {
    top: -5px;
    right: -5px;
}

.corner-bottom-left {
    bottom: -5px;
    left: -5px;
}

.corner-bottom-right {
    bottom: -5px;
    right: -5px;
}

.corner-top-left::before {
    width: 30px;
    height: 3px;
    top: 0;
    left: 0;
}

.corner-top-left::after {
    width: 3px;
    height: 30px;
    top: 0;
    left: 0;
}

.corner-top-right::before {
    width: 30px;
    height: 3px;
    top: 0;
    right: 0;
}

.corner-top-right::after {
    width: 3px;
    height: 30px;
    top: 0;
    right: 0;
}

.corner-bottom-left::before {
    width: 30px;
    height: 3px;
    bottom: 0;
    left: 0;
}

.corner-bottom-left::after {
    width: 3px;
    height: 30px;
    bottom: 0;
    left: 0;
}

.corner-bottom-right::before {
    width: 30px;
    height: 3px;
    bottom: 0;
    right: 0;
}

.corner-bottom-right::after {
    width: 3px;
    height: 30px;
    bottom: 0;
    right: 0;
}

.ultra-modern-portfolio-card:hover .corner-accent {
    opacity: 1;
}

.ultra-modern-portfolio-card:hover .corner-top-left {
    transform: translate(-5px, -5px);
}

.ultra-modern-portfolio-card:hover .corner-top-right {
    transform: translate(5px, -5px);
}

.ultra-modern-portfolio-card:hover .corner-bottom-left {
    transform: translate(-5px, 5px);
}

.ultra-modern-portfolio-card:hover .corner-bottom-right {
    transform: translate(5px, 5px);
}

/* Modern Overlay with Blur */
.modern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(14, 89, 242, 0.92) 0%,
            rgba(45, 124, 255, 0.88) 100%);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.ultra-modern-portfolio-card:hover .modern-overlay {
    opacity: 1;
}

.overlay-inner {
    text-align: center;
    transform: translateY(30px) scale(0.9);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
}

.ultra-modern-portfolio-card:hover .overlay-inner {
    transform: translateY(0) scale(1);
}

/* Category Pill */
.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    padding: 12px 28px;
    color: white;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    animation: pillFloat 3s infinite ease-in-out;
}

@keyframes pillFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.category-pill i {
    font-size: 16px;
}

/* Explore Button */
.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    color: #0E59F2;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.explore-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #fbbf24;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.explore-btn:hover::before {
    width: 300px;
    height: 300px;
}

.explore-btn .btn-text,
.explore-btn .btn-icon {
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.explore-btn:hover {
    transform: scale(1.12);
    color: #1a1a1a;
    box-shadow: 0 15px 45px rgba(251, 191, 36, 0.4);
}

.explore-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(14, 89, 242, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.explore-btn:hover .btn-icon {
    background: rgba(26, 26, 26, 0.15);
    transform: translateX(5px) rotate(360deg);
}

/* Portfolio Info Section */
.portfolio-info-section {
    padding: 35px 30px 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.info-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.project-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #1a1a1a 0%, #0E59F2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    background-position: 0% 50%;
}

.ultra-modern-portfolio-card:hover .project-title a {
    background-position: 100% 50%;
}

/* Project Details Row */
.project-details-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 18px 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 600;
}

.detail-item i {
    color: #0E59F2;
    font-size: 15px;
}

.detail-divider {
    width: 2px;
    height: 18px;
    background: linear-gradient(to bottom, transparent, #ddd, transparent);
}

/* View Details Link */
.view-details-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0E59F2;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    margin-top: auto;
    padding: 12px 0;
    transition: all 0.3s ease;
}

.view-details-link:hover {
    gap: 15px;
    color: #fbbf24;
}

.view-details-link i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.view-details-link:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .ultra-modern-portfolio-card {
        margin-bottom: 40px;
    }

    .project-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .card-number-badge {
        width: 50px;
        height: 50px;
        top: -10px;
        left: 25px;
    }

    .card-number-badge .number {
        font-size: 1.3rem;
    }

    .portfolio-image-container {
        padding: 25px 25px 0 25px;
    }

    .image-tilt-wrapper {
        border-radius: 20px;
    }

    .portfolio-info-section {
        padding: 30px 25px 25px 25px;
    }

    .project-title {
        font-size: 1.3rem;
    }

    .explore-btn {
        padding: 14px 30px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .card-number-badge {
        width: 45px;
        height: 45px;
        top: -8px;
        left: 20px;
    }

    .card-number-badge .number {
        font-size: 1.2rem;
    }

    .portfolio-image-container {
        padding: 20px 20px 0 20px;
    }

    .image-tilt-wrapper {
        border-radius: 15px;
        aspect-ratio: 4/3;
    }

    .portfolio-info-section {
        padding: 25px 20px 20px 20px;
    }

    .project-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .project-details-row {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        padding: 15px 0;
    }

    .detail-divider {
        display: none;
    }

    .explore-btn {
        padding: 12px 25px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .category-pill {
        padding: 10px 24px;
        font-size: 13px;
    }

    .corner-accent {
        width: 30px;
        height: 30px;
    }

    .corner-accent::before {
        width: 20px !important;
    }

    .corner-accent::after {
        height: 20px !important;
    }
}

/* Simple Why Choose Us Section Styles */
.why-choose-us-simple {
    background-color: #f8f9fa;
}

.simple-section-header {
    margin-bottom: 50px;
}

.simple-section-header .subtitle-one {
    color: #007bff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
}

.simple-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.simple-section-header .section-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.simple-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.simple-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.simple-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.simple-feature-icon {
    width: 60px;
    height: 60px;
    background: #007bff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.simple-feature-content h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.simple-feature-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    height: fit-content;
}

.stat-card {
    transform: none !important;
    background: white;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin: 0 auto 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    color: #666;
    font-size: 16px;
    font-weight: 500;
}

/* Responsive Design for Simple Section */
@media (max-width: 992px) {
    .simple-section-header h2 {
        font-size: 2.2rem;
    }

    .stats-grid {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .simple-section-header h2 {
        font-size: 2rem;
    }

    .simple-feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .simple-feature-icon {
        margin: 0 auto;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .simple-feature-item {
        padding: 20px;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ================================
   GAMING VPN PAGE STYLES
   ================================ */

/* Gaming Visual Container */
.gaming-visual-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gaming-circle-bg {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(14, 89, 242, 0.1) 0%, rgba(245, 204, 21, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse-gaming 3s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(14, 89, 242, 0.3);
}

@keyframes pulse-gaming {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 60px rgba(14, 89, 242, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 80px rgba(14, 89, 242, 0.5);
    }
}

.gaming-icon-center {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #0e59f2 0%, #f5cc15 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
    box-shadow: 0 10px 40px rgba(14, 89, 242, 0.4);
}

/* Gaming Stats Floating Cards */
.gaming-stats-floating {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.gaming-stats-floating .stat-card {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 150px;
    transition: all 0.3s ease;
}

.gaming-stats-floating .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gaming-stats-floating .ping-card {
    top: 10%;
    left: 0;
    animation: float-1 4s ease-in-out infinite;
}

.gaming-stats-floating .speed-card {
    top: 50%;
    right: 0;
    animation: float-2 5s ease-in-out infinite;
}

.gaming-stats-floating .protection-card {
    bottom: 10%;
    left: 10%;
    animation: float-3 6s ease-in-out infinite;
}

@keyframes float-1 {

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

    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-2 {

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

    50% {
        transform: translateY(-15px);
    }
}

@keyframes float-3 {

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

    50% {
        transform: translateY(-25px);
    }
}

.gaming-stats-floating .stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.ping-card .stat-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.speed-card .stat-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.protection-card .stat-icon {
    background: linear-gradient(135deg, #0e59f2 0%, #1e40af 100%);
}

.gaming-stats-floating .stat-content {
    display: flex;
    flex-direction: column;
}

.gaming-stats-floating .stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
}

.gaming-stats-floating .stat-label {
    font-size: 14px;
    color: #6b7280;
    margin-top: 5px;
}

/* Gaming Platforms Visual */
.gaming-platforms-visual {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 500px;
    width: 100%;
}

.platform-item {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.platform-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(14, 89, 242, 0.2);
}

.platform-item i {
    font-size: 48px;
    color: #0e59f2;
    margin-bottom: 15px;
    display: block;
}

.platform-item span {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    display: block;
}

/* Responsive Styles for Gaming VPN */
@media (max-width: 1200px) {
    .gaming-visual-container {
        height: 450px;
    }

    .gaming-circle-bg {
        width: 250px;
        height: 250px;
    }

    .gaming-icon-center {
        width: 120px;
        height: 120px;
        font-size: 50px;
    }
}

@media (max-width: 992px) {
    .gaming-visual-container {
        height: 400px;
        margin-top: 50px;
    }

    .gaming-stats-floating .stat-card {
        padding: 15px;
        min-width: 130px;
    }

    .gaming-stats-floating .stat-value {
        font-size: 20px;
    }

    .gaming-stats-floating .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .gaming-visual-container {
        height: 350px;
    }

    .gaming-circle-bg {
        width: 200px;
        height: 200px;
    }

    .gaming-icon-center {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }

    .gaming-stats-floating .stat-card {
        padding: 12px;
        min-width: 110px;
        gap: 10px;
    }

    .gaming-stats-floating .stat-value {
        font-size: 18px;
    }

    .gaming-stats-floating .stat-label {
        font-size: 12px;
    }

    .platform-item {
        padding: 25px 15px;
    }

    .platform-item i {
        font-size: 36px;
    }

    .platform-item span {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .gaming-visual-container {
        height: 300px;
    }

    .gaming-circle-bg {
        width: 180px;
        height: 180px;
    }

    .gaming-icon-center {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    .gaming-stats-floating .ping-card {
        top: 5%;
        left: -10px;
    }

    .gaming-stats-floating .speed-card {
        top: 45%;
        right: -10px;
    }

    .gaming-stats-floating .protection-card {
        bottom: 5%;
        left: 5%;
    }

    .gaming-stats-floating .stat-card {
        padding: 10px;
        min-width: 100px;
        gap: 8px;
    }

    .gaming-stats-floating .stat-value {
        font-size: 16px;
    }

    .gaming-stats-floating .stat-label {
        font-size: 11px;
    }

    .gaming-stats-floating .stat-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .platform-item {
        padding: 20px 10px;
    }

    .platform-item i {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .platform-item span {
        font-size: 13px;
    }
}

/* Additional Gaming VPN Specific Styles */
.hero-actions-1 {
    margin-top: 30px;
}

.hero-actions-1 .btn-primary-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #0e59f2 0%, #1e40af 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(14, 89, 242, 0.3);
}

.hero-actions-1 .btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(14, 89, 242, 0.4);
    text-decoration: none;
    color: white;
}

.hero-actions-1 .btn-primary-modern i {
    transition: transform 0.3s ease;
}

.hero-actions-1 .btn-primary-modern:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .hero-actions-1 .btn-primary-modern {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .hero-actions-1 .btn-primary-modern {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}

/* ================================
   GAMING VPN CTA SECTION REDESIGN
   ================================ */

.gaming-cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0e59f2 100%);
}

.gaming-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(14, 89, 242, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 204, 21, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(14, 89, 242, 0.2) 0%, transparent 50%);
    animation: mesh-move 15s ease-in-out infinite;
}

@keyframes mesh-move {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -20px) scale(1.1);
    }
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float-particle 8s infinite ease-in-out;
}

.floating-particles .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-particles .particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.floating-particles .particle:nth-child(3) {
    top: 40%;
    left: 30%;
    animation-delay: 4s;
}

.floating-particles .particle:nth-child(4) {
    top: 80%;
    left: 60%;
    animation-delay: 1s;
}

.floating-particles .particle:nth-child(5) {
    top: 30%;
    left: 90%;
    animation-delay: 3s;
}

@keyframes float-particle {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

.gaming-cta-content {
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 30px;
}

.cta-badge i {
    color: #f5cc15;
    font-size: 18px;
}

.gaming-cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gaming-cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.gaming-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.gaming-stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.gaming-stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(14, 89, 242, 0.3);
}

.stat-number-large {
    font-size: 3rem;
    font-weight: 800;
    color: #f5cc15;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label-large {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.gaming-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.gaming-feature-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.gaming-feature-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    border-color: rgba(245, 204, 21, 0.5);
}

.gaming-feature-box i {
    font-size: 32px;
    color: #f5cc15;
    margin-bottom: 12px;
    display: block;
}

.gaming-feature-box span {
    font-size: 14px;
    color: white;
    font-weight: 600;
    display: block;
}

.gaming-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-gaming-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #f5cc15 0%, #f59e0b 100%);
    color: #1f2937;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(245, 204, 21, 0.4);
}

.btn-gaming-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 204, 21, 0.6);
    text-decoration: none;
    color: #1f2937;
}

.btn-gaming-primary i {
    transition: transform 0.3s ease;
}

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

.btn-gaming-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-gaming-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    text-decoration: none;
    color: white;
}

.gaming-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.trust-badge i {
    color: #10b981;
    font-size: 18px;
}

/* Responsive Styles for Gaming CTA */
@media (max-width: 1200px) {
    .gaming-cta-title {
        font-size: 3rem;
    }

    .gaming-stats-row {
        gap: 20px;
    }

    .stat-number-large {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .gaming-cta-section {
        padding: 80px 0;
    }

    .gaming-cta-title {
        font-size: 2.5rem;
    }

    .gaming-cta-description {
        font-size: 1.1rem;
    }

    .gaming-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gaming-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gaming-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-gaming-primary,
    .btn-gaming-secondary {
        width: 100%;
        justify-content: center;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .gaming-cta-section {
        padding: 60px 0;
    }

    .gaming-cta-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .gaming-cta-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .gaming-stat-item {
        padding: 20px 15px;
    }

    .stat-number-large {
        font-size: 2rem;
    }

    .stat-label-large {
        font-size: 13px;
    }

    .gaming-feature-box {
        padding: 20px 10px;
    }

    .gaming-feature-box i {
        font-size: 28px;
    }

    .gaming-feature-box span {
        font-size: 13px;
    }

    .btn-gaming-primary,
    .btn-gaming-secondary {
        padding: 16px 32px;
        font-size: 16px;
    }

    .gaming-trust-badges {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .gaming-cta-title {
        font-size: 1.75rem;
    }

    .gaming-cta-description {
        font-size: 0.95rem;
    }

    .cta-badge {
        padding: 10px 20px;
        font-size: 13px;
    }

    .gaming-stats-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gaming-stat-item {
        padding: 18px 12px;
    }

    .stat-number-large {
        font-size: 1.75rem;
    }

    .stat-label-large {
        font-size: 12px;
    }

    .gaming-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gaming-feature-box {
        padding: 18px 15px;
    }

    .btn-gaming-primary,
    .btn-gaming-secondary {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
    }

    .gaming-trust-badges {
        flex-direction: column;
        gap: 15px;
    }

    .trust-badge {
        font-size: 13px;
    }
}

/* ========================================
   GAMING SHOWCASE SECTION - OPTIMIZED GAMES
   ======================================== */

.gaming-showcase-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1410 50%, #0a0a0a 100%);
    overflow: hidden;
}

.gaming-showcase-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: float 8s ease-in-out infinite;
}

.gradient-orb.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #facc15, transparent);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.gradient-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #f59e0b, transparent);
    bottom: -100px;
    right: -100px;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(250, 204, 21, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(250, 204, 21, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.4;
}

.gaming-section-header {
    position: relative;
    z-index: 1;
}

.gaming-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.15), rgba(245, 158, 11, 0.15));
    border: 1px solid rgba(250, 204, 21, 0.3);
    border-radius: 50px;
    color: #fcd34d;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.gaming-badge i {
    color: #fbbf24;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.gaming-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #fcd34d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gaming-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Games Category Header */
.games-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(250, 204, 21, 0.3);
}

.games-category-header i {
    font-size: 1.75rem;
    color: #facc15;
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.15), rgba(245, 158, 11, 0.15));
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(250, 204, 21, 0.3);
}

.games-category-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* Game Cards */
.game-card {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 25, 20, 0.8), rgba(20, 15, 10, 0.8));
    border: 1px solid rgba(250, 204, 21, 0.2);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    height: 100%;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(250, 204, 21, 0.1), rgba(245, 158, 11, 0.1)); */
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.game-card:hover::before {
    opacity: 1;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(250, 204, 21, 0.6);
    /* box-shadow:
        0 20px 40px rgba(250, 204, 21, 0.3),
        0 0 30px rgba(245, 158, 11, 0.2),
        inset 0 0 20px rgba(250, 204, 21, 0.1); */
}

.game-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #facc15, #f59e0b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    z-index: 1;
}

.game-card:hover .game-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(250, 204, 21, 0.5);
}

.game-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.game-card h4 {
    position: relative;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    z-index: 1;
}

.game-stats {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1;
}

.game-stats .stat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 12px;
    background: rgba(250, 204, 21, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.game-card:hover .game-stats .stat {
    background: rgba(250, 204, 21, 0.2);
    color: #fcd34d;
}

.game-stats .stat i {
    color: #facc15;
}

/* Platforms Showcase */
.platforms-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.platform-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(30, 25, 20, 0.6), rgba(20, 15, 10, 0.6));
    border: 1px solid rgba(250, 204, 21, 0.2);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    min-width: 120px;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(250, 204, 21, 0.15), rgba(245, 158, 11, 0.15)); */
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.platform-card:hover::before {
    opacity: 1;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(250, 204, 21, 0.1);
    /* border-color: rgba(250, 204, 21, 0.5); */
    /* box-shadow: 0 15px 35px rgba(250, 204, 21, 0.3); */
}

.platform-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #facc15, #f59e0b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    z-index: 1;
}

.platform-card:hover .platform-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(250, 204, 21, 0.4);
}

.platform-icon i {
    font-size: 1.75rem;
    color: #ffffff;
}

.platform-card span {
    position: relative;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    z-index: 1;
}

.platform-card:hover span {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .gaming-title {
        font-size: 2.25rem;
    }

    .gaming-subtitle {
        font-size: 1rem;
    }

    .games-category-header h3 {
        font-size: 1.25rem;
    }

    .game-icon {
        width: 70px;
        height: 70px;
    }

    .game-icon i {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .gaming-showcase-section {
        padding: 60px 0;
    }

    .gaming-title {
        font-size: 1.875rem;
    }

    .gaming-subtitle {
        font-size: 0.9375rem;
    }

    .gaming-badge {
        padding: 10px 20px;
        font-size: 12px;
    }

    .games-category-header {
        gap: 10px;
    }

    .games-category-header i {
        font-size: 1.5rem;
        padding: 10px;
    }

    .games-category-header h3 {
        font-size: 1.125rem;
    }

    .game-card {
        padding: 25px 15px;
    }

    .game-icon {
        width: 60px;
        height: 60px;
    }

    .game-icon i {
        font-size: 1.5rem;
    }

    .game-card h4 {
        font-size: 1.125rem;
    }

    .platforms-showcase {
        gap: 15px;
    }

    .platform-card {
        padding: 20px 25px;
        min-width: 100px;
    }

    .platform-icon {
        width: 50px;
        height: 50px;
    }

    .platform-icon i {
        font-size: 1.5rem;
    }

    .platform-card span {
        font-size: 0.8125rem;
    }
}

/* ========================================
   GAMING HERO VISUAL - RIGHT SIDE DESIGN
   ======================================== */

.gaming-hero-visual {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Gaming Dashboard Card */
.gaming-dashboard-card {
    position: relative;
    width: 100%;
    max-width: 450px;
    background: linear-gradient(135deg, rgba(20, 15, 10, 0.95), rgba(30, 25, 20, 0.95));
    border: 2px solid rgba(250, 204, 21, 0.3);
    border-radius: 30px;
    padding: 30px;
    backdrop-filter: blur(20px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(250, 204, 21, 0.2),
        inset 0 0 30px rgba(250, 204, 21, 0.05);
    z-index: 2;
    animation: dashboardFloat 6s ease-in-out infinite;
}

@keyframes dashboardFloat {

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

    50% {
        transform: translateY(-15px);
    }
}

/* Dashboard Header */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(250, 204, 21, 0.2);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 15px #10b981;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.status-text {
    color: #10b981;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.server-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.server-location i {
    color: #facc15;
}

/* Central Speed Meter */
.dashboard-main {
    margin-bottom: 30px;
}

.central-display {
    display: flex;
    justify-content: center;
    align-items: center;
}

.speed-meter {
    position: relative;
}

.speed-circle {
    position: relative;
    width: 200px;
    height: 200px;
}

.speed-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.speed-bg {
    fill: none;
    stroke: rgba(250, 204, 21, 0.1);
    stroke-width: 12;
}

.speed-progress {
    fill: none;
    stroke: url(#speedGradient);
    stroke-width: 12;
    stroke-linecap: round;
    stroke-dasharray: 534;
    stroke-dashoffset: 80;
    animation: speedAnimation 3s ease-in-out infinite;
}

@keyframes speedAnimation {

    0%,
    100% {
        stroke-dashoffset: 80;
    }

    50% {
        stroke-dashoffset: 100;
    }
}

.speed-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.speed-content i {
    font-size: 2rem;
    color: #facc15;
    margin-bottom: 10px;
    display: block;
    animation: boltPulse 2s ease-in-out infinite;
}

@keyframes boltPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.speed-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #facc15, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 5px;
}

.speed-unit {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Dashboard Stats */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.1), rgba(245, 158, 11, 0.05));
    border: 1px solid rgba(250, 204, 21, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-mini:hover {
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.15), rgba(245, 158, 11, 0.1));
    border-color: rgba(250, 204, 21, 0.4);
    transform: translateY(-3px);
}

.stat-mini-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.ping-icon {
    background: linear-gradient(135deg, #facc15, #f59e0b);
    color: #ffffff;
}

.uptime-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
}

.server-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
}

.stat-mini-info {
    display: flex;
    flex-direction: column;
}

.stat-mini-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.stat-mini-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Floating Feature Cards */
.floating-feature-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(20, 15, 10, 0.95), rgba(30, 25, 20, 0.95));
    border: 1px solid rgba(250, 204, 21, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 3;
    animation: cardFloat 4s ease-in-out infinite;
}

.feature-card-1 {
    top: 50px;
    left: -50px;
    animation-delay: 0s;
}

.feature-card-2 {
    top: 250px;
    right: -50px;
    animation-delay: 1s;
}

.feature-card-3 {
    bottom: 50px;
    left: -30px;
    animation-delay: 2s;
}

@keyframes cardFloat {

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

    50% {
        transform: translateY(-10px);
    }
}

.feature-card-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #facc15, #f59e0b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #ffffff;
    flex-shrink: 0;
}

.feature-card-content h5 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 3px 0;
}

.feature-card-content p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.feature-card-badge {
    margin-left: auto;
    color: #10b981;
    font-size: 1.125rem;
}

/* Background Decorations */
.hero-bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: glowFloat 8s ease-in-out infinite;
}

.bg-glow-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #facc15, transparent);
    top: -50px;
    right: 0;
    animation-delay: 0s;
}

.bg-glow-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #f59e0b, transparent);
    bottom: 0;
    left: 0;
    animation-delay: 2s;
}

@keyframes glowFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(20px, -20px) scale(1.1);
    }

    66% {
        transform: translate(-15px, 15px) scale(0.9);
    }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(250, 204, 21, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(250, 204, 21, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

/* SVG Gradient Definition (Add to HTML if needed) */
svg defs {
    display: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gaming-hero-visual {
        height: 550px;
    }

    .gaming-dashboard-card {
        max-width: 400px;
        padding: 25px;
    }

    .feature-card-1 {
        left: -30px;
    }

    .feature-card-2 {
        right: -30px;
    }

    .feature-card-3 {
        left: -20px;
    }
}

@media (max-width: 992px) {
    .gaming-hero-visual {
        height: 500px;
        margin-top: 50px;
    }

    .gaming-dashboard-card {
        max-width: 380px;
    }

    .speed-circle {
        width: 180px;
        height: 180px;
    }

    .speed-value {
        font-size: 2.5rem;
    }

    .floating-feature-card {
        padding: 12px 16px;
    }

    .feature-card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }

    .feature-card-content h5 {
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .gaming-hero-visual {
        height: auto;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .gaming-dashboard-card {
        max-width: 100%;
        padding: 20px;
    }

    .speed-circle {
        width: 160px;
        height: 160px;
    }

    .speed-value {
        font-size: 2rem;
    }

    .speed-content i {
        font-size: 1.5rem;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .stat-mini {
        padding: 12px;
    }

    .floating-feature-card {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin-top: 15px;
        animation: none;
    }

    .feature-card-1,
    .feature-card-2,
    .feature-card-3 {
        display: none;
    }
}

/* ========================================
   WHITE LABEL HERO VISUAL - BUSINESS DASHBOARD
   ======================================== */

.whitelabel-hero-visual {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Business Dashboard Card */
.business-dashboard-card {
    position: relative;
    width: 100%;
    max-width: 450px;
    background: linear-gradient(135deg, rgba(20, 15, 10, 0.95), rgba(30, 25, 20, 0.95));
    border: 2px solid rgba(250, 204, 21, 0.3);
    border-radius: 30px;
    padding: 30px;
    backdrop-filter: blur(20px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(250, 204, 21, 0.2),
        inset 0 0 30px rgba(250, 204, 21, 0.05);
    z-index: 2;
    animation: dashboardFloat 6s ease-in-out infinite;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(250, 204, 21, 0.2);
}

.brand-preview {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #facc15, #f59e0b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.brand-status {
    font-size: 0.75rem;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 5px;
}

.time-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.15), rgba(245, 158, 11, 0.15));
    border: 1px solid rgba(250, 204, 21, 0.3);
    border-radius: 20px;
    color: #fcd34d;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Revenue Display */
.revenue-display {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.1), rgba(245, 158, 11, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(250, 204, 21, 0.2);
}

.revenue-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.revenue-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.revenue-amount .currency {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #facc15, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.revenue-amount .amount {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #facc15, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.revenue-growth {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #10b981;
    font-size: 0.875rem;
    font-weight: 600;
}

.revenue-growth i {
    animation: bounceUp 2s ease-in-out infinite;
}

@keyframes bounceUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* Business Metrics */
.business-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.1), rgba(245, 158, 11, 0.05));
    border: 1px solid rgba(250, 204, 21, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.metric-card:hover {
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.15), rgba(245, 158, 11, 0.1));
    border-color: rgba(250, 204, 21, 0.4);
    transform: translateX(5px);
}

.metric-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.users-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
}

.downloads-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: #ffffff;
}

.metric-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.metric-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

.metric-trend {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
}

.metric-trend.positive {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

/* Platform Badge Cards */
.platform-badge-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: linear-gradient(135deg, rgba(20, 15, 10, 0.95), rgba(30, 25, 20, 0.95));
    border: 1px solid rgba(250, 204, 21, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 3;
    animation: cardFloat 4s ease-in-out infinite;
}

.badge-1 {
    top: 30px;
    left: -70px;
    animation-delay: 0s;
}

.badge-2 {
    top: 50%;
    right: -70px;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

.badge-3 {
    bottom: 30px;
    left: -70px;
    animation-delay: 3s;
}

.platform-badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #facc15, #f59e0b);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: #ffffff;
}

.platform-badge-card span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #ffffff;
}

.badge-check {
    color: #10b981;
    font-size: 1rem;
}

/* Background Decorations */
.whitelabel-bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-glow-wl {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: glowFloat 8s ease-in-out infinite;
}

.bg-glow-wl-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #facc15, transparent);
    top: -50px;
    right: 0;
}

.bg-glow-wl-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #f59e0b, transparent);
    bottom: 0;
    left: 0;
    animation-delay: 2s;
}

.grid-overlay-wl {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(250, 204, 21, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(250, 204, 21, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 1200px) {
    .whitelabel-hero-visual {
        height: 550px;
    }

    .badge-1 {
        left: -60px;
    }

    .badge-2 {
        right: -60px;
    }

    .badge-3 {
        left: -60px;
    }
}

@media (max-width: 992px) {
    .whitelabel-hero-visual {
        height: 500px;
        margin-top: 50px;
    }

    .business-dashboard-card {
        max-width: 400px;
        padding: 25px;
    }

    .revenue-amount .amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .whitelabel-hero-visual {
        height: auto;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .business-dashboard-card {
        max-width: 100%;
        padding: 20px;
    }

    .revenue-amount .amount {
        font-size: 2rem;
    }

    .platform-badge-card {
        display: none;
    }
}

/* ========================================
   VPN DEVELOPMENT HERO VISUAL - PROGRESS DASHBOARD
   ======================================== */

.vpndev-hero-visual {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Development Progress Card */
.dev-progress-card {
    position: relative;
    width: 100%;
    max-width: 450px;
    background: linear-gradient(135deg, rgba(20, 15, 10, 0.95), rgba(30, 25, 20, 0.95));
    border: 2px solid rgba(250, 204, 21, 0.3);
    border-radius: 30px;
    padding: 30px;
    backdrop-filter: blur(20px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(250, 204, 21, 0.2),
        inset 0 0 30px rgba(250, 204, 21, 0.05);
    z-index: 2;
    animation: dashboardFloat 6s ease-in-out infinite;
}

.dev-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(250, 204, 21, 0.2);
}

.project-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.project-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #facc15, #f59e0b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
}

.project-details {
    display: flex;
    flex-direction: column;
}

.project-name {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.project-status {
    font-size: 0.75rem;
    color: #3b82f6;
}

.completion-badge {
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.15), rgba(245, 158, 11, 0.15));
    border: 1px solid rgba(250, 204, 21, 0.3);
    border-radius: 20px;
}

.completion-percent {
    font-size: 1.125rem;
    font-weight: 800;
    background: linear-gradient(135deg, #facc15, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Progress Timeline */
.progress-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.05), rgba(245, 158, 11, 0.02));
    border: 1px solid rgba(250, 204, 21, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: 20px;
    background: rgba(250, 204, 21, 0.2);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-item.completed {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
    border-color: rgba(16, 185, 129, 0.3);
}

.timeline-item.active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.05));
    border-color: rgba(59, 130, 246, 0.3);
    animation: activePulse 2s ease-in-out infinite;
}

@keyframes activePulse {

    0%,
    100% {
        box-shadow: 0 0 0 rgba(59, 130, 246, 0);
    }

    50% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    }
}

.timeline-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.timeline-item.completed .timeline-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
}

.timeline-item.active .timeline-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
}

.timeline-item.pending .timeline-icon {
    background: rgba(250, 204, 21, 0.2);
    color: rgba(255, 255, 255, 0.5);
}

.timeline-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.timeline-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3px;
}

.timeline-status {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

.timeline-item.completed .timeline-status {
    color: #10b981;
}

.timeline-item.active .timeline-status {
    color: #3b82f6;
}

/* Tech Stack Cards */
.tech-stack-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: linear-gradient(135deg, rgba(20, 15, 10, 0.95), rgba(30, 25, 20, 0.95));
    border: 1px solid rgba(250, 204, 21, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 3;
    animation: cardFloat 4s ease-in-out infinite;
}

.tech-1 {
    top: 20px;
    left: -80px;
    animation-delay: 0s;
}

.tech-2 {
    top: 50%;
    right: -80px;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

.tech-3 {
    bottom: 20px;
    left: -80px;
    animation-delay: 3s;
}

.tech-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #ffffff;
}

.flutter-icon {
    background: linear-gradient(135deg, #02569B, #0175C2);
}

.node-icon {
    background: linear-gradient(135deg, #68A063, #539E43);
}

.security-icon {
    background: linear-gradient(135deg, #facc15, #f59e0b);
}

.tech-info {
    display: flex;
    flex-direction: column;
}

.tech-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #ffffff;
}

.tech-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Background Decorations */
.vpndev-bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-glow-dev {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: glowFloat 8s ease-in-out infinite;
}

.bg-glow-dev-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #facc15, transparent);
    top: -50px;
    right: 0;
}

.bg-glow-dev-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #3b82f6, transparent);
    bottom: 0;
    left: 0;
    animation-delay: 2s;
}

.grid-overlay-dev {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(250, 204, 21, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(250, 204, 21, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.code-lines {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 100px;
    height: 150px;
}

.code-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(250, 204, 21, 0.5), transparent);
    margin-bottom: 15px;
    animation: codeScan 3s ease-in-out infinite;
}

.code-line:nth-child(2) {
    animation-delay: 1s;
    width: 80%;
}

.code-line:nth-child(3) {
    animation-delay: 2s;
    width: 60%;
}

@keyframes codeScan {

    0%,
    100% {
        opacity: 0.3;
        transform: translateX(0);
    }

    50% {
        opacity: 1;
        transform: translateX(10px);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .vpndev-hero-visual {
        height: 550px;
    }

    .tech-1 {
        left: -60px;
    }

    .tech-2 {
        right: -60px;
    }

    .tech-3 {
        left: -60px;
    }
}

@media (max-width: 992px) {
    .vpndev-hero-visual {
        height: 500px;
        margin-top: 50px;
    }

    .dev-progress-card {
        max-width: 400px;
        padding: 25px;
    }

    .timeline-item {
        padding: 12px;
    }
}

@media (max-width: 768px) {
    .vpndev-hero-visual {
        height: auto;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .dev-progress-card {
        max-width: 100%;
        padding: 20px;
    }

    .timeline-item::before {
        left: 25px;
    }

    .tech-stack-card {
        display: none;
    }
}

/* ========================================
   WHY CHOOSE US MODERN SECTION
   ======================================== */

.why-choose-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

/* Header */
.choose-header {
    position: relative;
}

.choose-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.1), rgba(245, 158, 11, 0.1));
    border: 1px solid rgba(250, 204, 21, 0.3);
    border-radius: 50px;
    color: #f59e0b;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.choose-badge i {
    color: #facc15;
}

.choose-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.2;
}

.choose-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
}

/* Choose Cards */
.choose-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.choose-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.choose-card:hover .choose-icon {
    transform: scale(1.1) rotate(-5deg);
}

.choose-card h4 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.choose-card p {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Stats Showcase */
.stats-showcase {
    background: linear-gradient(135deg, #1f2937, #111827);
    border-radius: 30px;
    padding: 50px 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.stats-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(250, 204, 21, 0.1), rgba(245, 158, 11, 0.1)); */
    opacity: 0.5;
}

.stat-item {
    display: flex;
    align-items: center;
    /* gap: 20px; */
    position: relative;
    z-index: 1;
}

.stat-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #facc15, #f59e0b);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #ffffff;
    flex-shrink: 0;
    /* box-shadow: 0 10px 30px rgba(250, 204, 21, 0.4); */
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.stat-content {
    text-align: left;
}

.stat-number-modern {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #facc15, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label-modern {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .choose-title {
        font-size: 2rem;
    }

    .choose-subtitle {
        font-size: 1rem;
    }

    .choose-card {
        padding: 30px 20px;
    }

    .choose-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .stats-showcase {
        padding: 40px 30px;
        gap: 30px;
    }

    .stat-icon-modern {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .stat-number-modern {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .choose-title {
        font-size: 1.75rem;
    }

    .choose-subtitle {
        font-size: 0.9375rem;
    }

    .choose-badge {
        padding: 8px 16px;
        font-size: 0.8125rem;
    }

    .choose-card {
        padding: 25px 20px;
    }

    .choose-icon {
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .choose-card h4 {
        font-size: 1.25rem;
    }

    .choose-card p {
        font-size: 0.875rem;
    }

    .stats-showcase {
        padding: 30px 20px;
        gap: 25px;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .stat-content {
        text-align: center;
    }

    .stat-icon-modern {
        width: 55px;
        height: 55px;
        font-size: 1.375rem;
    }

    .stat-number-modern {
        font-size: 2rem;
    }

    .stat-label-modern {
        font-size: 0.875rem;
    }
}

/* Technology Stack Section Styles */
.tech-stack-section {
    position: relative;
    overflow: hidden;
}

.section-header-modern {
    margin-bottom: 3rem;
}

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 1rem 0;
    font-family: 'Outfit', sans-serif;
}

.section-description-modern {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    font-family: 'Outfit', sans-serif;
}

.tech-category-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
}

.tech-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.tech-category-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.tech-category-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: #fff;
    transition: all 0.3s ease;
}

.frontend-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.backend-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.mobile-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.cloud-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.tech-category-card:hover .tech-category-icon {
    transform: scale(1.1) rotate(5deg);
}

.tech-category-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

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

.tech-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.tech-list li:last-child {
    border-bottom: none;
}

.tech-list li i {
    font-size: 1.2rem;
    color: #667eea;
    transition: all 0.3s ease;
}

.tech-list li:hover {
    padding-left: 0.5rem;
    color: #667eea;
}

.tech-list li:hover i {
    transform: scale(1.2);
}

/* Client Success Stories Section Styles */
.success-stories-section {
    position: relative;
    overflow: hidden;
}

.section-header-light {
    margin-bottom: 3rem;
}

.section-badge-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-family: 'Outfit', sans-serif;
}

.section-title-light {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 1rem 0;
    font-family: 'Outfit', sans-serif;
}

.section-description-light {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-family: 'Outfit', sans-serif;
}

.success-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.success-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.success-quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.success-content {
    flex: 1;
}

.success-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-family: 'Outfit', sans-serif;
}

.success-metrics {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
}

.metric-item {
    flex: 1;
    text-align: center;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.25rem;
    font-family: 'Outfit', sans-serif;
}

.metric-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
}

.success-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.author-info h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.25rem 0;
    font-family: 'Outfit', sans-serif;
}

.author-info p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

/* Responsive Styles */
@media (max-width: 768px) {

    .section-title-modern,
    .section-title-light {
        font-size: 2rem;
    }

    .tech-category-card {
        margin-bottom: 1rem;
    }

    .success-metrics {
        flex-direction: column;
        gap: 0.5rem;
    }

    .metric-item {
        padding: 0.5rem 0;
    }
}