:root {
            --primary-color: #0b3c5d;   /* Primary corporate color */
            --secondary-color: #f39c12; /* Accent color */
            --dark-bg: #1d2731;
            --light-bg: #f8f9fa;
        }

        .hero-section {
            background: linear-gradient(rgba(11, 60, 93, 0.85), rgba(11, 60, 93, 0.85)), url('https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
            color: #ffffff;
            padding: 80px 0;
        }

        .service-card {
            border: none;
            border-radius: 8px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12) !important;
        }

        .icon-box {
            width: 65px;
            height: 65px;
            border-radius: 8px;
            background-color: rgba(11, 60, 93, 0.08);
            color: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            margin-bottom: 1.25rem;
        }

        .feature-check-list li {
            position: relative;
            padding-left: 1.75rem;
            margin-bottom: 0.5rem;
            list-style: none;
        }

        .feature-check-list li::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--secondary-color);
        }

        .cta-banner {
            background-color: var(--primary-color);
            color: #ffffff;
            border-radius: 12px;
        }


        .execution-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.execution-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  border-color: #f39c12; /* Match your accent yellow/gold */
}



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

:root {
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --color-heading: #1e293b;
  --color-body: #64748b;
  --color-accent: #f39c12;        /* Gold / Yellow Accent */
  --color-accent-hover: #d68910;
  --color-accent-light: #fffbeb;
  --color-accent-border: #fde68a;
  
  --color-navy: #0b3c5d;          /* Dark Blue CTA Background */
  --color-navy-hover: #072b43;
  
  --color-bg-card: #ffffff;
  --color-border-card: #e2e8f0;
  
  --radius-card: 16px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 15px 25px -5px rgba(0, 0, 0, 0.07);
  --shadow-cta: 0 20px 30px -10px rgba(11, 60, 93, 0.35);
}

/*body {
  font-family: var(--font-body);
  background-color: #f8fafc;
  color: var(--color-body);
  line-height: 1.6;
  padding: 3rem 1rem;
}*/

/* --- Main Layout Grid --- */
.qa-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.qa-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

/* --- Left Column: Quality Assurance --- */
.qa-left-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.qa-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-light);
  border: 1px solid var(--color-accent-border);
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 0.85rem;
}

.qa-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--color-heading);
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.qa-description {
  font-size: 0.98rem;
  color: var(--color-body);
  line-height: 1.65;
}

/* Cards Stack */
.qa-cards-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.qa-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.qa-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-accent-border);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.icon-wrapper {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background-color: var(--color-accent-light);
  border: 1px solid var(--color-accent-border);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-accent);
  opacity: 0.85;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.35;
  margin-bottom: 0.4rem;
}

.card-text {
  font-size: 0.9rem;
  color: var(--color-body);
  line-height: 1.55;
}

/* --- Right Column: Blue CTA Card --- */
.cta-card {
  background: var(--color-navy);
  border-radius: var(--radius-card);
  padding: 3.5rem 3rem;
  color: #ffffff;
  box-shadow: var(--shadow-cta);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.cta-description {
  font-size: 0.98rem;
  color: #d0e1f9;
  line-height: 1.65;
}

.cta-btn {
  display: inline-block;
  background-color: var(--color-accent);
  color: #0d1b2a;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 1rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  margin-top: 0.5rem;
}

.cta-btn:hover {
  background-color: #f5b041;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(243, 156, 18, 0.4);
}

/* --- Responsive Adjustments --- */
@media (max-width: 900px) {
  .qa-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .cta-card {
    padding: 2.5rem 2rem;
  }
}




/* Ensure the overall footer acts as a positioning container */
footer, .footer-section {
  position: relative;
  background-color: #0d1726; /* Navy background */
  color: #a0aec0;
}

/* 1. Main Footer Body Spacing */
.footer-main {
  padding-top: 60px;
  padding-bottom: 50px;
}

/* 2. Bottom Copyright Section */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08); /* Subtle separator line */
  padding: 20px 0;
  background-color: #0a121e; /* Slightly darker shade for distinct separation */
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.copyright-text {
  margin: 0;
  font-size: 14px;
  color: #e2e8f0;
}

/* Social Icons Layout */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  color: #ffffff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-socials a:hover {
  background-color: #c5a059; /* Brand Accent/Gold */
  color: #ffffff;
}

/* 3. Back To Top Button Position Fix */
#back-to-top, .scroll-to-top, .top-btn {
  position: fixed; /* Or absolute to page wrapper if preferred */
  bottom: 25px;
  right: 25px;
  z-index: 999;
  background-color: #1a293e;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

#back-to-top:hover {
  background-color: #c5a059;
}









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

:root {
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --color-heading: #1e293b;
  --color-body: #64748b;
  --color-accent: #f39c12;        /* Gold / Yellow Accent */
  --color-accent-hover: #d68910;
  --color-accent-light: #fffbeb;
  --color-accent-border: #fde68a;
  
  --color-navy: #0b3c5d;          /* Dark Blue CTA Background */
  --color-navy-hover: #072b43;
  
  --color-bg-card: #ffffff;
  --color-border-card: #e2e8f0;
  
  --radius-card: 16px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 15px 25px -5px rgba(0, 0, 0, 0.07);
  --shadow-cta: 0 20px 30px -10px rgba(11, 60, 93, 0.35);
}

