﻿/* ============================================
   KAEN IT SOLUTIONS - Main Stylesheet
   Version: 2.0
   ============================================ */

/* Body lock when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --dark-gray: #424242;
    --ocean-blue: #00aaf4;
    --ocean-blue-dark: #0088cc;
    --ocean-blue-light: #33bbf6;
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --text-gray: #6b7280;
    --dark-bg: #1a1a2e;
    --gradient-blue: linear-gradient(135deg, #00aaf4 0%, #0066cc 100%);
    --gradient-dark: linear-gradient(135deg, #424242 0%, #1a1a2e 100%);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none !important;
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--ocean-blue);
    border-radius: 5px;
}

/* ============================================
   PRELOADER
   ============================================ */
 .preloader.hidden {
    opacity: 0;
    visibility: hidden;
} 

        .preloader{position:fixed;top:0;left:0;width:100%;height:100%;background:#0a0e17;display:flex;align-items:center;justify-content:center;z-index:99999;transition:all .6s ease;overflow:hidden}
        .preloader.loaded{opacity:0;visibility:hidden}
        .circuit-bg{position:absolute;top:0;left:0;width:100%;height:100%;background-image:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0v10M30 50v10M0 30h10M50 30h10M10 10l5 5M45 45l5 5M10 50l5-5M45 15l5-5' stroke='%23667eea' stroke-width='0.5' fill='none' opacity='0.15'/%3E%3Ccircle cx='30' cy='30' r='3' fill='%23667eea' opacity='0.1'/%3E%3C/svg%3E");animation:circuitMove 20s linear infinite}
        @keyframes circuitMove{0%{background-position:0 0}100%{background-position:60px 60px}}
        .preloader-inner{text-align:center;z-index:2}
        .loader-ring{position:relative;width:140px;height:140px;margin:0 auto 30px}
        .ring{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:50%;border:3px solid transparent}
        .ring:nth-child(1){border-top-color:#667eea;animation:spin 1.5s linear infinite}
        .ring:nth-child(2){border-right-color:#764ba2;animation:spin 2s linear infinite reverse;width:110px;height:110px;top:15px;left:15px}
        .ring:nth-child(3){border-bottom-color:#f093fb;animation:spin 1s linear infinite;width:80px;height:80px;top:30px;left:30px}
        @keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}
        .loader-ring .preloader-logo{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:50px;height:50px}
        .preloader-logo img{width:100%;height:100%;object-fit:contain;filter:drop-shadow(0 0 15px rgba(102,126,234,0.8));animation:logoPulse 2s ease-in-out infinite}
        @keyframes logoPulse{0%,100%{filter:drop-shadow(0 0 15px rgba(102,126,234,0.8))}50%{filter:drop-shadow(0 0 25px rgba(118,75,162,1))}}
        .loader-terminal{font-family:'Consolas',monospace;font-size:14px;color:#667eea;display:flex;align-items:center;justify-content:center;gap:2px}
        .terminal-text{animation:typing 2s steps(15) infinite}
        .terminal-cursor{animation:blink .6s infinite}
        @keyframes typing{0%,100%{opacity:1}50%{opacity:.5}}
        @keyframes blink{0%,100%{opacity:1}50%{opacity:0}}

        /* About Section Styles */
        .about-section {
            background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
        }
        
        .about-image-wrapper {
            position: relative;
            padding: 20px;
        }
        
        .about-image-main img {
            border-radius: 20px;
            width: 100%;
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }
        
        .about-image-secondary {
            position: absolute;
            bottom: -20px;
            right: -20px;
            z-index: 2;
        }
        
        .about-image-secondary img {
            border-radius: 15px;
            border: 5px solid #fff;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }
        
        .about-experience-badge {
            position: absolute;
            top: 30px;
            left: -20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            padding: 25px 20px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
            z-index: 3;
        }
        
        .experience-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1;
        }
        
        .experience-text {
            font-size: 0.85rem;
            opacity: 0.9;
        }
        
        .about-desc {
            color: #64748b;
            line-height: 1.8;
            margin-bottom: 1rem;
        }
        
        .about-features {
            margin-top: 2rem;
        }
        
        .about-feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.25rem;
        }
        
        .about-feature-icon {
            color: #10b981;
            font-size: 1.25rem;
            margin-right: 1rem;
            margin-top: 3px;
        }
        
        .about-feature-text h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 0.25rem;
        }
        
        .about-feature-text p {
            font-size: 0.9rem;
            color: #64748b;
            margin: 0;
        }
        
        /* Pricing Section Styles */
        .pricing-section {
            background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
            padding: 100px 0;
        }
        
        .pricing-section .section-title,
        .pricing-section .section-desc {
            color: #fff;
        }
        
        .pricing-section .section-title span {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .pricing-card {
            background: #fff;
            border-radius: 24px;
            padding: 40px 30px;
            position: relative;
            transition: all 0.4s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
        }
        
        .pricing-card.popular {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transform: scale(1.05);
        }
        
        .pricing-card.popular:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .pricing-card.popular .pricing-title,
        .pricing-card.popular .pricing-subtitle,
        .pricing-card.popular .pricing-price,
        .pricing-card.popular .pricing-features li {
            color: #fff;
        }
        
        .pricing-card.popular .pricing-features li.disabled {
            color: rgba(255,255,255,0.5);
        }
        
        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #10b981;
            color: #fff;
            padding: 6px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        .pricing-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .pricing-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 5px;
        }
        
        .pricing-subtitle {
            font-size: 0.9rem;
            color: #64748b;
            margin-bottom: 20px;
        }
        
        .pricing-price {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 5px;
        }
        
        .pricing-price .currency {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1e293b;
        }
        
        .pricing-price .amount {
            font-size: 3rem;
            font-weight: 800;
            color: #1e293b;
            line-height: 1;
        }
        
        .pricing-price .period {
            font-size: 0.9rem;
            color: #64748b;
        }
        
        .pricing-features {
            flex-grow: 1;
        }
        
        .pricing-features ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .pricing-features li {
            padding: 12px 0;
            border-bottom: 1px solid #e2e8f0;
            color: #475569;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .pricing-features li:last-child {
            border-bottom: none;
        }
        
        .pricing-features li i {
            color: #10b981;
            font-size: 0.9rem;
        }
        
        .pricing-features li.disabled {
            color: #94a3b8;
        }
        
        .pricing-features li.disabled i {
            color: #cbd5e1;
        }
        
        .pricing-btn {
            display: block;
            width: 100%;
            padding: 15px 30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            text-align: center;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            margin-top: 25px;
            transition: all 0.3s ease;
        }
        
        .pricing-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
            color: #fff;
            text-decoration: none;
        }
        
        .pricing-card.popular .pricing-btn {
            background: #fff;
            color: #667eea;
        }
        
        .pricing-note {
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
        }
        
        .pricing-note a {
            color: #667eea;
            text-decoration: underline;
        }
        
        /* Awards Section */
        .awards-section {
            background: #f8fafc;
        }
        
        .award-card {
            background: #fff;
            padding: 30px 20px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .award-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }
        
        .award-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .award-icon i {
            font-size: 1.75rem;
            color: #fff;
        }
        
        .award-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 5px;
        }
        
        .award-card p {
            font-size: 0.85rem;
            color: #64748b;
            margin: 0;
        }
        
        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            bottom: 100px;
            right: 25px;
            background: #25d366;
            color: #fff;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .whatsapp-float:hover {
            background: #128c7e;
            color: #fff;
            transform: scale(1.1);
            text-decoration: none;
        }
        
        .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            background: #1e293b;
            color: #fff;
            padding: 8px 15px;
            border-radius: 8px;
            font-size: 0.85rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
            visibility: visible;
        }
        
        /* Hero Background Image Slider */
        .hero-slider-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }
        
        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transform: scale(1.1);
            transition: opacity 1.5s ease, transform 8s ease;
        }
        
        .hero-slide.active {
            opacity: 1;
            transform: scale(1);
        }
        
        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.85) 50%, rgba(102, 126, 234, 0.75) 100%);
        }
        
        .hero-slide-1 {
            background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&h=1080&fit=crop');
        }
        
        .hero-slide-2 {
            background-image: url('https://images.unsplash.com/photo-1677442136019-21780ecad995?w=1920&h=1080&fit=crop');
        }
        
        .hero-slide-3 {
            background-image: url('https://images.unsplash.com/photo-1559136555-9303baea8ebd?w=1920&h=1080&fit=crop');
        }
        
        .hero-slide-4 {
            background-image: url('https://images.unsplash.com/photo-1485827404703-89b55fcc595e?w=1920&h=1080&fit=crop');
        }
        
        .hero-slide-5 {
            background-image: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1920&h=1080&fit=crop');
        }
        
        .hero.Hero_page_topset {
            position: relative;
            overflow: hidden;
        }
        
        .hero.Hero_page_topset .container {
            position: relative;
            z-index: 2;
        }
        
        .hero.Hero_page_topset .hero-bg-shapes {
            z-index: 1;
        }
        
        .hero.Hero_page_topset .hero-particles {
            z-index: 1;
        }
        
        /* Slider Navigation Dots */
        .hero-slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            border: 2px solid rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot:hover {
            background: rgba(255,255,255,0.5);
        }
        
        .slider-dot.active {
            background: #667eea;
            border-color: #667eea;
            transform: scale(1.2);
            box-shadow: 0 0 15px rgba(102, 126, 234, 0.6);
        }
        
        /* Slider Progress Bar */
        .slider-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2, #ec4899);
            width: 0%;
            z-index: 10;
            transition: width 0.1s linear;
        }
        
        /* Hero Content Enhancement */
        .hero-content {
            position: relative;
            z-index: 5;
        }
        
        .hero-visual {
            position: relative;
            z-index: 5;
        }

        /* Enhanced Service Cards for new services */
        .service-card .service-icon i.fa-robot {
            background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .service-card .service-icon i.fa-link {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .service-card .service-icon i.fa-bullhorn {
            background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Responsive adjustments */
        @media (max-width: 991px) {
            .about-image-secondary {
                position: relative;
                bottom: auto;
                right: auto;
                margin-top: 20px;
            }
            
            .about-experience-badge {
                left: 10px;
                top: 10px;
            }
            
            .pricing-card.popular {
                transform: scale(1);
            }
            
            .pricing-card.popular:hover {
                transform: translateY(-10px);
            }
        }
        
        @media (max-width: 767px) {
            .pricing-price .amount {
                font-size: 2.5rem;
            }
            
            .whatsapp-float {
                width: 55px;
                height: 55px;
               bottom: 100px;
                right: 15px;
            }
            .back-to-top{
                      bottom: -18px !important;
        left: 0px !important;
        right: 0 !important;
        margin: auto;
            }
            .back-to-top:hover{
                    transform: translateY(0px)!important;
            }
        }

/* ============================================
   NAVIGATION
   ============================================ */
/* =============================
   OVERLAY
================================= */
.ks-auth-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.65);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.ks-auth-overlay.active {
    display: flex;
}
.ks-input,.ks-remember{
    font-size: 14px;
}

/* =============================
   CARD
================================= */
.ks-auth-card {
    width: 100%;
    max-width: 440px;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 35px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    animation: ksFadeUp .35s ease;
}

@keyframes ksFadeUp {
    from {opacity:0; transform:translateY(40px);}
    to {opacity:1; transform:translateY(0);}
}

.ks-auth-close {
    position: absolute;
    top: 15px;
    right: 18px;
    border: none;
    background: none;
    font-size: 24px;
    cursor: pointer;
}

/* =============================
   TITLE
================================= */
.ks-auth-title h3 {
    font-weight: 600;
    margin-bottom: 8px;
}

.ks-auth-title p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 25px;
}

/* =============================
   SWITCH SLIDER
================================= */
.ks-auth-switch {
    position: relative;
    display: flex;
    background: #f1f5f9;
    border-radius: 50px;
    padding: 5px;
    margin-bottom: 25px;
    overflow: hidden;
}

.ks-switch-btn {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px 0;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color .3s ease;
}

.ks-switch-btn.active {
    color: #fff;
}

.ks-switch-indicator {
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(50% - 5px);
    height: calc(100% - 10px);
    border-radius: 50px;
    background: linear-gradient(135deg,var(--ocean-blue),#5490ff);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    z-index: 1;
}

/* =============================
   INPUTS
================================= */
.ks-input {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 0 15px;
    margin-bottom: 15px;
    transition: .3s;
}

.ks-input:focus {
    border-color: var(--ocean-blue);
    outline: none;
}

/* =============================
   OPTIONS
================================= */
.ks-auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    font-size: 14px;
}

.ks-remember input {
    margin-right: 6px;
}

.ks-forgot {
    text-decoration: none;
    color: var(--ocean-blue);
}

/* =============================
   BUTTON
================================= */
.ks-primary-btn {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg,var(--ocean-blue),#5490ff);
    color: #fff;
    font-weight: 600;
  /*  margin-bottom: 20px; */
    cursor: pointer;
}

/* =============================
   DIVIDER
================================= */
.ks-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.ks-divider span {
    background: #fff;
    padding: 0 12px;
    font-size: 13px;
    color: #6b7280;
}

.ks-divider:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #e5e7eb;
    top: 50%;
    left: 0;
    z-index: -1;
}

/* =============================
   SOCIAL
================================= */
.ks-social-row {
    display: flex;
    gap: 10px;
}

.ks-social-btn {
    flex: 1;
    height: 42px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
}

/* =============================
   FORM TRANSITION
================================= */
.ks-auth-form {
    display: none;
    animation: ksFade .3s ease;
}

.ks-auth-form.active {
    display: block;
}

@keyframes ksFade {
    from {opacity:0;}
    to {opacity:1;}
}

/* =============================
   SUCCESS STATE
================================= */
.ks-success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--ocean-blue),#5490ff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 15px;
}


.navbar-custom {
    position: fixed;
    background-color: #fff;
    top: 0;
    left: 0;
    width: 100%;
     padding: 15px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-custom.scrolled {
     background: #fff;
    /* backdrop-filter: blur(20px); */
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
       padding: 10px 0;
  
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
width: 130px;
    height: 60px;
    /* border-radius: 12px; */
    /* overflow: hidden; */
    transition: all 0.3s ease;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* .navbar-custom.scrolled .logo-icon img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
} */

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s ease;
}

.navbar-custom.scrolled .logo-text {
    color: var(--dark-gray);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link-custom {
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
    padding: 0 !important;
    white-space: nowrap;
}

.navbar-custom.scrolled .nav-link-custom {
    color: var(--dark-gray);
}

.nav-link-custom::after, .nav-link-custom.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ocean-blue);
    transition: width 0.3s ease;
}

.nav-link-custom:hover::after, .nav-link-custom.active::after {
    width: 100%;
}

.nav-link-custom:hover,.nav-link-custom.active {
    color: var(--ocean-blue) !important;
}

.btn-nav {
    padding: 12px 28px;
    background: var(--ocean-blue);
    color: white !important;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--ocean-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 170, 244, 0.3);
    color: white !important;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon-custom {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.navbar-toggler-icon-custom span {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar-custom.scrolled .navbar-toggler-icon-custom span {
    background: var(--dark-gray);
}

     /* Site Header Wrapper - Override all header_area styles */
        .site-header.header_area,
        .site-header {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            z-index: 9999 !important;
            width: 100% !important;
            background: transparent !important;
            padding: 0 !important;
            margin: 0 !important;
            box-shadow: none !important;
            transform: none !important;
            transition: none !important;
        }
        
        /* Navbar inside site-header */
        .site-header .navbar-custom,
        .site-header .navbar {
            position: relative !important;
            top: auto !important;
            left: auto !important;
            right: auto !important;
            width: 100% !important;
            z-index: 0;
        }
        
        /* Top Bar Styles */
        .top-bar {
               background: #fff;
    padding: 8px 0 !important;
    font-size: 13px !important;
    border-bottom: 1px solid rgb(77 77 77 / 10%) !important;
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    display: block !important;
        }
        
        .top-bar-inner {
            display: flex !important;
            justify-content: space-between !important;
            align-items: center !important;
        }
        
        .top-bar-left,
        .top-bar-right {
            display: flex !important;
            align-items: center !important;
            gap: 10px;
        }
        .top-bar-right .dropdown-menu{
              margin: 8px 0 0;
    border-radius: 0px;
        }
        .top-bar-right .dropdown-menu .dropdown-item{
 font-size: 14px;
        }
        
        .top-bar-item {
             color: rgb(95 95 95 / 85%) !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px;
    transition: color 0.3s ease !important;
        }
        
        .top-bar-item:hover {
            color: #00d4ff !important;
            text-decoration: none !important;
        }
        
        .top-bar-item i {
            color: #00d4ff;
            font-size: 12px !important;
        }

        /* Top Bar Divider */
        .top-bar-divider {
             color: rgb(0 0 0 / 15%);
    font-size: 14px;
    font-weight: 300;
    margin: 0 0px;
        }
        
        /* Top Bar Social Links */
        .top-bar-social {
            display: flex !important;
            align-items: center !important;
            gap: 12px;
            padding-left: 15px;
            border-left: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .top-bar-social a {
            color: rgba(255, 255, 255, 0.7) !important;
            font-size: 13px !important;
            transition: all 0.3s ease !important;
        }
        
        .top-bar-social a:hover {
            color: #00d4ff !important;
            transform: translateY(-2px);
        }
        
        /* Hero section padding to account for fixed header */
        .Hero_page_topset {
            padding-top: 140px !important;
            margin-top: 0 !important;
        }
        
        /* Responsive Styles */
        @media (max-width: 991px) {
            .Hero_page_topset {
                padding-top: 120px !important;
            }

            .navbar-custom {
                padding: 10px 0;
            }

            .navbar-custom.scrolled {
                padding: 8px 0;
                box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            }

            .logo-icon {
                width: 110px;
                height: 50px;
            }
            
        }
        
        @media (max-width: 768px) {
               
           .top-bar-left .CallUs{
                   background-color: var(--dark-gray);
            }
           .top-bar-left .mailUs{
   /* background-color: #fa5a0f; */
            }

               .top-bar-item i,.top-bar-item span,.top-bar-right .top-bar-item span{
                color: #fff !important;
             }
            .Hero_page_topset {
                padding-top: 120px !important;
            }

            .top-bar-inner {
                justify-content: space-between !important;
            }
            .top-bar-right {
                display: flex !important;
            }
            .top-bar-right .top-bar-item span {
                display: inline ;
                font-size: 11px;
                font-weight: 600;
                color: var(--ocean-blue);
            }
            .top-bar-left {
                gap: 8px;
            }
            .top-bar-item {
                font-size: 11px !important;
                        background: var(--ocean-blue);
        padding: 5px 10px;
        border-radius: 20px;
            }
            .dropdown-toggle::after{
                color: #fff !important;
            }
          
            .top-bar-item span {
                display: inline;
                font-size: 11px;
            }
            .top-bar-divider {
                margin: 0 4px;
                font-size: 10px;
            }

            .logo-icon {
                width: 105px;
                height: 46px;
            }

            .navbar-custom .container {
                padding-left: 16px;
                padding-right: 16px;
            }

            .navbar-custom {
                padding: 8px 0;
            }

            .navbar-custom.scrolled {
                padding: 6px 0;
            }
        }
        
        @media (max-width: 576px) {
            /* .Hero_page_topset {
                padding-top: 90px !important;
            } */

            .top-bar {
                padding: 5px 0 !important;
            }
            .top-bar .container {
                padding-left: 12px;
                padding-right: 12px;
            }
            .top-bar-inner {
                justify-content: space-between !important;
            }
            .top-bar-left {
                gap: 0;
                flex: 1;
                min-width: 0;
            }
            .top-bar-item {
                font-size: 10px !important;
                gap: 4px;
                min-width: 0;
            }
            .top-bar-item i {
                font-size: 10px !important;
                flex-shrink: 0;
            }
            .top-bar-item span {
                display: inline ;
                font-size: 10px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            .top-bar-divider {
                display: inline;
                margin: 0 4px;
                font-size: 10px;
            }
            .top-bar-right {
                display: flex !important;
                flex-shrink: 0;
                margin-left: 8px;
            }
            .top-bar-right .top-bar-item {
                background: var(--ocean-blue);
                padding: 3px 10px;
                border-radius: 20px;
                font-size: 10px !important;
            }
             .top-bar-right .top-bar-item i,.top-bar-right .top-bar-item span {
              color: #fff !important;
             }
            .top-bar-right .top-bar-item span {
                display: inline ;
                font-size: 10px;
                font-weight: 600;
                color: #fff !important;
                overflow: visible;
            }

            .logo-icon {
                width: 95px;
                height: 42px;
            }

            .navbar-custom .container {
                padding-left: 14px;
                padding-right: 14px;
            }

            .navbar-custom {
                padding: 7px 0;
            }

            .navbar-custom.scrolled {
                padding: 5px 0;
            }
        }

        @media (max-width: 400px) {
            .logo-icon {
                width: 85px;
                height: 38px;
            }

            .top-bar {
                padding: 4px 0 !important;
            }

            .top-bar-item span {
                font-size: 9px;
            }

            .top-bar-item i {
                font-size: 9px !important;
            }

            /* Hide email text on very small screens, keep phone */
            .top-bar-left .top-bar-item:last-child span {
                display: none !important;
            }

            .top-bar-divider {
                /* display: none; */
                margin: 0 1px;
            }

            .legal-list li{
                display: block !important;
            }

            .Hero_page_topset {
                padding-top: 115px !important;
            }
        }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--ocean-blue);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: #00d4ff;
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: var(--ocean-blue-light);
    top: 50%;
    left: 50%;
    animation: pulse 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.4; }
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--ocean-blue);
    border-radius: 50%;
    animation: particleFloat 15s infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.hero-content {
    color: var(--white);
    position: relative;
    z-index: 2;
}

/* Hero Content Slider */
.hero-content-slider {
    position: relative;
    min-height: 350px;
}

.hero-content-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.hero-content-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Animate elements within hero content slide */
.hero-content-slide .hero-badge {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
}

.hero-content-slide .hero-title {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
}

.hero-content-slide .hero-desc {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.3s;
}

.hero-content-slide .d-flex {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.4s;
}

.hero-content-slide.active .hero-badge,
.hero-content-slide.active .hero-title,
.hero-content-slide.active .hero-desc,
.hero-content-slide.active .d-flex {
    opacity: 1;
    transform: translateY(0);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 170, 244, 0.15);
    border: 1px solid rgba(0, 170, 244, 0.3);
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--ocean-blue-light);
}

.hero-badge i {
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 500px;
}

.btn-primary-custom {
    padding: 16px 36px;
    background: var(--ocean-blue);
    color: white !important;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-custom:hover {
    background: var(--ocean-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 170, 244, 0.4);
    color: white !important;
}

.btn-secondary-custom {
       padding: 16px 36px;
    background: #424242;
    color: white !important;
    /* border: 2px solid rgba(255, 255, 255, 0.3); */
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary-custom:hover {
   border-color: #ffffff;
    background: #00aaf4;
    color: #ffffff !important;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--ocean-blue);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.hero-visual {
    position: relative;
    z-index: 2;
}

/* Hero Visual Slider */
.hero-visual-slider {
    position: relative;
    min-height: 450px;
}

.hero-visual-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.hero-visual-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Animate elements within hero visual slide */
.hero-visual-slide .hero-card {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.5s ease 0.2s;
}

.hero-visual-slide .floating-cards {
    opacity: 0;
    transition: all 0.5s ease 0.4s;
}

.hero-visual-slide.active .hero-card {
    opacity: 1;
    transform: scale(1);
}

.hero-visual-slide.active .floating-cards {
    opacity: 1;
}

.hero-image-wrapper {
    position: relative;
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-blue);
}

.hero-card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    margin-bottom: 25px;
}

.hero-card h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.float-card-1 {
    top: 0;
    right: -20px;
    animation: floatCard1 5s ease-in-out infinite;
}

.float-card-2 {
    bottom: -30px;
    left: -40px;
    animation: floatCard2 6s ease-in-out infinite;
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-15px) rotate(-2deg); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-10px) rotate(3deg); }
}

.float-card i {
    font-size: 24px;
    color: var(--ocean-blue);
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section {
    padding: 30px 0;
}

.section-dark {
    background: var(--dark-bg);
    color: white;
}

.section-light {
    background: var(--light-gray);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 170, 244, 0.1);
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ocean-blue);
}

.section-title {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.section-dark .section-title {
    color: white;
}

.section-title span {
    color: var(--ocean-blue);
}

.section-desc {
    font-size: 17px;
    color: var(--text-gray);
}

.section-dark .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.service-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 170, 244, 0.15);
    border-color: var(--ocean-blue);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 170, 244, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--ocean-blue);
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--ocean-blue);
    color: white;
    transform: rotate(10deg) scale(1.1);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.service-card p {
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ocean-blue);
    font-weight: 600;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
    color: var(--ocean-blue-dark);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300aaf4' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.process-timeline {
    position: relative;
    padding: 60px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    width: 90%;
    height: 4px;
    background: linear-gradient(90deg, var(--ocean-blue) 0%, var(--ocean-blue-light) 50%, var(--ocean-blue) 100%);
    transform: translateY(-50%);
    border-radius: 2px;
}

.process-timeline .row {
    align-items: center;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    height: 250px;
}

.process-step.step-up {
    justify-content: flex-end;
    padding-bottom: 85px;
}

.process-step.step-up .process-content {
    order: 1;
    margin-bottom: 25px;
}

.process-step.step-up .process-icon-wrapper {
    order: 2;
}

.process-step.step-down {
    justify-content: flex-start;
    padding-top: 85px;
}

.process-step.step-down .process-icon-wrapper {
    order: 1;
}

.process-step.step-down .process-content {
    order: 2;
    margin-top: 25px;
}

.process-icon-wrapper {
    position: relative;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 170, 244, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.process-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--gradient-blue);
    z-index: -1;
}

.process-icon::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 2px dashed var(--ocean-blue);
    opacity: 0.3;
    animation: rotateBorder 10s linear infinite;
}

@keyframes rotateBorder {
    to { transform: rotate(360deg); }
}

.process-icon i {
    font-size: 28px;
    color: #fff;
}

.process-step:hover .process-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 50px rgba(0, 170, 244, 0.35);
}

.process-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: var(--ocean-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 170, 244, 0.4);
    z-index: 3;
}

.process-content {
    text-align: center;
    max-width: 150px;
    min-height: 60px;
}

.process-content h3 {
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 6px;
}

.process-content p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

/* Process Cards for Mobile */
.process-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-blue);
}

.process-card:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 50px rgba(0, 170, 244, 0.15);
}

.process-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 170, 244, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ocean-blue);
    font-size: 24px;
}

.process-card-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(0, 170, 244, 0.15) 0%, rgba(0, 170, 244, 0.05) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: 15px;
    right: 20px;
}

.process-card h3 {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.process-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.process-cta p span {
    color: var(--ocean-blue);
    font-weight: 600;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f0f1a 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--ocean-blue);
    border-radius: 50%;
    filter: blur(200px);
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.portfolio-bg-glow-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: #00d4ff;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.08;
    bottom: 10%;
    right: 10%;
}

/* Filter Tabs */
.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(0, 170, 244, 0.1);
    border-color: var(--ocean-blue);
    color: var(--ocean-blue-light);
}

.filter-btn.active {
    background: var(--ocean-blue);
    border-color: var(--ocean-blue);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 170, 244, 0.3);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Portfolio Card */
.portfolio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    border-color: var(--ocean-blue);
    box-shadow: 0 30px 60px rgba(0, 170, 244, 0.2);
}

.portfolio-card.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.portfolio-card.featured .portfolio-image {
    height: 100%;
    min-height: 590px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 1;
    transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
    background: linear-gradient(180deg, rgba(0, 170, 244, 0.2) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.portfolio-category {
    display: inline-block;
    padding: 6px 14px;
    background: var(--ocean-blue);
    color: white;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    width: fit-content;
}

.portfolio-category.ecommerce {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
}

.portfolio-category.webapp {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
}

.portfolio-category.mobile {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
}

.portfolio-category.website {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
}

.portfolio-title {
    color: white;
    font-size: 20px;
    margin-bottom: 6px;
    font-weight: 600;
}

.portfolio-card.featured .portfolio-title {
    font-size: 26px;
}

.portfolio-client {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-bottom: 15px;
}

.portfolio-client i {
    color: var(--ocean-blue);
    margin-right: 6px;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tech-tag {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 5px;
}

.tech-tag i {
    font-size: 12px;
    color: var(--ocean-blue-light);
}

.portfolio-actions {
    display: flex;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-actions {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.portfolio-btn.primary {
    background: var(--ocean-blue);
    color: white;
}

.portfolio-btn.primary:hover {
    background: var(--ocean-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 170, 244, 0.3);
    color: white;
}

.portfolio-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.portfolio-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

/* Stats Bar */
.portfolio-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-stat {
    text-align: center;
}

.portfolio-stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--ocean-blue);
    line-height: 1;
    margin-bottom: 8px;
}

.portfolio-stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ============================================
   WHY US SECTION
   ============================================ */
.feature-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 170, 244, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(0, 170, 244, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ocean-blue);
}

.feature-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.feature-text p {
    font-size: 13px;
    margin: 0;
    color: var(--text-gray);
}

.why-us-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.why-us-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.progress-bar-custom {
    height: 8px;
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-blue);
    border-radius: 10px;
    transition: width 1s ease;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
    font-size: 60px;
    color: var(--ocean-blue);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 20px;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.author-image {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 600;
}

.author-info h4 {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 3px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* Enhanced Testimonials Slider */
.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 15px;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 170, 244, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--ocean-blue);
    transform: scale(1.2);
}

.testimonial-arrows {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.testimonial-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--ocean-blue);
    color: var(--ocean-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-arrow:hover {
    background: var(--ocean-blue);
    color: white;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.contact-bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 170, 244, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.contact-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgba(0, 170, 244, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ocean-blue);
    font-size: 22px;
}

.contact-text h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-text p,
.contact-text a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    text-decoration: none;
    margin: 0;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--ocean-blue);
    border-color: var(--ocean-blue);
    transform: translateY(-5px);
    color: white;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
}

.form-control-custom {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--ocean-blue);
    background: rgba(0, 170, 244, 0.05);
    box-shadow: none;
    color: white;
}

.form-control-custom::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-label-custom {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-submit {
    padding: 16px 40px;
    background: var(--ocean-blue);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.form-submit:hover {
    background: var(--ocean-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 170, 244, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0a0a14;
    padding: 80px 0 30px;
}

.footer .logo-icon {
    background: #fff;
    padding: 5px 5px;
}

.footer .logo-text {
    color: white;
}

.footer-title {
    color: white;
    font-size: 18px;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--ocean-blue);
    padding-left: 5px;
}

.footer-newsletter input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-newsletter input:focus {
    outline: none;
    border-color: var(--ocean-blue);
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter button {
    width: 100%;
    padding: 15px 20px;
    background: var(--ocean-blue);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    background: var(--ocean-blue-dark);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-left: 30px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--ocean-blue);
}

/* ============================================
   TECHNOLOGY STACK SECTION
   ============================================ */
.tech-stack-section {
    background: var(--light-gray);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.tech-item {
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 170, 244, 0.15);
    border-color: var(--ocean-blue);
}

.tech-item i {
    font-size: 40px;
    margin-bottom: 15px;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-item span {
    display: block;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 14px;
}

/* ============================================
   CLIENTS SECTION
   ============================================ */
.clients-section {
    background: white;
    padding: 60px 0;
}

.clients-wrapper {
    overflow: hidden;
    position: relative;
}

.clients-wrapper::before,
.clients-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.clients-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, white 0%, transparent 100%);
}

.clients-wrapper::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, white 100%);
}

.clients-track {
    display: flex;
    animation: scrollClients 25s linear infinite;
}

@keyframes scrollClients {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-logo {
    min-width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 30px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.client-logo img {
    max-width: 140px;
    max-height: 50px;
    object-fit: contain;
}

.client-logo-placeholder {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gray);
    letter-spacing: 1px;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
    background: var(--light-gray);
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 170, 244, 0.15);
}

.team-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    transition: bottom 0.3s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--ocean-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: white;
    color: var(--ocean-blue);
}

.team-info {
    padding: 25px;
}

.team-info h4 {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.team-info p {
    color: var(--ocean-blue);
    font-weight: 500;
    font-size: 14px;
    margin: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: white;
}

.faq-item {
    background: var(--light-gray);
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 170, 244, 0.1);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--ocean-blue);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--ocean-blue);
}

.faq-item.active .faq-question {
    color: var(--ocean-blue);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   CTA BANNER SECTION
   ============================================ */
.cta-banner {
    background: var(--gradient-blue);
     padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 40px;
    color: white;
    margin-bottom: 15px;
}

.cta-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.cta-btn {
    padding: 18px 40px;
    background: white;
    color: var(--ocean-blue) !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    color: var(--ocean-blue-dark) !important;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 15px;
}

.cta-feature i {
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
    background: var(--light-gray);
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 170, 244, 0.15);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    background: var(--ocean-blue);
    color: white;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-category.tech {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
}

.blog-category.design {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
}

.blog-category.business {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
}

.blog-category.trends {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-gray);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    color: var(--ocean-blue);
}

.blog-title {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--ocean-blue);
}

.blog-excerpt {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ocean-blue);
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s ease;
}

.blog-link:hover {
    gap: 12px;
    color: var(--ocean-blue-dark);
}

/* Blog Featured Card */
.blog-card.featured {
    display: flex;
    flex-direction: row;
}

.blog-card.featured .blog-image {
    width: 45%;
    height: auto;
    min-height: 300px;
}

.blog-card.featured .blog-content {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 35px;
}

.blog-card.featured .blog-title {
    font-size: 26px;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--ocean-blue);
    color: white;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--ocean-blue-dark);
    transform: translateY(-5px);
}

/* Animated Counter */
.counter-animated {
    display: inline-block;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.z-index-2 {
    z-index: 2;
}

.text-gray-light {
    color: var(--text-gray);
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7);
}

.font-weight-500 {
    font-weight: 500;
}

.text-uppercase-spaced {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

.font-size-18 {
    font-size: 18px;
}

.text-ocean-blue {
    color: var(--ocean-blue);
}

.font-weight-600 {
    font-weight: 600;
}

/* Progress bar widths */
.progress-fill-98 {
    width: 98%;
}

.progress-fill-95 {
    width: 95%;
}

.progress-fill-92 {
    width: 92%;
}

.progress-fill-90 {
    width: 90%;
}

/* Text colors for footer and sections */
.text-white-60 {
    color: rgba(255, 255, 255, 0.6);
}

.line-height-18 {
    line-height: 1.8;
}

.font-size-14 {
    font-size: 14px;
}

.contact-intro-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.footer-newsletter-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 20px;
}

/* Particle animation delays */
.particle-delay-0 { animation-delay: 0s; }
.particle-delay-1 { animation-delay: 1s; }
.particle-delay-2 { animation-delay: 2s; }
.particle-delay-3 { animation-delay: 3s; }
.particle-delay-4 { animation-delay: 4s; }
.particle-delay-5 { animation-delay: 5s; }

.particle-left-10 { left: 10%; }
.particle-left-20 { left: 20%; }
.particle-left-30 { left: 30%; }
.particle-left-40 { left: 40%; }
.particle-left-50 { left: 50%; }
.particle-left-60 { left: 60%; }
.particle-left-70 { left: 70%; }
.particle-left-80 { left: 80%; }
.particle-left-90 { left: 90%; }

/* ============================================
   BLOG DETAIL PAGE STYLES
   ============================================ */
       /* Blog Page Specific Styles */
        .blog-hero {
            background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 100%);
             padding: 60px 0 60px;
            position: relative;
            overflow: hidden;
        }
        
        .blog-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 170, 244, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 8s ease-in-out infinite;
        }
        
        .blog-hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 10s ease-in-out infinite reverse;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }
        
        .blog-hero-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }
        
        .blog-hero-content {
            position: relative;
            z-index: 2;
            flex: 1;
        }
        
        .blog-hero h1 {
            font-size: 42px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            line-height: 1.2;
        }
        
        .blog-hero h1 span {
            background: linear-gradient(135deg, #00aaf4 0%, #00d4ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .blog-hero p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.6);
            max-width: 500px;
            margin: 0;
            line-height: 1.6;
        }
        
        .blog-breadcrumb {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
            background: rgba(255, 255, 255, 0.05);
            padding: 8px 16px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        
        .blog-breadcrumb a {
            color: rgba(255, 255, 255, 0.6);
            transition: color 0.3s ease;
            font-size: 13px;
        }
        
        .blog-breadcrumb a:hover {
            color: #00aaf4;
        }
        
        .blog-breadcrumb span {
            color: #00aaf4;
            font-size: 13px;
            font-weight: 500;
        }
        
        .blog-hero-stats {
            display: flex;
            gap: 30px;
            position: relative;
            z-index: 2;
        }
        
        .hero-stat-item {
            text-align: center;
            padding: 20px 25px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .hero-stat-item:hover {
            background: rgba(0, 170, 244, 0.1);
            border-color: rgba(0, 170, 244, 0.3);
            transform: translateY(-3px);
        }
        
        .hero-stat-item .stat-number {
            font-size: 28px;
            font-weight: 700;
            color: #00aaf4;
            display: block;
            line-height: 1;
        }
        
        .hero-stat-item .stat-label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 6px;
            display: block;
        }
        
        /* Blog Main Section */
        .blog-main-section {
            padding: 80px 0;
            background: #f8fafc;
        }
        
        /* Featured Section - Magazine Style */
        .featured-section {
            margin-bottom: 60px;
        }
        
        .featured-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 20px;
            min-height: 500px;
        }
        
        /* Main Featured Slider */
        .featured-main {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 100%;
        }
        
        .featured-slider {
            position: relative;
            height: 100%;
        }
        
        .featured-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.6s ease;
        }
        
        .featured-slide.active {
            opacity: 1;
            z-index: 1;
        }
        
        .featured-slide-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .featured-slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px;
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
        }
        
        .featured-slide-category {
            display: inline-block;
            background: linear-gradient(135deg, #00aaf4 0%, #0066cc 100%);
            color: #fff;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }
        
        .featured-slide-title {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .featured-slide-title:hover {
            color: #00aaf4;
        }
        
        .featured-slide-excerpt {
            color: rgba(255,255,255,0.7);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .featured-slide-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .featured-slide-author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .featured-slide-author img {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid rgba(255,255,255,0.3);
        }
        
        .featured-slide-author-name {
            color: #fff;
            font-weight: 600;
            font-size: 13px;
        }
        
        .featured-slide-date {
            color: rgba(255,255,255,0.6);
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        /* Slider Navigation */
        .featured-slider-nav {
            position: absolute;
            bottom: 40px;
            right: 40px;
            display: flex;
            gap: 8px;
            z-index: 10;
        }
        
        .slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background: #00aaf4;
            width: 30px;
            border-radius: 5px;
        }
        
        .slider-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: 20px;
            right: 20px;
            display: flex;
            justify-content: space-between;
            z-index: 10;
            pointer-events: none;
        }
        
        .slider-arrow {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            pointer-events: all;
        }
        
        .slider-arrow:hover {
            background: #00aaf4;
            border-color: #00aaf4;
        }
        
        /* Featured Sidebar */
        .featured-sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .trending-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 15px;
            border-bottom: 2px solid #e5e7eb;
        }
        
        .trending-title {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a2e;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .trending-title i {
            color: #ff4757;
        }
        
        .trending-badge {
            background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
            color: #fff;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            animation: pulse-badge 2s infinite;
        }
        
        @keyframes pulse-badge {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        
        .trending-posts {
            display: flex;
            flex-direction: column;
            gap: 15px;
            flex: 1;
        }
        
        .trending-post {
            display: flex;
            gap: 15px;
            padding: 15px;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .trending-post:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
        }
        
        .trending-post-number {
            position: absolute;
            top: -8px;
            left: -8px;
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, #00aaf4 0%, #0066cc 100%);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
        }
        
        .trending-post-image {
            width: 80px;
            height: 80px;
            border-radius: 12px;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .trending-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .trending-post:hover .trending-post-image img {
            transform: scale(1.1);
        }
        
        .trending-post-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .trending-post-category {
            font-size: 10px;
            font-weight: 600;
            color: #00aaf4;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 6px;
        }
        
        .trending-post-title {
            font-size: 14px;
            font-weight: 600;
            color: #1a1a2e;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 6px;
            transition: color 0.3s ease;
        }
        
        .trending-post:hover .trending-post-title {
            color: #00aaf4;
        }
        
        .trending-post-meta {
            font-size: 11px;
            color: #6b7280;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .trending-post-meta i {
            color: #00aaf4;
            font-size: 10px;
        }
        
        /* Quick Stats Banner */
        .quick-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            padding: 20px;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            border-radius: 16px;
        }
        
        .quick-stat {
            text-align: center;
        }
        
        .quick-stat-number {
            font-size: 20px;
            font-weight: 700;
            color: #00aaf4;
        }
        
        .quick-stat-label {
            font-size: 10px;
            color: rgba(255,255,255,0.6);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        /* Section Title */
        .blog-section-title {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .blog-section-title h3 {
            font-size: 28px;
            font-weight: 700;
            color: #1a1a2e;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .blog-section-title h3 i {
            color: #00aaf4;
        }
        
        /* Category Filters */
        .category-filters {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .category-filter-btn {
            background: #fff;
            border: 2px solid #e5e7eb;
            color: #6b7280;
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .category-filter-btn:hover,
        .category-filter-btn.active {
            background: linear-gradient(135deg, #00aaf4 0%, #0066cc 100%);
            border-color: transparent;
            color: #fff;
        }
        
        /* Blog Grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .blog-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }
        
        .blog-card-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }
        
        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .blog-card:hover .blog-card-image img {
            transform: scale(1.1);
        }
        
        .blog-card-category {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(255, 255, 255, 0.95);
            color: #00aaf4;
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
        }
        
        .blog-card-content {
            padding: 25px;
        }
        
        .blog-card-date {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #6b7280;
            font-size: 13px;
            margin-bottom: 12px;
        }
        
        .blog-card-date i {
            color: #00aaf4;
        }
        
        .blog-card-content h4 {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 12px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.3s ease;
        }
        
        .blog-card-content h4:hover {
            color: #00aaf4;
        }
        
        .blog-card-content p {
            color: #6b7280;
            font-size: 14px;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 20px;
        }
        
        .blog-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 20px;
            border-top: 1px solid #f0f0f0;
        }
        
        .blog-card-author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .blog-card-author img {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .blog-card-author span {
            font-size: 13px;
            font-weight: 500;
            color: #1a1a2e;
        }
        
        .blog-card-link {
            color: #00aaf4;
            font-weight: 600;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.3s ease;
        }
        
        .blog-card-link:hover {
            gap: 10px;
            color: #0088cc;
        }
        
        /* Sidebar */
        .blog-sidebar {
            position: sticky;
            top: 120px;
        }
        
        .sidebar-widget {
            background: #fff;
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        
        .sidebar-widget-title {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f0f0f0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .sidebar-widget-title i {
            color: #00aaf4;
        }
        
        /* Search Widget */
        .search-form {
            position: relative;
        }
        
        .search-form input {
            width: 100%;
            padding: 15px 50px 15px 20px;
            border: 2px solid #e5e7eb;
            border-radius: 50px;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .search-form input:focus {
            outline: none;
            border-color: #00aaf4;
            box-shadow: 0 0 0 4px rgba(0, 170, 244, 0.1);
        }
        
        .search-form button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, #00aaf4 0%, #0066cc 100%);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: #fff;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .search-form button:hover {
            transform: translateY(-50%) scale(1.05);
        }
        
        /* Categories Widget */
        .category-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .category-list li {
            margin-bottom: 12px;
        }
        
        .category-list li:last-child {
            margin-bottom: 0;
        }
        
        .category-list a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 16px;
            background: #f8fafc;
            border-radius: 10px;
            color: #1a1a2e;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .category-list a:hover {
            background: linear-gradient(135deg, #00aaf4 0%, #0066cc 100%);
            color: #fff;
            transform: translateX(5px);
        }
        
        .category-list a span {
            background: rgba(0, 170, 244, 0.1);
            color: #00aaf4;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .category-list a:hover span {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
        }
        
        /* Recent Posts Widget */
        .recent-post-item {
            display: flex;
            gap: 15px;
            padding-bottom: 20px;
            margin-bottom: 20px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .recent-post-item:last-child {
            padding-bottom: 0;
            margin-bottom: 0;
            border-bottom: none;
        }
        
        .recent-post-image {
            width: 80px;
            height: 80px;
            border-radius: 12px;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .recent-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .recent-post-item:hover .recent-post-image img {
            transform: scale(1.1);
        }
        
        .recent-post-content h5 {
            font-size: 14px;
            font-weight: 600;
            color: #1a1a2e;
            margin-bottom: 8px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.3s ease;
        }
        
        .recent-post-item:hover .recent-post-content h5 {
            color: #00aaf4;
        }
        
        .recent-post-date {
            font-size: 12px;
            color: #6b7280;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .recent-post-date i {
            color: #00aaf4;
        }
        
        /* Tags Widget */
        .tags-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .tag-item {
            background: #f8fafc;
            color: #6b7280;
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .tag-item:hover {
            background: linear-gradient(135deg, #00aaf4 0%, #0066cc 100%);
            color: #fff;
        }
        
        /* Newsletter Widget */
        .newsletter-widget {
         background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
        }
        
        .newsletter-widget .sidebar-widget-title {
            color: #fff;
            border-bottom-color: rgba(255, 255, 255, 0.1);
            justify-content: center;
        }
        
        .newsletter-widget p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            margin-bottom: 20px;
        }
        
        .newsletter-form input {
            width: 100%;
            padding: 15px 20px;
            border: none;
            border-radius: 50px;
            margin-bottom: 15px;
            font-size: 14px;
        }
        
        .newsletter-form button {
            width: 100%;
            padding: 15px 30px;
            background: linear-gradient(135deg, #00aaf4 0%, #0066cc 100%);
            border: none;
            border-radius: 50px;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 170, 244, 0.3);
        }
        
        /* Pagination */
        .blog-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 50px;
        }
        
        .page-link-custom {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            color: #1a1a2e;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .page-link-custom:hover,
        .page-link-custom.active {
            background: linear-gradient(135deg, #00aaf4 0%, #0066cc 100%);
            border-color: transparent;
            color: #fff;
        }
        
        .page-link-custom.arrow {
            width: auto;
            padding: 0 20px;
        }

.blog-detail-hero {
    background: var(--gradient-dark);
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.blog-detail-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: var(--ocean-blue);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.2;
}

.blog-detail-category {
    display: inline-block;
    padding: 8px 20px;
    background: var(--ocean-blue);
    color: white;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.blog-detail-title {
    font-size: 48px;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    color: rgba(255,255,255,0.7);
    flex-wrap: wrap;
}

.blog-detail-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-detail-meta-item i {
    color: var(--ocean-blue);
}

.blog-author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.blog-detail-content {
    padding: 80px 0;
}

.blog-featured-image {
    border-radius: 20px;
    overflow: hidden;
    margin-top: -120px;
    margin-bottom: 50px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.blog-featured-image img {
    width: 100%;
    height: auto;
}

.blog-body {
    font-size: 17px;
    line-height: 1.9;
    color: var(--dark-gray);
}

.blog-body h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--dark-gray);
}

.blog-body h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--dark-gray);
}

.blog-body p {
    margin-bottom: 20px;
}

.blog-body ul,
.blog-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-body li {
    margin-bottom: 10px;
}

.blog-body blockquote {
    margin: 30px 0;
    padding: 30px 40px;
    background: var(--light-gray);
    border-left: 4px solid var(--ocean-blue);
    border-radius: 0 16px 16px 0;
    font-size: 18px;
    font-style: italic;
    color: var(--dark-gray);
}

.blog-body img {
    max-width: 100%;
    border-radius: 16px;
    margin: 30px 0;
}

.blog-body code {
    background: var(--light-gray);
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

.blog-body pre {
    background: var(--dark-bg);
    color: white;
    padding: 25px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 25px 0;
}

.blog-body pre code {
    background: transparent;
    padding: 0;
}

/* Blog Tags */
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
}

.blog-tag {
    padding: 8px 16px;
    background: var(--light-gray);
    color: var(--text-gray);
    border-radius: 25px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background: var(--ocean-blue);
    color: white;
}

/* Blog Share */
.blog-share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.blog-share-label {
    font-weight: 600;
    color: var(--dark-gray);
}

.blog-share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.blog-share-btn.facebook {
    background: #1877f2;
}

.blog-share-btn.twitter {
    background: #1da1f2;
}

.blog-share-btn.linkedin {
    background: #0a66c2;
}

.blog-share-btn.whatsapp {
    background: #25d366;
}

.blog-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    color: white;
}

/* Related Posts */
.related-posts {
    background: var(--light-gray);
    padding: 80px 0;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.sidebar-title {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--ocean-blue);
}

.sidebar-search {
    position: relative;
}

.sidebar-search input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.sidebar-search input:focus {
    outline: none;
    border-color: var(--ocean-blue);
}

.sidebar-search button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    background: var(--ocean-blue);
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-search button:hover {
    background: var(--ocean-blue-dark);
}

.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-categories li {
    margin-bottom: 12px;
}

.sidebar-categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: var(--light-gray);
    border-radius: 10px;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.sidebar-categories a:hover {
    background: var(--ocean-blue);
    color: white;
}

.sidebar-categories span {
    background: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 12px;
}

.sidebar-recent-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.sidebar-recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-recent-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-recent-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-recent-content h4 {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

.sidebar-recent-post:hover .sidebar-recent-content h4 {
    color: var(--ocean-blue);
}

.sidebar-recent-date {
    font-size: 12px;
    color: var(--text-gray);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
   @media screen and (min-width:992px) and (max-width: 1199.98px) {
         .hero {
            padding-bottom: 60px;
         }
    }

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 38px;
    }
    
    .hero-content-slider {
        min-height: 320px;
    }
    
    .hero-visual-slider {
        min-height: 400px;
        margin-top: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }

    /* Force Bootstrap collapse wrapper to not hide on mobile */
    .navbar-collapse {
        display: block !important;
        height: auto !important;
        overflow: visible !important;
        visibility: visible !important;
    }

    .navbar-collapse.collapsing {
        height: auto !important;
        transition: none !important;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(280px, 80vw);
        height: 100vh;
        height: 100dvh;
        background: #ffffff;
        flex-direction: column;
        padding: 70px 20px 30px;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 2px;
        z-index: 10000;
        box-shadow: -4px 0 24px rgba(0,0,0,0.1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        right: 0;
    }

    /* Overlay backdrop — separate from menu to avoid dark bleed */
    .nav-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 9998;
        opacity: 0;
        transition: opacity 0.35s ease;
    }

    .nav-menu-overlay.active {
        display: block;
        opacity: 1;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link-custom {
        color: var(--dark-gray) !important;
        font-size: 15px;
        display: block;
        padding: 10px 14px !important;
        border-radius: 8px;
        transition: all 0.2s ease;
    }

    .nav-link-custom:hover,
    .nav-link-custom.active {
        background: rgba(0,170,244,0.06);
        color: var(--ocean-blue) !important;
    }

    .nav-link-custom::after,
    .nav-link-custom.active::after {
        display: none;
    }

    /* Keep mobile nav links dark even when page is scrolled */
    .navbar-custom.scrolled .nav-link-custom {
        color: var(--dark-gray) !important;
    }

    .navbar-custom.scrolled .nav-link-custom:hover,
    .navbar-custom.scrolled .nav-link-custom.active {
        color: var(--ocean-blue) !important;
    }

    /* Mobile CTA button */
    .nav-menu .btn-nav {
        margin-top: 10px;
        display: block;
        text-align: center;
        width: 100%;
        padding: 11px 20px;
        font-size: 14px;
    }

    /* Mobile nav close button */
    .nav-menu-close-li {
        position: absolute;
        top: 16px;
        right: 16px;
        width: auto !important;
    }

    .nav-menu-close {
        width: 36px;
        height: 36px;
        border: none;
        background: #f1f5f9;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: var(--dark-gray);
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .nav-menu-close:hover {
        background: #e2e8f0;
        color: #ef4444;
    }

    /* Hamburger animation when active */
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(2) {
        opacity: 0;
    }
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .process-timeline::before {
        display: none;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .blog-card.featured {
        flex-direction: column;
    }

    .blog-card.featured .blog-image,
    .blog-card.featured .blog-content {
        width: 100%;
    }

    .blog-detail-title {
        font-size: 36px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-content-slider {
        min-height: 280px;
    }
    
    .hero-visual-slider {
        min-height: 350px;
    }
    
    .hero-desc {
        font-size: 16px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    /* .section {
        padding: 70px 0;
    } */

    .section-title {
        font-size: 28px;
    }

    .footer-bottom {
        text-align: center;
                justify-content: center !important;
    }

    .footer-bottom-links {
        margin-top: 15px;
    }

    .footer-bottom-links a {
        margin: 0 15px;
                font-size: 12px;
    }

    .portfolio-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-card.featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    .portfolio-card.featured .portfolio-image {
        min-height: 280px;
        height: 280px;
    }

    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .blog-detail-title {
        font-size: 28px;
    }

    .blog-detail-meta {
        gap: 15px;
    }

    /* Hero & About CTA buttons - responsive alignment fix */
    .hero-content-slide .d-flex,
    .about-cta {
        display: flex !important;
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero-content-slide .d-flex .btn-primary-custom,
    .hero-content-slide .d-flex .btn-secondary-custom,
    .about-cta .btn-primary-custom,
    .about-cta .btn-secondary-custom {
        margin-left: 0 !important;
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* Small phones (iPhone SE, iPhone Mini, etc.) */
@media (max-width: 575.98px) {
    .hero-content-slide .d-flex,
    .about-cta {
        display: flex !important;
        /* flex-direction: column; */
        align-items: flex-start;
        gap: 12px;
    }

    .hero-content-slide .d-flex .btn-primary-custom,
    .hero-content-slide .d-flex .btn-secondary-custom,
    .about-cta .btn-primary-custom,
    .about-cta .btn-secondary-custom {
        margin-left: 0 !important;
        padding: 14px 28px;
        font-size: 15px;
        width: auto;
        text-align: center;
        justify-content: center;
    }

     .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-desc {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
    }
}

/* Very small phones (iPhone SE 1st gen, Galaxy Fold, etc.) */
@media (max-width: 399.98px) {
    .hero-content-slide .d-flex .btn-primary-custom,
    .hero-content-slide .d-flex .btn-secondary-custom,
    .about-cta .btn-primary-custom,
    .about-cta .btn-secondary-custom {
        padding: 12px 22px;
        font-size: 14px;
        width: 100%;
    }

    .hero-title {
        font-size: 22px;
    }
}

     @media (max-width: 1199.98px) {
            .nav-menu {
                gap: 20px;
            }

            .nav-link-custom {
                font-size: 14px;
            }

            .btn-nav {
                padding: 10px 20px;
                font-size: 14px;
            }

            .logo-icon {
                width: 115px;
                height: 52px;
            }

            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .blog-hero-stats {
                gap: 20px;
            }
            
            .hero-stat-item {
                padding: 16px 20px;
            }
            
            .hero-stat-item .stat-number {
                font-size: 24px;
            }
            
            .featured-grid {
                grid-template-columns: 1fr;
            }
            
            .featured-main {
                min-height: 400px;
            }
            
            .featured-sidebar {
                flex-direction: row;
                flex-wrap: wrap;
            }
            
            .trending-header {
                width: 100%;
            }
            
            .trending-posts {
                flex-direction: row;
                flex-wrap: wrap;
            }
            
            .trending-post {
                flex: 1;
                min-width: 280px;
            }
            
            .quick-stats {
                width: 100%;
            }
        }
        
        @media (max-width: 991.98px) {
            .blog-hero {
              padding: 45px 0 50px;
            }
            
            .blog-hero-inner {
                flex-direction: column;
                text-align: center;
                gap: 30px;
            }
            
            .blog-hero p {
                max-width: 100%;
            }
            
            .blog-breadcrumb {
                margin-left: auto;
                margin-right: auto;
            }
            
            .blog-hero h1 {
                font-size: 34px;
            }
            
            .featured-slide-title {
                font-size: 24px;
            }
            
            .featured-slide-overlay {
                padding: 30px;
            }
            
            .blog-sidebar {
                position: static;
                margin-top: 50px;
            }
        }
        
        @media (max-width: 767.98px) {
            .blog-hero {
              padding: 35px 0 40px;
            }
            
            .blog-hero h1 {
                font-size: 28px;
            }
            
            .blog-hero p {
                font-size: 14px;
            }
            
            .blog-hero-stats {
                gap: 12px;
            }
            
            .hero-stat-item {
                padding: 12px 16px;
            }
            
            .hero-stat-item .stat-number {
                font-size: 20px;
            }
            
            .hero-stat-item .stat-label {
                font-size: 10px;
            }
            
            .featured-main {
                min-height: 350px;
            }
            
            .featured-slide-title {
                font-size: 20px;
            }
            
            .featured-slide-excerpt {
                display: none;
            }
            
            .featured-slide-overlay {
                padding: 20px;
            }
            
            .slider-arrow {
                width: 36px;
                height: 36px;
            }
            
            .trending-posts {
                flex-direction: column;
            }
            
            .trending-post {
                min-width: 100%;
            }
            
            .quick-stats {
                grid-template-columns: repeat(3, 1fr);
                padding: 15px;
            }
            
            .quick-stat-number {
                font-size: 16px;
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            .blog-section-title {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .category-filters {
                width: 100%;
                overflow-x: auto;
                padding-bottom: 10px;
            }
        }


/* ============================================
   SOLUTIONS SHOWCASE SECTION
   ============================================ */
.solutions-showcase-section {
    position: relative;
    /* padding: 30px 0 60px; */
    background: #ffffff;
    overflow: hidden;
}

.solutions-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 170, 244, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(124, 58, 237, 0.03) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23e5e7eb' opacity='0.5'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* --- Left Content --- */
.solutions-content {
    padding-right: 40px;
}

/* Solutions Content Slider */
.solutions-content-slider {
    position: relative;
    min-height: 380px;
    margin-bottom: 32px;
}

.solutions-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.solutions-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Staggered animations for slide children */
.solutions-slide .solutions-tagline {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
}

.solutions-slide .solutions-main-title {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
}

.solutions-slide .solutions-divider {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.25s;
}

.solutions-slide .solutions-description {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.3s;
}

.solutions-slide .solutions-cta-group {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.4s;
}

.solutions-slide.active .solutions-tagline,
.solutions-slide.active .solutions-main-title,
.solutions-slide.active .solutions-divider,
.solutions-slide.active .solutions-description,
.solutions-slide.active .solutions-cta-group {
    opacity: 1;
    transform: translateY(0);
}

/* Active product indicator on the right card */
.fsc-item.fsc-item-active {
    background: linear-gradient(90deg, rgba(0, 170, 244, 0.06), rgba(0, 170, 244, 0.01));
}

.fsc-item.fsc-item-active::after {
    width: 100%;
}

.fsc-item.fsc-item-active .fsc-icon {
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.fsc-item.fsc-item-active .fsc-info h4 {
    color: var(--icon-color, var(--ocean-blue));
}

.fsc-item.fsc-item-active .fsc-arrow {
    color: var(--icon-color, var(--ocean-blue));
    transform: translateX(4px);
}

/* Slide progress bar inside the product card */
.solutions-slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ocean-blue), #7c3aed);
    border-radius: 0 0 20px 20px;
    width: 0%;
    transition: width 0.05s linear;
    z-index: 2;
}

.solutions-tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(0, 170, 244, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    border: 1px solid rgba(0, 170, 244, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ocean-blue);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.tagline-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ocean-blue);
    display: inline-block;
    animation: taglinePulse 2s ease-in-out infinite;
}

@keyframes taglinePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.solutions-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: #1a1a2e;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.solutions-main-title .title-highlight {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solutions-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--ocean-blue), #7c3aed);
    border-radius: 2px;
    margin-bottom: 24px;
}

.solutions-description {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 36px;
    max-width: 540px;
}

.solutions-description .underline-accent {
    text-decoration: underline;
    text-decoration-color: var(--ocean-blue);
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    transition: color 0.3s ease;
}

.solutions-description .underline-accent:hover {
    color: var(--ocean-blue);
}

/* CTA Buttons */
.solutions-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.solutions-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.solutions-cta-btn.primary {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, #0077cc 100%);
    color: #fff;
    box-shadow: 0 8px 30px rgba(0, 170, 244, 0.3);
}

.solutions-cta-btn.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.solutions-cta-btn.primary:hover::before {
    left: 100%;
}

.solutions-cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 170, 244, 0.4);
    color: #fff;
}

.solutions-cta-btn.primary i {
    transition: transform 0.3s ease;
}

.solutions-cta-btn.primary:hover i {
    transform: translateX(4px);
}

.solutions-cta-btn.secondary {
    background: transparent;
    color: #1a1a2e;
    border: 2px solid #e5e7eb;
    padding: 13px 30px;
}

.solutions-cta-btn.secondary:hover {
    border-color: var(--ocean-blue);
    color: var(--ocean-blue);
    background: rgba(0, 170, 244, 0.04);
    transform: translateY(-2px);
}

.solutions-cta-btn.secondary i {
    color: var(--ocean-blue);
    font-size: 18px;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.trust-item i {
    color: var(--ocean-blue);
    font-size: 14px;
}

/* --- Right Featured Services Card --- */
.featured-services-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #f0f0f5;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 20px 60px rgba(0, 0, 0, 0.06);
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.featured-services-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 30px 80px rgba(0, 0, 0, 0.1);
}

.fsc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 22px 28px 16px;
    border-bottom: 1px solid #f3f4f6;
}

.fsc-header-icon {
    color: var(--ocean-blue);
    font-size: 16px;
}

.fsc-header-text {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #374151;
}

.fsc-list {
    padding: 8px 0;
}

.fsc-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 28px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.fsc-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 170, 244, 0.04), transparent);
    transition: width 0.4s ease;
}

.fsc-item:hover::after {
    width: 100%;
}

.fsc-item:hover {
    text-decoration: none;
}

.fsc-item:not(:last-child) {
    border-bottom: 1px solid #f9fafb;
}

.fsc-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--icon-bg, rgba(0,170,244,0.1));
    color: var(--icon-color, var(--ocean-blue));
    font-size: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.fsc-item:hover .fsc-icon {
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.fsc-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.fsc-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.fsc-item:hover .fsc-info h4 {
    color: var(--icon-color, var(--ocean-blue));
}

.fsc-info p {
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
    line-height: 1.4;
}

.fsc-arrow {
    color: #d1d5db;
    font-size: 12px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.fsc-item:hover .fsc-arrow {
    color: var(--icon-color, var(--ocean-blue));
    transform: translateX(4px);
}

.fsc-explore-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 28px;
    border-top: 1px solid #f3f4f6;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--ocean-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
}

.fsc-explore-link:hover {
    color: #0077cc;
    background: linear-gradient(180deg, #fff 0%, #eef6ff 100%);
    text-decoration: none;
}

.fsc-explore-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.fsc-explore-link:hover i {
    transform: translateX(4px);
}

/* --- Bottom Stats Bar --- */
.solutions-illustration-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 70px;
    padding: 0 10px;
}

.sib-stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid #f0f0f5;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.sib-stat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--ocean-blue), #7c3aed);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.sib-stat-card:hover::before {
    transform: scaleX(1);
}

.sib-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 170, 244, 0.15);
}

.sib-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 170, 244, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--ocean-blue);
    transition: all 0.3s ease;
}

.sib-stat-card:hover .sib-icon {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, #7c3aed 100%);
    color: #fff;
    transform: scale(1.05);
}

.sib-data {
    display: flex;
    flex-direction: column;
}

.sib-number {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.1;
}

.sib-label {
    font-size: 13px;
    color: #9ca3af;
    font-weight: 500;
    margin-top: 2px;
}

/* --- Responsive --- */
@media (max-width: 1199px) {
    .solutions-main-title {
        font-size: 40px;
    }
    
    .solutions-content {
        padding-right: 20px;
    }

    .solutions-content-slider {
        min-height: 360px;
    }
}

@media (max-width: 991px) {
    .solutions-showcase-section {
        padding: 70px 0 50px;
    }
    
    .solutions-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }

    .solutions-content-slider {
        min-height: 380px;
    }
    
    .solutions-main-title {
        font-size: 36px;
    }
    
    .solutions-main-title br {
        display: none;
    }
    
    .solutions-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .solutions-cta-group {
        justify-content: center;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .solutions-tagline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .solutions-divider {
        margin-left: auto;
        margin-right: auto;
    }
    
    .featured-services-card {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .solutions-illustration-bar {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 50px;
    }
}

@media (max-width: 575px) {
    .solutions-showcase-section {
        padding: 50px 0 40px;
    }

    .solutions-content-slider {
        min-height: 420px;
    }
    
    .solutions-main-title {
        font-size: 28px;
    }
    
    .solutions-description {
        font-size: 15px;
    }
    
    .solutions-cta-btn {
        padding: 13px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
    
    .solutions-cta-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .trust-indicators {
        gap: 16px;
    }
    
    .solutions-illustration-bar {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .fsc-item {
        padding: 14px 20px;
    }
    
    .sib-stat-card {
        padding: 20px;
    }
    
    .sib-number {
        font-size: 22px;
    }
}

/* ================================================================
   PRODUCT DETAILS PAGE — ZOHO-INSPIRED PROFESSIONAL DESIGN
   ================================================================ */

/* --- Particles Background --- */
.pd-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.pd-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--ocean-blue);
    animation: pdParticleFloat 5s ease-in-out infinite;
}

@keyframes pdParticleFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.3); }
}

/* --- Navigation --- */
.pd-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 20px rgba(0,0,0,0.03);
    transition: all 0.3s;
}

.pd-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.pd-nav-logo img {
    height: 38px;
}

.pd-nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pd-nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
}

.pd-nav-link:hover {
    color: var(--ocean-blue);
    background: rgba(0,170,244,0.04);
}

.pd-nav-link.active {
    color: var(--ocean-blue);
    background: rgba(0,170,244,0.08);
    /* font-weight: 600; */
}

.pd-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, #0077cc 100%);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 600 !important;
    font-size: 14px;
    margin-left: 12px;
    transition: all 0.3s !important;
    box-shadow: 0 4px 15px rgba(0,170,244,0.25);
}

.pd-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,170,244,0.35);
    color: #fff !important;
}

.pd-nav-toggle {
    display: none;
    background: none;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 18px;
    color: #374151;
    cursor: pointer;
}

/* --- pd-nav inside site-header: stack below top-bar instead of independent fixed --- */
.site-header .pd-nav {
    position: relative;
    top: auto;
    left: auto;
    z-index: 1;
}

/* --- Breadcrumb --- */
.pd-breadcrumb-inline {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
    padding-top: 10px;
}

.pd-breadcrumb-inline a,
.pd-breadcrumb-inline span {
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
}

.pd-breadcrumb-inline a:hover {
    color: var(--ocean-blue);
}

.pd-breadcrumb-inline i {
    font-size: 8px;
    margin: 0 10px;
    color: #cbd5e1;
}

.pd-breadcrumb-inline span {
    color: #475569;
}

/* --- Hero Section --- */
.pd-hero {
    position: relative;
    padding: 0 0 100px;
    background: linear-gradient(175deg, #f8fafc 0%, #eef5ff 40%, #ffffff 100%);
    overflow: hidden;
}

.pd-hero-content {
    padding-right: 30px;
}

.pd-hero-badge-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.pd-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,170,244,0.06);
    border: 1px solid rgba(0,170,244,0.12);
    color: var(--ocean-blue);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.pd-hero-badge-v {
    background: rgba(124,58,237,0.06);
    border-color: rgba(124,58,237,0.12);
    color: #7c3aed;
}

.pd-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 54px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.pd-gradient-text {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, #7c3aed 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pd-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 24px;
    max-width: 500px;
}

.pd-hero-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.pd-stars i {
    color: #f59e0b;
    font-size: 15px;
}

.pd-hero-rating strong {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #0f172a;
    font-weight: 700;
}

.pd-rating-divider {
    color: #e2e8f0;
    font-weight: 300;
}

.pd-rating-count {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
}

.pd-hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.pd-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, #0077cc 100%);
    color: #fff;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 8px 30px rgba(0,170,244,0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
}

.pd-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.pd-btn-primary:hover::before {
    left: 100%;
}

.pd-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0,170,244,0.4);
    color: #fff;
}

.pd-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    border: 2px solid #e2e8f0;
    color: #475569;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    background: transparent;
}

.pd-btn-outline:hover {
    border-color: var(--ocean-blue);
    color: var(--ocean-blue);
    background: rgba(0,170,244,0.03);
}

.pd-btn-ghost-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    border: 2px solid rgba(255,255,255,0.35);
    color: #fff;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.pd-btn-ghost-white:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.pd-hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.pd-trust-item {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
}

.pd-trust-item i {
    color: #10b981;
    font-size: 14px;
}

/* --- Hero Inquiry Form Card --- */
.pd-hero-form-card {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.7);
    box-shadow: 
        0 30px 80px rgba(0,0,0,0.08),
        0 0 0 1px rgba(0,0,0,0.02),
        inset 0 1px 0 rgba(255,255,255,0.8);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
}

.pd-hero-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ocean-blue), #7c3aed, #ec4899);
    border-radius: 24px 24px 0 0;
}

.pd-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.pd-form-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.pd-form-header h3 span {
    color: var(--ocean-blue);
}

.pd-form-header p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #94a3b8;
    margin: 0;
}

.pd-hero-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pd-form-group {
    position: relative;
}

.pd-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s;
    overflow: hidden;
}

.pd-input-wrap:focus-within {
    border-color: var(--ocean-blue);
    box-shadow: 0 0 0 3px rgba(0,170,244,0.08);
}

.pd-input-wrap > i {
    position: absolute;
    left: 16px;
    font-size: 15px;
    color: #cbd5e1;
    transition: color 0.3s;
    pointer-events: none;
    z-index: 2;
}

.pd-input-wrap:focus-within > i {
    color: var(--ocean-blue);
}

.pd-input-wrap input {
    width: 100%;
    border: none;
    outline: none;
    padding: 15px 16px 15px 46px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #0f172a;
    background: transparent;
}

.pd-input-wrap input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

/* Password field */
.pd-input-password .pd-pass-toggle {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 8px 12px;
    color: #94a3b8;
    cursor: pointer;
    font-size: 15px;
    transition: color 0.3s;
    z-index: 2;
}

.pd-input-password .pd-pass-toggle:hover {
    color: #64748b;
}

/* Phone field — intl-tel-input plugin overrides */
.pd-input-wrap.pd-input-phone {
    overflow: visible;
    padding: 0;
}

.pd-input-phone .iti {
    width: 100%;
    display: block;
}

.pd-input-phone .iti__flag-container {
    z-index: 3;
}

.pd-input-phone .iti__selected-flag {
    border-right: 1.5px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 12px 0 0 12px;
    transition: background 0.3s;
    outline: none;
    padding: 0 12px 0 14px;
    height: 100%;
}

.pd-input-phone .iti__selected-flag:hover,
.pd-input-phone .iti__selected-flag:focus {
    background: #f1f5f9;
}

.pd-input-phone .iti__selected-dial-code {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    margin-left: 6px;
}

.pd-input-phone .iti__arrow {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #94a3b8;
    margin-left: 6px;
}

.pd-input-phone .iti__arrow--up {
    border-top: none;
    border-bottom: 5px solid #94a3b8;
}

/* Override generic .pd-input-wrap input for phone — let plugin set padding-left */
.pd-input-wrap.pd-input-phone input,
.pd-input-wrap.pd-input-phone input[type="tel"] {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 16px;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #1e293b;
    width: 100%;
    height: 52px;
    box-sizing: border-box;
}

.pd-input-phone input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

/* Phone validation error state */
.pd-input-wrap.pd-input-phone.pd-phone-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

/* intl-tel-input dropdown styling (appended to body) */
.iti__country-list {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.06);
    max-height: 260px;
    margin-top: 4px;
    z-index: 99999;
    background: #fff;
    overflow-x: hidden;
}

.iti__country-list .iti__country {
    padding: 10px 14px;
    transition: background 0.15s;
}

.iti__country-list .iti__country:hover,
.iti__country-list .iti__country--highlight {
    background: #f0f9ff;
}

.iti__country-list .iti__country-name {
    font-weight: 500;
    color: #334155;
}

.iti__country-list .iti__dial-code {
    color: var(--ocean-blue);
    font-weight: 600;
}

.iti__country-list .iti__divider {
    border-bottom: 1px solid #e2e8f0;
    margin: 0;
    padding: 0;
}

.iti__flag-box {
    margin-right: 8px;
}

.iti__flag {
    border-radius: 2px;
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@17.0.21/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
        background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@17.0.21/build/img/flags@2x.png");
    }
}

/* Checkbox */
.pd-checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
    margin: 4px 0;
}

.pd-checkbox-wrap input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.pd-checkmark {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.pd-checkbox-wrap input:checked ~ .pd-checkmark {
    background: var(--ocean-blue);
    border-color: var(--ocean-blue);
}

.pd-checkbox-wrap input:checked ~ .pd-checkmark::after {
    content: '';
    display: block;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.pd-checkbox-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

.pd-checkbox-text a {
    color: var(--ocean-blue);
    font-weight: 600;
    text-decoration: underline;
}

.pd-checkbox-text a:hover {
    color: #0077cc;
}

/* Submit Button */
.pd-form-submit {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(220,38,38,0.25);
    position: relative;
    overflow: hidden;
}

.pd-form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s;
}

.pd-form-submit:hover::before {
    left: 100%;
}

.pd-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(220,38,38,0.35);
}

.pd-form-submit:disabled {
    opacity: 0.8;
    cursor: not-allowed;
    transform: none;
}

.pd-form-submit.pd-form-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 20px rgba(16,185,129,0.25);
}

/* Divider */
.pd-form-divider {
    text-align: center;
    position: relative;
    margin: 4px 0;
}

.pd-form-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
}

.pd-form-divider span {
    position: relative;
    background: rgba(255,255,255,0.92);
    padding: 0 14px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

/* Social Buttons */
.pd-form-social {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.pd-social-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
    border: 1.5px solid #e2e8f0;
    background: #fff;
}

.pd-social-btn:hover {
    transform: translateY(-3px);
}

.pd-social-google {
    color: #ea4335;
}

.pd-social-google:hover {
    background: #ea4335;
    color: #fff;
    border-color: #ea4335;
    box-shadow: 0 6px 20px rgba(234,67,53,0.25);
}

.pd-social-linkedin {
    color: #0a66c2;
}

.pd-social-linkedin:hover {
    background: #0a66c2;
    color: #fff;
    border-color: #0a66c2;
    box-shadow: 0 6px 20px rgba(10,102,194,0.25);
}

.pd-social-whatsapp {
    color: #25d366;
}

.pd-social-whatsapp:hover {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
    box-shadow: 0 6px 20px rgba(37,211,102,0.25);
}

/* Shake animation for checkbox validation */
@keyframes pdShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

.pd-shake {
    animation: pdShake 0.5s ease;
}

/* --- Trust Strip --- */
.pd-trust-strip {
    background: #0f172a;
    padding: 32px 0;
    position: relative;
}

.pd-trust-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,170,244,0.05) 0%, transparent 50%, rgba(124,58,237,0.05) 100%);
    pointer-events: none;
}

.pd-trust-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pd-trust-stat {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pd-trust-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0,170,244,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--ocean-blue);
}

.pd-trust-stat-info strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.pd-trust-stat-info span {
    font-size: 13px;
    color: #94a3b8;
    font-family: 'Inter', sans-serif;
}

.pd-trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.08);
}

/* --- Section Common --- */
.pd-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ocean-blue);
    background: rgba(0,170,244,0.05);
    border: 1px solid rgba(0,170,244,0.1);
    padding: 7px 20px;
    border-radius: 50px;
    margin-bottom: 18px;
    font-family: 'Inter', sans-serif;
}

.pd-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.pd-section-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #64748b;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Tabbed Product Showcase --- */
/* =============================================
   BIG SCREENSHOT SLIDER — Zoho-Inspired
   ============================================= */
.pd-showcase {
    padding: 30px 0 80px;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    overflow: visible;
}

/* --- Feature Navigation Pills --- */
.pd-sc-pills {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    /* margin-bottom: 50px; */
}

.pd-sc-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border: 2px solid #f1f5f9;
    border-radius: 50px;
    background: #fff;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
}

.pd-sc-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--ocean-blue), #6366f1);
    opacity: 0;
    transition: opacity 0.35s;
    border-radius: 50px;
}

.pd-sc-pill i {
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.pd-sc-pill span {
    position: relative;
    z-index: 1;
}

.pd-sc-pill:hover {
    border-color: rgba(0,170,244,0.3);
    color: var(--ocean-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,170,244,0.08);
}

.pd-sc-pill.active {
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 30px rgba(0,170,244,0.25);
    transform: translateY(-2px);
}

.pd-sc-pill.active::before {
    opacity: 1;
}

/* --- Big Slider Container --- */
.pd-sc-slider {
    position: relative;
    overflow: hidden;
    margin: 0 auto 50px;
}

/* Progress Bar */
.pd-sc-progress {
    height: 3px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0;
}

.pd-sc-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--ocean-blue), #6366f1);
    border-radius: 4px;
    width: 0%;
    transition: width 0.3s linear;
}

.pd-sc-progress-fill.pd-animating {
    transition: width 6s linear;
    width: 100% !important;
}

/* --- Carousel Track (horizontal flex, JS translateX) --- */
.pd-sc-track {
    display: flex;
    gap: 24px;
    transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding: 36px 0;
}

/* --- Individual Slide --- */
.pd-sc-slide {
    flex: 0 0 58%;
    transition: transform 0.65s cubic-bezier(0.4,0,0.2,1),
                opacity 0.65s cubic-bezier(0.4,0,0.2,1),
                filter 0.65s cubic-bezier(0.4,0,0.2,1);
    transform: scale(0.88);
    opacity: 0.35;
    filter: saturate(0.5) brightness(0.85);
    cursor: pointer;
}

.pd-sc-slide.active {
    transform: scale(1);
    opacity: 1;
    filter: saturate(1) brightness(1);
    cursor: default;
}

/* --- Slide Card (with browser frame) --- */
.pd-sc-card {
    border-radius: 16px;
    overflow: hidden;
    background: #1a1a2e;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: box-shadow 0.65s cubic-bezier(0.4,0,0.2,1);
}

.pd-sc-slide.active .pd-sc-card {
    box-shadow:
        0 35px 80px rgba(0,0,0,0.18),
        0 12px 36px rgba(0,0,0,0.1);
}

/* Browser bar inside each card */
.pd-sc-browser-bar {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    background: linear-gradient(180deg, #252547 0%, #1e1e3a 100%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    gap: 12px;
}

.pd-sc-dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.pd-sc-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.pd-sc-dots span:nth-child(1) { background: #ff5f56; }
.pd-sc-dots span:nth-child(2) { background: #ffbd2e; }
.pd-sc-dots span:nth-child(3) { background: #27c93f; }

.pd-sc-url {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.06);
    padding: 5px 12px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}

.pd-sc-url i {
    font-size: 9px;
    color: #27c93f;
}

.pd-sc-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

/* --- Slider Arrows --- */
.pd-sc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    border: none;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #334155;
    z-index: 10;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.pd-sc-arrow:hover {
    background: #fff;
    box-shadow: 0 8px 35px rgba(0,0,0,0.2);
    transform: translateY(-50%) scale(1.1);
}

.pd-sc-prev { left: 20px; }
.pd-sc-next { right: 20px; }

/* --- Slide Counter Badge --- */
.pd-sc-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(12px);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    z-index: 8;
    letter-spacing: 1px;
}

.pd-sc-counter .pd-sc-current {
    color: var(--ocean-blue);
    font-weight: 700;
}

/* --- Feature Info Cards — overlaps slider bottom --- */
.pd-sc-info-row {
    position: relative;
    z-index: 12;
    margin-top: -220px;
    min-height: 120px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.pd-sc-info {
    display: none;
    animation: pdScInfoIn 0.5s ease;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 28px 32px;
    border: 1.5px solid rgba(255,255,255,0.6);
    box-shadow:
        0 16px 48px rgba(0,0,0,0.12),
        0 4px 16px rgba(0,0,0,0.06);
}

.pd-sc-info.active {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

@keyframes pdScInfoIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.pd-sc-info-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0,170,244,0.1), rgba(99,102,241,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--ocean-blue);
}

.pd-sc-info-text {
    flex: 1;
}

.pd-sc-info-text h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.pd-sc-info-text p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

.pd-sc-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pd-sc-info-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
}

.pd-sc-info-list li i {
    color: #10b981;
    font-size: 12px;
}

/* --- Dot Indicators --- */
.pd-sc-dots-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.pd-sc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    background: transparent;
    cursor: pointer;
    transition: all 0.35s;
    padding: 0;
}

.pd-sc-dot:hover {
    border-color: var(--ocean-blue);
}

.pd-sc-dot.active {
    background: var(--ocean-blue);
    border-color: var(--ocean-blue);
    width: 28px;
    border-radius: 10px;
}

/* --- Screenshot Gallery Carousel --- */
.pd-gallery {
    /* padding: 0px 0; */
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.pd-gallery-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.pd-gallery-track-container {
    overflow: hidden;
    flex: 1;
    border-radius: 16px;
}

.pd-gallery-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pd-gallery-item {
    min-width: calc(33.333% - 14px);
    flex-shrink: 0;
}

.pd-gallery-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s;
}

.pd-gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.12);
}

.pd-gallery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s;
}

.pd-gallery-card:hover img {
    transform: scale(1.08);
}

.pd-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s;
}

.pd-gallery-card:hover .pd-gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.pd-gallery-tag {
    display: inline-block;
    background: var(--ocean-blue);
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.pd-gallery-overlay h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.pd-gallery-overlay p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* Gallery Arrows */
.pd-gallery-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: #fff;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.pd-gallery-arrow:hover {
    border-color: var(--ocean-blue);
    color: var(--ocean-blue);
    box-shadow: 0 6px 20px rgba(0,170,244,0.15);
}

.pd-gallery-arrow.disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* Gallery Dots */
.pd-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.pd-gdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.pd-gdot.active {
    background: var(--ocean-blue);
    width: 24px;
    border-radius: 4px;
}

/* --- Features Grid --- */
.pd-features {
    /* padding: 100px 0; */
    background: #fff;
}

.pd-feature-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 18px;
    padding: 36px 28px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pd-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--fc, var(--ocean-blue)), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.pd-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.07);
    border-color: transparent;
}

.pd-feature-card:hover::before {
    opacity: 1;
}

.pd-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 22px;
    color: var(--fc);
    background: var(--fb);
    transition: all 0.4s;
}

.pd-feature-card:hover .pd-feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.pd-feature-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.pd-feature-card p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* --- Tech Stack --- */
.pd-tech {
    /* padding: 50px 0; */
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.pd-tech-heading {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #475569;
    margin-bottom: 24px;
}

.pd-tech-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.pd-tech-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.pd-tech-chip:hover {
    border-color: var(--ocean-blue);
    color: var(--ocean-blue);
    box-shadow: 0 4px 14px rgba(0,170,244,0.1);
    transform: translateY(-2px);
}

.pd-tech-chip i {
    font-size: 16px;
}

/* --- Reviews (Split Layout) --- */
.pd-reviews {
    /* padding: 100px 0; */
    background: #f8fafc;
}

.pd-reviews-sidebar {
    position: sticky;
    top: 100px;
}

.pd-overall-rating-block {
    margin: 24px 0;
}

.pd-or-score {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 6px;
}

.pd-or-stars i {
    color: #f59e0b;
    font-size: 18px;
}

.pd-or-count {
    font-size: 14px;
    color: #94a3b8;
    margin-top: 6px;
    font-family: 'Inter', sans-serif;
}

.pd-rating-bars {
    margin-top: 20px;
}

.pd-rating-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    font-size: 13px;
    color: #64748b;
    font-family: 'Inter', sans-serif;
}

.pd-rating-bar-row i {
    color: #f59e0b;
    font-size: 10px;
}

.pd-bar {
    flex: 1;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

.pd-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #f97316);
    border-radius: 3px;
    transition: width 1s ease;
}

/* Reviews Grid */
.pd-reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pd-review-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 18px;
    padding: 30px;
    transition: all 0.3s;
}

.pd-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.06);
    border-color: transparent;
}

.pd-review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.pd-review-stars i {
    color: #f59e0b;
    font-size: 14px;
}

.pd-review-date {
    font-size: 12px;
    color: #94a3b8;
    font-family: 'Inter', sans-serif;
}

.pd-review-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.pd-review-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.pd-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.pd-review-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--ocean-blue), #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.pd-review-author strong {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #0f172a;
    display: block;
    line-height: 1.2;
}

.pd-review-author span {
    font-size: 12px;
    color: #94a3b8;
    font-family: 'Inter', sans-serif;
}

.pd-review-verified {
    font-size: 12px;
    color: #10b981;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.pd-review-verified i {
    font-size: 12px;
}

/* --- Pricing --- */
.pd-pricing {
    /* padding: 100px 0; */
    background: #fff;
}

.pd-price-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 22px;
    padding: 0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pd-price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 70px rgba(0,0,0,0.08);
}

.pd-price-card.featured {
    border: 2px solid var(--ocean-blue);
    box-shadow: 0 16px 50px rgba(0,170,244,0.12);
}

.pd-price-card.featured:hover {
    box-shadow: 0 24px 70px rgba(0,170,244,0.2);
}

.pd-price-popular {
    position: absolute;
    top: 18px;
    right: 18px;
    background: linear-gradient(135deg, var(--ocean-blue), #0077cc);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.pd-price-header {
    padding: 40px 32px 28px;
    text-align: center;
    border-bottom: 1px solid #f8fafc;
}

.pd-price-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(0,170,244,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--ocean-blue);
    margin: 0 auto 16px;
}

.pd-price-icon.featured {
    background: linear-gradient(135deg, var(--ocean-blue), #0077cc);
    color: #fff;
}

.pd-price-header h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.pd-price-tagline {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 18px;
    font-family: 'Inter', sans-serif;
}

.pd-price-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    margin-bottom: 4px;
}

.pd-currency {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
}

.pd-price {
    font-family: 'Poppins', sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.pd-price-period {
    font-size: 13px;
    color: #94a3b8;
    text-transform: lowercase;
    font-family: 'Inter', sans-serif;
}

.pd-price-features {
    list-style: none;
    padding: 28px 32px;
    margin: 0;
    flex: 1;
}

.pd-price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 14px;
    color: #475569;
    border-bottom: 1px solid #fafbfc;
    font-family: 'Inter', sans-serif;
}

.pd-price-features li:last-child {
    border-bottom: none;
}

.pd-price-features li i {
    width: 18px;
    text-align: center;
}

.pd-price-features li .fa-check {
    color: #10b981;
}

.pd-price-features li.disabled {
    color: #cbd5e1;
}

.pd-price-features li.disabled .fa-times {
    color: #cbd5e1;
}

.pd-price-btn {
    display: block;
    margin: 0 32px 32px;
    padding: 14px;
    text-align: center;
    border: 2px solid var(--ocean-blue);
    color: var(--ocean-blue);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s;
}

.pd-price-btn:hover {
    background: var(--ocean-blue);
    color: #fff;
    box-shadow: 0 8px 30px rgba(0,170,244,0.3);
    transform: translateY(-2px);
}

.pd-price-btn.featured {
    background: linear-gradient(135deg, var(--ocean-blue), #0077cc);
    color: #fff;
    border-color: transparent;
}

.pd-price-btn.featured:hover {
    box-shadow: 0 14px 40px rgba(0,170,244,0.35);
}

/* --- FAQ (Split Layout) --- */
.pd-faq {
    /* padding: 100px 0; */
    background: #f8fafc;
}

.pd-faq-sidebar {
    position: sticky;
    top: 100px;
}

.pd-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pd-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    background: #fff;
}

.pd-faq-item:hover {
    border-color: rgba(0,170,244,0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.pd-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 26px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    text-align: left;
}

.pd-faq-question i {
    color: #94a3b8;
    font-size: 12px;
    transition: all 0.3s;
    flex-shrink: 0;
    margin-left: 12px;
}

.pd-faq-item.open .pd-faq-question i {
    transform: rotate(180deg);
    color: var(--ocean-blue);
}

.pd-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.pd-faq-item.open .pd-faq-answer {
    max-height: 300px;
    padding: 0 26px 22px;
}

.pd-faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

/* --- CTA Banner --- */
.pd-cta {
    /* padding: 100px 0; */
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.pd-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0,170,244,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(124,58,237,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.pd-cta-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ocean-blue);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-family: 'Inter', sans-serif;
}

.pd-cta h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.pd-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 36px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.pd-cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.pd-cta .pd-btn-primary {
    background: #fff;
    color: var(--ocean-blue);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.pd-cta .pd-btn-primary:hover {
    box-shadow: 0 14px 40px rgba(0,0,0,0.3);
    color: var(--ocean-blue);
    transform: translateY(-3px);
}

.pd-cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.pd-cta-trust span {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
}

.pd-cta-trust span i {
    color: rgba(255,255,255,0.3);
}

/* --- Footer --- */
.pd-footer {
    padding: 28px 0;
    background: #0f172a;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.pd-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.pd-footer-logo img {
    height: 32px;
    filter: brightness(0) invert(1);
}

.pd-footer p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.pd-footer-links {
    display: flex;
    gap: 24px;
}

.pd-footer-links a {
    font-size: 13px;
    color: #94a3b8;
    transition: color 0.3s;
    font-family: 'Inter', sans-serif;
}

.pd-footer-links a:hover {
    color: var(--ocean-blue);
}

/* ============================================
   ZOHO-STYLE CENTERED HERO & DISCOVER SECTIONS
   ============================================ */

/* --- Centered Hero Override --- */
.pd-hero--centered {
    padding: 0 0 0;
    text-align: center;
}

.pd-hero--centered .pd-hero-content {
    padding-right: 0;
}

.pd-hero--centered .pd-hero-desc {
    max-width: 680px;
    margin: 0 auto 28px;
}

.pd-hero-center {
    max-width: 820px;
    margin: 0 auto;
}

/* Hero Screenshot */
.pd-hero-screenshot {
    max-width: 960px;
    margin: 50px auto 0;
    position: relative;
}

.pd-hero-screenshot .pd-sc-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 40px 100px rgba(0,0,0,0.15),
        0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.5s, box-shadow 0.5s;
}

.pd-hero-screenshot .pd-sc-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 50px 120px rgba(0,0,0,0.18),
        0 14px 50px rgba(0,0,0,0.1);
}

.pd-hero-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Value Propositions (Zoho-Style 3-Column) --- */
.pd-value-props {
    padding: 80px 0 60px;
    background: #fff;
}

.pd-vp-intro {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #475569;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.pd-vp-intro strong {
    color: #0f172a;
}

.pd-vp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.pd-vp-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pd-vp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    border-color: transparent;
}

.pd-vp-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0,170,244,0.08), rgba(99,102,241,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--ocean-blue);
    margin: 0 auto 20px;
    transition: all 0.4s;
}

.pd-vp-card:hover .pd-vp-icon {
    background: linear-gradient(135deg, var(--ocean-blue), #6366f1);
    color: #fff;
    transform: scale(1.1);
}

.pd-vp-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.pd-vp-card p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* --- Discover Feature Blocks (Alternating Layout) --- */
.pd-discover {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.pd-discover-block {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 0;
    border-bottom: 1px solid #f1f5f9;
}

.pd-discover-block:last-child {
    border-bottom: none;
}

.pd-discover-block.pd-discover-reversed {
    flex-direction: row-reverse;
}

.pd-discover-content {
    flex: 1;
    min-width: 0;
}

.pd-discover-image {
    flex: 1;
    min-width: 0;
}

.pd-discover-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ocean-blue);
    background: rgba(0,170,244,0.05);
    border: 1px solid rgba(0,170,244,0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.pd-discover-label i {
    font-size: 12px;
}

.pd-discover-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.pd-discover-content > p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 24px;
}

.pd-discover-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pd-discover-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #334155;
}

.pd-discover-list li i {
    color: #10b981;
    font-size: 14px;
    flex-shrink: 0;
}

.pd-discover-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--ocean-blue);
    transition: all 0.3s;
}

.pd-discover-link:hover {
    color: #0077cc;
    gap: 12px;
}

.pd-discover-link i {
    font-size: 12px;
    transition: transform 0.3s;
}

.pd-discover-link:hover i {
    transform: translateX(3px);
}

.pd-discover-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pd-discover-block:hover .pd-discover-image img {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

/* --- ourservices page --- */

  .services-hero p{
       max-width: 100%;
     }
     .services-hero  .pd-hero-trust{
       margin-top: 5px;
       justify-content: center;
     }
     .webdev-main-section .legal-grid {
       grid-template-columns: repeat(3, 1fr);
     }
     @media (max-width: 991px) {
        .webdev-main-section .legal-grid {
            grid-template-columns: repeat(2, 1fr);
        }
     }
     @media (max-width: 767px){
        .webdev-main-section .legal-grid {
            grid-template-columns: 1fr;
        }
     }
     .normel_form .form-control {
            border: 1.5px solid #e2e8f0;
            transition: all 0.3s;
                border-radius: 12px;
                padding: 15px 16px 15px 15px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #0f172a;
     }

/* ============================================
   PRODUCT PAGE — RESPONSIVE
   ============================================ */
@media (max-width: 1199px) {
    .pd-hero-title {
        font-size: 46px;
    }

    .pd-gallery-item {
        min-width: calc(33.333% - 14px);
    }
}

@media (max-width: 991px) {
    .top-bar{
        z-index: 1 !important;
    }
    .pd-nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 8px;
        border-bottom: 1px solid #f1f5f9;
        box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    }

    .pd-nav-links.show {
        display: flex;
    }

    .pd-nav-toggle {
        display: block;
    }

    .pd-nav-link {
        width: 100%;
        padding: 12px 16px;
    }

    .pd-nav-cta {
        margin-left: 0;
        text-align: center;
        justify-content: center;
    }

    .pd-hero {
        padding: 0 0 70px;
    }

    .pd-hero-title {
        font-size: 40px;
    }

    .pd-hero-content {
        padding-right: 0;
    }

    .pd-hero-form-card {
        margin-top: 40px;
        padding: 32px 28px;
    }

    /* Zoho-style responsive — tablet */
    .pd-hero-screenshot {
        margin-top: 36px;
    }

    .pd-vp-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 480px;
        margin: 0 auto;
    }

    .pd-vp-card {
        padding: 30px 24px;
    }

    .pd-value-props {
        padding: 60px 0 40px;
    }

    .pd-discover {
        padding: 60px 0;
    }

    .pd-discover-block {
        flex-direction: column;
        gap: 36px;
        padding: 40px 0;
    }

    .pd-discover-block.pd-discover-reversed {
        flex-direction: column;
    }

    .pd-discover-content h3 {
        font-size: 26px;
    }

    .pd-discover-image img {
        border-radius: 12px;
    }

    .pd-trust-grid {
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }

    .pd-trust-divider {
        display: none;
    }

    .pd-trust-stat {
        min-width: 200px;
    }

    .pd-sc-pills {
        gap: 6px;
        justify-content: center !important;
    }

    .pd-sc-pill {
        padding: 8px 14px;
        font-size: 12px;
    }

    .pd-sc-pill span {
        display: none;
    }

    .pd-sc-pill i {
        font-size: 16px;
    }

    .pd-sc-slider {
        max-width: 100%;
    }

    .pd-sc-slide {
        flex: 0 0 62%;
    }

    .pd-sc-track {
        gap: 18px;
    }

    .pd-sc-browser-bar {
        padding: 8px 12px;
    }

    .pd-sc-dots span {
        width: 8px;
        height: 8px;
    }

    .pd-sc-url {
        font-size: 11px;
        padding: 4px 10px;
    }

    .pd-sc-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .pd-sc-prev { left: 10px; }
    .pd-sc-next { right: 10px; }

    .pd-sc-info-row {
        margin-top: -60px;
        max-width: 92%;
    }

    .pd-sc-info.active {
        flex-wrap: wrap;
        gap: 20px;
    }

    .pd-sc-info-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 20px;
    }

    .pd-sc-info-text h4 {
        font-size: 18px;
    }

    .pd-sc-info-text p {
        font-size: 14px;
    }

    .pd-sc-info-list {
        min-width: 200px;
    }

    .pd-sc-info-list li {
        font-size: 13px;
    }

    .pd-gallery-item {
        min-width: calc(50% - 10px);
    }

    .pd-section-title {
        font-size: 32px;
    }

    .pd-reviews-sidebar {
        position: static;
    }

    .pd-faq-sidebar {
        position: static;
    }

    .pd-footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .pd-sc-info-row {
        margin-top: -40px;
        max-width: 95%;
    }

    .pd-sc-info.active {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .pd-sc-info-list {
        min-width: unset;
        width: 100%;
    }

    .pd-sc-info-text h4 {
        font-size: 17px;
    }

    .pd-sc-info-text p {
        font-size: 13.5px;
    }
}

@media (max-width: 575px) {
    .pd-breadcrumb-inline {
        /* padding-top: 75px; */
        margin-bottom: 30px;
    }

    .pd-hero {
        padding: 0 0 50px;
    }

    .pd-hero-title {
        font-size: 32px;
    }

    .pd-hero-desc {
        font-size: 15px;
    }

    .pd-hero-actions {
        flex-direction: column;
    }

    .pd-btn-primary,
    .pd-btn-outline,
    .pd-btn-ghost-white {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .pd-trust-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding-left: 10px;
    }

    .pd-trust-stat {
        min-width: auto;
    }

    .pd-showcase,
    .pd-gallery,
    .pd-features,
    .pd-reviews,
    .pd-pricing,
    .pd-faq,
    .pd-discover,
    .pd-value-props {
        padding: 60px 0;
    }

    .pd-section-title {
        font-size: 28px;
    }

    .pd-hero-screenshot {
        margin-top: 28px;
    }

    .pd-hero-screenshot .pd-sc-card {
        border-radius: 10px;
    }

    .pd-vp-intro {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .pd-vp-grid {
        gap: 18px;
    }

    .pd-vp-card {
        padding: 24px 18px;
    }

    .pd-vp-icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

    .pd-vp-card h4 {
        font-size: 17px;
    }

    .pd-discover-block {
        gap: 28px;
        padding: 32px 0;
    }

    .pd-discover-content h3 {
        font-size: 22px;
    }

    .pd-discover-content > p {
        font-size: 14px;
    }

    .pd-discover-list li {
        font-size: 13px;
    }

    .pd-discover-image img {
        border-radius: 10px;
    }

    .pd-sc-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .pd-sc-pills::-webkit-scrollbar {
        display: none;
    }

    .pd-sc-pill {
        padding: 8px 12px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .pd-sc-track {
        height: 280px;
    }

    .pd-sc-slide {
        flex: 0 0 78%;
        transform: scale(0.9);
        opacity: 0.35;
    }

    .pd-sc-slide.active {
        transform: scale(1);
        opacity: 1;
    }

    .pd-sc-track {
        gap: 14px;
    }

    .pd-sc-browser-bar {
        padding: 7px 10px;
    }

    .pd-sc-dots span {
        width: 7px;
        height: 7px;
    }

    .pd-sc-url {
        font-size: 10px;
        padding: 3px 8px;
    }

    .pd-sc-arrow {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .pd-sc-prev { left: 6px; }
    .pd-sc-next { right: 6px; }

    .pd-sc-counter {
        font-size: 11px;
        padding: 4px 12px;
    }

    .pd-sc-info-row {
        margin-top: -30px;
        max-width: 96%;
    }

    .pd-sc-info {
        padding: 20px 16px;
    }

    .pd-sc-info.active {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .pd-sc-info-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: 10px;
        font-size: 18px;
    }

    .pd-sc-info-text h4 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .pd-sc-info-text p {
        font-size: 13px;
        line-height: 1.6;
    }

    .pd-sc-info-list {
        min-width: unset;
        width: 100%;
        gap: 6px;
    }

    .pd-sc-info-list li {
        font-size: 13px;
        gap: 8px;
    }

    .pd-sc-info-list li i {
        font-size: 11px;
    }

    .pd-gallery-item {
        min-width: calc(100% - 0px);
    }

    .pd-gallery-arrow {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .pd-gallery-card img {
        height: 200px;
    }

    .pd-or-score {
        font-size: 44px;
    }

    .pd-price {
        font-size: 36px;
    }

    .pd-cta {
        padding: 70px 0;
    }

    .pd-cta h2 {
        font-size: 30px;
    }

    .pd-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .pd-cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .pd-hero-form-card {
        padding: 28px 20px;
    }

    .pd-form-header h3 {
        font-size: 19px;
    }

    .pd-input-wrap input {
        padding: 13px 14px 13px 42px;
        font-size: 14px;
    }

    .pd-input-wrap.pd-input-phone input {
        padding: 13px 14px 13px 14px;
        height: 48px;
    }

    .pd-input-phone .iti__selected-flag {
        padding: 0 10px;
    }

    .pd-input-phone .iti__selected-dial-code {
        font-size: 13px;
    }

    .pd-form-submit {
        padding: 14px;
    }
}
