:root {
    --primary: #84bcdd;
    --primary-dark: #2c7bac;
    --primary-light: #A3D4EE;
    --secondary: #00E5D4;
    --accent: #FFC107;
    --dark: #000000;
    --light: #FFFFFF;
    --bg-light: #f1f2f4;
    --bg-white: #ffffff;
    --text-dark: #212121;
    --text-main: #424242;
    --text-medium: #555555;
    --text-light: #757575;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-white: #ffffff;
    --heading-color: var(--text-white);
    --gradient-primary: linear-gradient(135deg, #84bcdd 0%, #6BA4C5 100%);
    --gradient-secondary: linear-gradient(90deg, #212121 0%, #424242 100%);
    --gradient-hero: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
    --gradient-cta: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
    --gradient-blue: linear-gradient(135deg, #3949ab, #5c6bc0);
    --container-max-width: 1400px;
    --section-padding-large: 100px 0;
    --section-padding-medium: 80px 0;
    --section-padding-small: 50px 0;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-full: 50px;
    --shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-text: 0 2px 4px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;
}

/* ========================================
   HOME PAGE - "HARDER" DARK THEME STYLES
   ======================================== */

body {
    font-family: var(--font-body);
    background-color: var(--text-white);
    color: var(--text-white);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
}

/* ========================================
   HERO SECTION WITH PARTICLES
   ======================================== */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at center, #0a1a25 0%, var(--dark) 100%);
    overflow: hidden;
    padding-top: 120px;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    inset: 0;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

/* Hero Typography */
.hero-subtitle {
    color: var(--text-white);
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.hero-section canvas {
    pointer-events: none;
}

.hero-title {
    font-size: clamp(48px, 6vw, 90px);
    line-height: 1.1;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 40px;
}

.hero-title span {
    color: var(--text-white);
    position: relative;
}

.hero-desc {
    font-size: 20px;
    color: var(--text-white);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 50px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 60px;
}

/* Hero Buttons */
.btn-hard {
    background: var(--primary);
    color: var(--text-white);
    padding: 20px 45px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 1;
    font-family: var(--font-body);
}

.btn-hard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn-hard:hover {
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(132, 188, 221, 0.4);
}

.btn-hard:hover::before {
    transform: translateX(0) skewX(0);
}

/* Hero Stats Strip */
.hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.stat-item h3 {
    font-size: 48px;
    color: var(--primary);
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.stat-item p {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-top: 10px;
    font-weight: 600;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
    background: #0a0a0a;
    padding: var(--section-padding-large);
    position: relative;
}

.section-head {
    margin-bottom: 80px;
}

.section-head h2 {
    font-size: 56px;
    color: white;
    margin-bottom: 20px;
}

.section-head p {
    color: #999;
    font-size: 18px;
    max-width: 600px;
}

/* Service Cards Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    background: transparent;
    border: none;
}

.service-card {
    background: var(--bg-white);
    padding: 35px;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
}

.service-card:hover {
    background: #111;
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.s-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 30px;
}

.service-card h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
}

.service-card p {
    color: #777;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.learn-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.learn-link i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.service-card:hover .learn-link i {
    transform: translateX(10px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        padding-top: 40px;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-desc {
        margin: 0 auto 40px;
    }

    .hero-title {
        font-size: 56px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 110px 14px 70px;
    }

    .hero-title {
        font-size: clamp(28px, 11vw, 40px);
    }

    .hero-desc {
        font-size: 15px;
        max-width: 32ch;
    }
}

/* ========================================
   DIGITAL CORE CAPABILITIES (New Section)
   ======================================== */

.digital-core-section {
    background-color: #0b0b0b;
    padding: var(--section-padding-large);
    position: relative;
    overflow: hidden;
}

.digital-core-section .section-head h2 {
    font-size: 56px;
    line-height: 1.2;
    max-width: 900px;
    margin-bottom: 60px;
}

.digital-core-section .section-head h2 span {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 5px;
}

.digital-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.digital-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Geometric Shapes */
.geo-shape {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
    display: inline-block;
}

.shape-triangle {
    background-color: #9ccc65;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.shape-square {
    background-color: #ef5350;
}

.shape-circle {
    background-color: #26c6da;
    border-radius: 50%;
}

.shape-star {
    background-color: #ab47bc;
    clip-path: polygon(50% 0%, 65% 35%, 100% 50%, 65% 65%, 50% 100%, 35% 65%, 0% 50%, 35% 35%);
}

.digital-card h3 {
    font-size: 28px;
    color: white;
    margin-bottom: 20px;
}

.digital-card p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 90%;
}

.digital-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
}

.digital-tags a {
    color: white;
    font-size: 14px;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid white;
    padding-bottom: 2px;
    transition: color 0.2s;
}

.digital-tags a:hover {
    color: var(--primary);
    border-color: var(--primary);
}

@media (max-width: 1200px) {
    .digital-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
    background-color: var(--dark);
    padding: var(--section-padding-large);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.testimonial-slider {
    overflow: visible;
    padding-bottom: 60px;
}

.testimonial-slider .swiper-pagination {
    bottom: 0;
}

.testimonial-slider .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
    width: 12px;
    height: 12px;
}

.testimonial-slider .swiper-pagination-bullet-active {
    background: var(--primary);
}

.testimonial-card {
    background: #0b0b0b;
    padding: 50px;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 40px;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 30px;
    font-family: serif;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 40px;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    background: #333;
    border-radius: 50%;
    overflow: hidden;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 5px;
}

.client-details span {
    color: #888;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   CTA STRIP STYLES
   ======================================== */
.cta-section {
    padding: var(--section-padding-large);
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-title {
    color: #fff;
    margin: 0;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    max-width: 600px;
}

.cta-btn {
    background: #fff;
    color: #000;
    padding: 18px 40px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 16px;
    letter-spacing: 1px;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* ========================================
   MODERN TICKER (TECH STACK)
   ======================================== */
.tech-ticker-section {
    background: #050505;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.ticker-scroll {
    display: flex;
    white-space: nowrap;
    animation: ticker 40s linear infinite;
}

.ticker-wrap {
    display: flex;
    gap: 100px;
    padding-right: 100px;
}

.ticker-item {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ticker-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   STRATEGIC SERVICES GRID
   ======================================== */
.strategic-services-section {
    padding: var(--section-padding-large);
    background: #000;
}

.strategic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.strategic-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 80px 60px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border-radius: 12px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.strategic-card:hover {
    background: #111;
    border-color: var(--primary);
    transform: translateY(-12px);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5);
}

.strategic-card i {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 40px;
    display: inline-block;
}

.strategic-card h4 {
    color: white;
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.2;
}

.strategic-card p {
    color: #999;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 450px;
    flex-grow: 1;
}

.learn-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.learn-link i {
    font-size: 18px;
    margin-bottom: 0 !important;
    transition: transform 0.3s ease;
}

.learn-link:hover {
    color: white;
}

.learn-link:hover i {
    transform: translateX(8px);
    color: var(--primary);
}

/* ========================================
   INDUSTRIAL DOMAINS MASTERGRID
   ======================================== */
.industrial-domains-section {
    padding: var(--section-padding-large);
    background: #080808;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.industry-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 65px 40px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 12px;
}

.industry-box i {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 25px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.industry-box h5 {
    color: white;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.industry-box p {
    font-size: 15px;
    color: #999;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.industry-box:hover {
    background: rgba(132, 188, 221, 0.05);
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.industry-box:hover i {
    transform: scale(1.2);
    color: var(--primary) !important;
    opacity: 1;
}

.industry-box:hover h5 {
    color: var(--primary) !important;
}

.industry-box:hover p {
    color: #e0e0e0 !important;
}

/* ========================================
   THE ADVANTAGE SECTION (VANTAGE)
   ======================================== */
.vantage-section {
    padding: var(--section-padding-large);
    background: #000;
}

.vantage-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.vantage-content h2 {
    font-size: 48px;
    color: white;
    margin-bottom: 30px;
    font-weight: 900;
    line-height: 1.1;
}

.vantage-content p.lead-text {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.vantage-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vantage-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vantage-icon {
    width: 60px;
    height: 60px;
    background: rgba(132, 188, 221, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    border: 1px solid rgba(132, 188, 221, 0.2);
}

.vantage-text h6 {
    color: white;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.vantage-text p {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .industry-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .vantage-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .strategic-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .strategic-card {
        padding: 50px 35px;
    }

    .strategic-card h4 {
        font-size: 28px;
    }

    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .digital-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .digital-card h3 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .strategic-grid {
        grid-template-columns: 1fr;
    }

    .strategic-card {
        padding: 40px 30px;
    }

    .digital-grid {
        grid-template-columns: 1fr;
    }

    .vantage-list {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 40px;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 575px) {

    .strategic-grid,
    .industry-grid,
    .digital-grid {
        grid-template-columns: 1fr;
    }

    .strategic-card h4 {
        font-size: 24px;
    }

    .vantage-content h2 {
        font-size: 32px;
    }
}