/* DevOps & Cloud Page Styles */

/* ===================================
   Hero Section
   =================================== */
.devopsHeroSection {
    padding: 120px 0 80px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.devopsHeroGrid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.devopsHeroContent {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.heroBadge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: white;
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
    margin-bottom: 20px;
}

[data-theme="dark"] .heroBadge {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(59, 130, 246, 0.3);
}

.badgeIcon {
    font-size: 20px;
}

.badgeText {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
}

.heroTitle {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: 16px;
}

[data-theme="dark"] .heroTitle {
    color: #f1f5f9;
}

.titleGradient {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.heroDescription {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin-bottom: 20px;
}

.heroStats {
    display: flex;
    gap: 40px;
    padding: 0;
    margin-bottom: 24px;
}

.heroStat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.statValue {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.statLabel {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.heroActions {
    display: flex;
    gap: 16px;
}

/* Hero Visual - Cloud Infrastructure Mockup */
.devopsHeroVisual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 400px;
}

.cloudMockup {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cloudServer {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(59, 130, 246, 0.1));
    backdrop-filter: blur(10px);
    border: 2px solid var(--color-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

[data-theme="dark"] .cloudServer {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border-color: rgba(59, 130, 246, 0.3);
}

.serverIcon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 16px;
    color: white;
}

.serverIcon svg {
    width: 48px;
    height: 48px;
}

.serverLabel {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
}

/* Cloud Provider Badges */
.cloudProviderBadge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.cloudProviderBadge.aws {
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.15), rgba(255, 153, 0, 0.25));
    border: 2px solid rgba(255, 153, 0, 0.3);
    color: #FF9900;
}

[data-theme="dark"] .cloudProviderBadge.aws {
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.2), rgba(255, 153, 0, 0.3));
    border-color: rgba(255, 153, 0, 0.4);
}

.cloudProviderBadge.azure {
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.15), rgba(0, 120, 212, 0.25));
    border: 2px solid rgba(0, 120, 212, 0.3);
    color: #0078D4;
}

[data-theme="dark"] .cloudProviderBadge.azure {
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.2), rgba(0, 120, 212, 0.3));
    border-color: rgba(0, 120, 212, 0.4);
}

.cloudProviderBadge.gcp {
    background: linear-gradient(135deg, rgba(234, 67, 53, 0.15), rgba(66, 133, 244, 0.15));
    border: 2px solid rgba(66, 133, 244, 0.3);
    color: #4285F4;
}

[data-theme="dark"] .cloudProviderBadge.gcp {
    background: linear-gradient(135deg, rgba(234, 67, 53, 0.2), rgba(66, 133, 244, 0.2));
    border-color: rgba(66, 133, 244, 0.4);
}

.providerLogo {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.providerLogo svg {
    width: 100%;
    height: 100%;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Status Indicator */
.statusIndicator {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .statusIndicator {
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(59, 130, 246, 0.3);
}

.statusDot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Hero Buttons - Same as Home Page CTA */
.btnPrimary, .btnSecondary {
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btnPrimary {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow:
        0 8px 24px rgba(30, 58, 138, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .btnPrimary {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    border: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow:
        0 8px 24px rgba(30, 58, 138, 0.5),
        inset 0 1px 0 rgba(59, 130, 246, 0.2);
}

.btnPrimary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btnPrimary span {
    position: relative;
    z-index: 1;
}

.btnPrimary svg {
    position: relative;
    z-index: 1;
}

.btnPrimary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 32px rgba(30, 58, 138, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .btnPrimary:hover {
    box-shadow:
        0 12px 32px rgba(59, 130, 246, 0.6),
        inset 0 1px 0 rgba(59, 130, 246, 0.25);
}

.btnPrimary:hover::before {
    opacity: 1;
}

.btnPrimary:hover span,
.btnPrimary:hover svg {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.btnSecondary {
    background: white;
    color: #1e3a8a;
    border: 2px solid rgba(30, 58, 138, 0.2);
}

[data-theme="dark"] .btnSecondary {
    background: rgba(30, 41, 59, 0.8);
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.3);
}

.btnSecondary:hover {
    background: rgba(30, 58, 138, 0.1);
    border-color: #1e3a8a;
}

[data-theme="dark"] .btnSecondary:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}


/* ===================================
   Solar System (Hero Visual)
   =================================== */
.solarSystem {
    position: relative;
    width: 600px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Orbit Rings */
.orbit {
    position: absolute;
    border: 2px dashed rgba(30, 58, 138, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

[data-theme="dark"] .orbit {
    border: 2px dashed rgba(59, 130, 246, 0.3);
}

.orbit1 {
    width: 240px;
    height: 240px;
}

.orbit2 {
    width: 380px;
    height: 380px;
}

.orbit3 {
    width: 520px;
    height: 520px;
}

/* Central Hub */
.centralHub {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 0 40px rgba(30, 58, 138, 0.6);
    z-index: 10;
    animation: hubPulse 3s ease-in-out infinite;
}

[data-theme="dark"] .centralHub {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.6), rgba(59, 130, 246, 0.5));
    border: 2px solid rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
    animation: hubPulseDark 3s ease-in-out infinite;
}

@keyframes hubPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(30, 58, 138, 0.6);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 60px rgba(30, 58, 138, 0.8), 0 0 80px rgba(59, 130, 246, 0.4);
    }
}

@keyframes hubPulseDark {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 60px rgba(59, 130, 246, 0.7), 0 0 80px rgba(59, 130, 246, 0.3);
    }
}

.hubIcon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hubIcon svg {
    width: 100%;
    height: 100%;
    color: #ffffff;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

[data-theme="dark"] .hubIcon svg {
    color: #ffffff;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.hubLabel {
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .hubLabel {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Planets/Services */
.planet {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    margin: -40px 0 0 -40px;
}

/* Individual Planet Animations */
/* Orbit 1: planet1 and planet4 - 180° apart on 120px radius */
.planet1 {
    animation: orbit1 20s linear infinite;
    animation-delay: 0s;
}

.planet4 {
    animation: orbit1 20s linear infinite;
    animation-delay: -10s; /* 180° offset */
}

/* Orbit 2: planet2 and planet5 - 180° apart on 190px radius */
.planet2 {
    animation: orbit2 30s linear infinite;
    animation-delay: 0s;
}

.planet5 {
    animation: orbit2 30s linear infinite;
    animation-delay: -15s; /* 180° offset */
}

/* Orbit 3: planet3 and planet6 - 180° apart on 260px radius */
.planet3 {
    animation: orbit3 40s linear infinite;
    animation-delay: 0s;
}

.planet6 {
    animation: orbit3 40s linear infinite;
    animation-delay: -20s; /* 180° offset */
}

@keyframes orbit1 {
    from {
        transform: rotate(0deg) translateX(120px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(120px) rotate(-360deg);
    }
}

@keyframes orbit2 {
    from {
        transform: rotate(0deg) translateX(190px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(190px) rotate(-360deg);
    }
}

@keyframes orbit3 {
    from {
        transform: rotate(0deg) translateX(260px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(260px) rotate(-360deg);
    }
}

.planetContent {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.15), rgba(59, 130, 246, 0.12));
    border: 2px solid rgba(59, 130, 246, 0.4);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .planetContent {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.35), rgba(59, 130, 246, 0.25));
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.planet:hover .planetContent {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.35), rgba(59, 130, 246, 0.28));
    border-color: rgba(59, 130, 246, 0.7);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.5), 0 0 32px rgba(59, 130, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

[data-theme="dark"] .planet:hover .planetContent {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.5), rgba(59, 130, 246, 0.42));
    border-color: rgba(59, 130, 246, 0.8);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6), 0 0 32px rgba(59, 130, 246, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.planetContent svg {
    width: 32px;
    height: 32px;
    color: #3b82f6;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(30, 58, 138, 0.3));
}

[data-theme="dark"] .planetContent svg {
    color: #60a5fa;
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.5));
}

.planet:hover .planetContent svg {
    color: #1e3a8a;
    transform: scale(1.1);
}

[data-theme="dark"] .planet:hover .planetContent svg {
    color: #93c5fd;
}

.planetLabel {
    font-size: 10px;
    font-weight: 700;
    color: #1e3a8a;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(30, 58, 138, 0.2);
}

[data-theme="dark"] .planetLabel {
    color: #93c5fd;
    text-shadow: 0 1px 3px rgba(59, 130, 246, 0.3);
}


/* ===================================
   Cloud Platforms Section
   =================================== */
.cloudPlatformsSection {
    padding: 100px 0;
    background: transparent;
}

.sectionHeader {
    text-align: center;
    margin-bottom: 60px;
}

.sectionTitle {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 16px;
}

.sectionSubtitle {
    font-size: 18px;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.platformsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.platformCard {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.02), rgba(59, 130, 246, 0.04));
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--color-border);
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

[data-theme="dark"] .platformCard {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.06), rgba(59, 130, 246, 0.1));
    border-color: rgba(59, 130, 246, 0.25);
}

.platformCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
}

.platformCard.aws:hover {
    border-color: #FF9900;
    box-shadow: 0 20px 60px rgba(255, 153, 0, 0.2);
}

.platformCard.azure:hover {
    border-color: #0078D4;
    box-shadow: 0 20px 60px rgba(0, 120, 212, 0.2);
}

.platformCard.gcp:hover {
    border-color: #4285F4;
    box-shadow: 0 20px 60px rgba(66, 133, 244, 0.2);
}

.platformCard.featured {
    border-color: #0078D4;
    box-shadow: 0 8px 32px rgba(0, 120, 212, 0.15);
}

.featuredBadge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    background: linear-gradient(135deg, #0078D4, #0063b1);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platformHeader {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.platformLogo {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    flex-shrink: 0;
}

.platformCard.aws .platformLogo {
    color: #FF9900;
}

.platformCard.azure .platformLogo {
    color: #0078D4;
}

.platformCard.gcp .platformLogo {
    color: #4285F4;
}

.platformLogo svg {
    width: 32px;
    height: 32px;
}

.platformName {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
}

.platformDescription {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.platformServices {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 32px;
    flex: 1;
}

.platformServices li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--color-text-secondary);
    padding-left: 0;
    position: relative;
}

.platformServices li::before {
    content: "✓";
    color: #1e3a8a;
    font-weight: 700;
    margin-right: 8px;
}

.platformCard.aws .platformServices li::before {
    color: #FF9900;
}

.platformCard.azure .platformServices li::before {
    color: #0078D4;
}

.platformCard.gcp .platformServices li::before {
    color: #4285F4;
}

.platformButton {
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow:
        0 8px 24px rgba(30, 58, 138, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .platformButton {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    border: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow:
        0 8px 24px rgba(30, 58, 138, 0.5),
        inset 0 1px 0 rgba(59, 130, 246, 0.2);
}

.platformButton::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.platformButton span {
    position: relative;
    z-index: 1;
}

.platformButton svg {
    position: relative;
    z-index: 1;
}

.platformButton:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 32px rgba(30, 58, 138, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .platformButton:hover {
    box-shadow:
        0 12px 32px rgba(59, 130, 246, 0.6),
        inset 0 1px 0 rgba(59, 130, 246, 0.25);
}

.platformButton:hover::before {
    opacity: 1;
}

.platformButton:hover span,
.platformButton:hover svg {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}


/* ===================================
   DevOps Services Section
   =================================== */
.devopsServicesSection {
    padding: 100px 0;
    background: transparent;
}

.devopsServicesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.devopsServiceCard {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.02), rgba(59, 130, 246, 0.04));
    padding: 36px;
    border-radius: 20px;
    border: 2px solid var(--color-border);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

[data-theme="dark"] .devopsServiceCard {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.06), rgba(59, 130, 246, 0.1));
    border-color: rgba(59, 130, 246, 0.25);
}

.devopsServiceCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
    border-color: #1e3a8a;
}

.serviceIconWrapper {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 16px;
    color: white;
    margin-bottom: 24px;
}

.serviceIconWrapper svg {
    width: 40px;
    height: 40px;
}

.serviceCardTitle {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.serviceCardDescription {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.serviceTechTags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.techTag {
    padding: 6px 14px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.techTag:hover {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08), rgba(59, 130, 246, 0.12));
    border-color: #1e3a8a;
    transform: translateX(2px);
}


/* ===================================
   Tools & Technologies Section
   =================================== */
.devopsToolsSection {
    padding: 100px 0;
    background: transparent;
}

.toolsCategoriesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.toolCategory {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.02), rgba(59, 130, 246, 0.04));
    padding: 36px;
    border-radius: 20px;
    border: 2px solid var(--color-border);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.08);
}

[data-theme="dark"] .toolCategory {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.06), rgba(59, 130, 246, 0.1));
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.toolCategory:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
    border-color: #1e3a8a;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(59, 130, 246, 0.08));
}

.toolCategoryTitle {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
}

.toolsList {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.toolBadge {
    padding: 10px 20px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.toolBadge:hover {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08), rgba(59, 130, 246, 0.12));
    border-color: #1e3a8a;
    transform: translateX(4px);
}


/* ===================================
   Process Timeline Section
   =================================== */
.devopsProcessSection {
    padding: 100px 0;
    background: transparent;
}

.processTimeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.processStep {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.stepNumber {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.3);
}

.stepContent {
    flex: 1;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.02), rgba(59, 130, 246, 0.04));
    padding: 28px 32px;
    border-radius: 16px;
    border: 2px solid var(--color-border);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.06);
}

[data-theme="dark"] .stepContent {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.06), rgba(59, 130, 246, 0.1));
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.stepContent:hover {
    border-color: #1e3a8a;
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.15);
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(59, 130, 246, 0.08));
}

.stepTitle {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.stepDescription {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.stepDuration {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #1e3a8a;
}

[data-theme="dark"] .stepDuration {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}


/* ===================================
   CTA Section
   =================================== */
.devopsCtaSection {
    padding: 100px 0;
    background: transparent;
}

.ctaContent {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.03), rgba(59, 130, 246, 0.05));
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 80px 60px;
    border: 2px solid var(--color-border);
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.1);
}

[data-theme="dark"] .ctaContent {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08), rgba(59, 130, 246, 0.12));
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.ctaTitle {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 20px;
}

.ctaDescription {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ctaActions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .devopsHeroGrid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .devopsServicesGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .toolsCategoriesGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .heroTitle {
        font-size: 42px;
    }

    .sectionTitle {
        font-size: 36px;
    }

    .cloudProviderBadge {
        display: none;
    }

    /* Solar System Responsive */
    .solarSystem {
        width: 500px;
        height: 500px;
    }

    .orbit1 {
        width: 200px;
        height: 200px;
    }

    .orbit2 {
        width: 320px;
        height: 320px;
    }

    .orbit3 {
        width: 440px;
        height: 440px;
    }

    .centralHub {
        width: 100px;
        height: 100px;
    }

    .hubIcon {
        width: 40px;
        height: 40px;
    }

    .planet {
        width: 70px;
        height: 70px;
        margin: -35px 0 0 -35px;
    }

    .planetContent svg {
        width: 28px;
        height: 28px;
    }

    @keyframes orbit1 {
        from {
            transform: rotate(0deg) translateX(100px) rotate(0deg);
        }
        to {
            transform: rotate(360deg) translateX(100px) rotate(-360deg);
        }
    }

    @keyframes orbit2 {
        from {
            transform: rotate(0deg) translateX(160px) rotate(0deg);
        }
        to {
            transform: rotate(360deg) translateX(160px) rotate(-360deg);
        }
    }

    @keyframes orbit3 {
        from {
            transform: rotate(0deg) translateX(220px) rotate(0deg);
        }
        to {
            transform: rotate(360deg) translateX(220px) rotate(-360deg);
        }
    }
}

@media (max-width: 768px) {
    .devopsHeroSection {
        padding: 80px 0 60px;
    }

    .heroTitle {
        font-size: 36px;
    }

    .heroDescription {
        font-size: 18px;
    }

    .heroStats {
        gap: 24px;
    }

    .statValue {
        font-size: 28px;
    }

    .heroActions {
        flex-direction: column;
    }

    .btnPrimary, .btnSecondary {
        width: 100%;
        justify-content: center;
    }

    .sectionTitle {
        font-size: 32px;
    }

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

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

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

    .processStep {
        flex-direction: column;
        gap: 16px;
    }

    .stepNumber {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .ctaContent {
        padding: 60px 32px;
    }

    .ctaTitle {
        font-size: 32px;
    }

    .ctaActions {
        flex-direction: column;
    }

    /* Solar System Responsive */
    .solarSystem {
        width: 380px;
        height: 380px;
    }

    .orbit1 {
        width: 140px;
        height: 140px;
    }

    .orbit2 {
        width: 230px;
        height: 230px;
    }

    .orbit3 {
        width: 320px;
        height: 320px;
    }

    .centralHub {
        width: 80px;
        height: 80px;
    }

    .hubIcon {
        width: 32px;
        height: 32px;
    }

    .hubLabel {
        font-size: 9px;
    }

    .planet {
        width: 60px;
        height: 60px;
        margin: -30px 0 0 -30px;
    }

    .planetContent svg {
        width: 24px;
        height: 24px;
    }

    .planetLabel {
        font-size: 9px;
    }

    @keyframes orbit1 {
        from {
            transform: rotate(0deg) translateX(70px) rotate(0deg);
        }
        to {
            transform: rotate(360deg) translateX(70px) rotate(-360deg);
        }
    }

    @keyframes orbit2 {
        from {
            transform: rotate(0deg) translateX(115px) rotate(0deg);
        }
        to {
            transform: rotate(360deg) translateX(115px) rotate(-360deg);
        }
    }

    @keyframes orbit3 {
        from {
            transform: rotate(0deg) translateX(160px) rotate(0deg);
        }
        to {
            transform: rotate(360deg) translateX(160px) rotate(-360deg);
        }
    }
}

@media (max-width: 480px) {
    .heroTitle {
        font-size: 28px;
    }

    .heroStats {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }

    .devopsHeroVisual {
        min-height: 300px;
    }

    .cloudServer {
        padding: 30px;
    }
}
