:root {
    --primary-modern: #6c5ce7;
    --primary-light: #a29bfe;
    --accent-modern: #ff7675;
    --hero-bg-gradient: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --text-dark: #1a1a1a;
    --text-muted: #555555;
    --header-purple: #6c5ce7;
    --tech-blue: #4285f4;
}

.hero-modern {
    padding: 160px 0 100px;
    background: var(--hero-bg-gradient);
    position: relative;
    overflow: hidden;
}

.hero-modern::before {
    display: none;
}

.hero-modern::after {
    display: none;
}

/* Antigravity Canvas Container */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: #ffffff;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

@keyframes float-y {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-40px);
    }
}

/* Antigravity Tech Particles (Div-based fallback) */
.tech-dot {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 50%;
}

.tech-dash {
    position: absolute;
    width: 8px;
    height: 2px;
    background: var(--tech-blue);
    opacity: 0.35;
    transform: rotate(-45deg);
    border-radius: 2px;
}

.p-drifting {
    animation: drift 25s infinite linear;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) rotate(-45deg);
    }

    100% {
        transform: translate(-40px, -40px) rotate(-45deg);
    }
}

.particle-1 {
    top: 10%;
    left: 10%;
}

.particle-2 {
    top: 25%;
    left: 35%;
}

.particle-3 {
    top: 15%;
    right: 20%;
    width: 14px !important;
}

.particle-4 {
    bottom: 25%;
    left: 18%;
}

.particle-5 {
    bottom: 15%;
    right: 12%;
}

.particle-6 {
    top: 45%;
    left: 8%;
    opacity: 0.2;
}

.particle-7 {
    top: 65%;
    right: 10%;
}

.particle-8 {
    bottom: 35%;
    right: 30%;
}

.particle-9 {
    top: 8%;
    left: 55%;
}

.particle-10 {
    bottom: 12%;
    left: 48%;
}

.particle-11 {
    top: 30%;
    right: 40%;
}

.particle-12 {
    bottom: 50%;
    left: 40%;
}

/* Floating Bubbles */
.bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(108, 92, 231, 0.08);
    /* Transparent brand purple */
    border-radius: 50%;
    animation: bubble-float 20s infinite ease-in;
    pointer-events: none;
    z-index: 1;
}

.bubble:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    animation-duration: 25s;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    width: 120px;
    height: 120px;
    left: 25%;
    animation-duration: 30s;
    animation-delay: 5s;
}

.bubble:nth-child(3) {
    width: 60px;
    height: 60px;
    left: 40%;
    animation-duration: 22s;
    animation-delay: 2s;
}

.bubble:nth-child(4) {
    width: 100px;
    height: 100px;
    left: 60%;
    animation-duration: 28s;
    animation-delay: 8s;
}

.bubble:nth-child(5) {
    width: 50px;
    height: 50px;
    left: 80%;
    animation-duration: 20s;
    animation-delay: 4s;
}

.bubble:nth-child(6) {
    width: 90px;
    height: 90px;
    left: 90%;
    animation-duration: 35s;
    animation-delay: 10s;
}

@keyframes bubble-float {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.4;
    }

    50% {
        transform: translateY(-50vh) translateX(50px);
    }

    90% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-110vh) translateX(-20px);
        opacity: 0;
    }
}

/* Floating Bubbles */
.bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(108, 92, 231, 0.08);
    border-radius: 50%;
    animation: bubble-float 20s infinite ease-in;
    pointer-events: none;
    z-index: 1;
}

.bubble:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    animation-duration: 25s;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    width: 120px;
    height: 120px;
    left: 25%;
    animation-duration: 30s;
    animation-delay: 5s;
}

.bubble:nth-child(3) {
    width: 60px;
    height: 60px;
    left: 40%;
    animation-duration: 22s;
    animation-delay: 2s;
}

.bubble:nth-child(4) {
    width: 100px;
    height: 100px;
    left: 60%;
    animation-duration: 28s;
    animation-delay: 8s;
}

.bubble:nth-child(5) {
    width: 50px;
    height: 50px;
    left: 80%;
    animation-duration: 20s;
    animation-delay: 4s;
}

.bubble:nth-child(6) {
    width: 90px;
    height: 90px;
    left: 90%;
    animation-duration: 35s;
    animation-delay: 10s;
}

@keyframes bubble-float {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.4;
    }

    50% {
        transform: translateY(-50vh) translateX(50px);
    }

    90% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-110vh) translateX(-20px);
        opacity: 0;
    }
}

/* Tech Particles */
.tech-particle {
    position: absolute;
    color: var(--primary-light);
    font-family: Arial, sans-serif;
    opacity: 0.3;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.particle-plus {
    font-size: 24px;
    animation: rotate-plus 10s infinite linear;
}

.particle-circle {
    width: 12px;
    height: 12px;
    border: 2px solid var(--primary-modern);
    border-radius: 50%;
    animation: pulse-circle 4s infinite alternate;
}

.particle-x {
    font-size: 20px;
    animation: float-x-anim 12s infinite ease-in-out;
}

@keyframes rotate-plus {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-circle {
    0% {
        transform: scale(1);
        opacity: 0.1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0.3;
    }
}

@keyframes float-x-anim {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(20px, -30px) rotate(180deg);
    }
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    z-index: 1;
    position: relative;
}

.main-header {
    transition: all 0.4s ease;
    background: #ffffff !important;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    height: auto !important;
    padding: 12px 0;
}

.main-header .menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header .menu-links {
    color: #444 !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    font-size: 13px !important;
    letter-spacing: 0.8px;
    padding: 0 14px !important;
}

.main-header .menu-links:hover {
    color: var(--primary-modern) !important;
}

.main-header.sticky {
    background: rgba(255, 255, 255, 0.98) !important;
    padding: 5px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Top Marquee Bar */
.marquee-top {
    background: var(--header-purple) !important;
    color: #fff !important;
    padding: 6px 0 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

.marquee-top marquee {
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

/* Custom Header Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-call-green {
    background: #27ae60;
    color: #fff !important;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(39, 174, 96, 0.3);
}

.btn-call-green:hover {
    transform: scale(1.1);
    background: #219150;
}

.btn-menu-blue {
    background: #4b7bec;
    color: #fff !important;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(75, 123, 236, 0.3);
}

.btn-menu-blue:hover {
    transform: scale(1.05);
    background: #3867d6;
}

.dsk-logo img {
    max-height: 55px;
    width: auto;
}

.hero-heading-sec2 h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(to right, var(--primary-modern), #a29bfe);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-heading-sec2 p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 35px;
}

.btn-modern {
    background: var(--primary-modern);
    color: white !important;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(108, 92, 231, 0.4);
    background: #5b4bc4;
}

.hero-image-modern {
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.marquee-top {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.custom-nav .nav-list>li>a.menu-links {
    font-size: 13px !important;
    letter-spacing: 0.5px;
}

.service-card-app {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #fff;
    height: 100%;
}

.service-card-app:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.15);
    border-color: var(--primary-light);
}

.service-card-app img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.service-card-app:hover img {
    transform: scale(1.05);
}

.home-page-services {
    padding: 30px !important;
}

.home-page-services h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.link-prbs {
    color: var(--primary-modern) !important;
    font-weight: 600;
}

.link-prbs i {
    transition: transform 0.3s ease;
}

.link-prbs:hover i {
    transform: translateX(5px);
}

/* Blog Section Modern Styles */
.blog-card-modern {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.blog-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.12);
    border-color: var(--primary-light);
}

.blog-card-modern .item-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.blog-card-modern .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card-modern:hover .item-image img {
    transform: scale(1.1);
}

.category-blog {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary-modern);
    color: #fff !important;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.category-blog a {
    color: #fff !important;
}

.blog-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-info h4 {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.blog-info h4 a {
    color: var(--text-dark) !important;
    transition: color 0.3s ease;
}

.blog-info h4 a:hover {
    color: var(--primary-modern) !important;
}

.blog-info p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-info .link-prbs {
    margin-top: auto;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Premium Read More / Learn More Button */
.btn-premium-read {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    border-radius: 50px;
    background: transparent !important;
    color: var(--primary-modern) !important;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-modern) !important;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
    text-decoration: none !important;
}

.btn-premium-read::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-modern);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.btn-premium-read:hover {
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.2);
}

.btn-premium-read:hover::after {
    width: 100%;
}

.btn-premium-read i {
    transition: transform 0.3s ease !important;
}

.btn-premium-read:hover i {
    transform: translateX(5px) !important;
}

/* Secondary Version (Greenish) */
.btn-premium-read.green-style {
    color: #27ae60 !important;
    border-color: #27ae60 !important;
}

.btn-premium-read.green-style::after {
    background: #27ae60;
}