/* Google Fonts (Rajdhani for Headings + Inter for Body) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Rajdhani:wght@500;600;700&display=swap');

:root {
    /* Brand Colors */
    --primary: #6d4bff;
    --primary-dark: #5637e8;
    --primary-soft: #f1edff;
    --secondary: #0f172a;
    --accent: #a78bfa;
    --light: #f8f9ff;
    --surface: #ffffff;
    --surface-alt: #eef2ff;
    --text: #0d1321;
    --muted: #64748b;
    --dark-accent: #0d1321;
    --primary-gradient: linear-gradient(135deg, #6d4bff 0%, #8b5cf6 100%);
    --glass-bg: linear-gradient(180deg, #f8fbff 0%, #eef2ff 100%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Font Families */
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Fluid Typography (Responsive Sizes) */
    --fs-h1: clamp(2.5rem, 5vw, 3.75rem); /* 40px to 60px */
    --fs-h2: clamp(1.875rem, 3.5vw, 2.5rem); /* 30px to 40px */
    --fs-h3: clamp(1.25rem, 2.5vw, 1.5rem); /* 20px to 24px */
    --fs-body: 1rem; /* 16px Standard Body Size */
    --fs-small: 0.875rem; /* 14px Small Text */

    --srv-c1: var(--primary);          /* #6d4bff */
    --srv-c2: #0284c7;                 /* Sky Blue */
    --srv-c3: #10b981;                 /* Emerald Green */
    --srv-c4: #f59e0b;                 /* Amber Gold */
    --srv-c5: #ec4899;  

    --c-1: #e11d48; /* Red/Crimson */
    --c-2: #f97316; /* Orange */
    --c-3: #84cc16; /* Lime Green */
    --c-4: #00acc1; /* Teal */
    --c-5: #0284c7; /* Blue */
    --c-6: #a21caf; /* Purple */
    --bg1:#fff;
    --bg2:#f8fafc;
    --theme-brown: #be824c;
}

.section1-bg{
    background: var(--bg1)!important;
}

.section2-bg{
    background: var(--bg2)!important;
}

.padding-tb30{
    padding-top:30px;
    padding-bottom: 30px;
}

.padding-tb50{
    padding-top:50px;
    padding-bottom: 50px;
}

/* Base Setup */
body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--text);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased; /* Crisp text rendering */
}

/* Typography Hierarchy Setup */
h1, h2, h3, h4, h5, h6, 
.font-heading, .btn, .nav-link, .badge {
    font-family: var(--font-heading);
    letter-spacing: 0.5px; /* Rajdhani tight look standard করার জন্য */
    text-transform: capitalize;
}

h1 { font-size: var(--fs-h1); font-weight: 700; line-height: 1.15; }
h2 { font-size: var(--fs-h2); font-weight: 700; line-height: 1.25; }
h3 { font-size: var(--fs-h3); font-weight: 600; line-height: 1.35; }

p {
    font-family: var(--font-body);
    color: var(--muted);
    font-weight: 400;
}

/* Custom 1600px Container Width */
@media (min-width: 1750px) {
    .container {
        max-width: 1700px !important;
        width: 100%;
    }
}
        /* ==========================================
   1. TOP HEADER SECTION
   ========================================== */
.top-header {
    background-color: var(--secondary);
    color: #ffffff;
    padding: 8px 0;
    font-size: 13px;
    font-family: var(--font-body);
}

.top-header a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
}

.top-header a:hover {
    color: var(--accent);
}

.top-header-contact-list {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.top-header-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.92);
}

.top-header-contact-item i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.08), 0 4px 10px rgba(0,0,0,0.18);
    transition: var(--transition);
}

.top-header-contact-item:hover i {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.08);
}

.top-header-follow {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    width: 100%;
}

.top-header-follow-label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.social-icons {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.social-icons a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #ffffff;
    background: linear-gradient(145deg, #344154, #141d2f);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.28), inset 0 1px 1px rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.social-icons a:hover {
    color: #ffffff;
    background: var(--primary-gradient);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(109, 75, 255, 0.4);
}

/* ==========================================
   2. MAIN NAVBAR SECTION
   ========================================== */
.navbar {
    padding: 12px 0;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    color: var(--secondary) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.navbar-brand span {
    color: var(--primary);
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--secondary) !important;
    margin: 0 12px;
    position: relative;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.8px;
    transition: var(--transition);
}

.nav-link:hover, 
.nav-link.active {
    color: var(--primary) !important;
}

/* Active Link Underline Animation */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Header Contact Widget */
.contact-widget {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.contact-widget:hover {
    transform: translateY(-2px);
}

.contact-icon-box {
    width: 42px;
    height: 42px;
    background: var(--primary-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    transition: var(--transition);
}

.contact-widget:hover .contact-icon-box {
    background: var(--primary);
    color: #ffffff;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
}

.contact-info-text .label {
    font-size: 12px;
    color: var(--muted);
    margin: 0;
    line-height: 1.2;
    font-weight: 500;
}

.contact-info-text .number {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
    line-height: 1.2;
}

.btn-contact {
    background: var(--primary-gradient);
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(109, 75, 255, 0.3);
    transition: var(--transition);
    border: none;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(109, 75, 255, 0.45);
}

/* ==========================================
   3. MOBILE RESPONSIVE STYLES
   ========================================== */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100% !important;
        height: 100vh;
        width: 280px;
        background: #ffffff;
        z-index: 1060;
        padding: 30px 24px;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), left 0.3s ease;
        display: block !important;
        box-shadow: 10px 0 30px rgba(0,0,0,0.15);
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .navbar-collapse.show {
        left: 0 !important;
    }

    .navbar-nav {
        margin-top: 30px;
    }

    .nav-item {
        margin: 0;
        border-bottom: 1px solid #f1f5f9;
    }

    .nav-link {
        padding: 12px 0 !important;
        margin: 0;
        font-size: 15px;
    }

    .nav-link::after {
        display: none;
    }

    .sidebar-social {
        position: absolute;
        /*bottom: 30px;
        left: 24px;
        right: 24px;
        border-top: 1px solid #f1f5f9;*/
        padding-top: 20px;
    }

    .sidebar-social .sidebar-social-links {
        display: flex;
        gap: 10px;
        justify-content: center;
    }

    .sidebar-social .sidebar-social-links a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #ffffff !important;
        background: var(--primary-gradient);
        box-shadow: 0 8px 16px rgba(109, 75, 255, 0.25);
        border: 1px solid rgba(255,255,255,0.18);
        transition: var(--transition);
        text-decoration: none;
    }

    .sidebar-social .sidebar-social-links a:hover {
        transform: translateY(-2px);
        background: var(--secondary);
    }
}

@media (max-width: 767.98px) {
    .top-header {
        padding: 6px 0;
    }

    .top-header-contact-list {
        display: none;
    }

    .top-header-follow {
        justify-content: center;
        gap: 10px;
        width: 100%;
    }
}

        .hero {
            padding: 80px;
            background: #020617;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-img {
            position: relative;
            z-index: 10;
            animation: float-hero 6s ease-in-out infinite;
        }

        @keyframes float-hero {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

      /* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    padding: 100px 0 80px;
    background: #020617;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
}

/* Hero Background Gradients & Glow Effects */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(109, 75, 255, 0.22) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(167, 139, 250, 0.15) 0%, transparent 45%);
    z-index: 1;
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50%;
    height: 120%;
    background: linear-gradient(225deg, rgba(109, 75, 255, 0.3) 0%, transparent 70%);
    z-index: 2;
    filter: blur(90px);
    pointer-events: none;
}

/* Badge / Tag */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Typography Setup */
.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-main-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: #94a3b8;
    max-width: 540px;
    margin-bottom: 30px;
}

/* Hero Buttons */
.hero-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btns .btn {
    border-radius: 8px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* Perspective Code Window */
.window-container {
    perspective: 1200px;
    position: relative;
}

.code-window {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 25px 50px -12px rgba(0, 0, 0, 0.6);
    transform: rotateY(-12deg) rotateX(6deg);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.window-container:hover .code-window {
    transform: rotateY(-2deg) rotateX(2deg) translateY(-5px);
}

.window-header {
    background: rgba(255, 255, 255, 0.04);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dot { 
    width: 10px; 
    height: 10px; 
    border-radius: 50%; 
    margin-right: 8px; 
}
.red { background: #ff5f57; box-shadow: 0 0 8px rgba(255, 95, 87, 0.4); }
.yellow { background: #febc2e; box-shadow: 0 0 8px rgba(254, 188, 46, 0.4); }
.green { background: #28c840; box-shadow: 0 0 8px rgba(40, 200, 64, 0.4); }

.window-content {
    padding: 30px;
    font-family: 'Fira Code', 'Cascadia Code', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
}

.code-line { 
    display: flex; 
    gap: 16px; 
    margin-bottom: 8px; 
}
.line-number { 
    color: #475569; 
    user-select: none; 
    width: 20px; 
    text-align: right;
}
.keyword { color: #f472b6; }
.function { color: #38bdf8; }
.string { color: #4ade80; }
.comment { color: #64748b; }

/* Floating Cards & Image Floating Effect */
.hero-img {
    position: relative;
    z-index: 10;
    animation: float-hero 6s ease-in-out infinite;
}

@keyframes float-hero {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.floating-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 20px;
    border-radius: 14px;
    z-index: 20;
    box-shadow: 0 20px 30px rgba(0,0,0,0.4);
    animation: float-ui 5s ease-in-out infinite;
}

.card-1 { top: -20px; right: -20px; animation-delay: 0s; }
.card-2 { bottom: 20px; left: -30px; animation-delay: 2.5s; }

@keyframes float-ui {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 991.98px) {
    .hero { 
        padding: 60px 0; 
        text-align: center; 
    }
    .hero p { 
        margin: 0 auto 30px; 
    }
    .hero-btns { 
        justify-content: center; 
    }
    .window-container { 
        margin-top: 50px; 
    }
    .code-window { 
        transform: none !important; 
    }
    .floating-card { 
        display: none; 
    }
}

     /* ==========================================
   FEATURES & SERVICES SECTION
   ========================================== */
.features {
    padding: 80px 0;
    background: var(--surface);
}

.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-tag {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-weight: 800;
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: var(--secondary);
    letter-spacing: -0.5px;
    line-height: 1.2;
}


/*service*/
/* 5 Column Grid Layout Custom CSS */
@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 auto;
        width: 20%; /* 100% / 5 = 20% */
    }
}

/* Section Container */
.services-advanced-section {
    position: relative;
    overflow: hidden;
}

/* Background Subtle Animated Tech Mesh */
.services-advanced-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(109, 75, 255, 0.06) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    pointer-events: none;
}

/* Section Header */
.services-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background-color: var(--primary-soft);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: var(--fs-small);
    font-weight: 700;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    border: 1px solid rgba(109, 75, 255, 0.15);
}

.services-tag i {
    font-size: 10px;
    animation: pulseGlow 2s infinite ease-in-out;
}

.services-main-title {
    color: var(--text);
    margin-bottom: 12px;
}

.services-main-title span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-subtitle {
    font-size: var(--fs-body);
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto 60px auto;
}

/* ==========================================
   ANIMATED INFOGRAPHIC CARD DESIGN
   ========================================== */
.adv-card {
    background: var(--surface);
    border-radius: 0px;
    padding: 35px 18px 25px 18px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(109, 75, 255, 0.08);
    box-shadow: 0 10px 30px rgba(13, 19, 33, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    z-index: 1;
}

/* Top Glow Animated Beam */
.adv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    background: var(--card-color);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 10px var(--card-color);
    transition: var(--transition);
    display: none;
}

.adv-card:hover {
    transform: translateY(-12px);
    border-color: rgba(109, 75, 255, 0.2);
    box-shadow: 0 22px 45px rgba(13, 19, 33, 0.08), 0 0 20px rgba(109, 75, 255, 0.05);
}

.adv-card:hover::before {
    left: 5%;
    right: 5%;
    height: 4px;
}

/* Top Badge Number */
.card-number-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-family: var(--font-heading);
    font-size: var(--fs-small);
    font-weight: 700;
    color: var(--card-color);
    background: var(--surface-alt);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.adv-card:hover .card-number-badge {
    background: var(--card-color);
    color: #ffffff;
    box-shadow: 0 4px 12px var(--card-glow);
}

/* Hexagon Icon Container */
.icon-hex-wrapper {
    width: 68px;
    height: 76px;
    margin: 12px 0 22px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-alt);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.5s ease;
}

.icon-hex-wrapper i {
    font-size: 28px;
    color: var(--card-color);
    transition: all 0.4s ease;
    z-index: 2;
}

/* Hover Spin & Scale Effects */
.adv-card:hover .icon-hex-wrapper {
    background: var(--card-color);
    transform: rotateY(180deg) scale(1.05);
    box-shadow: 0 10px 25px var(--card-glow);
}

.adv-card:hover .icon-hex-wrapper i {
    color: #ffffff;
    transform: rotateY(-180deg) scale(1.1);
}

/* Card Typography */
.card-service-title {
    color: var(--text);
    font-size: var(--fs-h3);
    font-weight: 700;
    margin-bottom: 10px;
}

.card-service-text {
    font-size: var(--fs-small);
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 22px;
}

/* Bottom Infographic Metric */
.card-bottom-metric {
    margin-top: auto;
    width: 100%;
    padding-top: 14px;
    border-top: 1px dashed rgba(100, 116, 139, 0.2);
}

.metric-info {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: var(--fs-small);
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 6px;
}

.metric-info span:last-child {
    color: var(--card-color);
    font-weight: 700;
}

/* Mini Progress Bar */
.metric-progress {
    width: 100%;
    height: 4px;
    background-color: var(--surface-alt);
    border-radius: 10px;
    overflow: hidden;
}

.metric-progress-bar {
    height: 100%;
    background-color: var(--card-color);
    border-radius: 10px;
    width: 0%;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.adv-card:hover .metric-progress-bar {
    width: var(--progress-val) !important;
}

/* Theme Color Variants (5 Themes for 5 Cards) */
.theme-s1 { --card-color: var(--srv-c1); --card-glow: rgba(109, 75, 255, 0.3); --progress-val: 98%; }
.theme-s2 { --card-color: var(--srv-c2); --card-glow: rgba(2, 132, 199, 0.3); --progress-val: 99.9%; }
.theme-s3 { --card-color: var(--srv-c3); --card-glow: rgba(16, 185, 129, 0.3); --progress-val: 95%; }
.theme-s4 { --card-color: var(--srv-c4); --card-glow: rgba(245, 158, 11, 0.3); --progress-val: 100%; }
.theme-s5 { --card-color: var(--srv-c5); --card-glow: rgba(236, 72, 153, 0.3); --progress-val: 92%; }

@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
}
/*service*/

/*development process*/
.infographic-wrapper-section {

}

/* Section Main Heading */
.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    color: var(--muted-color);
    font-size: 16px;
    margin-bottom: 40px;
}

/* ==========================================
   LEFT COLUMN: CONTENT LIST DESIGN
   ========================================== */
.info-content-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-content-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border-left: 5px solid transparent;
    transition: all 0.3s ease;
}

.info-content-item:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

/* Color Accent Left Borders */
.info-content-item.item-c1 { border-left-color: var(--c-1); }
.info-content-item.item-c2 { border-left-color: var(--c-2); }
.info-content-item.item-c3 { border-left-color: var(--c-3); }
.info-content-item.item-c4 { border-left-color: var(--c-4); }
.info-content-item.item-c5 { border-left-color: var(--c-5); }
.info-content-item.item-c6 { border-left-color: var(--c-6); }

.info-number-box {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.num-c1 { background-color: var(--c-1); }
.num-c2 { background-color: var(--c-2); }
.num-c3 { background-color: var(--c-3); }
.num-c4 { background-color: var(--c-4); }
.num-c5 { background-color: var(--c-5); }
.num-c6 { background-color: var(--c-6); }

.info-text-body h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--text-color);
}

.info-text-body p {
    font-size: 14px;
    color: var(--muted-color);
    margin: 0;
    line-height: 1.5;
}

/* ==========================================
   RIGHT COLUMN: ARC INFOGRAPHIC DESIGN
   ========================================== */
.infographic-container-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 580px;
}

.infographic-graphics-wrapper {
    position: relative;
    width: 650px;
    height: 580px;
}

/* 1. Left Center Main Circle Hub */
.center-circle-hub {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
    height: 220px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.center-circle-hub h2 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 1.5px;
    margin: 0;
}

.center-circle-hub span {
    font-size: 11px;
    color: var(--muted-color);
    letter-spacing: 1px;
    font-weight: 600;
}

/* Hub Dot Positions */
.hub-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.dot-p1 { top: 30px; left: 50%; transform: translateX(-50%); background: var(--c-1); }
.dot-p2 { top: 70px; right: 24px; background: var(--c-2); }
.dot-p3 { bottom: 70px; right: 24px; background: var(--c-3); }
.dot-p4 { bottom: 30px; left: 50%; transform: translateX(-50%); background: var(--c-4); }
.dot-p5 { bottom: 70px; left: 24px; background: var(--c-5); }
.dot-p6 { top: 70px; left: 24px; background: var(--c-6); }

/* 2. SVG Path Arc Lines */
.branches-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* 3. Arc Item End Nodes */
.flow-item {
    position: absolute;
    display: flex;
    align-items: center;
    z-index: 4;
}

.item-1 { top: 20px;  left: 200px; }
.item-2 { top: 110px; left: 275px; }
.item-3 { top: 205px; left: 315px; }
.item-4 { top: 305px; left: 315px; }
.item-5 { top: 400px; left: 275px; }
.item-6 { top: 490px; left: 200px; }

.node-ring {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    flex-shrink: 0;
}

.node-ring::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.c-1 { color: var(--c-1); }
.c-2 { color: var(--c-2); }
.c-3 { color: var(--c-3); }
.c-4 { color: var(--c-4); }
.c-5 { color: var(--c-5); }
.c-6 { color: var(--c-6); }

/* Flow Capsule Component */
.capsule {
    width: 250px;
    height: 48px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    padding: 0 4px;
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.bg-1 { background-color: var(--c-1); }
.bg-2 { background-color: var(--c-2); }
.bg-3 { background-color: var(--c-3); }
.bg-4 { background-color: var(--c-4); }
.bg-5 { background-color: var(--c-5); }
.bg-6 { background-color: var(--c-6); }

.capsule-left-circle {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    flex-shrink: 0;
}

.capsule-content {
    flex: 1;
    padding: 0 8px;
}

.capsule-content h3 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.capsule-content p {
    font-size: 8.5px;
    margin: 0;
    line-height: 1.1;
    color: rgba(255, 255, 255, 0.9);
    display: none;
}

.capsule-right-circle {
    width: 38px;
    height: 38px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.capsule-right-circle i {
    font-size: 15px;
}

.tc-1 { color: var(--c-1); }
.tc-2 { color: var(--c-2); }
.tc-3 { color: var(--c-3); }
.tc-4 { color: var(--c-4); }
.tc-5 { color: var(--c-5); }
.tc-6 { color: var(--c-6); }

/* ==========================================
   RESPONSIVE (GRID & BREAKPOINTS)
   ========================================== */

/* Laptop & Tablet Adjustments */
@media (max-width: 1200px) and (min-width: 992px) {
    .infographic-graphics-wrapper {
        transform: scale(0.85);
        transform-origin: center right;
    }
}

@media (max-width: 991px) {
    .infographic-container-box {
        min-height: auto;
        margin-top: 40px;
    }
    .infographic-graphics-wrapper {
        transform: scale(0.88);
        transform-origin: center center;
    }
}

/* Mobile Devices */
@media (max-width: 576px) {
    .infographic-graphics-wrapper {
        transform: none;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .center-circle-hub {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        margin-bottom: 25px;
        width: 180px;
        height: 180px;
    }

    .branches-svg {
        display: none; /* Hide connections on mobile for vertical stacked layout */
    }

    .flow-item {
        position: relative;
        left: 0 !important;
        top: 0 !important;
        margin-bottom: 12px;
        width: 100%;
        justify-content: center;
    }

    .node-ring {
        display: none;
    }

    .capsule {
        width: 90%;
        max-width: 320px;
    }
}
/*development process*/


/* ==========================================
   PROJECTS SHOWCASE SECTION
   ========================================== */
.projects-showcase {
   
}

.projects-showcase .section-header {
    margin-bottom: 48px;
}

.project-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(109, 75, 255, 0.12);
    border-radius: 0px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(109, 75, 255, 0.15);
    border-color: rgba(109, 75, 255, 0.28);
}

.project-image-wrap {
    position: relative;
    overflow: hidden;
    background: #dbe4ff;
}

.project-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-card:hover .project-image {
    transform: scale(1.06);
}

.project-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.project-title {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary);
}

.project-description {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.project-meta-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.project-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}

.tech-pill {
    padding: 4px 10px;
    border-radius: 6px;
    background: #edf2ff;
    color: #334155;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(109, 75, 255, 0.12);
}

.project-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    margin-top: auto;
}

.project-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, #0f172a 0%, #6d4bff 55%, #8b5cf6 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 10px 20px rgba(109, 75, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-link::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.02));
    opacity: 0.9;
}

.project-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-22deg);
    transition: left 0.45s ease;
}

.project-link span,
.project-link i {
    position: relative;
    z-index: 1;
}

.project-link i {
    transition: transform 0.3s ease;
}

.project-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(109, 75, 255, 0.35);
}

.project-link:hover::after {
    left: 135%;
}

.project-link:hover i {
    transform: translateX(4px);
}

/* ==========================================
   RECENT WORKS SECTION
   ========================================== */
.recent-works {
    padding: 100px 0;
    background: #0f172a;
    color: #ffffff;
}

.recent-works .section-title {
    color: #ffffff;
}

.work-item {
    position: relative;
    background: #1e293b;
    border-radius: 20px;
    padding: 20px;
    transition: transform 0.4s ease, background-color 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.work-item:hover {
    background: var(--primary);
    transform: translateY(-8px);
}

.work-img-wrapper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
}

.work-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.work-item:hover .work-img {
    transform: scale(1.08) rotate(1deg);
    opacity: 0.8;
}

.work-content {
    padding: 8px 4px;
}

.work-cat {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    transition: color 0.3s ease;
}

.work-item:hover .work-cat {
    color: rgba(255, 255, 255, 0.85);
}

.work-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
}

.work-arrow {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-15px);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.work-item:hover .work-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Overrides */
@media (max-width: 767.98px) {
    .features,
    .projects-showcase,
    .recent-works {
        padding: 60px 0;
    }
    
    .project-image {
        height: 175px;
    }

    .project-content {
        padding: 18px;
    }

    .project-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .project-link {
        width: 100%;
    }
}

        /* Footer */
        .footer {
            background: #080e1f;
            color: #8896b0;
            padding: 80px 0 0;
            position: relative;
        }
        .footer-top-bar {
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent), #f97316, var(--primary));
            background-size: 200% 100%;
            animation: shimmer-bar 4s linear infinite;
        }
        @keyframes shimmer-bar {
            0% { background-position: 0% 0; }
            100% { background-position: 200% 0; }
        }

        /* Brand */
        .footer-brand img {
    width: 100%;
    height: 60px;
}

        .footer-brand {
            display: inline-block;
            font-size: 1.7rem;
            font-weight: 900;
            color: #fff;
            text-decoration: none;
            letter-spacing: -0.5px;
            margin-bottom: 18px;
        }
        .footer-brand span { color: var(--primary); }

        .footer-about {
            font-size:var(--font-size-16);
            line-height: 1.8;
            color: #8896b0;
            margin-bottom: 22px;
        }

        /* Socials */
        .footer-socials { display: flex; gap: 10px; }
        .footer-socials a {
            width: 38px; height: 38px;
            border-radius: 0px;
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.04);
            color: #8896b0;
            display: flex; align-items: center; justify-content: center;
            font-size:var(--font-size-16);
            text-decoration: none;
            transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
        }
        .footer-socials a:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
            transform: translateY(-3px);
        }

        /* Title */
        .footer-title {
            color: #fff;
            font-weight: 800;
            font-size: 18px;
            margin-bottom: 22px;
            position: relative;
            padding-bottom: 14px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 36px;
            height: 3px;
            border-radius: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        /* Links */
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a {
            color: #8896b0;
            text-decoration: none;
            font-size:var(--font-size-16);
            display: flex;
            align-items: center;
            gap: 7px;
            transition: color 0.2s, gap 0.2s;
        }
        .footer-links a i { font-size: 0.65rem; color: var(--primary); transition: transform 0.2s; }
        .footer-links a:hover { color: #fff; gap: 10px; }
        .footer-links a:hover i { transform: translateX(2px); }

        /* Contact */
        .footer-contact { display: flex; flex-direction: column; gap: 14px; }
        .footer-contact-item {
            display: flex;
/*            align-items: flex-start;*/
            align-items:center;
            gap: 12px;
        }
        .footer-contact-icon {
            width: 34px; height: 34px;
            border-radius: 0px;
            background: rgba(109,75,255,0.15);
            display: flex; align-items: center; justify-content: center;
            color: var(--primary);
            font-size: 0.85rem;
            flex-shrink: 0;
            margin-top: 1px;
        }
        .footer-contact-item span,
        .footer-contact-item a {
            font-size:var(--font-size-16);
            color: #8896b0;
            text-decoration: none;
            line-height: 1.6;
            transition: color 0.2s;
        }
        .footer-contact-item a:hover { color: #fff; }

        /* Newsletter */
        .footer-newsletter-text {
            font-size: 0.87rem;
            line-height: 1.75;
            color: #8896b0;
            margin-bottom: 16px;
        }
        .footer-newsletter-wrap {
            display: flex;
            border-radius: 10px;
            overflow: hidden;
            border: none;
            background: rgba(255,255,255,0.07);
        }
        .footer-newsletter-wrap input {
            flex: 1;
            background: transparent;
            border: none;
            outline: none;
            padding: 12px 16px;
            font-size: 0.86rem;
            color: #fff;
            font-family: 'Poppins', sans-serif;
        }
        .footer-newsletter-wrap input::placeholder { color: #60748a; }
        .footer-newsletter-wrap button {
            background: var(--primary);
            border: none;
            color: #fff;
            padding: 0 18px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .footer-newsletter-wrap button:hover { background: var(--primary-dark); }
        .footer-badge {
            display: flex;
            align-items: center;
            gap: 7px;
            margin-top: 12px;
            font-size: 0.75rem;
            color: #60748a;
        }
        .footer-badge i { color: #22c55e; font-size: 0.8rem; }

        /* Bottom bar */
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.06);
            margin-top: 60px;
            padding: 22px 0;
            font-size: var(--font-size-16);
            color: #60748a;
        }
        .footer-bottom strong { color: #fff; }
        .footer-bottom a {
            color: #60748a;
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer-bottom a:hover { color: #fff; }
        .footer-bottom-dot {
            display: inline-block;
            width: 4px; height: 4px;
            border-radius: 50%;
            background: #3d4f68;
            margin: 0 10px;
            vertical-align: middle;
        }

        .nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            /* background: rgba(0, 0, 0,1);
            z-index: 1055; */
            transition: opacity 0.3s ease;
        }
        /*about*/
.about-luxury-section {
        
    }

    /* Image Grid Styling */
    .image-grid-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        gap: 20px;
    }

    /* Left side: 2 Images stacked */
    .left-images {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 45%;
    }

    .left-images img {
    width: 100%;
    border-radius: 0px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 240px;
    border: 10px solid #fff;
}

    /* Right side: 1 Large Image */
    .right-image {
        width: 55%;
    }

    .right-image img {
        width: 100%;
        height: 500px;
        border-radius: 0px;
        object-fit: cover;
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        border: 8px solid #fff;
    }

    /* Floating Badge on Images */
    .trust-badge-float {
        position: absolute;
        top: 50%;
        left: 45%;
        transform: translate(-50%, -50%);
        background: var(--primary-gradient);
        color: #fff;
        padding: 20px;
        border-radius: 50%;
        width: 100px;
        height: 100px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        z-index: 5;
        border: 5px solid #fff;
        font-weight: bold;
        box-shadow: 0 10px 20px rgba(109, 75, 255, 0.28);
    }

    /* Content Styling */
    .about-label {
        color: var(--primary);
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 700;
        font-size: 14px;
        display: block;
        margin-bottom: 15px;
    }

    .about-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: uppercase;
}

    .about-desc {
        color: var(--muted);
        font-size: var(--font-size-16);
        line-height: 1.8;
/*        margin-bottom: 35px;*/
    }

    .about-details-subtitle{
        color:#7350f2;
        font-size:20px;
        text-transform: uppercase;
    }

     .about-details-title{
        color:#000;
    }
    .about-details p{
        font-size:var(--font-size-16);
    }
    .about-card-title{
        font-size:32px;
        color:#7350f2!important;
    }
    .tracking-wider{
        color:#000;
         font-size:18px; 
         font-weight: 600;
         text-transform: uppercase;
    }
.about-details {
    background: #fff;
}
    /* Mobile View Fix */
    @media (max-width: 991px) {
        .image-grid-wrapper { margin-bottom: 50px; }
        .about-heading {
            font-size: 1.2rem;
            text-transform: uppercase;
        }
        .right-image img { height: 400px; }
    }

    @media (max-width: 576px) {
        .image-grid-wrapper { flex-direction: column; }
        .left-images, .right-image { width: 100%; }
        .right-image img { height: 300px; }
    }


/*about*/


/* Section Container */
@media (min-width: 1200px) {
    .col-xl-2-4 {
        flex: 0 0 auto;
        width: 20%; /* 100% / 5 = 20% */
    }
}

.premium-blog-section {
    position: relative;
    overflow: hidden;
}

/* Background Tech Grid Lines */
.premium-blog-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(109, 75, 255, 0.05) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    pointer-events: none;
}

/* Section Header */
.blog-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background-color: var(--primary-soft);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: var(--fs-small);
    font-weight: 700;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    border: 1px solid rgba(109, 75, 255, 0.15);
}

.blog-tag i {
    font-size: 8px;
    animation: blogPulse 2s infinite ease-in-out;
}

.blog-main-title {
    color: var(--text);
    margin-bottom: 12px;
}

.blog-main-title span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-subtitle {
    font-size: var(--fs-body);
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto 60px auto;
}

/* ==========================================
   BLOG CARD DESIGN
   ========================================== */
.blog-card {
    background: var(--surface);
    border-radius: 0px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(109, 75, 255, 0.08);
    box-shadow: 0 10px 30px rgba(13, 19, 33, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(109, 75, 255, 0.25);
    box-shadow: 0 20px 40px rgba(109, 75, 255, 0.12);
}

/* Thumbnail Wrapper & Image Zoom Animation */
.blog-thumb-wrapper {
    position: relative;
    width: 100%;
    padding-top: 62%; /* Aspect Ratio */
    overflow: hidden;
}

.blog-thumb-wrapper img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.blog-card:hover .blog-thumb-wrapper img {
    transform: scale(1.12) rotate(1deg);
}

/* Category Badge (Glassmorphic) */
.blog-category-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Card Body Content */
.blog-card-body {
    padding: 22px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Meta Info (Date & Reading Time) */
.blog-meta-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--fs-small);
    color: var(--muted);
    margin-bottom: 10px;
}

.blog-meta-info span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.blog-meta-info i {
    color: var(--primary);
    font-size: 11px;
}

/* Blog Title */
.blog-post-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h3);
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
    margin-bottom: 10px;
    transition: var(--transition);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-post-title a{
    color:#000;
}

.blog-card:hover .blog-post-title {
    color: var(--primary);
}

/* Short Description */
.blog-post-excerpt {
    font-size: var(--fs-small);
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card Footer (Author & Action Link) */
.blog-card-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px dashed rgba(100, 116, 139, 0.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-author img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--primary-soft);
}

.blog-author span {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.blog-read-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--surface-alt);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--transition);
}

.blog-card:hover .blog-read-btn {
    background: var(--primary-gradient);
    color: #ffffff;
    transform: translateX(3px) rotate(-45deg);
    box-shadow: 0 4px 12px rgba(109, 75, 255, 0.3);
}

@keyframes blogPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.4); }
}

    /* ==========================================
   WORKING PROCESS SECTION
   ========================================== */
.working-process {
    padding: 80px 0;
    background: #f8fafc;
    background: radial-gradient(circle at top left, rgba(109, 75, 255, 0.08), transparent 30%), linear-gradient(180deg, #f8faff 0%, #eef2ff 100%);
}

.process-header {
    margin-bottom: 60px;
    text-align: center;
}

.process-tag {
    color: #7c4dff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.process-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: #7c4dff;
}

.process-tag::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #7c4dff;
    border-radius: 50%;
    z-index: 1;
}

.process-title {
    font-weight: 800;
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    color: #0f172a;
    margin-top: 16px;
    letter-spacing: -0.5px;
}

.process-title span {
    color: #7c4dff;
}

/* Process Card */
.process-card {
    background: #ffffff;
    border: 1px solid rgba(124, 77, 255, 0.12);
    border-radius: 16px;
    padding: 40px 24px 50px;
    text-align: center;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease;
    height: 100%;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    margin-bottom: 25px; /* bottom badge-এর স্পেস অ্যাডজাস্ট করার জন্য */
}

/* Inner Decorative Border */
.process-card::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px dashed rgba(124, 77, 255, 0.2);
    border-radius: 12px;
    pointer-events: none;
    z-index: 0;
    transition: border-color 0.3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 77, 255, 0.4);
    box-shadow: 0 20px 40px rgba(124, 77, 255, 0.12);
}

.process-card:hover::before {
    border-color: rgba(124, 77, 255, 0.4);
}

/* Organic Blob Icon Wrapper */
.process-icon-wrapper {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #7c4dff 0%, #651fff 100%);
    margin: 0 auto 30px;
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(124, 77, 255, 0.25);
    transition: transform 0.5s ease;
}

.process-card:hover .process-icon-wrapper {
    transform: scale(1.08) rotate(5deg);
}

/* Decorative Dot on Icon Wrapper */
.process-icon-wrapper::after {
    content: '';
    position: absolute;
    right: -4px;
    bottom: -2px;
    width: 24px;
    height: 24px;
    background: #ffffff;
    border: 3px solid #7c4dff;
    border-radius: 50%;
    z-index: 2;
}

.process-card h4 {
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 12px;
    color: #0f172a;
    position: relative;
    z-index: 1;
}

.process-card p {
    color: #64748b;
    line-height: 1.65;
    font-size: 15px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Bottom Floating Process Number Badge */
.process-number-wrapper {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 5px;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.process-number {
    width: 38px;
    height: 38px;
    background: #0f172a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.process-card:hover .process-number {
    background: #7c4dff;
    transform: scale(1.05);
}

/* Responsive Support */
@media (max-width: 767.98px) {
    .working-process {
        padding: 50px 0;
    }
    .process-card {
        margin-bottom: 40px;
    }
}

/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */
.why-choose-us {
    position: relative;
    overflow: hidden;
}

/* Tagline Badge */
.wcu-tag {
    color: #7c4dff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.wcu-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #7c4dff;
}

.wcu-tag::before {
    content: '';
    position: absolute;
    bottom: -3px;
    right: -10px;
    width: 8px;
    height: 8px;
    background: #7c4dff;
    border-radius: 50%;
}

.wcu-title {
    font-weight: 800;
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.wcu-title span {
    color: #7c4dff;
}

.wcu-desc {
    color: #64748b;
    margin-bottom: 35px;
    font-size: 16px;
    line-height: 1.7;
}

/* Progress Bars */
.skill-item {
    margin-bottom: 22px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.skill-header h6 {
    font-weight: 700;
    margin: 0;
    color: #0f172a;
    font-size: 15px;
}

.skill-header span {
    font-weight: 700;
    color: #7c4dff;
    font-size: 14px;
}

.progress {
    height: 8px;
    background-color: #e2e8f0;
    border-radius: 10px;
    overflow: visible;
    margin-bottom: 0;
}

.progress-bar {
    background: linear-gradient(90deg, #7c4dff 0%, #651fff 100%);
    border-radius: 10px;
    position: relative;
    transition: width 1s ease-in-out;
}

.progress-bar::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: #7c4dff;
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(124, 77, 255, 0.5);
}

/* WCU Actions */
.wcu-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 40px;
}

.btn-wcu {
    background: #7c4dff;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(124, 77, 255, 0.25);
}

.btn-wcu:hover {
    background: #651fff;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(124, 77, 255, 0.35);
}

.wcu-call {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.call-icon {
    width: 48px;
    height: 48px;
    background: rgba(124, 77, 255, 0.1);
    color: #7c4dff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.wcu-call:hover .call-icon {
    background: #7c4dff;
    color: #ffffff;
}

.call-text span {
    display: block;
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.call-text h6 {
    margin: 0;
    font-weight: 700;
    color: #0f172a;
    font-size: 16px;
}

/* Decorative Dotted Line */
.dotted-line-wcu {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

/* Image Side Layout */
.wcu-image-container {
    position: relative;
    height: 520px;
    width: 100%;
}

.img-main-wcu {
    width: 70%;
    height: 430px;
    border-radius: 20px;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.img-overlay-wcu {
    width: 60%;
    height: 380px;
    border-radius: 140px 20px 20px 20px;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    border: 8px solid #ffffff;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

/* Floating Badges */
.floating-badge-wcu {
    position: absolute;
    top: 20px;
    left: -10px;
    background: #7c4dff;
    color: #ffffff;
    padding: 20px 18px;
    border-radius: 14px;
    text-align: center;
    z-index: 3;
    min-width: 130px;
    box-shadow: 0 12px 30px rgba(124, 77, 255, 0.35);
}

.floating-badge-wcu h3 {
    margin: 0;
    font-weight: 800;
    font-size: 28px;
    line-height: 1;
}

.floating-badge-wcu p {
    margin: 4px 0 0 0;
    font-size: 13px;
    font-weight: 500;
}

.floating-badge-wcu::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid #7c4dff;
}

.service-badge-wcu {
    position: absolute;
    bottom: 30px;
    right: -10px;
    background: linear-gradient(135deg, #7c4dff, #6200ea);
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 12px;
    z-index: 4;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 15px 30px rgba(124, 77, 255, 0.35);
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ==========================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================== */
@media (max-width: 991.98px) {
    .why-choose-us {
        padding: 60px 0;
    }

    .wcu-image-container {
        height: auto;
        min-height: 400px;
        margin-top: 40px;
    }

    .img-main-wcu {
        width: 85%;
        height: 320px;
    }

    .img-overlay-wcu {
        width: 70%;
        height: 280px;
        border-width: 5px;
    }

    .floating-badge-wcu {
        top: -15px;
        left: 0;
    }

    .service-badge-wcu {
        bottom: -15px;
        right: 0;
    }
}

@media (max-width: 575.98px) {
    .wcu-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }

    .btn-wcu {
        justify-content: center;
    }

    .img-main-wcu {
        width: 100%;
        position: relative;
        height: 260px;
    }

    .img-overlay-wcu {
        display: none; /* মোবাইলে অতিরিক্ত ছবি হাইড করে ক্লিন লেআউট রাখার জন্য */
    }

    .floating-badge-wcu {
        top: 15px;
        left: 15px;
    }

    .service-badge-wcu {
        bottom: 15px;
        right: 15px;
    }
}
    
    /* Connecting Dotted Line */
    .dotted-line-wcu {
        position: absolute;
        top: 40%;
        left: -40px;
        z-index: 1;
        opacity: 0.5;
    }

    

    .testimonials-showcase {
        padding: 0 0 90px;
        background: #ffffff;
        position: relative;
        overflow: hidden;
    }
    .testimonials-showcase::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 10% 20%, rgba(124, 77, 255, 0.05) 0 2px, transparent 2px) 0 0 / 16px 16px,
            radial-gradient(circle at 90% 25%, rgba(124, 77, 255, 0.04) 0 2px, transparent 2px) 0 0 / 18px 18px;
        opacity: 0.2;
        pointer-events: none;
    }
    .testimonials-inner {
        position: relative;
        z-index: 1;
        padding-top: 16px;
    }
    .testimonial-card {
        position: relative;
        background: linear-gradient(180deg, #f5f7ff 0%, #eef2ff 100%);
        border-radius: 8px;
        padding: 34px 34px 34px 46px;
        min-height: 360px;
        box-shadow: 0 20px 40px rgba(16, 24, 40, 0.12);
        overflow: hidden;
    }
    .testimonial-card::before {
        content: '';
        position: absolute;
        right: -20px;
        bottom: -28px;
        width: 220px;
        height: 180px;
        background: linear-gradient(135deg, rgba(124, 77, 255, 0.03), rgba(124, 77, 255, 0.08));
        clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
    }
    .testimonial-stars {
        display: flex;
        gap: 12px;
        color: #7350f2;
        font-size: 14px;
        margin-bottom:20px;
        position: relative;
        z-index: 1;
    }
    .testimonial-text {
        font-size: var(--font-size-16);
        line-height: 1.72;
        color: #5a6474;
        max-width: 95%;
        margin-bottom: 52px;
        position: relative;
        z-index: 1;
    }
    .testimonial-footer {
        display: flex;
        align-items: center;
        gap: 20px;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 28px;
        padding: 0 34px 0 0;
        z-index: 1;
    }
   .testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 4px solid #7350f2;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-left: 10px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(115, 80, 242, 0.12);
}
    .testimonial-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .testimonial-meta h4 {
        margin: 0 0 4px;
        font-size: 1.05rem;
        font-weight: 800;
        color: #0d1321;
    }
    .testimonial-meta p {
        margin: 0;
        color: #5f6b7d;
        font-size: 0.95rem;
    }
    .testimonial-quote {
        margin-left: auto;
        font-size: 4.6rem;
        line-height: 1;
        color: rgba(124, 77, 255, 0.20);
        font-family: Georgia, serif;
        padding-top: 20px;
    }
    .testimonial-mobile-carousel .carousel-item {
        padding: 0 10px;
    }
    .testimonial-desktop-carousel .carousel-item {
        padding: 0 8px;
    }
    .testimonial-mobile-carousel .testimonial-card {
        min-height: 420px;
    }
    .testimonial-desktop-carousel .testimonial-card {
        min-height: 360px;
    }
    .testimonial-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 52px;
        height: 52px;
        border: 0;
        border-radius: 50%;
        background: #7350f2;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 3;
        box-shadow: 0 16px 30px rgba(115, 80, 242, 0.24);
        transition: 0.3s ease;
        opacity: 1;
    }
    .testimonial-arrow:hover {
        background: #0f172a;
        color: white;
    }
    .testimonial-arrow.carousel-control-prev {
        left: -16px;
    }
    .testimonial-arrow.carousel-control-next {
        right: -16px;
    }
    .testimonial-arrow .carousel-control-prev-icon,
    .testimonial-arrow .carousel-control-next-icon {
        width: 16px;
        height: 16px;
        background-size: 100% 100%;
    }
    .testimonial-mobile-carousel .testimonial-arrow {
        top: auto;
        bottom: -58px;
        transform: none;
        width: 46px;
        height: 46px;
    }
    .testimonial-mobile-carousel .carousel-control-prev.testimonial-arrow {
        left: calc(50% - 58px);
    }
    .testimonial-mobile-carousel .carousel-control-next.testimonial-arrow {
        right: calc(50% - 58px);
    }
    @media (max-width: 575px) {
        .testimonials-showcase {
            padding: 0 0 72px;
            background: #ffffff;
        }
        .testimonial-card {
            min-height: 410px;
            padding: 28px 24px 30px 34px;
        }
        .testimonial-stars {
            font-size: 1.6rem;
            gap: 10px;
            margin-bottom: 22px;
        }
        .testimonial-text {
            font-size: 0.98rem;
            margin-bottom: 42px;
            max-width: 100%;
        }
        .testimonial-footer {
            bottom: 22px;
            padding-right: 24px;
        }
        .testimonial-avatar {
            width: 50px;
            height: 50px;
            margin-left:8px;
        }
        .testimonial-arrow.carousel-control-prev {
            left: 8px;
        }
        .testimonial-arrow.carousel-control-next {
            right: 8px;
        }

        .testimonial-meta h4 {
        font-size:14px;
    }
    .testimonial-meta p {
        font-size:12px;
    }
    }

   /* ==========================================
   CONTACT SECTION
   ========================================== */

.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -20px;
    width: 360px;
    height: 220px;
    background-image:
        linear-gradient(90deg, rgba(109, 75, 255, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(109, 75, 255, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%);
    opacity: 0.45;
    pointer-events: none;
}

/* Header & Kicker */
.contact-kicker {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: var(--fs-small);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    position: relative;
    padding-bottom: 6px;
    margin-bottom: 16px;
}

.contact-kicker::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

.contact-kicker::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -3px;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.contact-title {
    font-size: var(--fs-h2);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
    max-width: 640px;
}

.contact-title span {
    color: var(--primary);
}

.cinfo-intro {
    font-family: var(--font-body);
    color: var(--muted);
    font-size: var(--fs-body);
    margin-bottom: 28px;
    line-height: 1.7;
}

/* ==========================================
   LEFT COLUMN: INFO CARDS
   ========================================== */
.cinfo-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--surface);
    border: 1px solid var(--surface-alt);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
}

.cinfo-card:hover {
    box-shadow: 0 10px 30px rgba(109, 75, 255, 0.12);
    transform: translateY(-3px);
    border-color: rgba(109, 75, 255, 0.3);
}

.cinfo-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.cinfo-icon-purple { background: var(--primary-soft); color: var(--primary); }
.cinfo-icon-green  { background: rgba(16, 185, 129, 0.12); color: #10b981; }
.cinfo-icon-orange { background: rgba(249, 115, 22, 0.12); color: #f97316; }

.cinfo-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cinfo-content span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    font-weight: 600;
}

.cinfo-content strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

.cinfo-content a {
    font-size: var(--fs-small);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.cinfo-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* OPENING HOURS CARD */
.cinfo-hours-card {
    background: linear-gradient(135deg, var(--secondary) 0%, #1e2d56 100%);
    border-radius: 12px;
    padding: 22px 24px;
    margin-top: 20px;
    color: var(--surface);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
}

.cinfo-hours-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 1.1rem;
}

.cinfo-hours-head i {
    color: var(--accent);
}

.cinfo-hours-head strong {
    font-family: var(--font-heading);
    color: var(--surface);
    font-weight: 700;
}

.cinfo-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--fs-small);
}

.cinfo-hours-row:last-of-type {
    border-bottom: none;
}

.cinfo-hours-row span {
    color: rgba(255, 255, 255, 0.72);
}

.cinfo-hours-row strong {
    color: var(--surface);
    font-weight: 600;
}

.cinfo-hours-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 8px 12px;
}

.cinfo-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
    flex-shrink: 0;
    animation: pulse-green 1.8s infinite;
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25); }
    50%      { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.10); }
}

/* ==========================================
   RIGHT COLUMN: FORM CARD
   ========================================== */
.contact-form-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 36px 30px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
    border: 1px solid var(--surface-alt);
    position: relative;
}

.contact-form-card .form-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.contact-input-wrap {
    position: relative;
}

.contact-input,
.contact-textarea {
    width: 100%;
    border: 1px solid #dde3ee;
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
    font-size: var(--fs-small);
    padding: 12px 42px 12px 16px;
    outline: none;
    transition: var(--transition);
}

.contact-textarea {
    min-height: 130px;
    resize: vertical;
    padding-top: 14px;
}

.contact-input:focus,
.contact-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(109, 75, 255, 0.12);
}

.contact-input-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 15px;
    pointer-events: none;
}

.contact-textarea-wrap .contact-input-icon {
    top: 20px;
    transform: none;
}

/* Submit Button */
.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    border-radius: 8px;
    background: var(--primary-gradient);
    color: var(--surface);
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(109, 75, 255, 0.28);
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #7c3aed 100%);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(109, 75, 255, 0.38);
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 991.98px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-form-card {
        margin-top: 32px;
        padding: 28px 20px;
    }
}

@media (max-width: 575.98px) {
    .contact-submit-btn {
        width: 100%;
    }

    .cinfo-hours-card {
        padding: 18px;
    }
}

/* ========================================
   SERVICE DETAIL PAGE STYLES
   ======================================== */

/* -- Hero -- */
.sd-hero {
    position: relative;
    background: linear-gradient(135deg, var(--secondary) 0%, #1a0a5e 100%);
    padding: 80px 0 70px;
    overflow: hidden;
}
.sd-hero-shape {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(109,75,255,0.25) 0%, transparent 70%);
    pointer-events: none;
}
.sd-breadcrumb { --bs-breadcrumb-divider-color: rgba(255,255,255,0.4); margin-bottom: 28px; }
.sd-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; }
.sd-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,0.9); font-size: 0.88rem; }
.sd-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.35); }

.sd-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(109,75,255,0.25);
    border: 1px solid rgba(109,75,255,0.4);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.sd-hero-badge i { font-size: 0.85rem; }
.sd-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}
.sd-hero-title span { color: var(--accent); }
.sd-hero-sub {
    color: rgba(255,255,255,0.72);
    font-size: 1.05rem;
    max-width: 600px;
    line-height: 1.75;
    margin: 0;
}

/* -- Shared -- */
.sd-kicker {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    background: rgba(109,75,255,0.08);
    border-left: 3px solid var(--primary);
    padding: 4px 12px;
    border-radius: 0 6px 6px 0;
    margin-bottom: 14px;
}
.sd-section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.25;
    margin-bottom: 20px;
}
.sd-section-title span { color: var(--primary); }

/* -- Overview Section -- */
.sd-overview {
    /*padding: 40px 0px 0px 0px;
    background: var(--light);*/
}
.sd-overview-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}
.sd-overview-img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    height: 460px;
    box-shadow: 0 20px 60px rgba(109,75,255,0.15);
}
.sd-overview-badge {
    position: absolute;
    top: -18px;
    right: -18px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    z-index: 2;
}
.sd-overview-badge i {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.sd-overview-badge strong { display: block; font-weight: 800; font-size: 1rem; color: var(--secondary); }
.sd-overview-badge span { font-size: 0.78rem; color: var(--muted); }
.sd-overview-stat {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: #fff;
    border-radius: 14px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    z-index: 2;
}
.sd-stat-item { text-align: center; }
.sd-stat-item strong { display: block; font-size: 1.3rem; font-weight: 800; color: var(--primary); line-height: 1; }
.sd-stat-item span { font-size: 0.75rem; color: var(--muted); font-weight: 500; }
.sd-stat-divider { width: 1px; height: 36px; background: #e5e7eb; }

.sd-overview-text {
    color: var(--muted);
    font-size: 0.97rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.sd-check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.sd-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary);
}
.sd-check-list li i { color: var(--primary); margin-top: 2px; font-size: 1rem; flex-shrink: 0; }

.sd-cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.sd-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), #8b6dff);
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 6px 24px rgba(109,75,255,0.35);
}
.sd-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(109,75,255,0.45); color: #fff; }
.sd-btn-primary i { transition: transform 0.25s; }
.sd-btn-primary:hover i { transform: translateX(4px); }

.sd-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 13px 26px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s, color 0.25s;
}
.sd-btn-outline:hover { background: var(--primary); color: #fff; }

/* -- Features Section -- */
.sd-features {
    padding: 90px 0;
    background: #fff;
}
.sd-features-sub {
    color: var(--muted);
    font-size: 0.97rem;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.75;
}

.sd-feature-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #ede9ff;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    padding: 32px 26px 28px;
}
.sd-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(109,75,255,0.14);
}
.sd-feature-img-wrap {
    position: relative;
    overflow: hidden;
}
.sd-feature-img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s;
    display: block;
}
.sd-feature-card:hover .sd-feature-img-wrap img { transform: scale(1.05); }

.sd-feature-icon {
    position: absolute;
    bottom: -20px;
    left: 22px;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary), #8b6dff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(109,75,255,0.35);
    z-index: 2;
}

.sd-feature-icon-circle {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), #8b6dff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 22px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 20px rgba(109,75,255,0.3);
}
.sd-feature-card:hover .sd-feature-icon-circle {
    transform: scale(1.08);
    box-shadow: 0 12px 28px rgba(109,75,255,0.45);
}

.sd-feature-body {
    padding: 0;
}
.sd-feature-body h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
}
.sd-feature-body p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 16px;
}
.sd-feature-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}
.sd-feature-link:hover { gap: 10px; color: var(--primary-dark); }

/* -- CTA Banner -- */

.sd-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
/*    flex-wrap: wrap;*/
    background:linear-gradient(135deg, var(--secondary) 0%, #1a0a5e 100%);
    border: 1px solid rgba(109,75,255,0.3);
    border-radius: 20px;
    padding: 40px 50px;
    margin-top:30px;
}
.sd-cta-text h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}
.sd-cta-text p { color: rgba(255,255,255,0.72); font-size: 0.97rem; margin: 0; }
.sd-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}
.sd-btn-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.25); color: var(--primary); }
.sd-btn-cta i { transition: transform 0.25s; }
.sd-btn-cta:hover i { transform: translateX(4px); }

@media (max-width: 768px) {
    .sd-check-list { grid-template-columns: 1fr; }
    .sd-overview-badge { display: none; }
    .sd-overview-stat { position: static; margin-top: 16px; border-radius: 14px; }
    .sd-cta-inner { flex-direction: column; text-align: center; padding: 30px 24px; }
}

/* ========================================
   PROJECT DETAIL PAGE STYLES  (.pd-*)
   ======================================== */

/* -- Hero -- */
.pd-hero {
    position: relative;
    background: linear-gradient(135deg, var(--secondary) 0%, #1a0a5e 100%);
    padding: 80px 0 70px;
    overflow: hidden;
}
.pd-hero-shape {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 80% at 90% 40%, rgba(109,75,255,0.28) 0%, transparent 70%);
    pointer-events: none;
}
.pd-breadcrumb { --bs-breadcrumb-divider-color: rgba(255,255,255,0.35); margin-bottom: 24px; }
.pd-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.87rem; }
.pd-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,0.9); font-size: 0.87rem; }
.pd-breadcrumb .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.3); }

.pd-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(109,75,255,0.25);
    border: 1px solid rgba(109,75,255,0.45);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.pd-hero-title {
    font-size: clamp(1.9rem, 3.8vw, 2.9rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.22;
    margin-bottom: 16px;
}
.pd-hero-title span { color: var(--accent); }
.pd-hero-sub {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 580px;
    margin-bottom: 30px;
}
.pd-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.pd-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.pd-meta-item > i {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.9rem;
    flex-shrink: 0;
}
.pd-meta-item span { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; }
.pd-meta-item strong { display: block; font-size: 0.93rem; font-weight: 700; color: #fff; }

.pd-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), #8b6dff);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 13px 26px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 6px 24px rgba(109,75,255,0.4);
}
.pd-btn-primary:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 10px 32px rgba(109,75,255,0.5); }
.pd-btn-primary i, .pd-btn-outline i { transition: transform 0.2s; }
.pd-btn-primary:hover i { transform: translateX(4px); }

.pd-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s;
}
.pd-btn-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); color: #fff; }

/* -- Showcase / Screenshots -- */
.pd-showcase {
    background: #f1edff;
    padding: 70px 0 60px;
}
.pd-main-screen {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(109,75,255,0.18);
    margin-bottom: 28px;
}
.pd-main-screen img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}
.pd-screen-glow {
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 120px;
    background: linear-gradient(to top, rgba(241,237,255,0.6), transparent);
    pointer-events: none;
}
.pd-mockup-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.pd-mockup-item {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 28px rgba(109,75,255,0.1);
    cursor: pointer;
}
.pd-mockup-item img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.pd-mockup-item:hover img { transform: scale(1.05); }
.pd-mockup-item span {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.8), transparent);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 20px 14px 12px;
}

/* -- Challenge & Solution -- */
.pd-challenge {
    padding: 40px 0 30px;
    background: #fff;
}

.pd-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
}
.pd-card-problem .pd-card-icon { background: #fee2e2; color: #ef4444; }
.pd-card-solution .pd-card-icon { background: #dcfce7; color: #22c55e; }
.pd-challenge-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 12px;
}
.pd-challenge-card > p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 18px;
}
.pd-challenge-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pd-challenge-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary);
}
.pd-card-problem ul li i { color: #ef4444; margin-top: 2px; }
.pd-card-solution ul li i { color: #22c55e; margin-top: 2px; }

/* Impact Stats */
.pd-impact-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: linear-gradient(135deg, var(--secondary), #1a0a5e);
    border-radius: 18px;
    margin-top: 50px;
    overflow: hidden;
}
.pd-impact-item {
    text-align: center;
    padding: 36px 20px;
    position: relative;
}
.pd-impact-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: rgba(255,255,255,0.15);
}
.pd-impact-item strong {
    display: block;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}
.pd-impact-item span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}

/* -- Key Features -- */
.pd-features {
    padding: 90px 0;
    background: var(--light);
}
.pd-kicker {
    display: inline-block;
    font-size: 0.77rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    background: rgba(109,75,255,0.08);
    border-left: 3px solid var(--primary);
    padding: 4px 12px;
    border-radius: 0 6px 6px 0;
    margin-bottom: 14px;
}
.pd-section-title {
    font-size: clamp(1.55rem, 2.8vw, 2.1rem);
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.28;
    margin-bottom: 16px;
}
.pd-section-title span { color: var(--primary); }
.pd-section-sub {
    color: var(--muted);
    font-size: 0.96rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.75;
}

.pd-feature-card {
    background: #fff;
    border-radius: 0px;
    padding: 30px 26px;
    /* border: 1px solid #ede9ff; */
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}
.pd-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 44px rgba(109,75,255,0.12);
}
.pd-feature-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), #8b6dff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 18px;
    box-shadow: 0 6px 18px rgba(109,75,255,0.3);
}
.pd-feature-card h5 {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
}
.pd-feature-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

/* -- Technology Stack -- */
.pd-tech {
    padding: 90px 0;
    background: #fff;
}
.pd-tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.pd-tech-item {
    background: #fff;
    border: 1px solid #ede9ff;
    border-radius: 0px;
    padding: 28px 20px 22px;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}
.pd-tech-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(109,75,255,0.1);
}
.pd-tech-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin: 0 auto 14px;
}
.pd-tech-laravel { background: #fff1f0; color: #e74c3c; }
.pd-tech-vue     { background: #f0fdf4; color: #42b883; }
.pd-tech-mysql   { background: #eff6ff; color: #3b82f6; }
.pd-tech-redis   { background: #fff7ed; color: #f97316; }
.pd-tech-docker  { background: #eff6ff; color: #2496ed; }
.pd-tech-aws     { background: #fffbeb; color: #f59e0b; }
.pd-tech-bs      { background: #f5f0ff; color: #7952b3; }
.pd-tech-git     { background: #fff5f5; color: #f05032; }

.pd-tech-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 4px;
}
.pd-tech-item span {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
}

/* -- Testimonial -- */
.pd-testimonial {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #1a0a5e 100%);
}
.pd-testimonial-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}
.pd-testi-quote-icon {
    width: 56px;
    height: 56px;
    background: rgba(109,75,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
    margin: 0 auto 24px;
}
.pd-testi-text {
    font-size: 1.13rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 32px;
}
.pd-testi-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.pd-testi-author img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(109,75,255,0.5);
}
.pd-testi-author strong { display: block; color: #fff; font-weight: 800; font-size: 1rem; }
.pd-testi-author span { color: rgba(255,255,255,0.55); font-size: 0.82rem; }
.pd-testi-stars { color: #f59e0b; font-size: 0.8rem; margin-top: 4px; letter-spacing: 2px; }

/* ========================================
   BLOG DETAIL PAGE STYLES  (.bd-*)
   ======================================== */

/* Hero */
.bd-hero {
    position: relative;
    background: linear-gradient(135deg, var(--secondary) 0%, #1a0a5e 100%);
    padding: 70px 0 60px;
    overflow: hidden;
}
.bd-hero-shape {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 80% at 85% 50%, rgba(109,75,255,0.25) 0%, transparent 70%);
    pointer-events: none;
}
.bd-breadcrumb { --bs-breadcrumb-divider-color: rgba(255,255,255,0.35); margin-bottom: 22px; }
.bd-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.87rem; }
.bd-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,0.85); font-size: 0.87rem; }
.bd-breadcrumb .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.3); }

.bd-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(109,75,255,0.25);
    border: 1px solid rgba(109,75,255,0.45);
    border-radius: 50px;
    padding: 5px 15px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.bd-hero-title {
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 22px;
    max-width: 820px;
}
.bd-hero-title span { color: var(--accent); }

.bd-hero-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}
.bd-meta-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.bd-meta-author img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(109,75,255,0.5);
}
.bd-meta-author strong { display: block; font-size: 0.9rem; font-weight: 700; color: #fff; }
.bd-meta-author span { font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.bd-meta-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.2); }
.bd-meta-info {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.65);
}
.bd-meta-info i { color: var(--accent); font-size: 0.8rem; }

/* Layout */
.bd-layout {
    padding: 70px 0 90px;
    background: var(--light);
}

/* Cover image */
.bd-cover-wrap {
    border-radius: 0px;
    overflow: hidden;
    margin-bottom: 36px;
    box-shadow: 0 12px 40px rgba(109,75,255,0.12);
}
.bd-cover-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

/* Article typography */
.bd-article {
    background: #fff;
    border-radius: 0px;
    padding: 40px 38px;
    box-shadow: 0 4px 24px rgba(109,75,255,0.06);
    border: 1px solid #ede9ff;
}
.bd-lead {
    font-size: 1.07rem;
    color: var(--secondary);
    line-height: 1.85;
    font-weight: 500;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--light);
}
.bd-article h2 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--secondary);
    margin: 32px 0 14px;
}
.bd-article h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 22px 0 10px;
}
.bd-article p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 16px;
}

/* Highlight box */
.bd-highlight-box {
    display: flex;
    gap: 16px;
    background: rgba(109,75,255,0.06);
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    padding: 18px 20px;
    margin: 24px 0;
}
.bd-highlight-box > i { color: var(--primary); font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.bd-highlight-box p { margin: 0; font-size: 0.93rem; color: var(--secondary); line-height: 1.75; }

/* Quote block */
.bd-quote-block {
    background: var(--secondary);
    border-radius: 14px;
    padding: 28px 30px;
    margin: 28px 0;
}
.bd-quote-block blockquote {
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(255,255,255,0.88);
    line-height: 1.8;
    margin: 0 0 12px;
    border: none;
    padding: 0;
}
.bd-quote-block cite { font-size: 0.82rem; color: var(--accent); font-weight: 600; }

/* Tags */
.bd-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 32px 0 28px;
    padding-top: 24px;
    border-top: 1px solid var(--light);
}
.bd-tags > span { font-size: 0.82rem; font-weight: 700; color: var(--secondary); }
.bd-tags a {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(109,75,255,0.08);
    border: 1px solid rgba(109,75,255,0.2);
    border-radius: 50px;
    padding: 4px 14px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.bd-tags a:hover { background: var(--primary); color: #fff; }

/* Share bar */
.bd-share-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    background: var(--light);
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 32px;
}
.bd-share-label { font-size: 0.82rem; font-weight: 700; color: var(--secondary); white-space: nowrap; }
.bd-share-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.bd-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: opacity 0.2s, transform 0.2s;
}
.bd-share-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.bd-share-fb { background: #1877f2; color: #fff; }
.bd-share-tw { background: #000; color: #fff; }
.bd-share-li { background: #0a66c2; color: #fff; }
.bd-share-wa { background: #25d366; color: #fff; }
.bd-share-copy { background: #fff; color: var(--secondary); border: 1px solid #e2e8f0; }

/* Author card */
.bd-author-card {
    display: flex;
    gap: 20px;
    background: var(--light);
    border-radius: 16px;
    padding: 24px;
    align-items: flex-start;
}
.bd-author-card > img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(109,75,255,0.3);
    flex-shrink: 0;
}
.bd-author-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--primary); display: block; margin-bottom: 4px; }
.bd-author-info strong { display: block; font-size: 1rem; font-weight: 800; color: var(--secondary); margin-bottom: 8px; }
.bd-author-info p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.bd-author-socials { display: flex; gap: 8px; }
.bd-author-socials a {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(109,75,255,0.1);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.82rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.bd-author-socials a:hover { background: var(--primary); color: #fff; }

/* ---- SIDEBAR ---- */
.bd-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 28px; }

/* Latest posts widget */
.bd-widget {
    background: #fff;
    border-radius: 0px;
    border: 1px solid #ede9ff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(109,75,255,0.06);
}
.bd-widget-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 22px;
    background: linear-gradient(135deg, var(--secondary), #1a0a5e);
}
.bd-widget-head i { color: var(--accent); font-size: 1rem; }
.bd-widget-head h4 { margin: 0; font-size: 1rem; font-weight: 800; color: #fff; }

.bd-latest-list { padding: 8px 0; }
.bd-latest-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    text-decoration: none;
    transition: background 0.2s;
    border-bottom: 1px solid #f1edff;
}
.bd-latest-item:last-child { border-bottom: none; }
.bd-latest-item:hover { background: #f8f6ff; }
.bd-latest-img {
    width: 58px;
    height: 52px;
    border-radius: 0px;
    overflow: hidden;
    flex-shrink: 0;
}
.bd-latest-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bd-latest-info span { font-size: 0.7rem; color: var(--primary); font-weight: 600; display: block; margin-bottom: 3px; }
.bd-latest-info p { margin: 0; font-size: 0.82rem; font-weight: 600; color: var(--secondary); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Support widget */
.bd-support-widget {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a0a5e 100%);
    border-radius: 16px;
    padding: 26px 22px;
    box-shadow: 0 8px 30px rgba(109,75,255,0.2);
}
.bd-support-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    position: relative;
}
.bd-support-head-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(109,75,255,0.35);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.bd-support-head strong { display: block; font-size: 1rem; font-weight: 800; color: #fff; }
.bd-support-head span { font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.bd-online-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
    margin-left: auto;
    animation: pulse-green 1.8s infinite;
}

.bd-support-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 18px;
}

.bd-support-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    margin-bottom: 12px;
    transition: transform 0.25s, box-shadow 0.25s;
}
.bd-support-btn:hover { transform: translateY(-2px); }
.bd-support-phone {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
}
.bd-support-phone:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.bd-support-whatsapp {
    background: rgba(37,211,102,0.15);
    border: 1px solid rgba(37,211,102,0.3);
    margin-bottom: 0;
}
.bd-support-whatsapp:hover { box-shadow: 0 6px 20px rgba(37,211,102,0.2); }

.bd-support-btn-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.bd-support-phone .bd-support-btn-icon { background: rgba(109,75,255,0.4); color: #fff; }
.bd-support-whatsapp .bd-support-btn-icon { background: rgba(37,211,102,0.3); color: #25d366; }

.bd-support-btn-text { flex: 1; }
.bd-support-btn-text span { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.bd-support-btn-text strong { display: block; font-size: 0.9rem; font-weight: 700; color: #fff; }

.bd-support-arrow { color: rgba(255,255,255,0.4); font-size: 0.8rem; }

.bd-support-hours {
    margin-top: 16px;
    margin-bottom: 0;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.bd-support-hours i { color: var(--accent); }

@media (max-width: 991px) {
    .bd-sidebar { position: static; }
    .bd-article { padding: 28px 22px; }
}

/* -- Quote Form -- */
.pd-quote {
    padding: 90px 0;
    background: var(--light);
}
.pd-quote-sub {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.75;
    margin-bottom: 30px;
}
.pd-quote-info { display: flex; flex-direction: column; gap: 18px; }
.pd-qinfo-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.pd-qinfo-item > i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(109,75,255,0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.pd-qinfo-item strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--secondary); }
.pd-qinfo-item span { font-size: 0.82rem; color: var(--muted); }

.pd-quote-form {
    background: #fff;
    border-radius: 0px;
    padding: 40px 36px;
    box-shadow: 0 12px 48px rgba(109,75,255,0.1);
    border: 1px solid #ede9ff;
}
.pd-quote-form h4 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--light);
}
.pd-quote-form label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 6px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.pd-input-wrap {
    position: relative;
}
.pd-input-wrap > i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 0.85rem;
    pointer-events: none;
}
.pd-textarea-wrap > i { top: 16px; transform: none; }
.pd-input {
    width: 100%;
    background: var(--light);
    border: 1px solid #0068f1;
    border-radius: 0px;
    padding: 12px 40px 12px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--secondary);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.pd-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(109,75,255,0.1);
}
.pd-input::placeholder { color: #94a3b8; }
.pd-select { cursor: pointer; }
.pd-textarea { min-height: 130px; resize: vertical; }

.pd-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), #8b6dff);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 15px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 6px 24px rgba(109,75,255,0.35);
    font-family: 'Poppins', sans-serif;
}
.pd-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(109,75,255,0.45); }
.pd-submit-btn i { transition: transform 0.2s; }
.pd-submit-btn:hover i { transform: translateX(4px); }

/* Responsive */
@media (max-width: 991px) {
    .pd-impact-row { grid-template-columns: repeat(2, 1fr); }
    .pd-tech-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
    .pd-mockup-row { grid-template-columns: 1fr; }
    .pd-impact-row { grid-template-columns: repeat(2, 1fr); }
    .pd-impact-item::after { display: none; }
    .pd-tech-grid { grid-template-columns: repeat(2, 1fr); }
    .pd-quote-form { padding: 28px 20px; }
    .pd-hero-meta { gap: 14px; }
}

/* ========================================
   GALLERY PAGE STYLES (.gallery-*)
   ======================================== */

.gallery-section {
    position: relative;
    overflow: hidden;
}

/* Background Cyber Grid Pattern */
.gallery-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        radial-gradient(rgba(109, 75, 255, 0.06) 1.5px, transparent 1.5px),
        linear-gradient(to right, rgba(109, 75, 255, 0.02) 1px, transparent 1px);
    background-size: 30px 30px, 60px 60px;
    pointer-events: none;
}

/* Header & Filter Badges */
.gallery-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: var(--surface);
    border: 1px solid rgba(109, 75, 255, 0.2);
    box-shadow: 0 4px 15px rgba(109, 75, 255, 0.08);
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: var(--fs-small);
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.gallery-title {
    color: var(--text);
    margin-bottom: 15px;
}

.gallery-title span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Category Filter Buttons */
.gallery-filter-wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-btn {
    background: var(--surface);
    color: var(--muted);
    border: 1px solid rgba(109, 75, 255, 0.12);
    padding: 10px 24px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: var(--fs-small);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(109, 75, 255, 0.3);
    transform: translateY(-2px);
}

/* ==========================================
   MASONRY-STYLE GALLERY CARDS
   ========================================== */
.gallery-card {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid rgba(109, 75, 255, 0.1);
    box-shadow: 0 10px 30px rgba(13, 19, 33, 0.04);
    cursor: pointer;
    height: 320px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Glassmorphism Dynamic Overlay */
.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    backdrop-filter: blur(4px);
    transition: all 0.4s ease;
}

.gallery-card-info {
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.gallery-card-tag {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: #a78bfa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: block;
}

.gallery-card-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h3);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
}

.gallery-zoom-icon {
    position: absolute;
    top: 20px; right: 20px;
    width: 42px; height: 42px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transform: scale(0.6) rotate(-45deg);
    transition: all 0.4s ease;
}

/* Card Hover Effects */
.gallery-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px var(--gallery-glow);
    border-color: rgba(109, 75, 255, 0.4);
}

.gallery-card:hover img {
    transform: scale(1.15);
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-card:hover .gallery-card-info {
    transform: translateY(0);
}

.gallery-card:hover .gallery-zoom-icon {
    transform: scale(1) rotate(0deg);
}

/* Filter Hide Class */
.gallery-item.hide {
    display: none;
}

/* ==========================================
   CURVE / 3D COVERFLOW POPUP LIGHTBOX
   ========================================== */
.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(10, 15, 29, 0.92);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-close-btn {
    position: absolute;
    top: 30px; right: 35px;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close-btn:hover {
    background: #ef4444;
    transform: rotate(90deg);
}

/* Swiper Curve Slider Rules */
.gallery-swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 80px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 650px;
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    position: relative;
}

@media (max-width: 768px) {
    .swiper-slide {
        width: 85%;
        height: 320px;
    }
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption-box {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 25px 30px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
    color: #ffffff;
}

.slide-caption-box h4 {
    font-family: var(--font-heading);
    font-size: var(--fs-h3);
    font-weight: 700;
    margin-bottom: 4px;
}

.slide-caption-box p {
    font-size: var(--fs-small);
    color: #94a3b8;
    margin: 0;
}

/* Swiper Custom Navigation Arrows */
.swiper-button-next, .swiper-button-prev {
    color: #ffffff;
    width: 55px; height: 55px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: var(--transition);
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--primary);
    box-shadow: 0 0 20px rgba(109, 75, 255, 0.6);
}

.btn-about {
    position: relative;
    background: rgba(124, 77, 255, 0.9);
    color: white;
    padding: 15px 30px;
    /* border-radius: 8px; */
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* হোভার করলে মেইন বডি সামান্য ডার্ক হবে এবং বর্ডার গ্লো করবে */
.btn-about:hover {
    background: #120a2b; /* ডিপ লাক্সারি ব্ল্যাক-পার্পল */
    color: #00e5ff; /* টেক্সট কালার নিয়ন হবে */
    box-shadow: 0 0 30px rgba(124, 77, 255, 0.6);
}

/* টপ এবং বটম এর গ্লোয়িং বর্ডার অ্যানিমেশন */
.btn-about::before, .btn-about::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #00e5ff;
    transition: all 0.4s ease;
}
.btn-about::before { top: 0; left: 0; }
.btn-about::after { bottom: 0; right: 0; }

.btn-about:hover::before, .btn-wcu:hover::after {
    width: 100%;
}

/* Container Wrapper (Background Area) */
.custom-breadcrumb-area {
    padding: 10px 0;
    background-color: #f8f9fa; /* হালকা ব্যাকগ্রাউন্ড */
}

/* White Card Box Style */
/*.custom-breadcrumb-area nav {
    background: #ffffff;
    padding: 16px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: inline-block;
}*/

/* Bootstrap default list reset & font setup */
.custom-breadcrumb-area .breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
    display: flex;
    align-items: center;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 500;
}

/* Breadcrumb Items Base Color */
.custom-breadcrumb-area .breadcrumb-item {
    color: #2b2b2b;
    display: flex;
    align-items: center;
}

.custom-breadcrumb-area .breadcrumb-item a {
    color: #2b2b2b;
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Active Class Highlight (First Item - Red Accent) */
.custom-breadcrumb-area .breadcrumb-item:first-child a {
    color: #e55347; /* Image Red Color */
}

.custom-breadcrumb-area .breadcrumb-item.active {
    color: #2b2b2b;
    font-weight: 500;
}

/* Separator Symbol ( > ) replacing bootstrap slash */
.custom-breadcrumb-area .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    padding: 0 14px;
    color: #717171;
    font-size: 14px;
    font-weight: 400;
}

/* First Separator Color (Red Accent) */
.custom-breadcrumb-area .breadcrumb-item:first-child + .breadcrumb-item::before {
    color: #e55347;
}

/* Hover Effect */
.custom-breadcrumb-area .breadcrumb-item a:hover {
    color: #e55347;
}


.modern-team-section {
    /*padding: 60px 0;*/
}

.modern-team-section .team-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

/* Image Box */
.modern-team-section .team-img-box {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
}

.modern-team-section .team-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.modern-team-section .team-card:hover .team-img-box img {
    transform: scale(1.05);
}

/* Social Share Button & Slide Menu */
.modern-team-section .social-share-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 38px;
    height: 38px;
    background-color: var(--theme-brown);
    border-bottom-left-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

.modern-team-section .share-btn {
    width: 38px;
    height: 38px;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 13px;
    cursor: pointer;
}

.modern-team-section .social-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease 0.1s;
}

.modern-team-section .social-icons a {
    color: #ffffff;
    font-size: 13px;
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease;
}

.modern-team-section .social-icons a:hover {
    transform: scale(1.2);
    color: #000000;
}

/* Hover effect */
.modern-team-section .team-card:hover .social-share-wrapper {
    height: 205px;
}

.modern-team-section .team-card:hover .social-icons {
    opacity: 1;
    transform: translateY(0);
}

/* Bottom Text Box */
.modern-team-section .team-info {
    position: relative;
    background: #ffffff;
    margin-top: -35px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 12px 10px 18px 10px;
    border-radius: 0 12px 12px 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    z-index: 2;
}

.modern-team-section .member-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

/* Designation Badge Fix */
.modern-team-section .member-designation {
    display: inline-block;
    position: absolute;
    bottom: 0px;
    left: 0;
    background-color: var(--theme-brown);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    white-space: nowrap;
}
