/*
  SEKURZEN Professional Redesign
  - Modern, professional aesthetic with a refined color palette.
  - Reduced whitespace for a more compact layout as requested.
  - Improved typography for better readability and hierarchy.
  - Enhanced responsive design for all screen sizes.
*/

/* 1. Global Styles & Variables
--------------------------------------------*/
:root {
  --primary-color: #0052CC; /* Atlassian Blue: strong, corporate */
  --secondary-color: #00A382; /* Accent green */
  --dark-text: #172B4D; /* Dark blue/slate for headings */
  --body-text: #42526E; /* Softer grey for body copy */
  --background-light: #F4F5F7; /* Light grey for section backgrounds */
  --white: #ffffff;
  --border-color: #DFE1E6;
  --footer-bg: #172B4D;
  --footer-text: #B3BAC5;

  --border-radius: 6px; /* Consistent border radius */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(23, 43, 77, 0.1), 0 4px 6px -2px rgba(23, 43, 77, 0.05);

  --contact-bg-start:#0d3560;
  --contact-bg-end:#0a2746;
  --contact-accent:#0054d8; /* same as Send Message button primary */
  --contact-accent-dark:#0049c2; /* new darker stop */
  --contact-text-soft:#d8e6f3;
}

body {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  margin: 0;
  background-color: var(--white);
  color: var(--body-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 2. Header & Navigation
--------------------------------------------*/
.brand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 5vw;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 65px;
}

.logo-icon {
  height: 81px; /* Increased from 32px */
  width: auto;
  transition: transform 0.2s ease-out;
}
.logo-icon:hover {
  transform: scale(1.05);
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-main a {
  color: var(--dark-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.2rem 0;
}

.nav-main a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-main a:hover::after, .nav-main a:focus::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1001;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 25px;
  background: var(--dark-text);
  margin: 5px 0;
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger animation */
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* 3. Hero Section
--------------------------------------------*/
.hero-section {
  --hero-min-h: 560px; /* base target height */
  background:#ffffff;
  padding:4.8rem 5vw 3.2rem;
}

.hero-inner {
  display: flex;
  align-items: flex-start; /* Changed from center to flex-start */
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  min-height: auto; /* Remove fixed height */
}

.hero-col {
  display: flex;
  flex-direction: column;
}

.hero-col-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-right: 1rem;
}

.hero-col-media {
  flex: 0 0 45%; /* Reduced from 50% to 45% */
  display: flex;
  align-items: flex-start;
}

.hero-media-card {
  width: 100%;
  max-width: 500px; /* Reduced from 600px */
  height: auto;
  background: var(--card-background);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 82, 204, 0.1);
}

.hero-illustration {
  width: 100%;
  height: auto;
  max-height: 350px; /* Reduced from 400px */
  object-fit: contain; /* Maintain aspect ratio without cropping */
  object-position: center;
  display: block;
}

/* Slightly taller on very large screens */
@media (min-width: 1400px){
  .hero-inner { --hero-min-h: 620px; }
}

/* Stack on mobile; let image have a fixed height */
@media (max-width: 980px){
  .hero-inner { 
    flex-direction: column; 
    text-align: center; 
    gap: 2rem; /* Increased gap */
  }
  
  .hero-col-media { 
    flex: none; 
    order: 2; 
    max-width: 400px; /* Limit width on mobile */
    margin: 0 auto;
  }
  
  .hero-illustration { 
    max-height: 280px; /* Slightly smaller on mobile */
  }
}

@media (max-width:1100px){
  .hero-inner {
    grid-template-columns:1fr;
    gap:2.4rem;
    min-height:initial;
  }
  .hero-media-card {
    height:360px;
  }
  .interactive-filter {
    margin-top:1.5rem;
  }
}

@media (max-width:600px){
  .hero-section { padding:4.2rem 1.2rem 2.6rem; }
  .hero-media-card { height:300px; }
  .hero-title { font-size:clamp(1.9rem,7vw,2.4rem); }
}

/* Hero equal-height & no-crop image */
.hero-inner {
  align-items: stretch;
}

.hero-col-media {
  display: flex;
  flex-direction: column;
}

.hero-media-card {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;              /* inner breathing space so image not flush */
  background: #081928;
  border: 1px solid #0f2842;
  border-radius: 20px;
  box-shadow: 0 18px 42px -20px rgba(8,24,43,.55);
  min-height: 100%;
  overflow: hidden;
}

.hero-illustration {
  width: 100%;
  height: 100%;
  object-fit: contain;          /* NO CROPPING */
  object-position: center center;
  background: #081928;          /* fills any letterbox area */
  display: block;
}

/* Optional: limit max height so it doesn’t dwarf text on huge screens */
@media (min-width:1200px){
  .hero-media-card { max-height: 640px; }
}

/* Mobile: fixed height container with contain fit */
@media (max-width: 980px){
  .hero-media-card {
    height: 360px;
  }
}

/* Update the tablet breakpoint for better alignment */
@media (max-width: 1100px) and (min-width: 981px) {
  .hero-illustration {
    max-height: 320px;
  }
  
  .hero-col-media {
    flex: 0 0 42%;
  }
  
  /* Ensure text doesn't get cramped */
  .hero-col-text {
    padding-right: 1.5rem;
  }
}

/* 4. CTA Button
--------------------------------------------*/
.cta-btn {
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  border-radius: var(--border-radius);
  border: 1px solid transparent;
  padding: 0.75rem 1.75rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.cta-btn:hover {
  background-color: #005bda;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.cta-btn:focus {
  outline: 3px solid #b3d4ff;
  outline-offset: 2px;
}

/* 5. Certifications Section
--------------------------------------------*/
.cert-strip {
  background-color: var(--background-light);
  padding: 1.5rem 5vw;
  text-align: center;
}
.cert-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--body-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 1rem 0;
}
.cert-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  filter: grayscale(1);
  opacity: 0.7;
}

/* 6. Services Section
--------------------------------------------*/
.services-section {
  padding: 3rem 5vw;
  background-color: var(--white);
  text-align: center;
}
.section-title {
  color: var(--dark-text);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin: 0 auto 2rem auto;
  max-width: 600px;
}
.services-cards {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 0;
  list-style: none;
}
.services-cards > li {
  position: relative; /* keeps layout if you later add custom icons */
}
.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  text-align: left;
  border: 1px solid var(--border-color);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}
.service-card h3 {
  margin: 0 0 0.5em;
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 600;
}
.service-card .service-tagline {
  font-style: italic;
  color: #555;
  margin-top: 0;
  margin-bottom: 1.2em;
  font-size: 0.95rem;
  min-height: 3em; /* Ensures consistent card height */
}
.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}
.icon-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.8em;
  position: relative;
  color: var(--dark-text);
}
.icon-list li::before {
  content: "✔";
  color: var(--secondary-color);
  font-size: 1.2em;
  position: absolute;
  left: 0;
  top: -2px;
  font-weight: bold;
}

/* 7. About & Contact Panel
--------------------------------------------*/
.section-panel {
    background-color: var(--background-light);
    padding: 3rem 5vw;
}
.panel-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}
.panel-column {
    flex: 1;
    min-width: 300px;
}
.panel-column p {
    line-height: 1.7;
    margin-bottom: 1rem;
}
.contact-alt a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}
.contact-alt a:hover {
    text-decoration: underline;
}
.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: var(--dark-text);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box; /* Important for width calculation */
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px #b3d4ff;
  outline: none;
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form button[type="submit"] {
  width: 100%;
}


/* 8. Footer
--------------------------------------------*/
footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 2rem 5vw;
  text-align: center;
  font-size: 0.9rem;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-links a {
  color: var(--footer-text);
  text-decoration: none;
  margin: 0 0.75rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}


/* 9. Responsive Design
--------------------------------------------*/
@media (max-width: 992px) {
  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-copy {
    text-align: center;
    max-width: 700px;
  }
  .hero-illustration {
    max-width: 350px;
    margin-bottom: 1.5rem;
  }
  .selector-section {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .nav-main {
    display: none; /* JS will toggle this */
    position: absolute;
    top: 65px; /* header height */
    right: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 1rem 0;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border-color);
  }
  .nav-main.open {
    display: flex;
  }
  .nav-main a {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }
  .nav-main a:hover::after {
      width: 0; /* disable underline on mobile nav */
  }
  .nav-main a:hover {
      background-color: var(--background-light);
  }

  .footer-content {
      flex-direction: column;
      gap: 1.5rem;
  }
}

@media (max-width: 480px) {
    .selector-section {
        flex-direction: column;
        align-items: stretch;
    }
}

/* 10. Service Filtering Styles
--------------------------------------------*/
.service-filter-controls {
  margin-bottom: 2rem;
  text-align: center;
}
.filter-btn {
  background: none;
  border: 1px solid var(--border-color);
  color: var(--body-text);
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn:hover, .filter-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.service-card.dimmed {
  opacity: 0.4;
  transform: scale(0.95);
  box-shadow: var(--shadow-sm);
}
.service-card {
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

/* 11. Interactive Filter Styles (Hero Section)
--------------------------------------------*/
.interactive-filter {
  margin-top: 2.5rem; /* Increased from 2rem */
  padding: 0.9rem;
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}
.filter-intro {
  font-size: 0.95rem;
  color: var(--body-text);
  text-align: center;
  margin: 0 auto 1rem auto;
  max-width: 90%;
  line-height: 1.6;
}
.filter-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-text);
  margin: 0 0 0.5rem 0;
  text-align: center;
}
.filter-choices {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.filter-choice-btn {
  background: var(--white);
  border: 1px solid var(--border-color);
  color: var(--primary-color);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: all 0.2s ease;
}
.filter-choice-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Improve mobile filter buttons */
@media (max-width: 600px) {
  .filter-choices {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .filter-choice-btn {
    padding: 1rem;
    font-size: 0.95rem;
  }
}

/* 12. Contact Details Styles
--------------------------------------------*/
.contact-details {
  margin-top: 2rem;
}
.contact-details-title {
  font-size: 1.2rem;
  color: var(--dark-text);
  font-weight: 600;
  margin-bottom: 1rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 1.05rem;
  transition: opacity 0.2s;
}
.contact-item:hover {
  opacity: 0.8;
}
.contact-item svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary-color);
  flex-shrink: 0;
}

.skip-link {
  position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;
}
.skip-link:focus {
  position:fixed;left:1rem;top:1rem;width:auto;height:auto;
  background:#000;color:#fff;padding:.6rem 1rem;border-radius:4px;z-index:2000;
}
.nav-item-soon { color: var(--body-text); opacity:.55; pointer-events:none; cursor:not-allowed; }
.nav-item-soon small { font-size:.65em; font-weight:600; letter-spacing:.5px; }
/* Ensure .centered available if used */
.centered { text-align:center; }
/* Why Choose (cards) */
.why-section {
  background: var(--background-light);
  padding: 3.2rem 5vw 3.6rem;
}
.why-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.why-sub {
  text-align: center;
  margin: -1rem auto 2.5rem;
  font-size: 1.05rem;
  color: var(--body-text);
}
.why-cards {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 2.2rem 1.6rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}
.why-icon {
  color: var(--primary-color);
  margin: 0 auto 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-card h3 {
  margin: 0 0 .75rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark-text);
}
.why-card p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.5;
  color: var(--body-text);
}

/* About Full Section */
.about-full {
  padding: 3.5rem 5vw 3.8rem;
  background: var(--white);
}
.about-inner {
  max-width: 1050px;
  margin: 0 auto;
}
.about-title {
  font-size: clamp(1.9rem,4.2vw,2.6rem);
  margin: 0 0 1.6rem;
  color: var(--dark-text);
  font-weight: 700;
  line-height: 1.15;
}
.about-text p {
  margin: 0 0 1.25rem;
  line-height: 1.7;
  font-size: 1rem;
}
.about-stats {
  margin-top: 2.2rem;
  display: grid;
  gap: 1.3rem;
  grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
}
.stat-card {
  background: var(--background-light);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 1.25rem 1rem 1.1rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: background .25s, border-color .25s;
}
.stat-card:hover {
  background: #eef4ff;
  border-color: var(--primary-color);
}
.stat-value {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.1;
  margin-bottom: .3rem;
}
.stat-label {
  font-size: .85rem;
  line-height: 1.35;
  font-weight: 500;
  color: var(--body-text);
}

@media (max-width:680px) {
  .why-card { padding: 1.8rem 1.2rem 1.4rem; }
  .about-title { font-size: clamp(1.85rem,6vw,2.3rem); }
  .stat-value { font-size: 1.65rem; }
}

/* Anchor offset so fixed header doesn't cover section titles */
#home,
#services,
#why,
#about,
#contact {
  scroll-margin-top: 90px; /* header height + spacing */
}

/* (If header height changes, adjust 90px accordingly) */

/* Contact Section (v1.2 form migrated) */
.contact-section {
  padding: 3.5rem 5vw;
  background: linear-gradient(170deg,var(--contact-accent) 0%, var(--contact-accent-dark) 85%);
  color:#fff;
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit,minmax(420px,1fr)); /* wider so on desktop you get 2 columns */
  align-items: stretch;
}
.contact-intro {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--border-radius);
  padding: 2rem 1.75rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 4px 18px -4px rgba(0,0,0,.35);
  backdrop-filter: blur(2px);
}
.contact-quick {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .95rem;
}
.contact-quick li + li { margin-top: .4rem; }
.contact-form-wrap {
  background: #f8fafc;
  color: var(--dark-text);
  border-radius: var(--border-radius);
  padding: 2rem 1.75rem 1.9rem;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap .form-title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}
#contact-form-aws label {
  display: flex;
  flex-direction: column;
  font-size: .85rem;
  font-weight: 500;
  gap: .4rem;
  color: var(--dark-text);
}
#contact-form-aws input,
#contact-form-aws select,
#contact-form-aws textarea {
  border: 1px solid var(--border-color);
  background: #fff;
  padding: .65rem .7rem;
  border-radius: 6px;
  font: inherit;
  resize: vertical;
}
#contact-form-aws input:focus,
#contact-form-aws select:focus,
#contact-form-aws textarea:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 1px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
  gap: 1rem 1.2rem;
  margin-bottom: 1.1rem;
}
#contact-form-aws textarea { margin-top: .4rem; }
#submit-button-aws {
  width: 100%;
  margin-top: 1rem;
}
.form-status {
  min-height: 1.2rem;
  margin-top: .75rem;
  font-size: .8rem;
  text-align: center;
}
@media (max-width:700px){
  .contact-section { padding: 3rem 1.2rem; }
  .contact-form-wrap { padding:1.6rem 1.25rem 1.5rem; }
}

/* Contact section heading + text color adjustments */
.contact-section .contact-intro .section-title {
  color: #fff;
}
.contact-section .contact-intro p {
  color: #dbe7f2;
}
.contact-section .contact-quick li {
  color: #f0f6fb;
}

/* Contact section palette refinements */
:root {
  --contact-bg-start:#0d3560;
  --contact-bg-end:#0a2746;
  --contact-accent:#0054d8; /* same as Send Message button primary */
  --contact-accent-dark:#0049c2; /* new darker stop */
  --contact-text-soft:#d8e6f3;
}

.contact-section {
  background: linear-gradient(140deg,var(--contact-bg-start) 0%,var(--contact-bg-end) 75%);
}

.contact-section .section-title {
  color:#fff;
  letter-spacing:.5px;
}

.contact-section .section-title::after {
  content:'';
  display:block;
  width:70px;
  height:3px;
  margin:.6rem 0 0;
  background:var(--contact-accent);
  border-radius:2px;
}

.contact-section .contact-intro p { color: var(--contact-text-soft); }

.contact-form-wrap {
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 8px 28px -6px rgba(0,0,0,.4);
}

#contact-form-aws input:focus,
#contact-form-aws select:focus,
#contact-form-aws textarea:focus {
  outline:2px solid var(--contact-accent);
}

#submit-button-aws {
  background:var(--contact-accent);
  border:none;
}
#submit-button-aws:hover {
  filter:brightness(1.08);
}

/* Add these missing styles */

/* Tailored Services Page Styles */
.tailored-main {
  padding: 2rem 5vw;
  min-height: 60vh;
}

.breadcrumb {
  margin-bottom: 1.5rem;
}

.breadcrumb ol {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--body-text);
}

.breadcrumb li::after {
  content: "/";
  margin-left: 0.5rem;
  color: var(--border-color);
}

.breadcrumb li:last-child::after {
  display: none;
}

.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.tailored-services-wrapper {
  margin: 2rem 0;
}

.loading-placeholder {
  text-align: center;
  padding: 2rem;
  color: var(--body-text);
}

.services-cta {
  text-align: center;
  padding: 2rem;
  background: var(--background-light);
  border-radius: var(--border-radius);
  margin-top: 2rem;
}

.services-cta p {
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
  color: var(--dark-text);
}

.no-services-message {
  text-align: center;
  padding: 2rem;
  color: var(--body-text);
}

.no-services-message a {
  color: var(--primary-color);
  text-decoration: none;
}

.no-services-message a:hover {
  text-decoration: underline;
}

/* Add this to your hero section styles */

.hero-title {
  text-align: center;
  margin: 0 0 1rem 0;
}

/* If you want to center the entire text column content */
.hero-col-text {
  text-align: center;
}

/* Or if you only want the title centered but keep other text left-aligned */
.hero-col-text {
  text-align: left; /* Keep this for other elements */
}

.hero-title {
  text-align: center; /* Only center the title */
}
