* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: #ffffff;
    min-height: 100vh;
    padding: 24px;
}

.app-canvas {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.hero-card {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 48px);
    border-radius: 24px;
    overflow: hidden;

    /* Dark landscape background with subtle dark gradient overlay */
    background-image: linear-gradient(180deg, rgba(12, 12, 15, 0.45) 0%, rgba(12, 12, 15, 0.3) 50%, rgba(12, 12, 15, 0.75) 100%), url('../images/planetary.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Header Navbar */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 52px;
    width: 100%;
    z-index: 10;
}

.nav-pill {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    padding: 0.65rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9999px;
}

.nav-link {
    font-size: 0.925rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.brand-logo {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.25s ease;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Center Hero Section */
.hero-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
    z-index: 5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    font-size: 0.825rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.badge-icon {
    font-size: 0.9rem;
}

.hero-title {
    font-size: 4.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.hero-contact-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.25rem;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.contact-pill:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 2.25rem;
    background: rgba(18, 18, 22, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 9999px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover {
    background: rgba(28, 28, 35, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-button svg {
    transition: transform 0.25s ease;
}

.cta-button:hover svg {
    transform: translateX(4px);
}

/* Hero Footer Bar */
.hero-footer {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 24px 32px;
    width: 100%;
    z-index: 10;
}

.footer-widget {
    background: rgba(18, 18, 22, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 0.85rem 1.15rem;
    text-align: left;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #f97316;
    border-radius: 50%;
    box-shadow: 0 0 10px #f97316;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(249, 115, 22, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}

.widget-desc {
    font-size: 0.775rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    body {
        padding: 12px;
    }
    .hero-card {
        min-height: calc(100vh - 24px);
        border-radius: 16px;
    }
    .top-nav, .hero-footer {
        padding: 16px 12px;
    }
    .top-nav {
        flex-direction: column;
        gap: 1rem;
    }
    .nav-pill {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
        border-radius: 20px;
    }
    .nav-link {
        font-size: 0.85rem;
    }
    .nav-actions {
        justify-content: center;
    }
    .hero-title {
        font-size: 3.25rem;
    }
    .hero-subtitle {
        font-size: 1.35rem;
    }
    .hero-footer {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .footer-stats {
        justify-content: center;
    }
}

/* Blog / Cloud Computing Projects Section */
.blog-section {
    margin-top: 2rem;
    width: 100%;
}

.blog-container {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 4.5rem 4.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    overflow: hidden;
}

/* Blog Left Column */
.blog-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.blog-heading {
    font-size: 3.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0b2545;
    line-height: 1.08;
    margin-bottom: 1.25rem;
}

.blog-description {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 2.25rem;
    max-width: 340px;
}

.more-projects-btn {
    font-family: 'JetBrains Mono', monospace;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    color: #1d4ed8;
    font-size: 0.825rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s ease;
    padding: 0;
}

.more-projects-btn:hover {
    color: #1e3a8a;
    transform: translateX(3px);
}

.more-projects-btn svg {
    transition: transform 0.25s ease;
}

.more-projects-btn:hover svg {
    transform: translateX(4px);
}

/* Blog Right Column - Project Articles */
.blog-right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.blog-item {
    display: flex;
    flex-direction: column;
}

.project-meta {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.65rem;
    font-family: 'JetBrains Mono', monospace;
}

.service-tag {
    font-size: 0.725rem;
    font-weight: 600;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    padding: 0.2rem 0.55rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.project-date {
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.project-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
    cursor: pointer;
}

.project-title:hover {
    color: #1d4ed8;
}

.project-summary {
    border-left: 2px solid #e2e8f0;
    padding-left: 1.25rem;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.65;
    margin-top: 0.25rem;
}

/* Responsive Grid Adjustments */
@media (max-width: 992px) {
    .blog-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2rem;
    }
    .blog-heading {
        font-size: 2.25rem;
    }
    .project-title {
        font-size: 1.4rem;
    }
}

/* Recent Deployments Section */
.deployments-section {
    margin-top: 2rem;
    width: 100%;
}

.deployments-container {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 4.5rem 4.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.deployments-header {
    margin-bottom: 2.5rem;
}

.deployments-title {
    font-size: 3.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0b2545;
    line-height: 1.08;
}

.deployments-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.deployment-card {
    border-radius: 18px;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.deployment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(11, 37, 69, 0.1);
}

/* Left Card: Case Study */
.card-large {
    background-image: linear-gradient(180deg, rgba(250, 250, 250, 0.45) 0%, rgba(245, 245, 245, 0.8) 55%, rgba(240, 240, 240, 0.95) 100%), url('../images/arch.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid #e2e8f0;
    justify-content: flex-end;
}

/* Right Card: Cobalt Open Source */
.card-cobalt {
    background-image: linear-gradient(180deg, rgba(3, 59, 140, 0.88) 0%, rgba(2, 45, 110, 0.96) 100%), url('../images/stones.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #033b8c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: space-between;
}

.card-icon {
    color: #ffffff;
    margin-bottom: 2rem;
}

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

.deployment-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.tag-blue {
    color: #1d4ed8;
}

.tag-white {
    color: rgba(255, 255, 255, 0.75);
}

.deployment-card-title {
    font-size: 2.15rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.02em;
}

.title-white {
    color: #ffffff;
}

.deployment-card-desc {
    font-size: 0.975rem;
    color: #475569;
    max-width: 480px;
    line-height: 1.55;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.deployment-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: underline;
    text-underline-offset: 4px;
    display: inline-block;
    margin-top: 1rem;
    transition: opacity 0.25s ease;
}

.deployment-link:hover {
    opacity: 0.85;
}
/* Contact Form Layout */
.contact-form-container {
  max-width: 700px;
  margin: 4rem auto;
  padding: 3.5rem;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.3s ease;
}

.contact-form-container:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.form-field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0b2545;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  color: #0f172a;
  background-color: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  outline: none;
  transition: all 0.25s ease-in-out;
  box-sizing: border-box;
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
  color: #94a3b8;
}

#contact-form input:focus,
#contact-form textarea:focus {
  border-color: #1d4ed8;
  box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.1);
  background-color: #ffffff;
}

#contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

#submit-btn {
  align-self: flex-start;
  padding: 1rem 2.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  background-color: #1d4ed8;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0.5rem;
}

#submit-btn:hover {
  background-color: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 78, 216, 0.4);
}

#submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

#form-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  min-height: 1.25rem;
}

#form-status.success {
  color: #4ade80;
}

#form-status.error {
  color: #f87171;
}


/* Responsive adjustments for Deployments and Contact */
@media (max-width: 992px) {
    .deployments-container {
        padding: 3rem 2rem;
    }
    .deployments-title {
        font-size: 2.25rem;
    }
    .deployments-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .deployment-card {
        min-height: 350px;
    }
    
    .contact-form-container {
        padding: 2.5rem 2rem;
        margin: 2rem 1rem;
    }
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    #contact-form input,
    #contact-form textarea {
        padding: 0.85rem 1rem;
        font-size: 1rem;
    }
    
    #submit-btn {
        width: 100%;
        text-align: center;
    }
}