/* ==========================================================================
   1. Global Defaults & Reset
   ========================================================================== */
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: 'Sora', sans-serif;
  background-color: #ffffff;
  background-image: 
    linear-gradient(to right, rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  background-attachment: fixed;
  color: #191919;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  
  /* Make body a flex container to pin footer */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Wrap everything between your <nav> and <footer> in a div with this class */
.page-content-wrapper {
  flex: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
}

.hidden {
  display: none !important;
}

/* ==========================================================================
   2. Navigation Component Styles
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.navbar-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo-link {
  display: flex;
  align-items: center;
}

.navbar-logo-img {
  height: 40px;
  width: auto;
}

/* Mobile First Nav Settings */
.navbar-desktop-menu {
  display: none;
}

.navbar-toggle-btn {
  display: block;
  background: none;
  border: none;
  font-size: 30px;
  font-family: 'Sora', sans-serif;
  color: #191919;
  cursor: pointer;
}

/* Show Desktop Nav only when there is enough space to prevent layout breaking */
@media (min-width: 1080px) {
  .navbar-desktop-menu {
    display: flex;
    align-items: center;
  }
  .navbar-toggle-btn {
    display: none;
  }
}

.navbar-link {
  margin-right: 24px;
  color: #191919;
  text-decoration: none;
  font-weight: 200;
  font-size: 14px;
  transition: color 0.2s ease;
}

@media (min-width: 1200px) {
  .navbar-link {
    margin-right: 32px;
  }
}

.navbar-link:hover {
  color: #8ad1f1;
}

.navbar-btn-client {
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background-color: #8ad1f1;
  color: #ffffff;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  text-decoration: none;
  border-radius: 9999px;
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.navbar-btn-client:hover {
  opacity: 0.9;
}

.navbar-btn-audit {
  margin-left: 12px;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background-color: #0c0c0c;
  color: #ffffff;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  text-decoration: none;
  border-radius: 9999px;
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.navbar-btn-audit:hover {
  opacity: 0.9;
}

.navbar-mobile-menu {
  background-color: #ffffff;
  border-top: 1px solid #e2e8f0;
  padding: 24px;
}

.mobile-link {
  display: block;
  margin-bottom: 16px;
  color: #191919;
  text-decoration: none;
  font-weight: 700;
}

.mobile-btn-client {
  display: block;
  margin-top: 16px;
  padding: 8px 16px;
  background-color: #8ad1f1;
  color: #191919;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  border-radius: 9999px;
}

.mobile-btn-audit {
  display: block;
  margin-top: 16px;
  padding: 8px 16px;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  border-radius: 9999px;
}

/* ==========================================================================
   3. Hero Section Styles
   ========================================================================== */
.hero-section {
  position: relative;
  padding-top: 160px; /* Creates space for the fixed navbar */
  padding-bottom: 96px;
  background-color: transparent;
  width: 100%;
  overflow: hidden;
}

.hero-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  display: grid;
  gap: 64px;
  align-items: center;
}

/* Desktop 2-column layout */
@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text-content {
  text-align: left;
}

.hero-title {
  font-size: 36px;
  font-weight: 800;
  color: #191919;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 24px;
  font-family: 'Sora', sans-serif;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 46px;
    color: #8ad1f1;
  }
}

.hero-description {
  font-size: 16px;
  color: #151515;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 95%;
}

.hero-btn {
  display: inline-block;
  padding: 12px 32px;
  color: #fff;
  background-color: #151515;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #8ad1f1;
  color: #ffffff;
}

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

.hero-image-standard {
  position: relative;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  z-index: 1;
  display: block;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* Adds a soft drop shadow */
}

/* Tablet Typography Step */
@media (min-width: 768px) {
  .hero-title {
    font-size: 48px;
  }
}

/* Desktop Typography Step */
@media (min-width: 1024px) {
  .hero-title {
    font-size: 60px;
  }
}

.hero-title-break {
  display: none;
}

@media (min-width: 1024px) {
  .hero-title-break {
    display: block;
  }
}

.hero-description {
  margin-top: 24px;
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  color: #334155;
  line-height: 1.5;
}

/* ==========================================================================
   4. Clients Section Styles
   ========================================================================== */
.clients-section {
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-bottom: 1px solid #e2e8f0;
  width: 100%;
}

.clients-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: 24px;
  padding-right: 24px;
}

.clients-heading {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0;
  margin-bottom: 24px;
}

.logo-slider {
  overflow: hidden;
  padding: 10px 0;
  white-space: nowrap;
  position: relative;
}

.logo-track {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  animation: scrollLogos 25s linear infinite;
  width: max-content;
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

.logo-item {
  width: 140px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.client-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   5. About Section Styles
   ========================================================================== */
.about-section {
  padding: 96px 0;
  background-color: transparent;
  width: 100%;
}

.about-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.about-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px auto;
}

.about-title {
  font-size: 32px;
  font-weight: 800;
  color: #191919;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 16px;
  font-family: 'Sora', sans-serif;
}

@media (min-width: 768px) {
  .about-title {
    font-size: 40px;
  }
}

.about-title-highlight {
  color: #8ad1f1;
}

.about-section-desc {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.about-benefits-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 32px;
}

@media (min-width: 768px) {
  .about-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .about-benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px; /* Slightly more breathing room on desktop */
  }
}

.about-card {
  background-color: #ffffff; /* Solid white to sit nicely above the grid */
  border: 1px solid rgba(0, 0, 0, 0.04); /* Very delicate border */
  padding: 40px 32px; 
  border-radius: 16px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.06); /* Elegant, diffused shadow */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; /* Center-aligned text to mimic the reference image */
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.about-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 16px;
  color: #191919;
}

.about-paragraph {
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   Services Section (What We Do)
   ========================================================================== */
.services-section {
  position: relative;
  padding: 96px 0;
  background-color: transparent;
  width: 100%;
}

.services-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 1;
}

.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px auto;
}

.services-main-title {
  font-size: 32px;
  font-weight: 800;
  color: #191919;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 0;
  font-family: 'Sora', sans-serif;
}

@media (min-width: 768px) {
  .services-main-title {
    font-size: 40px;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 32px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .services-grid {
    /* 3-column layout matching your request */
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
  }
}

.service-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  width: 100%;
}

.service-content {
  padding: 32px;
  flex-grow: 1;
}

.service-title {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #191919;
  margin-top: 0;
  margin-bottom: 12px;
}

.service-text {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   Industries Section Styles
   ========================================================================== */
.industries-section {
  position: relative;
  padding: 96px 0;
  background-color: transparent;
  width: 100%;
}

.industries-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 1;
}

.industries-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px auto;
}

.industries-main-title {
  font-size: 32px;
  font-weight: 800;
  color: #191919;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 0;
  font-family: 'Sora', sans-serif;
}

@media (min-width: 768px) {
  .industries-main-title {
    font-size: 40px;
  }
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 32px;
}

@media (min-width: 768px) {
  .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
  }
}

.industry-card {
  background-color: #8ad1f1;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.industry-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  width: 100%;
}

.industry-content {
  padding: 32px;
  flex-grow: 1;
}

.industry-title {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-top: 0;
  margin-bottom: 12px;
}

.industry-text {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  color: #fff;
  line-height: 1.6;
  margin: 0;
}
/* ==========================================================================
   Why Us Section Styles
   ========================================================================== */
.why-us-section {
  position: relative;
  padding: 96px 0;
  background-color: transparent; /* Removed grey background */
  width: 100%;
}

.why-us-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 1;
}

.why-us-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px auto;
}

.why-us-title {
  font-size: 32px;
  font-weight: 800;
  color: #191919;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 0;
  font-family: 'Sora', sans-serif;
}

@media (min-width: 768px) {
  .why-us-title {
    font-size: 40px;
  }
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 32px;
}

@media (min-width: 768px) {
  .why-us-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3-column layout */
    gap: 40px;
  }
}

.why-us-item {
  background-color: #ffffff; /* Clean white card over the global grid */
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.why-us-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.why-us-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: rgba(138, 209, 241, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.why-us-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.why-us-subtitle {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #191919;
  margin-top: 0;
  margin-bottom: 12px;
}

.why-us-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   Footer Section Styles
   ========================================================================== */
.footer {
  background-color: #151515; /* Solid background covers the grid */
  color: #ffffff;
  padding: 80px 0 30px 0;
  width: 100%;
  position: relative;
  z-index: 2; /* Ensures it sits cleanly on top */
}

.footer-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1.2fr 0.8fr;
    gap: 32px;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-book-img {
  width: 120px;
  height: auto;
  margin-bottom: 16px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.footer-bio-text {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-buy-btn {
  display: inline-block;
  padding: 10px 24px;
  border: 2px solid #8ad1f1;
  color: #8ad1f1;
  background-color: transparent;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  width: fit-content;
}

.footer-buy-btn:hover {
  background-color: #8ad1f1;
  color: #031e2b;
}

.footer-heading {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-sub-heading {
  margin-top: 24px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links-list a:hover {
  color: #8ad1f1;
}

.footer-contact-item {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0 0 10px 0;
}

.footer-contact-item strong {
  color: #ffffff;
}

.footer-socials-wrapper {
  display: flex;
  gap: 12px;
}

.social-icon-circle {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.social-icon-circle:hover {
  background-color: #8ad1f1;
}

.social-icon-img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Turns icons white */
}

.social-icon-circle:hover .social-icon-img {
  filter: none; /* Reverts to original color or darkens on hover if needed */
}

.footer-bottom {
  padding-top: 30px;
  text-align: center;
}

.footer-copyright {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}
/* ==========================================================================
   Final CTA Section
   ========================================================================== */
.final-cta-section {
  background-color: #8ad1f1;
  padding: 40px 0;
  text-align: center;
  width: 100%;
}

.final-cta-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.final-cta-title {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 16px;
}

.final-cta-text {
  font-size: 18px;
  color: #ffffff;
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.6;
}

.final-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 32px;
  background-color: #0c0c0c;
  font-family: 'Sora', sans-serif;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 9999px;
  font-size: 16px;
  margin-top: 24px;
  transition: opacity 0.2s ease;
}

.final-cta-btn:hover {
  opacity: 0.9;
}