:root {
  /* Brand Colors (Logo-aligned) */
  --primary: #1F4FB2;          /* Brand Blue */
  --secondary: #3FA9B5;        /* Brand Teal */
  --accent: #F4A261;           /* Warm CTA */
  --accent-soft: #F6C453;      /* Highlights */

  /* Backgrounds (Light Theme) */
  --bg-main: #F9FBFD;          /* Main page background */
  --bg-section: #FFFFFF;       /* Cards / sections */
  --bg-soft: #EEF4F8;          /* Alternate sections */

  /* Text */
  --text-main: #1F2933;        /* Headings */
  --text-body: #4B5563;        /* Paragraphs */
  --text-muted: #6B7280;       /* Subtle text */

  /* UI */
  --border: #DCE3EA;
  --shadow: rgba(31, 79, 178, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-main);
  color: var(--text-body);
  line-height: 1.6;
}

/* Header / Navigation */
header {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  padding: 20px 0;
  box-shadow: 0 6px 20px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-right-group {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  color: #FFFFFF;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
}

nav a:hover {
  color: var(--accent-soft);
}

/* Hero */
.hero {
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--text-main);
}

.hero p {
  max-width: 700px;
  margin: auto;
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 28px;
  background: var(--accent);
  color: #1F2933;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
}

/* Sections */
section {
  padding: 80px 20px;
}

.section-dark {
  background: var(--bg-soft);
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
  color: var(--text-main);
}

/* Cards */
.cards {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: var(--bg-section);
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 10px var(--shadow);
  transition: all 0.3s ease;
}

.card:hover {
  border-color: var(--secondary);
  transform: translateY(-6px);
}

/* Forms */
form {
  max-width: 600px;
  margin: auto;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-body);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(63, 169, 181, 0.15);
}

button {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: #FFFFFF;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: var(--secondary);
}

.cf-turnstile {
  margin: 20px 0;
}

/* Footer */
footer {
  background: linear-gradient(90deg, #1F4FB2, #163A7A);
  padding: 30px 20px;
  text-align: center;
  color: #E5E7EB;
}

footer a {
  color: var(--accent-soft);
  text-decoration: none;
}

.page-container {
  flex: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  nav {
    flex-direction: column;
  }
}


.devops-highlight {
  padding: 20px 20px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  display: flex;
  justify-content: center;
}

.devops-card {
  max-width: 900px;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 45px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  position: relative;
}

.devops-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 2px solid transparent;
  background: linear-gradient(90deg, #2563eb, #06b6d4) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.devops-card h2 {
  font-size: 2.2rem;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.3;
}

.devops-subtitle {
  font-size: 1.15rem;
  color: #475569;
  max-width: 760px;
}

.devops-cta {
  display: inline-block;
  margin-top: 35px;
  padding: 14px 28px;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.devops-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .devops-card {
    padding: 35px 25px;
  }

  .devops-card h2 {
    font-size: 1.8rem;
  }

  .devops-subtitle {
    font-size: 1.05rem;
  }
}


