/*
Theme Name: Adviz Media
Theme URI: https://example.com/adviz-media
Author: Adviz Media
Author URI: https://example.com
Description: Native WordPress conversion of the existing Adviz Media marketing website.
Version: 1.0.0
Text Domain: adviz-media
*/

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

/* FILE: components\Companies\Companies.css */
/* ========================================
   TRUSTED COMPANIES
======================================== */

.trusted-section {
  width: 100%;
  padding: 50px 0;

  background: #000;

  overflow: hidden;
}


/* ========================================
   CONTAINER
======================================== */

.trusted-container {
  width: 100%;
  max-width: 1200px;

  margin: 0 auto;
}


/* ========================================
   HEADING
======================================== */

.trusted-title {
  margin: 0 0 24px;

  padding: 0 20px;

  box-sizing: border-box;

  text-align: center;

  color: #bcbcbc;

  font-family: Arial, sans-serif;

  font-size: 14px;
  font-weight: 500;

  letter-spacing: 2px;

  line-height: 1.4;

  text-transform: uppercase;
}


/* ========================================
   MARQUEE
======================================== */

.logo-marquee {
  width: 100%;

  position: relative;

  overflow: hidden;
}


/* ========================================
   SIDE FADE
======================================== */

.logo-marquee::before,
.logo-marquee::after {
  content: "";

  position: absolute;

  top: 0;
  bottom: 0;

  width: 100px;

  z-index: 5;

  pointer-events: none;
}


.logo-marquee::before {
  left: 0;

  background: linear-gradient(
    to right,
    #000 0%,
    rgba(0, 0, 0, 0) 100%
  );
}


.logo-marquee::after {
  right: 0;

  background: linear-gradient(
    to left,
    #000 0%,
    rgba(0, 0, 0, 0) 100%
  );
}


/* ========================================
   TRACK
======================================== */

.logo-track {
  display: flex;

  width: max-content;

  gap: 8px;

  animation:
    companyMarquee 35s linear infinite;

  will-change: transform;
}


/* ========================================
   COMPANY CARD
======================================== */

.company-card {
  width: 200px;

  height: 82px;

  flex: 0 0 200px;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 0 15px;

  box-sizing: border-box;

  background: #15151f;

  border: 1px solid
    rgba(255, 255, 255, 0.04);

  border-radius: 7px;

  overflow: hidden;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}


/* ========================================
   CARD HOVER
======================================== */

.company-card:hover {
  background: #1b1b28;

  border-color:
    rgba(57, 190, 226, 0.25);

  transform: translateY(-2px);
}


/* ========================================
   COMPANY NAME
======================================== */

.company-card span {
  display: block;

  width: 100%;

  min-width: 0;

  box-sizing: border-box;

  color: #f0f0f0;

  font-family: Arial, sans-serif;

  /*
     SAME FONT FOR EVERY COMPANY
  */

  font-size: 16px;

  font-weight: 600;

  letter-spacing: 0.2px;

  line-height: 1.2;

  text-align: center;

  /*
     ONE LINE ONLY
  */

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;
}


/* ========================================
   REMOVE INDIVIDUAL FONT DIFFERENCES
======================================== */

/*
   All company names intentionally use
   the exact same typography.
*/

.company-card:nth-child(1) span,
.company-card:nth-child(2) span,
.company-card:nth-child(3) span,
.company-card:nth-child(4) span,
.company-card:nth-child(5) span,
.company-card:nth-child(6) span,
.company-card:nth-child(7) span,
.company-card:nth-child(8) span,
.company-card:nth-child(9) span {
  font-size: 16px;

  font-weight: 600;

  font-style: normal;

  letter-spacing: 0.2px;

  line-height: 1.2;
}


/* ========================================
   MARQUEE ANIMATION
======================================== */

@keyframes companyMarquee {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

}


/* ========================================
   PAUSE ON HOVER
======================================== */

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {

  .trusted-section {
    padding: 55px 0;
  }


  /* ========================================
     TITLE
  ======================================== */

  .trusted-title {
    font-size: 12px;

    letter-spacing: 1.5px;

    margin-bottom: 20px;
  }


  /* ========================================
     CARD
  ======================================== */

  .company-card {
    width: 170px;

    height: 70px;

    flex: 0 0 170px;

    padding: 0 12px;
  }


  /* ========================================
     NAME
  ======================================== */

  .company-card span,
  .company-card:nth-child(1) span,
  .company-card:nth-child(2) span,
  .company-card:nth-child(3) span,
  .company-card:nth-child(4) span,
  .company-card:nth-child(5) span,
  .company-card:nth-child(6) span,
  .company-card:nth-child(7) span,
  .company-card:nth-child(8) span,
  .company-card:nth-child(9) span {

    font-size: 14px;

    font-weight: 600;

    font-style: normal;

    letter-spacing: 0.1px;

    line-height: 1.2;
  }


  /* ========================================
     TRACK
  ======================================== */

  .logo-track {
    gap: 7px;

    animation-duration: 30s;
  }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {

  .trusted-section {
    padding: 45px 0;
  }


  /* ========================================
     TITLE
  ======================================== */

  .trusted-title {
    padding: 0 15px;

    font-size: 10px;

    letter-spacing: 1.2px;

    line-height: 1.4;

    margin-bottom: 18px;
  }


  /* ========================================
     CARD
  ======================================== */

  .company-card {
    width: 145px;

    height: 62px;

    flex: 0 0 145px;

    padding: 0 9px;

    border-radius: 6px;
  }


  /* ========================================
     COMPANY NAME
  ======================================== */

  .company-card span,
  .company-card:nth-child(1) span,
  .company-card:nth-child(2) span,
  .company-card:nth-child(3) span,
  .company-card:nth-child(4) span,
  .company-card:nth-child(5) span,
  .company-card:nth-child(6) span,
  .company-card:nth-child(7) span,
  .company-card:nth-child(8) span,
  .company-card:nth-child(9) span {

    font-size: 11px;

    font-weight: 600;

    font-style: normal;

    letter-spacing: 0;

    line-height: 1.2;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
  }


  /* ========================================
     TRACK
  ======================================== */

  .logo-track {
    gap: 6px;

    animation-duration: 25s;
  }


  /* ========================================
     SIDE FADE
  ======================================== */

  .logo-marquee::before,
  .logo-marquee::after {
    width: 45px;
  }

}


/* ========================================
   VERY SMALL PHONES
======================================== */

@media (max-width: 380px) {

  .trusted-section {
    padding: 40px 0;
  }


  .trusted-title {
    font-size: 9px;

    letter-spacing: 1px;

    margin-bottom: 16px;
  }


  /* ========================================
     CARD
  ======================================== */

  .company-card {
    width: 135px;

    height: 60px;

    flex: 0 0 135px;

    padding: 0 8px;
  }


  /* ========================================
     NAME
  ======================================== */

  .company-card span,
  .company-card:nth-child(1) span,
  .company-card:nth-child(2) span,
  .company-card:nth-child(3) span,
  .company-card:nth-child(4) span,
  .company-card:nth-child(5) span,
  .company-card:nth-child(6) span,
  .company-card:nth-child(7) span,
  .company-card:nth-child(8) span,
  .company-card:nth-child(9) span {

    font-size: 10px;

    font-weight: 600;

    font-style: normal;

    letter-spacing: 0;

    line-height: 1.2;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
  }


  /* ========================================
     TRACK
  ======================================== */

  .logo-track {
    gap: 5px;

    animation-duration: 23s;
  }


  /* ========================================
     SIDE FADE
  ======================================== */

  .logo-marquee::before,
  .logo-marquee::after {
    width: 35px;
  }

}

/* FILE: components\ContactForm\ContactForm.css */
/* =========================================
   MAIN SECTION
========================================= */

.audit-section {
  width: 100%;
  padding: 100px 70px;
  background: #0b1014;
  box-sizing: border-box;
  overflow: hidden;
}

.audit-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;

  align-items: start;
}


/* =========================================
   LEFT SIDE
========================================= */

.audit-left {
  padding-top: 25px;
}

.audit-eyebrow {
  margin-bottom: 20px;

  color: #39bee2;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
}

.audit-left h2 {
  margin: 0;

  max-width: 600px;

  color: #ffffff;

  font-size: 58px;
  font-weight: 500;
  line-height: 1.08;
}

.audit-left h2 span {
  color: #39bee2;
}

.audit-description {
  max-width: 560px;

  margin: 28px 0 42px;

  color: #aab4bb;

  font-size: 18px;
  line-height: 1.7;
}


/* =========================================
   BENEFITS
========================================= */

.audit-benefits {
  display: flex;
  flex-direction: column;

  gap: 24px;
}

.audit-benefit {
  display: flex;
  align-items: flex-start;

  gap: 14px;
}

.check-icon {
  width: 26px;
  height: 26px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: 1px;

  border-radius: 50%;

  background: #39bee2;

  color: #071015;

  font-size: 15px;
  font-weight: 800;
}

.audit-benefit strong {
  display: block;

  margin-bottom: 4px;

  color: #ffffff;

  font-size: 16px;
  font-weight: 600;
}

.audit-benefit span {
  display: block;

  color: #89959c;

  font-size: 14px;
  line-height: 1.5;
}


/* =========================================
   FORM CARD
========================================= */

.audit-form-wrapper {
  width: 100%;
  min-width: 0;

  box-sizing: border-box;

  padding: 38px;

  background: #151b20;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 18px;

  overflow: hidden;
}


/* =========================================
   FORM HEADER
========================================= */

.form-header {
  display: flex;
  align-items: center;

  gap: 15px;

  margin-bottom: 30px;
}

.form-header-icon {
  width: 46px;
  height: 46px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: #39bee2;

  color: #071015;

  font-size: 22px;
  font-weight: 700;
}

.form-header h3 {
  margin: 0 0 5px;

  color: #ffffff;

  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}

.form-header p {
  margin: 0;

  color: #8e9aa1;

  font-size: 14px;
}


/* =========================================
   HUBSPOT FORM AREA
========================================= */

.hubspot-form-container {
  width: 100%;

  box-sizing: border-box;

  padding: 28px;

  background: #ffffff;

  border-radius: 12px;

  overflow: hidden;
}

.hs-form-frame {
  width: 100% !important;
  max-width: 100% !important;

  box-sizing: border-box !important;

  overflow: hidden !important;
}


/* =========================================
   HUBSPOT FORM
========================================= */

.hs-form-frame form {
  width: 100% !important;
  max-width: 100% !important;

  margin: 0 !important;

  padding: 0 !important;
}


/* =========================================
   FORM FIELDS
========================================= */

.hs-form-frame .hs-form-field {
  width: 100% !important;

  margin: 0 0 22px !important;

  padding: 0 !important;
}


/* LABEL */
.hs-form-frame label {
  display: block !important;

  margin: 0 0 8px !important;

  color: #17232b !important;

  font-size: 15px !important;
  font-weight: 600 !important;

  line-height: 1.4 !important;
}


/* REQUIRED STAR */
.hs-form-frame .hs-form-required {
  margin-left: 3px !important;

  color: #e63946 !important;
}


/* INPUTS */
.hs-form-frame input,
.hs-form-frame select,
.hs-form-frame textarea {
  width: 100% !important;
  max-width: 100% !important;

  box-sizing: border-box !important;

  padding: 14px 15px !important;

  border: 1px solid #d7dde1 !important;

  border-radius: 6px !important;

  background: #ffffff !important;

  color: #17232b !important;

  font-family: inherit !important;

  font-size: 16px !important;

  line-height: 1.4 !important;

  outline: none !important;

  box-shadow: none !important;
}


/* INPUT HEIGHT */
.hs-form-frame input,
.hs-form-frame select {
  min-height: 52px !important;
}


/* TEXTAREA */
.hs-form-frame textarea {
  min-height: 120px !important;

  resize: vertical !important;
}


/* PLACEHOLDER */
.hs-form-frame input::placeholder,
.hs-form-frame textarea::placeholder {
  color: #8b969d !important;

  opacity: 1 !important;
}


/* FOCUS */
.hs-form-frame input:focus,
.hs-form-frame select:focus,
.hs-form-frame textarea:focus {
  border-color: #39bee2 !important;

  box-shadow: 0 0 0 3px rgba(57, 190, 226, 0.12) !important;
}


/* =========================================
   TWO COLUMN FIELDS
========================================= */

.hs-form-frame .hs-form-field {
  box-sizing: border-box !important;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.hs-form-frame input[type="submit"],
.hs-form-frame button[type="submit"],
.hs-form-frame .hs-button {
  width: 100% !important;

  min-height: 54px !important;

  margin-top: 5px !important;

  padding: 14px 24px !important;

  border: none !important;

  border-radius: 6px !important;

  background: #39bee2 !important;

  color: #071015 !important;

  font-size: 16px !important;

  font-weight: 700 !important;

  cursor: pointer !important;

  transition: 0.25s ease !important;
}

.hs-form-frame input[type="submit"]:hover,
.hs-form-frame button[type="submit"]:hover,
.hs-form-frame .hs-button:hover {
  background: #2eafd1 !important;

  transform: translateY(-1px);
}


/* =========================================
   ERROR
========================================= */

.hs-form-frame .hs-error-msgs {
  margin: 6px 0 0 !important;

  padding: 0 !important;

  list-style: none !important;
}

.hs-form-frame .hs-error-msgs li {
  color: #dc3545 !important;

  font-size: 13px !important;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 1000px) {

  .audit-section {
    padding: 80px 40px;
  }

  .audit-container {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .audit-left h2 {
    font-size: 48px;
  }
}


@media (max-width: 600px) {

  .audit-section {
    padding: 60px 20px;
  }

  .audit-left {
    padding-top: 0;
  }

  .audit-left h2 {
    font-size: 38px;
  }

  .audit-description {
    font-size: 16px;
  }

  .audit-form-wrapper {
    padding: 20px;

    border-radius: 14px;
  }

  .hubspot-form-container {
    padding: 20px 15px;
  }

  .form-header h3 {
    font-size: 22px;
  }

  .form-header-icon {
    width: 42px;
    height: 42px;
  }
}

/* FILE: components\Footer\Footer.css */
/* =================================
   FOOTER RESET
================================= */

.footer,
.footer * {
  box-sizing: border-box;
}


/* =================================
   FOOTER
================================= */

.footer {
  position: relative;

  width: 100%;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(15, 75, 105, 0.10),
      transparent 45%
    ),
    #050b11;

  color: #fff;

  overflow: hidden;
}


/* =================================
   SAME WIDTH AS HEADER
================================= */

.footer-container {
  width: 100%;
  max-width: 1200px;

  margin: 0 auto;

  padding: 75px 20px 0;
}


/* =================================
   MAIN FOOTER GRID
================================= */

.footer-main {
  display: grid;

  grid-template-columns:
    1.65fr
    1fr
    1fr
    1.05fr;

  gap: 55px;

  padding-bottom: 30px;
}


/* =================================
   LOGO
================================= */

.footer-logo {
  display: inline-flex;

  align-items: center;

  text-decoration: none;
}

.footer-main-logo {
  width: 150px;
  height: 55px;

  display: block;

  object-fit: contain;
  object-position: center;

  border-radius: 4px;
}


/* =================================
   DESCRIPTION
================================= */

.footer-description {
  max-width: 430px;

  margin: 42px 0 30px;

  color: #9aabb8;

  font-size: 15px;

  line-height: 1.7;
}


/* =================================
   CONTACT LINKS
================================= */

.contact-link {
  display: flex;

  align-items: center;

  gap: 13px;

  margin-bottom: 17px;

  color: #aab9c4;

  font-size: 14px;

  line-height: 1.5;

  text-decoration: none;
}

.contact-icon {
  width: 38px;
  height: 38px;

  flex-shrink: 0;

  display: flex;

  justify-content: center;
  align-items: center;

  border-radius: 50%;

  border: 1px solid rgba(57, 190, 226, 0.55);

  color: #39BEE2;

  background: rgba(57, 190, 226, 0.035);

  box-shadow:
    0 0 12px rgba(57, 190, 226, 0.05);

  font-size: 13px;
}

a.contact-link:hover {
  color: #39BEE2;
}


/* =================================
   SOCIAL
================================= */

.social-wrapper {
  margin-top: 38px;
}

.social-wrapper h4 {
  margin-bottom: 18px;

  color: #7d8d99;

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 1.5px;
}

.social-links {
  display: flex;

  gap: 11px;
}

.social-links a {
  width: 42px;
  height: 42px;

  display: flex;

  justify-content: center;
  align-items: center;

  border-radius: 50%;

  color: #d8e0e5;

  background: rgba(8, 20, 29, 0.8);

  border: 1px solid #244052;

  text-decoration: none;

  font-size: 14px;

  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #39BEE2;

  border-color: #39BEE2;

  transform: translateY(-3px);

  box-shadow:
    0 0 18px rgba(57, 190, 226, 0.22);
}


/* =================================
   FOOTER COLUMNS
================================= */

.footer-column h3 {
  margin: 3px 0 32px;

  color: #39BEE2;

  font-size: 15px;

  font-weight: 600;

  letter-spacing: 1.4px;
}

.footer-column h3::after {
  content: "";

  display: block;

  width: 42px;
  height: 2px;

  margin-top: 12px;

  background: #39BEE2;

  box-shadow:
    0 0 8px rgba(57, 190, 226, 0.35);
}


/* =================================
   LIST
================================= */

.footer-column ul {
  list-style: none;

  margin: 0;
  padding: 0;
}

.footer-column li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.footer-column li a {
  min-height: 58px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 10px;

  color: #9eabb5;

  font-size: 14px;

  text-decoration: none;

  transition: all 0.3s ease;
}

.footer-column li a svg {
  color: #7e8b94;

  font-size: 11px;

  transition: all 0.3s ease;
}

.footer-column li a:hover {
  color: #39BEE2;

  padding-left: 4px;
}

.footer-column li a:hover svg {
  color: #39BEE2;

  transform: translateX(4px);
}


/* =================================
   CTA CARD
================================= */

.footer-cta {
  margin-top: 42px;

  padding: 25px 24px;

  border-radius: 14px;

  border: 1px solid rgba(57, 190, 226, 0.38);

  background:
    linear-gradient(
      145deg,
      rgba(16, 45, 62, 0.55),
      rgba(3, 13, 21, 0.75)
    );

  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.04),
    0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-icon {
  width: 40px;
  height: 40px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 15px;

  color: #39BEE2;

  font-size: 22px;
}

.footer-cta h4 {
  margin: 0;

  color: #f0f4f6;

  font-size: 15px;

  font-weight: 600;

  line-height: 1.5;
}

.footer-cta p {
  margin: 14px 0 20px;

  color: #8e9da8;

  font-size: 13px;

  line-height: 1.6;
}

.footer-cta a {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 10px;

  color: #39BEE2;

  font-size: 13px;

  font-weight: 600;

  text-decoration: none;
}

.footer-cta a svg {
  transition: transform 0.3s ease;
}

.footer-cta a:hover svg {
  transform: translateX(5px);
}


/* =================================
   BOTTOM FOOTER
================================= */

.footer-bottom {
  min-height: 75px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  margin: 0;

  color: #748592;

  font-size: 13px;
}

.bottom-links {
  display: flex;

  align-items: center;

  gap: 14px;
}

.bottom-links a {
  color: #748592;

  font-size: 12px;

  text-decoration: none;

  transition: color 0.3s ease;
}

.bottom-links span {
  color: #39BEE2;

  font-size: 10px;
}

.bottom-links a:hover {
  color: #39BEE2;
}


/* =================================
   WHATSAPP FLOATING BUTTON
================================= */

.whatsapp-button {
  position: fixed;

  right: 30px;
  bottom: 28px;

  width: 60px;
  height: 60px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #20d466;

  color: white;

  font-size: 30px;

  text-decoration: none;

  z-index: 100;

  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.35);

  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  transform: translateY(-4px) scale(1.04);

  box-shadow:
    0 10px 35px rgba(32, 212, 102, 0.3);
}


/* =================================
   TABLET
================================= */

@media (max-width: 1000px) {

  .footer-main {
    grid-template-columns:
      1.4fr
      1fr
      1fr;

    gap: 45px;
  }

  .footer-right {
    grid-column: span 3;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 40px;
  }

  .footer-cta {
    margin-top: 0;
  }

  .footer-main-logo {
    width: 140px;
    height: 52px;
  }
}


/* =================================
   MOBILE
================================= */

@media (max-width: 700px) {

  .footer-container {
    padding: 55px 20px 0;
  }

  .footer-main {
    grid-template-columns: 1fr;

    gap: 45px;

    padding-bottom: 45px;
  }

  .footer-right {
    grid-column: auto;

    display: block;
  }

  .legal-column {
    margin-bottom: 40px;
  }

  .footer-description {
    margin-top: 30px;
  }

  .footer-column h3 {
    margin-bottom: 20px;
  }

  .footer-column li a {
    min-height: 50px;
  }

  .footer-cta {
    margin-top: 0;
  }

  .footer-bottom {
    padding: 20px 0;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;
  }

  .bottom-links {
    flex-wrap: wrap;

    gap: 10px;
  }

  .whatsapp-button {
    width: 52px;
    height: 52px;

    right: 18px;
    bottom: 18px;

    font-size: 25px;
  }

  .footer-main-logo {
    width: 130px;
    height: 48px;
  }
}

/* FILE: components\Header\Header.css */
/* =========================
   GLOBAL RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* =========================
   HEADER
========================= */

.header {
  width: 100%;
  height: 90px;

  background: #000;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  position: sticky;
  top: 0;

  z-index: 100;
}


/* =========================
   HEADER CONTAINER
========================= */

.header-container {
  width: 100%;
  max-width: 1350px;

  height: 100%;

  margin: 0 auto;
  padding: 0 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* =========================
   LOGO
========================= */

.logo {
  display: flex;
  align-items: center;

  cursor: pointer;

  flex-shrink: 0;
}

.main-logo {
  width: 120px;
  height: 48px;

  object-fit: contain;
  object-position: center;

  display: block;

  border-radius: 4px;
}


/* =========================
   DESKTOP NAVIGATION
========================= */

.navbar {
  display: flex;
  align-items: center;

  gap: 22px;

  position: relative;
}

.navbar a,
.dropdown-trigger {
  position: relative;

  color: #bdbdbd;

  text-decoration: none;

  font-size: 18px;
  font-weight: 400;

  letter-spacing: 0.01em;

  transition: color 0.3s ease;

  background: transparent;

  border: none;

  padding: 0;

  cursor: pointer;

  font-family: inherit;
}

.navbar a:hover,
.dropdown-trigger:hover,
.dropdown-trigger:focus-visible {
  color: #fff;
}


/* =========================
   NAV UNDERLINE
========================= */

.navbar a::after,
.dropdown-trigger::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -7px;

  width: 0;
  height: 1px;

  background: #39bee2;

  transition: width 0.3s ease;
}

.navbar a:hover::after,
.dropdown-trigger:hover::after,
.dropdown-trigger:focus-visible::after {
  width: 100%;
}


/* =========================
   SERVICES DROPDOWN
========================= */

.nav-dropdown {
  position: relative;

  padding: 18px 0 20px;

  margin-top: -18px;
  margin-bottom: -20px;
}


/* =========================
   OPEN DROPDOWN
========================= */

.nav-dropdown.open .dropdown-menu {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;

  transform: translateX(-50%) translateY(0);
}


/* =========================
   DROPDOWN MENU
========================= */

.dropdown-menu {
  position: absolute;

  top: calc(100% - 2px);

  left: 50%;

  transform:
    translateX(-50%)
    translateY(8px);

  min-width: 220px;

  padding: 10px;

  border-radius: 10px;

  background: #0d1117;

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow:
    0 18px 35px rgba(0, 0, 0, 0.28);

  display: flex;

  flex-direction: column;

  gap: 4px;

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transition:
    opacity 0.18s ease,
    visibility 0.18s ease,
    transform 0.18s ease;

  z-index: 200;
}


/* =========================
   DROPDOWN ITEMS
========================= */

.dropdown-item {
  display: block;

  padding: 11px 12px;

  border-radius: 8px;

  color: #d6d9de;

  text-decoration: none;

  font-size: 15px;

  font-weight: 400;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item.active {
  background: rgba(57, 190, 226, 0.08);

  color: #ffffff;
}


/* =========================
   DROPDOWN TRIGGER
========================= */

.dropdown-trigger {
  display: inline-flex;

  align-items: center;
}


/* =========================
   MOBILE ACTIONS
========================= */

.mobile-actions {
  display: flex;

  align-items: center;

  gap: 12px;
}


/* =========================
   HAMBURGER
========================= */

.hamburger-btn {
  display: none;

  width: 42px;
  height: 42px;

  padding: 0;

  border: 1px solid rgba(57, 190, 226, 0.18);

  border-radius: 9px;

  background: #0d1117;

  cursor: pointer;

  align-items: center;
  justify-content: center;

  flex-direction: column;

  gap: 5px;

  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}

.hamburger-btn span {
  display: block;

  width: 20px;
  height: 2px;

  background: #bdbdbd;

  border-radius: 10px;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background 0.3s ease;
}

.hamburger-btn:hover {
  border-color: #39bee2;

  background: #111820;
}

.hamburger-btn:hover span {
  background: #39bee2;
}


/* =========================
   HAMBURGER ACTIVE
========================= */

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* =========================
   BOOK A FREE AUDIT
========================= */

.call-btn {
  min-width: 160px;

  height: 50px;

  padding: 0 22px;

  border-radius: 30px;

  border: 1px solid #29455d;

  background:
    linear-gradient(
      180deg,
      #162c3d 0%,
      #070d12 100%
    );

  color: #fff;

  text-decoration: none;

  font-size: 14px;

  font-weight: 500;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.15),
    0 0 15px rgba(0, 160, 255, 0.08);

  transition: all 0.3s ease;
}

.call-btn:hover {
  color: #fff;

  border-color: #39bee2;

  box-shadow:
    0 0 20px rgba(0, 191, 255, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);

  transform: translateY(-2px);
}


/* =========================
   MOBILE MENU
========================= */

.mobile-menu {
  display: none;

  position: fixed;

  top: 90px;
  left: 0;

  width: 100%;

  background: #050a0d;

  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(57, 190, 226, 0.12);

  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.45);

  opacity: 0;

  visibility: hidden;

  transform: translateY(-15px);

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;

  z-index: 90;

  max-height: calc(100vh - 90px);

  overflow-y: auto;
}


/* =========================
   OPEN MOBILE MENU
========================= */

.mobile-menu.open {
  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}


/* =========================
   MOBILE MENU INNER
========================= */

.mobile-menu-inner {
  width: 100%;

  max-width: 1350px;

  margin: 0 auto;

  padding: 15px 25px 25px;
}


/* =========================
   MOBILE NAV LINK
========================= */

.mobile-nav-link {
  width: 100%;

  min-height: 55px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 0 5px;

  background: transparent;

  border: none;

  border-bottom: 1px solid rgba(255, 255, 255, 0.07);

  color: #bdbdbd;

  text-decoration: none;

  font-family: inherit;

  font-size: 16px;

  font-weight: 400;

  cursor: pointer;

  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #fff;
}

.mobile-nav-link:hover {
  padding-left: 10px;
}


/* =========================
   MOBILE SERVICES TRIGGER
========================= */

.mobile-services-trigger {
  appearance: none;

  text-align: left;
}


/* =========================
   MOBILE ARROW
========================= */

.mobile-arrow {
  width: 28px;
  height: 28px;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #39bee2;

  font-size: 24px;

  font-weight: 300;

  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.mobile-arrow.rotate {
  transform: rotate(45deg);
}


/* =========================
   MOBILE SUBMENU
========================= */

.mobile-submenu {
  max-height: 0;

  overflow: hidden;

  opacity: 0;

  transition:
    max-height 0.35s ease,
    opacity 0.25s ease;
}

.mobile-submenu.open {
  max-height: 500px;

  opacity: 1;
}


/* =========================
   MOBILE SUBMENU LINKS
========================= */

.mobile-submenu-link {
  display: flex;

  align-items: center;

  min-height: 47px;

  padding: 0 15px 0 25px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);

  color: #d6d9de;

  text-decoration: none;

  font-size: 14px;

  transition:
    color 0.25s ease,
    background 0.25s ease,
    padding-left 0.25s ease;
}

.mobile-submenu-link::before {
  content: "";

  width: 5px;
  height: 5px;

  margin-right: 12px;

  border-radius: 50%;

  background: #39bee2;

  opacity: 0.7;
}

.mobile-submenu-link:hover,
.mobile-submenu-link.active {
  color: #ffffff;

  background: rgba(57, 190, 226, 0.06);

  padding-left: 30px;
}


/* =========================
   MOBILE OVERLAY
========================= */

.mobile-overlay {
  display: none;

  position: fixed;

  inset: 90px 0 0 0;

  background: rgba(0, 0, 0, 0.45);

  backdrop-filter: blur(2px);

  z-index: 80;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

  .navbar {
    gap: 18px;
  }

  .navbar a,
  .dropdown-trigger {
    font-size: 13px;
  }

  .header-container {
    padding: 0 25px;
  }

  .main-logo {
    width: 100px;
    height: 35px;
  }

  .call-btn {
    min-width: 145px;

    height: 45px;

    padding: 0 18px;

    font-size: 13px;
  }
}


/* =========================
   MOBILE / TABLET
========================= */

@media (max-width: 800px) {

  .header {
    height: 90px;
  }

  .header-container {
    padding: 0 25px;
  }

  /* Hide desktop navigation */

  .navbar {
    display: none;
  }

  /* Show mobile actions */

  .mobile-actions {
    display: flex;

    margin-left: auto;
  }

  /* Show hamburger */

  .hamburger-btn {
    display: flex;
  }

  /* Mobile menu */

  .mobile-menu {
    display: block;
  }

  .mobile-overlay {
    display: block;
  }

  .main-logo {
    width: 100px;
    height: 35px;
  }

  .call-btn {
    height: 42px;

    min-width: 145px;

    padding: 0 17px;

    font-size: 13px;
  }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 500px) {

  .header {
    height: 80px;
  }

  .header-container {
    padding: 0 18px;
  }

  .main-logo {
    width: 95px;
    height: 34px;
  }

  .mobile-actions {
    gap: 8px;
  }

  .hamburger-btn {
    width: 38px;
    height: 38px;
  }

  .hamburger-btn span {
    width: 18px;
  }

  .call-btn {
    min-width: auto;

    height: 37px;

    padding: 0 14px;

    font-size: 12px;
  }

  .mobile-menu {
    top: 80px;

    max-height: calc(100vh - 80px);
  }

  .mobile-overlay {
    inset: 80px 0 0 0;
  }

  .mobile-menu-inner {
    padding: 10px 18px 20px;
  }

  .mobile-nav-link {
    min-height: 52px;

    font-size: 15px;
  }

  .mobile-submenu-link {
    font-size: 13px;

    min-height: 44px;
  }
}


/* =========================
   VERY SMALL MOBILE
========================= */

@media (max-width: 360px) {

  .header-container {
    padding: 0 12px;
  }

  .main-logo {
    width: 82px;
  }

  .mobile-actions {
    gap: 6px;
  }

  .hamburger-btn {
    width: 35px;
    height: 35px;
  }

  .call-btn {
    height: 35px;

    padding: 0 10px;

    font-size: 11px;
  }
}

/* FILE: components\horizontalbanner\HorizontalBanner.css */
/* ========================================
   PERFORMANCE SECTION
======================================== */

.performance-section {
  position: relative;
  width: 100%;

  padding: 90px 25px 80px;

  background: #000;

  overflow: hidden;
}


/* ========================================
   BACKGROUND GRID
======================================== */

.performance-section::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );

  background-size: 92px 92px;

  pointer-events: none;
}


/* ========================================
   SUBTLE GLOW
======================================== */

.performance-section::after {
  content: "";

  position: absolute;

  width: 500px;
  height: 250px;

  left: 50%;
  bottom: -180px;

  transform: translateX(-50%);

  background: rgba(0, 190, 210, 0.12);

  filter: blur(100px);

  pointer-events: none;
}


/* ========================================
   CONTAINER
======================================== */

.performance-container {
  position: relative;

  z-index: 2;

  width: 100%;

  max-width: 1180px;

  margin: 0 auto;
}


/* ========================================
   SECTION HEADING
======================================== */

.performance-eyebrow {
  margin: 0 0 28px;

  text-align: center;

  color: #cfcfcf;

  font-family: Arial, sans-serif;

  font-size: 13px;

  font-weight: 500;

  letter-spacing: 2.2px;

  text-transform: uppercase;
}


/* ========================================
   CARDS GRID
======================================== */

.performance-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 18px;

  align-items: stretch;
}


/* ========================================
   CARD
======================================== */

.performance-card {
  position: relative;

  width: 100%;

  min-height: 150px;

  padding: 22px 22px 20px;

  box-sizing: border-box;

  border: 1px solid rgba(255, 255, 255, 0.11);

  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.012)
    );

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  overflow: hidden;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}


/* ========================================
   TOP GRADIENT LINE
======================================== */

.performance-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 22px;
  right: 22px;

  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 190, 215, 0.8),
    rgba(24, 198, 197, 0.8),
    transparent
  );

  opacity: 0.7;
}


/* ========================================
   CARD INNER GLOW
======================================== */

.performance-card::after {
  content: "";

  position: absolute;

  width: 110px;
  height: 110px;

  top: -55px;
  right: -45px;

  background: rgba(0, 190, 215, 0.08);

  border-radius: 50%;

  filter: blur(30px);

  pointer-events: none;

  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}


/* ========================================
   CARD HOVER
======================================== */

.performance-card:hover {
  transform: translateY(-7px);

  border-color: rgba(24, 198, 197, 0.38);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.065),
      rgba(0, 190, 215, 0.025)
    );

  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.45),
    0 0 25px rgba(0, 190, 215, 0.07);
}

.performance-card:hover::after {
  transform: scale(1.4);

  opacity: 1;
}


/* ========================================
   TOP CONTENT
======================================== */

.performance-top {
  position: relative;

  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  min-height: 70px;

  z-index: 2;
}


/* ========================================
   NUMBERS
======================================== */

.performance-card h3 {
  margin: 0;

  font-family: Arial, sans-serif;

  font-size: 40px;

  line-height: 1;

  font-weight: 700;

  letter-spacing: -1px;

  background: linear-gradient(
    100deg,
    #03a6d3 0%,
    #13c9c4 100%
  );

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;
}


/* ========================================
   BACKGROUND ICON
======================================== */

.performance-icon {
  position: absolute;

  top: -5px;
  right: -2px;

  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 13px;

  color: rgba(25, 201, 199, 0.9);

  font-size: 21px;

  background:
    linear-gradient(
      145deg,
      rgba(0, 190, 215, 0.12),
      rgba(24, 198, 197, 0.035)
    );

  border: 1px solid rgba(24, 198, 197, 0.16);

  box-shadow:
    inset 0 0 15px rgba(0, 190, 215, 0.035);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}


/* ========================================
   ICON HOVER
======================================== */

.performance-card:hover .performance-icon {
  transform: translateY(-3px);

  border-color: rgba(24, 198, 197, 0.35);

  background:
    linear-gradient(
      145deg,
      rgba(0, 190, 215, 0.18),
      rgba(24, 198, 197, 0.06)
    );
}


/* ========================================
   LABEL
======================================== */

.performance-label {
  position: absolute;

  left: 22px;
  right: 20px;
  bottom: 20px;

  margin: 0;

  color: #fff;

  font-family: Arial, sans-serif;

  font-size: 18px;
  padding-top:20px;

  font-weight: 400;

  line-height: 1.45;

  letter-spacing: 0.15px;

  z-index: 2;
}


/* ========================================
   VERIFIED ICON
======================================== */

.performance-verified {
  position: relative;

  z-index: 3;

  width: 42px;
  height: 42px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 12px;

  color: #fff;

  font-size: 28px;

  background:
    linear-gradient(
      135deg,
      #03a6d3 0%,
      #18c7c5 100%
    );

  box-shadow:
    0 0 20px rgba(20, 190, 215, 0.18),
    inset 0 1px 1px rgba(255, 255, 255, 0.25);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}


/* ========================================
   VERIFIED HOVER
======================================== */

.performance-card:hover .performance-verified {
  transform: scale(1.06);

  box-shadow:
    0 0 25px rgba(20, 190, 215, 0.28),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1100px) {

  .performance-section {
    padding: 50px 25px 70px;
  }

  .performance-container {
    max-width: 850px;
  }

  .performance-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
  }

  .performance-card {
    min-height: 145px;
  }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 650px) {

  .performance-section {
    padding: 42px 15px 55px;
  }

  .performance-container {
    max-width: 100%;
  }


  /* ----------------------------------------
     HEADING
  ---------------------------------------- */

  .performance-eyebrow {
    font-size: 11px;

    letter-spacing: 1.4px;

    line-height: 1.5;

    margin-bottom: 20px;
  }


  /* ----------------------------------------
     GRID
  ---------------------------------------- */

  .performance-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 12px;
  }


  /* ----------------------------------------
     CARD
  ---------------------------------------- */

  .performance-card {
    min-height: 125px;

    padding: 16px 15px 15px;

    border-radius: 13px;
  }


  .performance-card::before {
    left: 15px;
    right: 15px;
  }


  /* ----------------------------------------
     TOP
  ---------------------------------------- */

  .performance-top {
    min-height: 55px;
  }


  /* ----------------------------------------
     NUMBER
  ---------------------------------------- */

  .performance-card h3 {
    font-size: 25px;

    letter-spacing: -0.5px;
  }


  /* ----------------------------------------
     ICON
  ---------------------------------------- */

  .performance-icon {
    width: 36px;
    height: 36px;

    top: -2px;

    border-radius: 9px;

    font-size: 17px;
  }


  /* ----------------------------------------
     LABEL
  ---------------------------------------- */

  .performance-label {
    left: 15px;
    right: 12px;
    bottom: 15px;

    font-size: 10px;

    line-height: 1.35;
  }


  /* ----------------------------------------
     VERIFIED
  ---------------------------------------- */

  .performance-verified {
    width: 34px;
    height: 34px;

    border-radius: 9px;

    font-size: 15px;
  }
}


/* ========================================
   VERY SMALL DEVICES
======================================== */

@media (max-width: 380px) {

  .performance-grid {
    gap: 9px;
  }

  .performance-card {
    min-height: 120px;

    padding: 14px 12px;
  }

  .performance-card h3 {
    font-size: 22px;
  }

  .performance-icon {
    width: 32px;
    height: 32px;

    font-size: 15px;
  }

  .performance-label {
    left: 12px;
    bottom: 13px;

    font-size: 9px;
  }

  .performance-verified {
    width: 31px;
    height: 31px;

    font-size: 14px;
  }
}

/* FILE: components\ImpartSec\ImpartSec.css */
/* ========================================
   IMPACT SECTION
======================================== */

.impact-section {
  width: 100%;
  background: #000;

  padding: 75px 70px 90px;

  overflow: hidden;
}


/* ========================================
   CONTAINER
======================================== */

.impact-container {
  width: 100%;
  max-width: 1600px;

  margin: 0 auto;
}


/* ========================================
   HEADER
======================================== */

.impact-header {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  margin-bottom: 32px;
}


/* ========================================
   SMALL HEADING
======================================== */

.impact-heading p {
  margin: 0 0 15px;

  color: #bcbcbc;

  font-family: Arial, sans-serif;

  font-size: 12px;
  font-weight: 500;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}


/* ========================================
   MAIN HEADING
======================================== */

.impact-heading h2 {
  margin: 0;

  max-width: 700px;

  color: #fff;

  font-family: Arial, sans-serif;

  font-size: 40px;
  font-weight: 700;

  line-height: 1.2;

  letter-spacing: -1.2px;
}


/* ========================================
   GRADIENT TEXT
======================================== */

.impact-heading h2 span {
  background: linear-gradient(
    90deg,
    #009ed0 0%,
    #18c6c5 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;

  font-weight: 600;
}


/* ========================================
   NAVIGATION
======================================== */

.impact-navigation {
  display: flex;

  align-items: center;

  gap: 9px;

  padding-bottom: 2px;
}


/* ========================================
   ARROWS
======================================== */

.impact-arrow {
  width: 37px;
  height: 37px;

  border: none;

  border-radius: 50%;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 22px;
  line-height: 1;

  cursor: pointer;

  transition: all 0.25s ease;
}


/* ========================================
   PREVIOUS ARROW
======================================== */

.prev-arrow {
  color: #c8c8d0;

  background: #11121c;
}


.prev-arrow:hover:not(:disabled) {
  color: #fff;

  background: #1b1c29;

  transform: translateX(-2px);
}


/* ========================================
   NEXT ARROW
======================================== */

.next-arrow {
  color: #fff;

  background: linear-gradient(
    135deg,
    #009ed0,
    #18c6c5
  );
}


.next-arrow:hover:not(:disabled) {
  transform: scale(1.06);

  box-shadow:
    0 0 18px rgba(24, 198, 197, 0.25);
}


/* ========================================
   DISABLED ARROW
======================================== */

.impact-arrow:disabled {
  opacity: 0.35;

  cursor: not-allowed;

  transform: none;
}


/* ========================================
   SLIDER
======================================== */

.impact-slider {
  width: 100%;

  overflow: hidden;
}


/* ========================================
   TRACK
======================================== */

.impact-track {
  display: flex;

  gap: 28px;

  width: 100%;

  transition:
    transform 0.55s cubic-bezier(
      0.4,
      0,
      0.2,
      1
    );
}


/* ========================================
   CARD
======================================== */

.impact-card {
  flex: 0 0 calc(
    (100% - 56px) / 3
  );

  min-width: 0;

  box-sizing: border-box;

  position: relative;

  display: flex;

  flex-direction: column;

  background: #111619;

  border: 1px solid #293238;

  border-radius: 18px;

  overflow: hidden;

  color: #fff;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}


/* ========================================
   CARD HOVER
======================================== */

.impact-card:hover {
  transform: translateY(-7px);

  border-color: #18c6c5;

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.45),
    0 0 25px rgba(24, 198, 197, 0.08);
}


/* ========================================
   CARD TOP CONTENT
======================================== */

.impact-card-content {
  width: 100%;

  min-height: 0;

  padding: 28px 27px 24px;

  box-sizing: border-box;

  display: flex;

  flex-direction: column;

  background:
    radial-gradient(
      circle at top right,
      rgba(24, 198, 197, 0.08),
      transparent 45%
    ),
    #111619;
}


/* ========================================
   CATEGORY
======================================== */

.impact-category {
  width: fit-content;

  max-width: 100%;

  margin: 0 0 16px;

  padding: 9px 16px;

  box-sizing: border-box;

  color: #69e7ed;

  background:
    linear-gradient(
      135deg,
      rgba(0, 158, 208, 0.12),
      rgba(24, 198, 197, 0.12)
    );

  border: 1px solid rgba(
    24,
    198,
    197,
    0.12
  );

  border-radius: 50px;

  font-family: Arial, sans-serif;

  font-size: 13px;

  font-weight: 500;

  line-height: 1.2;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;
}


/* ========================================
   CARD TITLE
======================================== */

.impact-card-title {
  margin: 0 0 11px;

  color: #f5f7f8;

  font-family: Arial, sans-serif;

  font-size: 28px;

  font-weight: 700;

  line-height: 1.14;

  letter-spacing: -0.8px;
}


/* ========================================
   RESULT
======================================== */

.impact-result {
  margin: 0 0 9px;

  color: #35e879;

  font-family: Arial, sans-serif;

  font-size: 34px;

  font-weight: 500;

  line-height: 1;

  letter-spacing: -1.5px;
}


/* ========================================
   DESCRIPTION
======================================== */

.impact-description {
  margin: 0;

  max-width: 520px;

  color: #aeb6ba;

  font-family: Arial, sans-serif;

  font-size: 15px;

  font-weight: 400;

  line-height: 1.5;
}


/* ========================================
   HIGHLIGHT
======================================== */

.impact-highlight {
  margin: 17px 0 0;

  padding-top: 15px;

  color: #dce3e5;

  font-family: Arial, sans-serif;

  font-size: 14px;

  font-weight: 600;

  line-height: 1.45;

  border-top: 1px solid
    rgba(255, 255, 255, 0.08);
}


/* ========================================
   IMAGE WRAPPER
======================================== */

.impact-image-wrapper {
  position: relative;

  width: 100%;

  margin: 0;

  padding: 0;

  overflow: hidden;

  background: #0c1012;

  line-height: 0;
}


/* ========================================
   IMAGE
======================================== */

.impact-image {
  display: block;

  width: 100%;

  height: auto;

  margin: 0;

  padding: 0;

  object-fit: contain;

  object-position: center;

  background: #0c1012;

  transition:
    transform 0.5s ease;
}


/* ========================================
   IMAGE HOVER
======================================== */

.impact-card:hover .impact-image {
  transform: scale(1.025);
}


/* ========================================
   VIEW CASE STUDY BUTTON
======================================== */

.case-study-button {
  width: calc(100% - 32px);

  min-height: 52px;

  margin: 16px;

  padding: 8px 9px 8px 18px;

  box-sizing: border-box;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 15px;

  color: #fff;

  text-decoration: none;

  background: #171f22;

  border: 1px solid #29373c;

  border-radius: 50px;

  font-family: Arial, sans-serif;

  font-size: 15px;

  font-weight: 600;

  line-height: 1;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}


/* ========================================
   BUTTON HOVER
======================================== */

.case-study-button:hover {
  background: linear-gradient(
    135deg,
    #009ed0,
    #18c6c5
  );

  border-color: transparent;

  color: #fff;

  transform: translateY(-2px);
}


/* ========================================
   BUTTON ICON
======================================== */

.case-study-icon {
  width: 35px;
  height: 35px;

  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color: #fff;

  background: linear-gradient(
    135deg,
    #009ed0,
    #18c6c5
  );

  font-size: 18px;

  line-height: 1;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}


/* ========================================
   ICON HOVER
======================================== */

.case-study-button:hover .case-study-icon {
  background: rgba(
    255,
    255,
    255,
    0.2
  );

  transform: translateX(3px);
}


/* ========================================
   LARGE DESKTOP
======================================== */

@media (max-width: 1400px) {

  .impact-section {
    padding-left: 55px;
    padding-right: 55px;
  }


  .impact-container {
    max-width: 1250px;
  }


  .impact-track {
    gap: 24px;
  }


  .impact-card {
    flex-basis: calc(
      (100% - 48px) / 3
    );
  }


  .impact-card-content {
    min-height: 0;

    padding: 25px 23px 22px;
  }


  .impact-category {
    margin-bottom: 14px;

    padding: 8px 14px;

    font-size: 12px;
  }


  .impact-card-title {
    font-size: 24px;

    margin-bottom: 10px;
  }


  .impact-result {
    font-size: 30px;

    margin-bottom: 8px;
  }


  .impact-description {
    font-size: 14px;

    line-height: 1.5;
  }


  .impact-highlight {
    margin-top: 15px;

    padding-top: 13px;

    font-size: 13px;
  }


  .case-study-button {
    margin: 14px;

    width: calc(100% - 28px);
  }

}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {

  .impact-section {
    padding: 60px 35px 75px;
  }


  .impact-container {
    max-width: 850px;
  }


  .impact-header {
    margin-bottom: 25px;
  }


  .impact-heading h2 {
    font-size: 32px;
  }


  .impact-track {
    gap: 20px;
  }


  /* TWO CARDS */

  .impact-card {
    flex: 0 0 calc(
      (100% - 20px) / 2
    );
  }


  .impact-card-content {
    min-height: 0;

    padding: 24px 22px 21px;
  }


  .impact-category {
    margin-bottom: 14px;
  }


  .impact-card-title {
    font-size: 23px;

    margin-bottom: 10px;
  }


  .impact-result {
    font-size: 29px;

    margin-bottom: 8px;
  }


  .impact-description {
    font-size: 14px;

    line-height: 1.5;
  }


  .impact-highlight {
    margin-top: 15px;

    padding-top: 13px;
  }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {

  .impact-section {
    padding: 45px 20px 60px;
  }


  /* ========================================
     HEADER
  ======================================== */

  .impact-header {
    align-items: flex-end;

    margin-bottom: 20px;
  }


  .impact-heading p {
    font-size: 9px;

    margin-bottom: 6px;

    letter-spacing: 1px;
  }


  .impact-heading h2 {
    max-width: 100%;

    font-size: 23px;

    line-height: 1.2;

    letter-spacing: -0.7px;
  }


  /* ========================================
     NAVIGATION
  ======================================== */

  .impact-navigation {
    gap: 6px;
  }


  .impact-arrow {
    width: 30px;
    height: 30px;

    font-size: 18px;
  }


  /* ========================================
     SLIDER
  ======================================== */

  .impact-track {
    gap: 14px;
  }


  /* ========================================
     ONE CARD
  ======================================== */

  .impact-card {
    flex: 0 0 100%;

    width: 100%;

    border-radius: 14px;
  }


  /* ========================================
     CARD CONTENT
  ======================================== */

  .impact-card-content {
    min-height: 0;

    padding: 21px 18px 20px;
  }


  /* ========================================
     CATEGORY
  ======================================== */

  .impact-category {
    margin-bottom: 14px;

    padding: 8px 13px;

    font-size: 11px;
  }


  /* ========================================
     TITLE
  ======================================== */

  .impact-card-title {
    margin-bottom: 10px;

    font-size: 23px;

    line-height: 1.18;
  }


  /* ========================================
     RESULT
  ======================================== */

  .impact-result {
    margin-bottom: 8px;

    font-size: 29px;

    line-height: 1;
  }


  /* ========================================
     DESCRIPTION
  ======================================== */

  .impact-description {
    font-size: 14px;

    line-height: 1.5;
  }


  /* ========================================
     HIGHLIGHT
  ======================================== */

  .impact-highlight {
    margin-top: 14px;

    padding-top: 13px;

    font-size: 13px;

    line-height: 1.4;
  }


  /* ========================================
     IMAGE
  ======================================== */

  .impact-image-wrapper {
    width: 100%;

    height: auto;

    margin: 0;

    padding: 0;
  }


  .impact-image {
    width: 100%;

    height: auto;

    object-fit: contain;

    object-position: center;
  }


  /* ========================================
     BUTTON
  ======================================== */

  .case-study-button {
    width: calc(100% - 24px);

    min-height: 48px;

    margin: 12px;

    padding-left: 16px;

    font-size: 14px;
  }


  .case-study-icon {
    width: 32px;
    height: 32px;

    font-size: 17px;
  }

}


/* ========================================
   VERY SMALL PHONES
======================================== */

@media (max-width: 380px) {

  .impact-section {
    padding-left: 16px;
    padding-right: 16px;
  }


  .impact-heading h2 {
    font-size: 21px;
  }


  .impact-card-content {
    min-height: 0;

    padding: 18px 16px 18px;
  }


  .impact-category {
    font-size: 10px;

    padding: 7px 11px;

    margin-bottom: 13px;
  }


  .impact-card-title {
    font-size: 20px;

    margin-bottom: 9px;
  }


  .impact-result {
    font-size: 26px;

    margin-bottom: 7px;
  }


  .impact-description {
    font-size: 13px;

    line-height: 1.45;
  }


  .impact-highlight {
    margin-top: 13px;

    padding-top: 12px;

    font-size: 12px;
  }


  /* ========================================
     IMAGE
  ======================================== */

  .impact-image-wrapper {
    width: 100%;

    height: auto;
  }


  .impact-image {
    width: 100%;

    height: auto;

    object-fit: contain;

    object-position: center;
  }


  /* ========================================
     BUTTON
  ======================================== */

  .case-study-button {
    font-size: 13px;

    min-height: 46px;

    margin: 10px;

    width: calc(100% - 20px);
  }


  .case-study-icon {
    width: 30px;
    height: 30px;
  }

}

/* FILE: components\Main\Main.css */

/* =================================
   GLOBAL RESET
================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

/* =================================
   HERO
================================= */

.hero {
  min-height: 85vh;
  width: 100%;

  position: relative;
  overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: center;

  background: #02070c;
  color: white;
}

/* =================================
   BACKGROUND IMAGE
================================= */

.background-image {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;

  filter: blur(10px);

  transform: scale(1.08);

  z-index: 0;

  /* Background slowly appears on load */
  animation: backgroundReveal 1.8s ease-out both;
}

/* =================================
   DARK OVERLAY
================================= */

.background-overlay {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 5, 12, 0.55) 50%,
    rgba(0, 0, 0, 0.75) 100%
  );

  z-index: 1;
}

/* =================================
   BACKGROUND WAVES
================================= */

.hero::before {
  content: "";

  position: absolute;

  width: 130%;
  height: 500px;

  left: -15%;
  bottom: -100px;

  border-top: 4px solid rgba(20, 90, 170, 0.25);

  border-radius: 50%;

  transform: rotate(-8deg);

  filter: blur(7px);

  z-index: 2;

  pointer-events: none;

  animation: waveReveal 1.8s ease-out 0.2s both;
}

.hero::after {
  content: "";

  position: absolute;

  width: 120%;
  height: 400px;

  left: -10%;
  top: 50px;

  border-bottom: 3px solid rgba(20, 80, 160, 0.2);

  border-radius: 50%;

  transform: rotate(8deg);

  filter: blur(8px);

  z-index: 2;

  pointer-events: none;

  animation: waveReveal 1.8s ease-out 0.3s both;
}

/* =================================
   GRID
================================= */

.grid {
  position: absolute;

  inset: 0;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    );

  background-size: 48px 48px;

  mask-image: linear-gradient(
    to bottom,
    transparent 5%,
    black 50%,
    black 100%
  );

  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 5%,
    black 50%,
    black 100%
  );

  opacity: 0.8;

  z-index: 3;

  pointer-events: none;

  animation: gridReveal 1.5s ease-out 0.3s both;
}

/* =================================
   HERO CONTENT
================================= */

.hero-content {
  position: relative;

  z-index: 5;

  width: 100%;
  max-width: 900px;

  padding: 40px 20px;

  text-align: center;
}

/* =================================
   PAGE LOAD ANIMATIONS
================================= */

/*
   Every element starts BELOW its
   final position and moves UP.

   Animation happens ONLY once
   when the page loads.
*/


/* =================================
   TOP HEADING
================================= */

.top-heading {
  display: flex;

  justify-content: center;
  align-items: center;

  gap: 12px;

  margin-bottom: 25px;

  font-size: 14px;

  color: #dce3e8;

  opacity: 0;

  animation: slideUp 0.8s ease-out 0.15s forwards;
}

.top-heading-span {
  padding: 6px 16px;

  border-radius: 30px;

  background: rgba(30, 190, 230, 0.075);

  box-shadow:
    0 0 20px rgba(0, 190, 230, 0.12);
}

.check {
  color: #4bccf0;

  font-size: 18px;

  font-weight: 700;
}

/* =================================
   MAIN HEADING
================================= */

.hero-content h1 {
  margin: 0;

  font-size: clamp(42px, 6vw, 70px);

  line-height: 1.05;

  font-weight: 700;

  letter-spacing: -2.5px;

  color: #f5f7fa;

  text-shadow:
    0 0 30px rgba(255, 255, 255, 0.08);

  opacity: 0;

  animation: slideUp 0.9s ease-out 0.3s forwards;
}

/* =================================
   SUBTITLE
================================= */

.subtitle {
  margin: 24px auto 0;

  max-width: 650px;

  color: #9da6af;

  font-size: 15px;

  line-height: 1.6;

  opacity: 0;

  animation: slideUp 0.9s ease-out 0.45s forwards;
}

/* =================================
   BUTTONS
================================= */

.buttons {
  display: flex;

  justify-content: center;
  align-items: center;

  gap: 12px;

  margin-top: 28px;

  opacity: 0;

  animation: slideUp 0.9s ease-out 0.6s forwards;
}

.btn {
  display: inline-flex;

  justify-content: center;
  align-items: center;

  width: 150px;
  min-width: 200px;

  height: 50px;

  padding: 0 22px;

  border-radius: 30px;

  text-decoration: none;

  font-size: 14px;

  font-weight: 600;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;

  position: relative;

  overflow: hidden;
}

/* =================================
   BUTTON LIGHT SWEEP
================================= */

.btn::before {
  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 80%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );

  transform: skewX(-20deg);

  transition: left 0.6s ease;

  pointer-events: none;
}

.btn:hover::before {
  left: 130%;
}

/* =================================
   PRIMARY BUTTON
================================= */

.primary {
  color: white;

  background: linear-gradient(
    135deg,
    #20c9e8,
    #119bd0
  );

  box-shadow:
    0 5px 25px rgba(0, 190, 230, 0.25);
}

.primary:hover {
  transform: translateY(-3px);

  box-shadow:
    0 8px 30px rgba(0, 190, 230, 0.4);
}

/* =================================
   SECONDARY BUTTON
================================= */

.secondary {
  border: 1px solid #29455d;

  background: linear-gradient(
    180deg,
    #162c3d 0%,
    #070d12 100%
  );

  color: #fff;

  font-size: 14px;

  font-weight: 500;

  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.15),
    0 0 15px rgba(0, 160, 255, 0.08);
}

.secondary:hover {
  border-color: #39bee2;

  box-shadow:
    0 0 20px rgba(0, 191, 255, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);

  transform: translateY(-3px);
}

/* =================================
   RATING
================================= */

.rating {
  display: flex;

  justify-content: center;
  align-items: center;

  gap: 8px;

  margin-top: 20px;

  font-size: 12px;

  color: #858d96;

  opacity: 0;

  animation: slideUp 0.8s ease-out 0.75s forwards;
}

.rating strong {
  color: #e7e9ec;

  font-weight: 600;
}

.trustpilot {
  color: #c9ced3;
}

/* =================================
   MAIN BOTTOM → TOP ANIMATION
================================= */

@keyframes slideUp {

  0% {
    opacity: 0;

    transform: translateY(60px);
  }

  60% {
    opacity: 1;
  }

  100% {
    opacity: 1;

    transform: translateY(0);
  }
}

/* =================================
   BACKGROUND REVEAL
================================= */

@keyframes backgroundReveal {

  0% {
    opacity: 0;

    transform: scale(1.15);
  }

  100% {
    opacity: 1;

    transform: scale(1.08);
  }
}

/* =================================
   WAVE REVEAL
================================= */

@keyframes waveReveal {

  0% {
    opacity: 0;

    transform: rotate(-8deg) translateY(40px);
  }

  100% {
    opacity: 1;

    transform: rotate(-8deg) translateY(0);
  }
}

/* =================================
   GRID REVEAL
================================= */

@keyframes gridReveal {

  0% {
    opacity: 0;

    transform: translateY(30px);
  }

  100% {
    opacity: 0.8;

    transform: translateY(0);
  }
}

/* =================================
   TABLET
================================= */

@media (max-width: 768px) {

  .hero {
    min-height: 650px;
  }

  /* BACKGROUND */

  .background-image {
    background-size: cover;

    background-position: center center;

    filter: blur(8px);

    transform: scale(1.06);
  }

  /* OVERLAY */

  .background-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.45),
      rgba(0, 5, 12, 0.55),
      rgba(0, 0, 0, 0.75)
    );
  }

  /* CONTENT */

  .hero-content {
    padding: 30px 18px;
  }

  /* HEADING */

  .hero-content h1 {
    font-size: 45px;

    letter-spacing: -1.5px;
  }

  /* SUBTITLE */

  .subtitle {
    max-width: 500px;

    font-size: 14px;

    line-height: 1.55;
  }

  /* BUTTONS */

  .buttons {
    margin-top: 25px;
  }

  /* WAVES */

  .hero::before {
    width: 150%;
    left: -25%;
  }

  .hero::after {
    width: 140%;
    left: -20%;
  }
}

/* =================================
   MOBILE
================================= */

@media (max-width: 480px) {

  .hero {
    min-height: 560px;

    height: auto;

    padding: 0;
  }

  /* =================================
     MOBILE BACKGROUND
  ================================= */

  .background-image {
    width: 100%;
    height: 100%;

    background-size: cover;

    background-position: center center;

    filter: blur(7px);

    transform: scale(1.05);
  }

  /* =================================
     MOBILE OVERLAY
  ================================= */

  .background-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.40) 0%,
      rgba(0, 5, 12, 0.50) 50%,
      rgba(0, 0, 0, 0.70) 100%
    );
  }

  /* =================================
     MOBILE CONTENT
  ================================= */

  .hero-content {
    padding: 35px 16px;
  }

  /* =================================
     MOBILE TOP BADGE
  ================================= */

  .top-heading {
    font-size: 12px;

    gap: 7px;

    margin-bottom: 16px;
  }

  .top-heading-span {
    padding: 6px 13px;
  }

  .check {
    font-size: 15px;
  }

  /* =================================
     MOBILE MAIN HEADING
  ================================= */

  .hero-content h1 {
    font-size: 35px;

    line-height: 1.08;

    letter-spacing: -1px;
  }

  /* =================================
     MOBILE SUBTITLE
  ================================= */

  .subtitle {
    max-width: 350px;

    margin-top: 16px;

    font-size: 13px;

    line-height: 1.5;
  }

  /* =================================
     MOBILE BUTTONS
  ================================= */

  .buttons {
    flex-direction: column;

    gap: 8px;

    margin-top: 20px;
  }

  .btn {
    width: 160px;

    min-width: 160px;

    height: 42px;

    min-height: 42px;

    padding: 0 18px;

    font-size: 12px;

    border-radius: 22px;
  }

  /* =================================
     MOBILE RATING
  ================================= */

  .rating {
    margin-top: 15px;

    gap: 6px;

    font-size: 8px;
  }

  /* =================================
     MOBILE WAVES
  ================================= */

  .hero::before {
    width: 180%;

    left: -40%;

    bottom: -100px;

    opacity: 0.7;
  }

  .hero::after {
    width: 170%;

    left: -35%;

    opacity: 0.6;
  }
}

/* =================================
   VERY SMALL PHONES
================================= */

@media (max-width: 360px) {

  .hero-content {
    padding-left: 12px;
    padding-right: 12px;
  }

  .top-heading {
    font-size: 11px;
  }

  .top-heading-span {
    padding: 5px 10px;
  }

  .hero-content h1 {
    font-size: 31px;

    letter-spacing: -0.8px;
  }

  .subtitle {
    max-width: 310px;

    font-size: 12px;
  }

  .btn {
    width: 150px;

    min-width: 150px;
  }

  .rating {
    font-size: 7px;
  }
}

/* =================================
   REDUCED MOTION
================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;

    opacity: 1 !important;

    transform: none !important;

    transition: none !important;
  }
}

/* FILE: components\Premier\Premier.css */

/* =================================
   RESET
================================= */

.partner-section,
.partner-section * {
  box-sizing: border-box;
}


/* =================================
   SECTION
================================= */

.partner-section {
  position: relative;

  width: 100%;

  padding: 110px 0;

  background:
    radial-gradient(
      circle at 15% 50%,
      rgba(57, 190, 226, 0.07),
      transparent 35%
    ),
    radial-gradient(
      circle at 85% 30%,
      rgba(20, 100, 150, 0.06),
      transparent 35%
    ),
    #050b11;

  color: #ffffff;

  overflow: hidden;
}


/* =================================
   BACKGROUND GLOW
================================= */

.partner-glow {
  position: absolute;

  width: 500px;
  height: 500px;

  left: -250px;
  top: 50%;

  transform: translateY(-50%);

  background: rgba(57, 190, 226, 0.08);

  filter: blur(120px);

  border-radius: 50%;

  pointer-events: none;
}


/* =================================
   CONTAINER
================================= */

.partner-container {
  width: 100%;

  max-width: 1200px;

  margin: 0 auto;

  padding: 0 20px;

  display: grid;

  grid-template-columns: 430px 1fr;

  align-items: center;

  gap: 90px;

  position: relative;

  z-index: 2;
}


/* =================================
   LEFT VISUAL
================================= */

.partner-visual {
  display: flex;

  justify-content: center;
}


/* =================================
   PARTNER CARD
================================= */

.partner-card {
  position: relative;

  width: 100%;

  max-width: 430px;

  padding: 25px;

  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(25, 35, 42, 0.95),
      rgba(8, 15, 21, 0.96)
    );

  border: 1px solid rgba(255, 255, 255, 0.09);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 1px rgba(255, 255, 255, 0.05);

  overflow: hidden;

  transition: transform 0.4s ease;
}

.partner-card:hover {
  transform: translateY(-6px);
}


/* =================================
   CARD TOP LINE
================================= */

.partner-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    #39bee2,
    transparent
  );

  opacity: 0.8;
}


/* =================================
   BADGE AREA
================================= */

.badge-wrapper {
  position: relative;

  min-height: 330px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-top: 10px;

  border-radius: 15px;

  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.015) 55%,
      transparent 75%
    );

  overflow: hidden;
}


/* =================================
   BADGE GLOW
================================= */

.badge-glow {
  position: absolute;

  width: 180px;
  height: 180px;

  border-radius: 50%;

  background: rgba(57, 190, 226, 0.12);

  filter: blur(55px);
}


/* =================================
   GOOGLE PREMIER BADGE
================================= */

.partner-badge {
  position: relative;

  width: 290px;

  max-width: 85%;

  height: auto;

  object-fit: contain;

  filter:
    drop-shadow(
      0 15px 30px rgba(0, 0, 0, 0.4)
    );

  z-index: 2;

  transition: transform 0.4s ease;
}

.partner-card:hover .partner-badge {
  transform: scale(1.025);
}


/* =================================
   VERIFY PARTNERSHIP BUTTON
================================= */

.verify-partner-button {
  width: 100%;

  display: flex;

  align-items: center;

  gap: 12px;

  margin-top: 16px;

  padding: 10px 15px;

  border-radius: 15px;

  background: rgba(255, 255, 255, 0.025);

border: 1px solid rgba(57, 190, 226, 0.35);

  color: #ffffff;

  text-decoration: none;

  /* NORMAL STATE SHADOW */
  box-shadow:
  0 10px 28px rgba(57, 190, 226, 0.20),
  0 4px 12px rgba(0, 0, 0, 0.30);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
}


/* =================================
   VERIFY ICON
================================= */

.verify-icon {
  width: 38px;
  height: 38px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 10px;

  color: #39bee2;

  background: rgba(57, 190, 226, 0.08);

  border: 1px solid rgba(57, 190, 226, 0.18);

  font-size: 13px;

  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}


/* =================================
   VERIFY TEXT
================================= */

.verify-text {
  flex: 1;

  min-width: 0;
}

.verify-text strong {
  display: block;

  margin-bottom: 3px;

  color: #e9eef1;

  font-size: 13px;

  font-weight: 600;

  transition: color 0.3s ease;
}

.verify-text span {
  display: block;

  color: #71818c;

  font-size: 11px;

  line-height: 1.4;

  transition: color 0.3s ease;
}


/* =================================
   VERIFY ARROW
================================= */

.verify-arrow {
  flex-shrink: 0;

  color: #71818c;

  font-size: 11px;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}


/* =================================
   VERIFY HOVER
================================= */

.verify-partner-button:hover {
  transform: translateY(-3px);

  /* BLUE BUTTON ON HOVER */
  background: #39bee2;

  border-color: #39bee2;

  /* BLUE GLOW */
  box-shadow:
    0 12px 30px rgba(57, 190, 226, 0.30),
    0 5px 15px rgba(57, 190, 226, 0.18);

  color: #ffffff;
}


/* =================================
   HOVER TEXT = WHITE
================================= */

.verify-partner-button:hover .verify-text strong,
.verify-partner-button:hover .verify-text span {
  color: #ffffff;
}


/* =================================
   HOVER ICON = WHITE
================================= */

.verify-partner-button:hover .verify-icon {
  color: #ffffff;

  background: rgba(255, 255, 255, 0.12);

  border-color: rgba(255, 255, 255, 0.28);
}


/* =================================
   HOVER ARROW = WHITE
================================= */

.verify-partner-button:hover .verify-arrow {
  color: #ffffff;

  transform: translateX(4px);
}


/* =================================
   RIGHT CONTENT
================================= */

.partner-content {
  max-width: 760px;
}


/* =================================
   LABEL
================================= */

.partner-label {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin-bottom: 20px;

  color: #39bee2;

  font-size: 13px;

  font-weight: 600;

  letter-spacing: 1.8px;
}


/* =================================
   LABEL ICON
================================= */

.label-icon {
  width: 25px;
  height: 25px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 7px;

  background: rgba(57, 190, 226, 0.1);

  border: 1px solid rgba(57, 190, 226, 0.25);

  font-size: 12px;
}


/* =================================
   HEADING
================================= */

.partner-content h2 {
  margin: 0;

  max-width: 800px;

  color: #f5f7f9;

  font-size: clamp(42px, 4vw, 62px);

  line-height: 1.08;

  font-weight: 700;

  letter-spacing: -2.5px;
}

.partner-content h2 span {
  background: linear-gradient(
    90deg,
    #00a6d6 0%,
    #03a6a6 100%
  );

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

  font-weight: 700;
}


/* =================================
   DESCRIPTION
================================= */

.partner-description {
  max-width: 760px;

  margin: 30px 0 35px;

  color: #8fa2ae;

  font-size: 16px;

  line-height: 1.75;
}


/* =================================
   BENEFITS
================================= */

.benefits-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px 30px;

  margin-bottom: 38px;
}


/* =================================
   BENEFIT ITEM
================================= */

.benefit-item {
  display: flex;

  align-items: flex-start;

  gap: 12px;

  color: #dfe6ea;

  font-size: 14px;

  font-weight: 500;

  line-height: 1.5;
}


/* =================================
   CHECK ICON
================================= */

.check-icon {
  width: 25px;
  height: 25px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-top: 1px;

  border-radius: 50%;

  color: #39bee2;

  background: rgba(57, 190, 226, 0.08);

  border: 1px solid rgba(57, 190, 226, 0.2);

  font-size: 10px;

  box-shadow:
    0 0 15px rgba(57, 190, 226, 0.06);
}


/* =================================
   CTA
================================= */

.partner-cta {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;

  padding: 18px 20px;

  border-radius: 14px;

  background:
    linear-gradient(
      90deg,
      rgba(57, 190, 226, 0.07),
      rgba(255, 255, 255, 0.025)
    );

  border: 1px solid rgba(255, 255, 255, 0.07);
}


/* =================================
   CTA LEFT
================================= */

.cta-left {
  display: flex;

  align-items: center;

  gap: 13px;
}


/* =================================
   CTA CHART
================================= */

.cta-chart {
  width: 40px;
  height: 40px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 10px;

  color: #39bee2;

  background: rgba(57, 190, 226, 0.08);

  border: 1px solid rgba(57, 190, 226, 0.15);
}


/* =================================
   CTA TEXT
================================= */

.cta-left strong {
  display: block;

  margin-bottom: 3px;

  color: #e8eef1;

  font-size: 13px;
}

.cta-left span {
  display: block;

  color: #748792;

  font-size: 11px;
}


/* =================================
   CTA BUTTON
================================= */

.partner-button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  min-width: 190px;

  padding: 12px 18px;

  border-radius: 30px;

  color: #ffffff;

  background: linear-gradient(
    135deg,
    #39bee2,
    #159ac1
  );

  box-shadow:
    0 8px 25px rgba(57, 190, 226, 0.16);

  font-size: 12px;

  font-weight: 600;

  text-decoration: none;

  transition: all 0.3s ease;
}

.partner-button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 12px 30px rgba(57, 190, 226, 0.28);
}

.partner-button svg {
  transition: transform 0.3s ease;
}

.partner-button:hover svg {
  transform: translateX(4px);
}


/* =================================
   TABLET
================================= */

@media (max-width: 1000px) {

  .partner-container {
    grid-template-columns: 360px 1fr;

    gap: 50px;
  }

  .partner-content h2 {
    font-size: 44px;

    letter-spacing: -1.8px;
  }

  .partner-description {
    font-size: 14px;
  }

  .benefits-grid {
    gap: 15px;
  }

  .benefit-item {
    font-size: 13px;
  }

  .partner-cta {
    flex-direction: column;

    align-items: stretch;
  }

  .partner-button {
    width: 100%;
  }
}


/* =================================
   MOBILE
================================= */

@media (max-width: 768px) {

  .partner-section {
    padding: 75px 0;
  }

  .partner-container {
    grid-template-columns: 1fr;

    gap: 50px;

    padding: 0 20px;
  }

  .partner-visual {
    order: 1;
  }

  .partner-content {
    order: 2;

    max-width: 100%;
  }

  .partner-card {
    max-width: 420px;
  }

  .partner-content h2 {
    font-size: 40px;

    line-height: 1.1;
  }

  .partner-description {
    margin-top: 22px;

    font-size: 14px;

    line-height: 1.7;
  }

  .benefits-grid {
    grid-template-columns: 1fr;

    gap: 14px;
  }

  .partner-cta {
    align-items: stretch;
  }
}


/* =================================
   SMALL MOBILE
================================= */

@media (max-width: 480px) {

  .partner-section {
    padding: 60px 0;
  }

  .partner-container {
    padding: 0 18px;

    gap: 40px;
  }

  .partner-card {
    padding: 16px;

    border-radius: 17px;
  }

  .badge-wrapper {
    min-height: 270px;
  }

  .partner-badge {
    width: 230px;
  }

  .verify-partner-button {
    margin-top: 13px;

    padding: 13px;

    gap: 10px;
  }

  .verify-icon {
    width: 36px;
    height: 36px;

    font-size: 12px;
  }

  .verify-text strong {
    font-size: 12px;
  }

  .verify-text span {
    font-size: 10px;
  }

  .partner-content h2 {
    font-size: 34px;

    letter-spacing: -1.2px;
  }

  .partner-label {
    font-size: 11px;

    letter-spacing: 1.3px;
  }

  .partner-description {
    font-size: 13px;
  }

  .benefit-item {
    font-size: 13px;
  }

  .partner-cta {
    padding: 16px;

    gap: 18px;
  }

  .cta-left {
    align-items: flex-start;
  }
}


/* FILE: components\Services\Services.css */
.services-section {
  position: relative;
  width: 100%;
  padding:30px 20px 70px 20px;
  background: black;
  color: #ffffff;
  overflow: hidden;
}

/* Background glow */

.services-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(0, 190, 230, 0.08);
  filter: blur(120px);
  border-radius: 50%;
  top: 100px;
  left: -250px;
  pointer-events: none;
}

.services-section::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(65, 95, 255, 0.07);
  filter: blur(120px);
  border-radius: 50%;
  right: -200px;
  bottom: 100px;
  pointer-events: none;
}


/* Main container */

.services-container {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.services-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.services-label {
  display: inline-block;
  margin-bottom: 14px;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;

  color: #85869a;
}

.services-header h2 {
  margin: 0;

  font-size: clamp(42px, 4vw, 62px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -2px;
}

.services-header h2 span {
  background: linear-gradient(
    90deg,
    #00a6d6 0%,
    #03a6a6 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-header p {
  max-width: 620px;
  margin: 20px auto 0;

  color: #858697;
  font-size: 16px;
  line-height: 1.7;
}


/* =========================
   GRID
========================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}


/* =========================
   CARD
========================= */

.service-card {
  position: relative;

  min-height: 280px;
  padding: 28px;

  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      rgba(37, 37, 57, 0.95),
      rgba(25, 25, 40, 0.95)
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 15px 40px rgba(0, 0, 0, 0.15);

  overflow: hidden;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}


/* Card glow */

.service-card::before {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  top: -90px;
  right: -90px;

  background: rgba(0, 185, 225, 0.10);

  border-radius: 50%;

  filter: blur(40px);

  transition: 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);

  border-color: rgba(0, 190, 225, 0.35);

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(0, 180, 220, 0.06);
}

.service-card:hover::before {
  transform: scale(1.5);
}


/* =========================
   CARD TOP
========================= */

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 35px;
}

.service-number {
  font-size: 13px;
  font-weight: 600;
  color: #5e6073;
  letter-spacing: 1px;
}

/* =========================
   CLICKABLE SERVICE CARD
========================= */

.service-card {
  position: relative;

  cursor: pointer;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);

  border-color: rgba(57, 190, 226, 0.35);

  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.25),
    0 0 25px rgba(57, 190, 226, 0.06);
}


/* =========================
   CARD ARROW
========================= */

.service-card-arrow {
  position: absolute;

  right: 24px;
  bottom: 22px;

  width: 36px;
  height: 36px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(57, 190, 226, 0.2);

  border-radius: 50%;

  color: #39bee2;

  font-size: 18px;

  opacity: 0;

  transform: translateY(5px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease;
}

.service-card:hover .service-card-arrow {
  opacity: 1;

  transform: translateY(0);

  background: rgba(57, 190, 226, 0.08);
}


/* =========================
   KEYBOARD ACCESSIBILITY
========================= */

.service-card:focus-visible {
  outline: 1px solid #39bee2;

  outline-offset: 4px;
}


/* Icon */

.service-icon {
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  background:
    radial-gradient(
      circle at center,
      rgba(30, 194, 230, 0.18),
      rgba(22, 24, 39, 0.9) 70%
    );

  border: 1px solid rgba(63, 195, 225, 0.15);

  color: #03a6a6;

  box-shadow:
    0 0 25px rgba(0, 190, 230, 0.08);

  transition: 0.35s ease;
}

.service-icon svg {
  width: 27px;
  height: 27px;
}

.service-card:hover .service-icon {
  transform: scale(1.08);

  background:
    radial-gradient(
      circle at center,
      rgba(30, 194, 230, 0.28),
      rgba(22, 24, 39, 0.9) 70%
    );

  box-shadow:
    0 0 30px rgba(0, 190, 230, 0.15);
}


/* =========================
   CONTENT
========================= */

.service-content h3 {
  margin: 0 0 12px;

  font-size: 23px;
  line-height: 1.2;
  font-weight: 650;

  color: #f7f7fa;
}

.service-content p {
  margin: 0;

  color: #858697;

  font-size: 14px;
  line-height: 1.65;
}


/* =========================
   LINK
========================= */

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 25px;

  color: #25bfe1;

  text-decoration: none;

  font-size: 13px;
  font-weight: 600;

  transition: 0.3s ease;
}

.service-link span {
  font-size: 18px;

  transition: transform 0.3s ease;
}

.service-link:hover {
  color: #ffffff;
}

.service-link:hover span {
  transform: translateX(5px);
}


/* =========================
   CTA
========================= */

.services-cta {
  margin-top: 55px;
  padding: 25px 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  border-radius: 18px;

  background:
    linear-gradient(
      100deg,
      rgba(30, 40, 62, 0.9),
      rgba(22, 25, 42, 0.9)
    );

  border: 1px solid rgba(255, 255, 255, 0.06);
}

.services-cta h3 {
  margin: 0 0 6px;

  font-size: 19px;
}

.services-cta p {
  margin: 0;

  color: #858697;

  font-size: 13px;
}


/* CTA Button */

.services-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 14px 22px;

  border-radius: 9px;

  background: linear-gradient(
    135deg,
    #24bde0,
    #087fbf
  );

  color: #ffffff;

  text-decoration: none;

  font-size: 13px;
  font-weight: 600;

  white-space: nowrap;

  box-shadow:
    0 8px 25px rgba(0, 150, 210, 0.18);

  transition: 0.3s ease;
}

.services-btn span {
  font-size: 17px;
  transition: transform 0.3s ease;
}

.services-btn:hover {
  transform: translateY(-2px);

  box-shadow:
    0 12px 30px rgba(0, 150, 210, 0.28);
}

.services-btn:hover span {
  transform: translate(3px, -3px);
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-btn {
    width: fit-content;
  }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {
  .services-section {
    padding: 80px 18px;
  }

  .services-header {
    margin-bottom: 40px;
  }

  .services-header h2 {
    font-size: 38px;
  }

  .services-header p {
    font-size: 14px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    min-height: auto;
    padding: 24px;
  }

  .services-cta {
    padding: 24px;
  }

  .services-btn {
    width: 100%;
    justify-content: center;
  }
}

/* FILE: pages\About\About.css */
/* =====================================================
   GLOBAL
===================================================== */

.about-page {
  width: 100%;
  min-height: 100vh;

  background: #02070c;

  color: #f5f7fa;

  overflow: hidden;
}


/* =====================================================
   COMMON SECTION HEADING
===================================================== */

.about-section-heading {
  position: relative;

  max-width: 760px;

  margin: 0 auto 55px;

  text-align: center;

  z-index: 2;
}

.about-section-heading > span {
  display: inline-block;

  margin-bottom: 18px;

  color: #d2d2d2;

  font-family: Arial, sans-serif;

  font-size: 14px;

  font-weight: 500;

  letter-spacing: 1.8px;

  text-transform: uppercase;
}

.about-section-heading h1,
.about-section-heading h2 {
  margin: 0;

  color: #f5f7fa;

  font-family: Arial, sans-serif;

  font-size: clamp(42px, 4vw, 62px);

  line-height: 1.08;

  font-weight: 700;

  letter-spacing: -2px;
}

.about-section-heading h2 {
  font-size: clamp(38px, 4vw, 56px);
}

.about-section-heading h1 strong,
.about-section-heading h2 strong {
  background: linear-gradient(
    90deg,
    #00a6d6 0%,
    #03a6a6 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
}

.about-section-heading p {
  max-width: 650px;

  margin: 20px auto 0;

  color: #858d96;

  font-family: Arial, sans-serif;

  font-size: 14px;

  line-height: 1.8;
}


/* =====================================================
   RESULTS SECTION
===================================================== */

.about-results-section {
  position: relative;

  padding: 110px 40px 115px;

  background:
    radial-gradient(
      circle at 15% 30%,
      rgba(0, 166, 214, 0.08),
      transparent 30%
    ),
    #02070c;

  overflow: hidden;
}

.about-results-section::before {
  content: "";

  position: absolute;

  inset: 0;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );

  background-size: 48px 48px;

  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 35%,
    transparent
  );

  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    black 35%,
    transparent
  );

  pointer-events: none;
}


/* =====================================================
   RESULTS GRID
===================================================== */

.results-grid {
  position: relative;

  z-index: 2;

  width: 100%;

  max-width: 1250px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.result-card {
  min-height: 260px;

  padding: 38px 30px;

  border-right: 1px solid rgba(255, 255, 255, 0.08);

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.result-card:last-child {
  border-right: none;
}

.result-card:hover {
  background: rgba(30, 190, 230, 0.035);

  transform: translateY(-4px);
}

.result-number {
  margin-bottom: 20px;

  font-family: Arial, sans-serif;

  font-size: 46px;

  line-height: 1;

  font-weight: 700;

  letter-spacing: -2px;

  background: linear-gradient(
    90deg,
    #00a6d6 0%,
    #03a6a6 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
}

.result-card h3 {
  margin-bottom: 12px;

  color: #f5f7fa;

  font-size: 17px;

  font-weight: 600;
}

.result-card p {
  color: #858d96;

  font-size: 12px;

  line-height: 1.75;
}


/* =====================================================
   GOOGLE REVIEWS
===================================================== */

.google-reviews-section {
  position: relative;

  padding: 70px 40px 100px;

  background:
    radial-gradient(
      circle at 85% 45%,
      rgba(0, 166, 214, 0.07),
      transparent 30%
    ),
    #02070c;
}

.google-reviews-section::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  width: 70%;

  height: 1px;

  transform: translateX(-50%);

  background: linear-gradient(
    90deg,
    transparent,
    rgba(57, 190, 226, 0.35),
    transparent
  );
}


/* =====================================================
   GOOGLE RATING
===================================================== */

.google-rating {
  margin-top: 25px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 12px;
}

.google-stars {
  color: #f5b942;

  font-size: 22px;

  letter-spacing: 2px;

  text-shadow:
    0 0 12px rgba(245, 185, 66, 0.25);
}

.google-rating > span {
  color: #f5f7fa;

  font-size: 15px;

  font-weight: 600;
}

.google-rating small {
  color: #69737d;

  font-size: 12px;

  padding-left: 10px;

  border-left: 1px solid #29455d;
}


/* =====================================================
   REVIEWS GRID
===================================================== */

.reviews-grid {
  position: relative;

  z-index: 2;

  max-width: 1250px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}


/* =====================================================
   REVIEW CARD
===================================================== */

.review-card {
  position: relative;

  min-height: 285px;

  padding: 28px;

  background:
    linear-gradient(
      180deg,
      rgba(22, 44, 61, 0.45) 0%,
      rgba(7, 13, 18, 0.95) 100%
    );

  border: 1px solid #29455d;

  border-radius: 14px;

  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.06),
    0 15px 40px rgba(0, 0, 0, 0.25);

  transition:
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);

  border-color: rgba(57, 190, 226, 0.55);

  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.08),
    0 20px 45px rgba(0, 0, 0, 0.35),
    0 0 25px rgba(0, 160, 255, 0.06);
}


/* =====================================================
   REVIEW PERSON
===================================================== */

.review-top {
  display: flex;

  align-items: center;

  gap: 13px;

  margin-bottom: 18px;
}

.review-avatar {
  width: 43px;

  height: 43px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: linear-gradient(
    135deg,
    #00a6d6,
    #03a6a6
  );

  color: #ffffff;

  font-size: 15px;

  font-weight: 700;

  box-shadow:
    0 0 15px rgba(0, 166, 214, 0.18);
}

.review-person h3 {
  margin: 0 0 4px;

  color: #f5f7fa;

  font-size: 13px;

  font-weight: 600;
}

.review-person span {
  color: #69737d;

  font-size: 11px;
}


/* =====================================================
   REVIEW STARS
===================================================== */

.review-stars {
  margin-bottom: 15px;

  color: #f5b942;

  font-size: 17px;

  letter-spacing: 2px;

  text-shadow:
    0 0 10px rgba(245, 185, 66, 0.22);
}


/* =====================================================
   REVIEW TEXT
===================================================== */

.review-text {
  margin: 0;

  color: #b5bdc5;

  font-size: 12px;

  line-height: 1.8;
}


/* =====================================================
   GOOGLE LABEL
===================================================== */

.google-review-label {
  position: absolute;

  left: 28px;

  bottom: 22px;

  display: flex;

  align-items: center;

  gap: 8px;

  color: #69737d;

  font-size: 10px;

  font-weight: 500;
}

.google-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 18px;

  height: 18px;

  border-radius: 50%;

  color: #ffffff;

  font-size: 11px;

  font-weight: 700;

  background: #4285f4;
}


/* =====================================================
   FAQ SECTION
===================================================== */

.about-faq-section {
  position: relative;

  padding: 110px 40px 130px;

  background: #02070c;
}

.about-faq-section::before {
  content: "";

  position: absolute;

  top: 0;

  left: 50%;

  width: 80%;

  height: 1px;

  transform: translateX(-50%);

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
}


/* =====================================================
   FAQ CONTAINER
===================================================== */

.faq-container {
  position: relative;

  z-index: 2;

  width: 100%;

  max-width: 900px;

  margin: 0 auto;
}


/* =====================================================
   FAQ ITEM
===================================================== */

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);

  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.faq-item.faq-open {
  border-color: rgba(57, 190, 226, 0.25);
}


/* =====================================================
   FAQ QUESTION
===================================================== */

.faq-question {
  width: 100%;

  min-height: 78px;

  padding: 20px 5px;

  border: none;

  outline: none;

  background: transparent;

  color: #f5f7fa;

  font-family: inherit;

  font-size: 14px;

  font-weight: 500;

  text-align: left;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  cursor: pointer;

  transition: color 0.25s ease;
}

.faq-question:hover {
  color: #39bee2;
}


/* =====================================================
   FAQ ICON
===================================================== */

.faq-icon {
  width: 32px;

  height: 32px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid #29455d;

  border-radius: 50%;

  color: #39bee2;

  font-size: 20px;

  font-weight: 300;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.faq-open .faq-icon {
  border-color: #39bee2;

  background: rgba(57, 190, 226, 0.08);

  transform: rotate(180deg);
}


/* =====================================================
   FAQ ANSWER
===================================================== */

.faq-answer {
  display: grid;

  grid-template-rows: 0fr;

  transition:
    grid-template-rows 0.35s ease,
    padding 0.35s ease;
}

.faq-answer p {
  overflow: hidden;

  margin: 0;

  color: #858d96;

  font-size: 13px;

  line-height: 1.8;
}

.faq-open .faq-answer {
  grid-template-rows: 1fr;

  padding: 0 55px 25px 5px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .result-card:nth-child(2) {
    border-right: none;
  }

  .result-card:nth-child(1),
  .result-card:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

  .about-results-section,
  .google-reviews-section,
  .about-faq-section {
    padding: 75px 20px 85px;
  }


  .about-section-heading {
    margin-bottom: 40px;
  }

  .about-section-heading > span {
    font-size: 11px;

    letter-spacing: 1.5px;
  }

  .about-section-heading h1,
  .about-section-heading h2 {
    font-size: 38px;

    letter-spacing: -1.5px;
  }

  .about-section-heading p {
    font-size: 12px;

    line-height: 1.7;
  }


  /* RESULTS */

  .results-grid {
    grid-template-columns: 1fr;
  }

  .result-card {
    min-height: auto;

    padding: 30px 25px;

    border-right: none;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .result-card:nth-child(2) {
    border-right: none;
  }

  .result-card:last-child {
    border-bottom: none;
  }

  .result-number {
    font-size: 42px;
  }


  /* GOOGLE RATING */

  .google-rating {
    flex-wrap: wrap;

    gap: 8px;
  }

  .google-stars {
    font-size: 19px;
  }

  .google-rating small {
    width: 100%;

    border-left: none;

    padding-left: 0;

    margin-top: 3px;
  }


  /* REVIEWS */

  .reviews-grid {
    grid-template-columns: 1fr;

    gap: 15px;
  }

  .review-card {
    min-height: 270px;

    padding: 24px;
  }

  .google-review-label {
    left: 24px;

    bottom: 18px;
  }


  /* FAQ */

  .faq-question {
    min-height: 70px;

    font-size: 13px;

    gap: 15px;
  }

  .faq-icon {
    width: 29px;

    height: 29px;

    font-size: 18px;
  }

  .faq-open .faq-answer {
    padding:
      0
      40px
      22px
      5px;
  }

  .faq-answer p {
    font-size: 12px;
  }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

  .about-results-section,
  .google-reviews-section,
  .about-faq-section {
    padding-left: 16px;

    padding-right: 16px;
  }

  .about-section-heading h1,
  .about-section-heading h2 {
    font-size: 33px;
  }

  .result-card {
    padding: 28px 20px;
  }

  .review-card {
    padding: 21px;
  }

  .faq-question {
    padding-left: 0;

    padding-right: 0;

    font-size: 12px;
  }

  .faq-open .faq-answer {
    padding-right: 35px;
  }
}

/* FILE: pages\Casestudies\Casestudies.css */

/* ========================================
   IMPACT SECTION
======================================== */

.impact-section {
  width: 100%;
  background: #000;

  padding: 75px 70px 90px;

  overflow: hidden;
}


/* ========================================
   CONTAINER
======================================== */

.impact-container {
  width: 100%;
  max-width: 1600px;

  margin: 0 auto;
}


/* ========================================
   HEADER
======================================== */

.impact-header {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  margin-bottom: 32px;
}


/* ========================================
   SMALL HEADING
======================================== */

.impact-heading p {
  margin: 0 0 15px;

  color: #bcbcbc;

  font-family: Arial, sans-serif;

  font-size: 12px;
  font-weight: 500;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}


/* ========================================
   MAIN HEADING
======================================== */

.impact-heading h2 {
  margin: 0;

  max-width: 700px;

  color: #fff;

  font-family: Arial, sans-serif;

  font-size: 40px;
  font-weight: 700;

  line-height: 1.2;

  letter-spacing: -1.2px;
}


/* ========================================
   GRADIENT TEXT
======================================== */

.impact-heading h2 span {
  background: linear-gradient(
    90deg,
    #009ed0 0%,
    #18c6c5 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;

  font-weight: 600;
}


/* ========================================
   CASE STUDY GRID
======================================== */

.impact-grid {
  width: 100%;

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 28px;

  align-items: stretch;
}


/* ========================================
   CARD
======================================== */

.impact-card {
  width: 100%;

  min-width: 0;

  box-sizing: border-box;

  position: relative;

  display: flex;

  flex-direction: column;

  background: #111619;

  border: 1px solid #293238;

  border-radius: 18px;

  overflow: hidden;

  color: #fff;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}


/* ========================================
   CARD HOVER
======================================== */

.impact-card:hover {
  transform: translateY(-7px);

  border-color: #18c6c5;

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.45),
    0 0 25px rgba(24, 198, 197, 0.08);
}


/* ========================================
   CARD TOP CONTENT
======================================== */

.impact-card-content {
  width: 100%;

  min-height: 0;

  padding: 28px 27px 24px;

  box-sizing: border-box;

  display: flex;

  flex-direction: column;

  background:
    radial-gradient(
      circle at top right,
      rgba(24, 198, 197, 0.08),
      transparent 45%
    ),
    #111619;
}


/* ========================================
   CATEGORY
======================================== */

.impact-category {
  width: fit-content;

  max-width: 100%;

  margin: 0 0 16px;

  padding: 9px 16px;

  box-sizing: border-box;

  color: #69e7ed;

  background:
    linear-gradient(
      135deg,
      rgba(0, 158, 208, 0.12),
      rgba(24, 198, 197, 0.12)
    );

  border: 1px solid rgba(
    24,
    198,
    197,
    0.12
  );

  border-radius: 50px;

  font-family: Arial, sans-serif;

  font-size: 13px;

  font-weight: 500;

  line-height: 1.2;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;
}


/* ========================================
   CARD TITLE
======================================== */

.impact-card-title {
  margin: 0 0 11px;

  color: #f5f7f8;

  font-family: Arial, sans-serif;

  font-size: 28px;

  font-weight: 700;

  line-height: 1.14;

  letter-spacing: -0.8px;
}


/* ========================================
   RESULT
======================================== */

.impact-result {
  margin: 0 0 9px;

  color: #35e879;

  font-family: Arial, sans-serif;

  font-size: 34px;

  font-weight: 500;

  line-height: 1;

  letter-spacing: -1.5px;
}


/* ========================================
   DESCRIPTION
======================================== */

.impact-description {
  margin: 0;

  max-width: 520px;

  color: #aeb6ba;

  font-family: Arial, sans-serif;

  font-size: 15px;

  font-weight: 400;

  line-height: 1.5;
}


/* ========================================
   HIGHLIGHT
======================================== */

.impact-highlight {
  margin: 17px 0 0;

  padding-top: 15px;

  color: #dce3e5;

  font-family: Arial, sans-serif;

  font-size: 14px;

  font-weight: 600;

  line-height: 1.45;

  border-top: 1px solid
    rgba(255, 255, 255, 0.08);
}


/* ========================================
   IMAGE WRAPPER
======================================== */

.impact-image-wrapper {
  position: relative;

  width: 100%;

  margin: 0;

  padding: 0;

  overflow: hidden;

  background: #0c1012;

  line-height: 0;
}


/* ========================================
   IMAGE
======================================== */

.impact-image {
  display: block;

  width: 100%;

  height: auto;

  margin: 0;

  padding: 0;

  object-fit: contain;

  object-position: center;

  background: #0c1012;

  transition:
    transform 0.5s ease;
}


/* ========================================
   IMAGE HOVER
======================================== */

.impact-card:hover .impact-image {
  transform: scale(1.025);
}


/* ========================================
   VIEW CASE STUDY BUTTON
======================================== */

.case-study-button {
  width: calc(100% - 32px);

  min-height: 52px;

  margin: 16px;

  padding: 8px 9px 8px 18px;

  box-sizing: border-box;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 15px;

  color: #fff;

  text-decoration: none;

  background: #171f22;

  border: 1px solid #29373c;

  border-radius: 50px;

  font-family: Arial, sans-serif;

  font-size: 15px;

  font-weight: 600;

  line-height: 1;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}


/* ========================================
   BUTTON HOVER
======================================== */

.case-study-button:hover {
  background: linear-gradient(
    135deg,
    #009ed0,
    #18c6c5
  );

  border-color: transparent;

  color: #fff;

  transform: translateY(-2px);
}


/* ========================================
   BUTTON ICON
======================================== */

.case-study-icon {
  width: 35px;

  height: 35px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  color: #fff;

  background: linear-gradient(
    135deg,
    #009ed0,
    #18c6c5
  );

  font-size: 18px;

  line-height: 1;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}


/* ========================================
   ICON HOVER
======================================== */

.case-study-button:hover .case-study-icon {
  background: rgba(
    255,
    255,
    255,
    0.2
  );

  transform: translateX(3px);
}


/* ========================================
   LARGE DESKTOP
======================================== */

@media (max-width: 1400px) {

  .impact-section {
    padding-left: 55px;

    padding-right: 55px;
  }


  .impact-container {
    max-width: 1250px;
  }


  .impact-grid {
    gap: 24px;
  }


  .impact-card-content {
    padding: 25px 23px 22px;
  }


  .impact-category {
    margin-bottom: 14px;

    padding: 8px 14px;

    font-size: 12px;
  }


  .impact-card-title {
    font-size: 24px;

    margin-bottom: 10px;
  }


  .impact-result {
    font-size: 30px;

    margin-bottom: 8px;
  }


  .impact-description {
    font-size: 14px;

    line-height: 1.5;
  }


  .impact-highlight {
    margin-top: 15px;

    padding-top: 13px;

    font-size: 13px;
  }


  .case-study-button {
    margin: 14px;

    width: calc(100% - 28px);
  }

}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {

  .impact-section {
    padding: 60px 35px 75px;
  }


  .impact-container {
    max-width: 850px;
  }


  .impact-header {
    margin-bottom: 25px;
  }


  .impact-heading h2 {
    font-size: 32px;
  }


  /* TWO COLUMNS */

  .impact-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 20px;
  }


  .impact-card-content {
    padding: 24px 22px 21px;
  }


  .impact-category {
    margin-bottom: 14px;
  }


  .impact-card-title {
    font-size: 23px;

    margin-bottom: 10px;
  }


  .impact-result {
    font-size: 29px;

    margin-bottom: 8px;
  }


  .impact-description {
    font-size: 14px;

    line-height: 1.5;
  }


  .impact-highlight {
    margin-top: 15px;

    padding-top: 13px;
  }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {

  .impact-section {
    padding: 45px 20px 60px;
  }


  /* ========================================
     HEADER
  ======================================== */

  .impact-header {
    align-items: flex-end;

    margin-bottom: 20px;
  }


  .impact-heading p {
    font-size: 9px;

    margin-bottom: 6px;

    letter-spacing: 1px;
  }


  .impact-heading h2 {
    max-width: 100%;

    font-size: 23px;

    line-height: 1.2;

    letter-spacing: -0.7px;
  }


  /* ========================================
     ONE COLUMN
  ======================================== */

  .impact-grid {
    grid-template-columns: 1fr;

    gap: 14px;
  }


  /* ========================================
     CARD
  ======================================== */

  .impact-card {
    width: 100%;

    border-radius: 14px;
  }


  /* ========================================
     CARD CONTENT
  ======================================== */

  .impact-card-content {
    padding: 21px 18px 20px;
  }


  /* ========================================
     CATEGORY
  ======================================== */

  .impact-category {
    margin-bottom: 14px;

    padding: 8px 13px;

    font-size: 11px;
  }


  /* ========================================
     TITLE
  ======================================== */

  .impact-card-title {
    margin-bottom: 10px;

    font-size: 23px;

    line-height: 1.18;
  }


  /* ========================================
     RESULT
  ======================================== */

  .impact-result {
    margin-bottom: 8px;

    font-size: 29px;

    line-height: 1;
  }


  /* ========================================
     DESCRIPTION
  ======================================== */

  .impact-description {
    font-size: 14px;

    line-height: 1.5;
  }


  /* ========================================
     HIGHLIGHT
  ======================================== */

  .impact-highlight {
    margin-top: 14px;

    padding-top: 13px;

    font-size: 13px;

    line-height: 1.4;
  }


  /* ========================================
     IMAGE
  ======================================== */

  .impact-image-wrapper {
    width: 100%;

    height: auto;

    margin: 0;

    padding: 0;
  }


  .impact-image {
    width: 100%;

    height: auto;

    object-fit: contain;

    object-position: center;
  }


  /* ========================================
     BUTTON
  ======================================== */

  .case-study-button {
    width: calc(100% - 24px);

    min-height: 48px;

    margin: 12px;

    padding-left: 16px;

    font-size: 14px;
  }


  .case-study-icon {
    width: 32px;

    height: 32px;

    font-size: 17px;
  }

}


/* ========================================
   VERY SMALL PHONES
======================================== */

@media (max-width: 380px) {

  .impact-section {
    padding-left: 16px;

    padding-right: 16px;
  }


  .impact-heading h2 {
    font-size: 21px;
  }


  .impact-grid {
    gap: 12px;
  }


  .impact-card-content {
    padding: 18px 16px 18px;
  }


  .impact-category {
    font-size: 10px;

    padding: 7px 11px;

    margin-bottom: 13px;
  }


  .impact-card-title {
    font-size: 20px;

    margin-bottom: 9px;
  }


  .impact-result {
    font-size: 26px;

    margin-bottom: 7px;
  }


  .impact-description {
    font-size: 13px;

    line-height: 1.45;
  }


  .impact-highlight {
    margin-top: 13px;

    padding-top: 12px;

    font-size: 12px;
  }


  /* ========================================
     IMAGE
  ======================================== */

  .impact-image-wrapper {
    width: 100%;

    height: auto;
  }


  .impact-image {
    width: 100%;

    height: auto;

    object-fit: contain;

    object-position: center;
  }


  /* ========================================
     BUTTON
  ======================================== */

  .case-study-button {
    font-size: 13px;

    min-height: 46px;

    margin: 10px;

    width: calc(100% - 20px);
  }


  .case-study-icon {
    width: 30px;

    height: 30px;
  }

}


/* FILE: pages\CaseStudy\Case.css */
/* =========================================================
   CASE STUDY PAGE
========================================================= */

.case-study-page {
  width: 100%;
  min-height: 100vh;

  background: #050a0d;

  color: #ffffff;

  overflow: hidden;

  font-family: inherit;
}


/* =========================================================
   CONTAINER
========================================================= */

.case-study-container {
  width: 100%;
  max-width: 1120px;

  margin: 0 auto;

  padding: 0 45px;

  position: relative;

  z-index: 2;
}


/* =========================================================
   HERO
========================================================= */

.case-study-hero {
  position: relative;

  min-height: 700px;

  display: flex;

  align-items: center;

  padding: 30px 0 50px;

  overflow: hidden;

  background:
    linear-gradient(
      rgba(3, 10, 14, 0.28),
      rgba(3, 10, 14, 0.28)
    ),
    url("./assets/Heroimg.png");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.case-study-hero::before {
  content: "";

  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(3, 166, 166, 0.07),
      transparent 42%
    ),
    linear-gradient(
      180deg,
      rgba(3, 8, 12, 0.10),
      rgba(3, 8, 12, 0.30)
    );

  pointer-events: none;

  z-index: 1;
}


/* =========================================================
   HERO CONTENT LAYER
========================================================= */

.case-study-hero .case-study-container {
  position: relative;

  z-index: 2;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
  text-align: center;

  max-width: 900px;

  margin: 0 auto;
}


/* =========================================================
   CASE STUDY CATEGORY
========================================================= */

.case-study-category {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 9px;

  margin-bottom: 20px;

  padding: 10px 18px;

  border-radius: 30px;

  color: #ffffff;

  background: rgba(255, 255, 255, 0.055);

  backdrop-filter: blur(16px);

  -webkit-backdrop-filter: blur(16px);

  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.2),
    0 0 20px rgba(57, 190, 226, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 1.6px;

  line-height: 1;

  text-transform: uppercase;
}


.case-study-category .category-icon {
  width: 16px;

  height: 16px;

  flex-shrink: 0;

  color: #39bee2;

  stroke-width: 2.4;

  filter:
    drop-shadow(
      0 0 6px rgba(57, 190, 226, 0.5)
    );
}


.case-study-category span {
  color: #ffffff;
}


/* =========================================================
   HERO TITLE
========================================================= */

.hero-content h1 {
  margin: 0;

  color: #f5f7f9;

  font-size: clamp(42px, 5vw, 68px);

  line-height: 1.05;

  font-weight: 700;

  letter-spacing: -2.5px;

  text-shadow:
    0 4px 25px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   HERO RESULT
========================================================= */

.hero-content h2 {
  margin: 15px 0 0;

  background: linear-gradient(
    90deg,
    #00a6d6 0%,
    #03a6a6 100%
  );

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

  font-size: 25px;

  line-height: 1.4;

  font-weight: 700;

  text-shadow:
    0 0 25px rgba(3, 166, 166, 0.15);
}


.hero-content h2 span {
  color: #39bee2;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {
  max-width: 620px;

  margin: 22px auto 0;

  color: #d0dce1;

  font-size: 20px;

  padding-bottom: 20px;

  line-height: 1.8;

  text-shadow:
    0 2px 15px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   HERO METRICS
========================================================= */

.hero-metrics {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  max-width: 750px;

  margin: 42px auto 0;
}


.hero-metric {
  position: relative;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  min-height: 115px;

  padding: 10px 20px;
}


.hero-metric:not(:last-child)::after {
  content: "";

  position: absolute;

  right: 0;

  top: 18px;

  width: 2px;

  height: 80px;

  background: rgba(250, 239, 239, 0.395);
}


.hero-metric svg {
  margin-bottom: 8px;

  color: #03a6a6;

  font-size: 25px;

  stroke-width: 2;

  filter:
    drop-shadow(
      0 0 7px rgba(3, 166, 166, 0.45)
    );
}


.hero-metric strong {
  display: block;

  color: #39bee2;

  font-size: 31px;

  line-height: 1.1;

  font-weight: 700;

  text-shadow:
    0 0 15px rgba(57, 190, 226, 0.22);
}


.hero-metric span {
  margin-top: 7px;

  color: white;

  font-size: 18px;

  line-height: 1.4;
}


/* =========================================================
   GENERAL SECTION
========================================================= */

.case-study-section {
  position: relative;

  padding: 40px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.075);

  background: #050a0d;
}


.case-study-section::before {
  content: "";

  position: absolute;

  left: 50%;

  top: 0;

  transform: translateX(-50%);

  width: 500px;

  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(3, 166, 166, 0.22),
    transparent
  );
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
  max-width: 760px;

  margin: 0 auto 45px;

  text-align: center;
}


.section-heading > span {
  display: block;

  margin-bottom: 12px;

  color: #71848e;

  font-size: 20px;

  font-weight: 600;

  letter-spacing: 2.5px;

  text-transform: uppercase;
}


.section-heading h2 {
  margin: 0;

  background: linear-gradient(
    90deg,
    #009ed0 0%,
    #18c6c5 100%
  );

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

  font-size: clamp(31px, 4vw, 48px);

  line-height: 1.5;

  font-weight: 700;

  letter-spacing: -1.4px;
}


.section-heading p {
  max-width: 680px;

  margin: 20px auto 0;

  color: white;

  font-size: 22px;

  line-height: 1.85;
}


/* =========================================================
   OVERVIEW
========================================================= */

.case-study-section:first-of-type {
  padding-top: 80px;

  padding-bottom: 80px;
}


/* =========================================================
   BEFORE
========================================================= */

.before-section {
  padding-top: 75px;

  padding-bottom: 85px;
}


.before-section .section-heading {
  margin-bottom: 32px;
}


.before-section .section-heading h2 {
  max-width: 600px;

  margin-left: auto;

  margin-right: auto;
}


/* =========================================================
   INFO TAGS
========================================================= */

.info-tags {
  display: flex;

  justify-content: center;

  align-items: center;

  flex-wrap: wrap;

  gap: 18px;

  margin: 0 auto 38px;
}


.info-tags div {
  display: flex;

  align-items: center;

  gap: 8px;

  padding: 13px 18px;

  border-radius: 22px;

  border: 1px solid rgba(255, 255, 255, 0.10);

  color: #9aaab3;

  background: rgba(255, 255, 255, 0.018);

  font-size: 20px;

  line-height: 1.2;
}


.info-tags svg {
  color: #03a6a6;

  font-size: 18px;

  stroke-width: 2;
}


/* =========================================================
   SCREENSHOT CARD
========================================================= */

.screenshot-card {
  position: relative;

  width: 100%;

  max-width: 850px;

  margin: 0 auto;

  padding: 0;

  overflow: hidden;

  border-radius: 8px;

  border: 1px solid rgba(255, 255, 255, 0.09);

  background: #0b1115;

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   SCREENSHOT HEADER
========================================================= */

.screenshot-header {
  height: 40px;

  display: flex;

  align-items: center;

  padding: 0 15px;

  background: #0d1418;

  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}


.window-dots {
  display: flex;

  gap: 6px;
}


.window-dots span {
  width: 7px;

  height: 7px;

  border-radius: 50%;

  background: #53636b;
}


.screenshot-header > span:last-child {
  margin-left: auto;

  color: #71838d;

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 1.5px;
}


/* =========================================================
   BEFORE / AFTER IMAGE
========================================================= */

.screenshot-card img {
  display: block;

  width: 100%;

  height: auto;

  min-height: 390px;

  max-height: 600px;

  object-fit: contain;

  object-position: center;

  background: #0b1115;
}


/* =========================================================
   BEFORE IMAGE
========================================================= */

.before-image {
  margin-top: 0;
}


.before-section .before-image img {
  width: 100%;
}


/* =========================================================
   OUR WORK
========================================================= */

.work-section {
  padding-top: 80px;

  padding-bottom: 85px;
}


.work-section .section-heading {
  margin-bottom: 45px;
}


/* =========================================================
   WORK GRID
========================================================= */

.work-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  column-gap: 80px;

  row-gap: 50px;

  max-width: 800px;

  margin: 0 auto;
}


.work-item {
  position: relative;

  text-align: center;

  padding: 5px 15px;
}


.work-number {
  margin-bottom: 11px;

  color: #03a6a6;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 2px;
}


.work-item > svg {
  width: 35px;

  height: 35px;

  margin-bottom: 12px;

  color: #03a6a6;

  stroke-width: 1.8;
}


.work-item h3 {
  margin: 0 0 10px;

  color: white;

  font-size: 24px;

  line-height: 1.35;

  font-weight: 600;
}


.work-item p {
  max-width: 320px;

  margin: 0 auto;

  color: #95a6af;

  font-size: 18px;

  line-height: 1.75;
}


/* =========================================================
   AFTER
========================================================= */

.after-section {
  padding-top: 80px;

  padding-bottom: 95px;
}


.after-section .section-heading {
  margin-bottom: 42px;
}


.after-section .section-heading h2 {
  max-width: 700px;

  margin-left: auto;

  margin-right: auto;
}


/* =========================================================
   AFTER STATS
========================================================= */

.after-stats {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  column-gap: 30px;

  row-gap: 32px;

  max-width: 820px;

  margin: 0 auto 48px;
}


.after-stat {
  text-align: center;

  min-height: 95px;
}


.after-stat-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 31px;

  height: 31px;

  margin: 0 auto 8px;

  color: #03a6a6;
}


.after-stat-icon svg {
  width: 23px;

  height: 23px;

  stroke-width: 2;
}


.after-stat strong {
  display: block;

  color: #f0f5f7;

  font-size: 28px;

  line-height: 1.3;

  font-weight: 700;
}


.after-stat:first-child strong,
.after-stat:nth-child(2) strong,
.after-stat:nth-child(3) strong {
  color: #39bee2;
}


.after-stat span {
  display: block;

  margin-top: 5px;

  color: #778992;

  font-size: 18px;

  line-height: 1.4;
}


/* =========================================================
   AFTER IMAGE
========================================================= */

.after-image {
  margin-top: 30px;
}


.after-section .after-image img {
  width: 100%;
}


/* =========================================================
   CTA
========================================================= */

.case-study-cta {
  position: relative;

  padding: 105px 0 110px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  text-align: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(57, 190, 226, 0.13),
      transparent 35%
    ),
    radial-gradient(
      circle at 20% 70%,
      rgba(3, 166, 166, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(0, 166, 214, 0.06),
      transparent 30%
    ),
    #050a0d;
}


/* =========================================================
   CTA OUTER GLOW
========================================================= */

.case-study-cta::before {
  content: "";

  position: absolute;

  top: -180px;

  left: 50%;

  width: 500px;

  height: 500px;

  transform: translateX(-50%);

  border-radius: 50%;

  background: rgba(3, 166, 166, 0.07);

  filter: blur(90px);

  pointer-events: none;
}


/* =========================================================
   CTA CONTENT CARD
========================================================= */

.cta-content {
  position: relative;

  max-width: 760px;

  margin: 0 auto;

  padding: 58px 45px;

  border: 1px solid rgba(255, 255, 255, 0.10);

  border-radius: 28px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.025)
    );

  backdrop-filter: blur(18px);

  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.40),
    0 0 45px rgba(3, 166, 166, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  overflow: hidden;
}


/* =========================================================
   CTA TOP LIGHT
========================================================= */

.cta-content::before {
  content: "";

  position: absolute;

  top: 0;

  left: 50%;

  width: 240px;

  height: 2px;

  transform: translateX(-50%);

  background: linear-gradient(
    90deg,
    transparent,
    #39bee2,
    #03a6a6,
    transparent
  );

  box-shadow:
    0 0 20px rgba(57, 190, 226, 0.5);
}


/* =========================================================
   CTA HEADING
========================================================= */

.cta-content h2 {
  position: relative;

  margin: 0 0 17px;

  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #f5f7f9 45%,
    #39bee2 100%
  );

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

  color: #ffffff;

  font-size: clamp(36px, 4.5vw, 54px);

  line-height: 1.5;

  font-weight: 750;

  letter-spacing: -1.8px;
}


/* =========================================================
   CTA DESCRIPTION
========================================================= */

.cta-content p {
  position: relative;

  max-width: 570px;

  margin: 0 auto 34px;

  color: #aebdc5;

  font-size: 17px;

  line-height: 1.8;

  font-weight: 400;
}


/* =========================================================
   CTA BUTTONS
========================================================= */

.cta-buttons {
  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 14px;

  flex-wrap: wrap;
}


/* =========================================================
   PRIMARY CTA
========================================================= */

.primary-cta {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  min-height: 52px;

  padding: 0 27px;

  border-radius: 28px;

  color: white;

  background: linear-gradient(
    135deg,
    #39bee2,
    #03a6a6
  );

  box-shadow:
    0 10px 30px rgba(3, 166, 166, 0.18);

  text-decoration: none;

  font-size: 18px;

  font-weight: 700;

  letter-spacing: 0.1px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}


.primary-cta svg {
  font-size: 17px;

  transition: transform 0.3s ease;
}


.primary-cta:hover {
  transform: translateY(-3px);

  filter: brightness(1.08);

  box-shadow:
    0 15px 35px rgba(3, 166, 166, 0.30);
}


.primary-cta:hover svg {
  transform: translateX(4px);
}


/* =========================================================
   SECONDARY CTA
========================================================= */

.secondary-cta {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-height: 52px;

  padding: 0 27px;

  border: 1px solid rgba(255, 255, 255, 0.16);

  border-radius: 28px;

  color: #c4d0d5;

  background: rgba(255, 255, 255, 0.035);

  backdrop-filter: blur(10px);

  -webkit-backdrop-filter: blur(10px);

  text-decoration: none;

  font-size: 14px;

  font-weight: 600;

  transition:
    transform 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}


.secondary-cta:hover {
  transform: translateY(-3px);

  color: #ffffff;

  border-color: rgba(57, 190, 226, 0.45);

  background: rgba(57, 190, 226, 0.07);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .case-study-container {
    max-width: 800px;

    padding: 0 35px;
  }


  /* HERO */

  .case-study-hero {
    min-height: 650px;

    padding: 65px 0 70px;

    background-position: center;
  }


  .hero-content h1 {
    font-size: 48px;
  }


  .hero-description {
    font-size: 16px;
  }


  .hero-metric strong {
    font-size: 28px;
  }


  .hero-metric span {
    font-size: 12px;
  }


  .section-heading p {
    font-size: 16px;
  }


  .work-grid {
    column-gap: 40px;
  }


  .work-item h3 {
    font-size: 18px;
  }


  .work-item p {
    font-size: 14px;
  }


  /* SCREENSHOTS */

  .screenshot-card img {
    min-height: 0;

    max-height: none;

    height: auto;

    object-fit: contain;
  }


  /* CTA */

  .case-study-cta {
    padding: 85px 0 90px;
  }


  .cta-content {
    max-width: 680px;

    padding: 50px 35px;

    border-radius: 24px;
  }


  .cta-content h2 {
    font-size: 42px;
  }


  .cta-content p {
    font-size: 16px;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .case-study-container {
    padding: 0 22px;
  }


  /* HERO */

  .case-study-hero {
    min-height: 640px;

    padding-top: 55px;

    padding-bottom: 55px;

    background-position: center center;
  }


  .case-study-hero::before {
    background:
      radial-gradient(
        circle at 50% 45%,
        rgba(3, 166, 166, 0.08),
        transparent 55%
      ),
      linear-gradient(
        180deg,
        rgba(3, 8, 12, 0.20),
        rgba(3, 8, 12, 0.42)
      );
  }


  /* CATEGORY */

  .case-study-category {
    gap: 7px;

    margin-bottom: 15px;

    padding: 8px 13px;

    border-radius: 25px;

    font-size: 9px;

    letter-spacing: 1.4px;
  }


  .case-study-category .category-icon {
    width: 13px;

    height: 13px;
  }


  /* HERO TITLE */

  .hero-content h1 {
    font-size: 37px;

    line-height: 1.08;

    letter-spacing: -1.5px;
  }


  .hero-content h2 {
    margin-top: 11px;

    font-size: 18px;
  }


  .hero-description {
    font-size: 14px;

    line-height: 1.75;
  }


  /* HERO METRICS */

  .hero-metrics {
    margin-top: 32px;
  }


  .hero-metric {
    padding: 7px 8px;

    min-height: 88px;
  }


  .hero-metric svg {
    font-size: 21px;

    margin-bottom: 7px;
  }


  .hero-metric strong {
    font-size: 23px;
  }


  .hero-metric span {
    font-size: 10px;

    line-height: 1.45;
  }


  .hero-metric:not(:last-child)::after {
    top: 12px;

    height: 62px;
  }


  /* SECTIONS */

  .case-study-section {
    padding: 62px 0;
  }


  .section-heading {
    margin-bottom: 35px;
  }


  .section-heading > span {
    font-size: 9px;

    letter-spacing: 2px;
  }


  .section-heading h2 {
    font-size: 29px;

    letter-spacing: -0.8px;
  }


  .section-heading p {
    font-size: 14px;

    line-height: 1.8;
  }


  /* TAGS */

  .info-tags {
    gap: 8px;

    margin-bottom: 28px;
  }


  .info-tags div {
    padding: 9px 12px;

    font-size: 10px;

    line-height: 1.3;
  }


  .info-tags svg {
    font-size: 13px;
  }


  /* SCREENSHOT */

  .screenshot-card {
    border-radius: 7px;
  }


  .screenshot-header {
    height: 32px;

    padding: 0 10px;
  }


  .window-dots {
    gap: 4px;
  }


  .window-dots span {
    width: 5px;

    height: 5px;
  }


  .screenshot-header > span:last-child {
    font-size: 8px;
  }


  .screenshot-card img {
    width: 100%;

    height: auto;

    min-height: 0;

    max-height: none;

    object-fit: contain;
  }


  .after-image {
    margin-top: 22px;
  }


  /* WORK */

  .work-grid {
    grid-template-columns: repeat(2, 1fr);

    column-gap: 20px;

    row-gap: 40px;
  }


  .work-item {
    padding: 0;
  }


  .work-number {
    font-size: 9px;

    margin-bottom: 8px;
  }


  .work-item > svg {
    width: 29px;

    height: 29px;

    margin-bottom: 9px;
  }


  .work-item h3 {
    font-size: 15px;

    margin-bottom: 7px;
  }


  .work-item p {
    font-size: 11px;

    line-height: 1.7;
  }


  /* AFTER STATS */

  .after-stats {
    grid-template-columns: repeat(3, 1fr);

    column-gap: 8px;

    row-gap: 28px;

    margin-bottom: 35px;
  }


  .after-stat {
    min-height: 78px;
  }


  .after-stat-icon {
    width: 27px;

    height: 27px;
  }


  .after-stat-icon svg {
    width: 19px;

    height: 19px;
  }


  .after-stat strong {
    font-size: 15px;
  }


  .after-stat span {
    font-size: 9px;

    line-height: 1.45;
  }


  /* CTA */

  .case-study-cta {
    padding: 70px 0 75px;
  }


  .cta-content {
    padding: 43px 22px;

    border-radius: 22px;
  }


  .cta-content::before {
    width: 170px;
  }


  .cta-content h2 {
    font-size: 31px;

    line-height: 1.18;

    letter-spacing: -1px;
  }


  .cta-content p {
    max-width: 430px;

    margin-bottom: 28px;

    font-size: 14px;

    line-height: 1.75;
  }


  .cta-buttons {
    gap: 10px;
  }


  .primary-cta,
  .secondary-cta {
    min-height: 47px;

    padding: 0 21px;

    font-size: 12px;

    border-radius: 24px;
  }


  .primary-cta svg {
    font-size: 15px;
  }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

  .case-study-container {
    padding: 0 17px;
  }


  /* HERO */

  .case-study-hero {
    min-height: 620px;

    padding-top: 45px;

    background-position: center center;
  }


  .case-study-category {
    gap: 6px;

    padding: 7px 11px;

    font-size: 8px;

    letter-spacing: 1.2px;
  }


  .case-study-category .category-icon {
    width: 12px;

    height: 12px;
  }


  .hero-content h1 {
    font-size: 33px;
  }


  .hero-content h2 {
    font-size: 16px;
  }


  .hero-description {
    font-size: 13px;
  }


  .hero-metric strong {
    font-size: 20px;
  }


  .hero-metric span {
    font-size: 8px;
  }


  .section-heading h2 {
    font-size: 27px;
  }


  .section-heading p {
    font-size: 13px;
  }


  .info-tags div {
    font-size: 9px;
  }


  /* SCREENSHOT */

  .screenshot-card img {
    width: 100%;

    height: auto;

    min-height: 0;

    max-height: none;

    object-fit: contain;
  }


  .work-grid {
    column-gap: 12px;

    row-gap: 32px;
  }


  .work-item h3 {
    font-size: 13px;
  }


  .work-item p {
    font-size: 10px;
  }


  .after-stat strong {
    font-size: 12px;
  }


  .after-stat span {
    font-size: 7px;
  }


  /* SMALL MOBILE CTA */

  .case-study-cta {
    padding: 60px 0 65px;
  }


  .cta-content {
    padding: 38px 18px;

    border-radius: 19px;
  }


  .cta-content h2 {
    font-size: 27px;
  }


  .cta-content p {
    font-size: 12px;
  }


  .cta-buttons {
    flex-direction: column;

    width: 100%;
  }


  .primary-cta,
  .secondary-cta {
    width: 100%;

    min-height: 45px;

    font-size: 11px;
  }
}

/* FILE: pages\Contact\Contact.css */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


/* =================================
   CONTACT PAGE
================================= */

.contact-page {
  width: 100%;
  background: #02070c;
  color: #f5f7fa;
  overflow: hidden;
}


/* =================================
   CONTACT SECTION
================================= */

.contact-section {
  position: relative;
  width: 100%;
  padding: 0px 40px;

  background:
    radial-gradient(
      circle at 15% 50%,
      rgba(20, 140, 190, 0.08),
      transparent 30%
    ),
    #02070c;

  overflow: hidden;
}


/* =================================
   SUBTLE GRID
================================= */

.contact-section::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );

  background-size: 48px 48px;

  mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      black 35%,
      transparent 100%
    );

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      black 35%,
      transparent 100%
    );

  pointer-events: none;
}


/* =================================
   BACKGROUND GLOW
================================= */

.contact-background-glow {
  position: absolute;

  width: 450px;
  height: 450px;

  right: -200px;
  top: 30%;

  background: rgba(0, 190, 230, 0.08);

  filter: blur(120px);

  pointer-events: none;
}


/* =================================
   CONTACT WRAPPER
================================= */

.contact-wrapper {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1250px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 80px;

  align-items: center;
}


/* =================================
   LEFT SIDE
================================= */

.contact-intro {
  max-width: 520px;
}


.contact-small-title {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 6px 14px;

  border-radius: 30px;

  background: rgba(30, 190, 230, 0.075);

  box-shadow:
    0 0 20px rgba(0, 190, 230, 0.08);

  color: #4bccf0;

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 1.8px;
}


/* =================================
   MAIN HEADING
================================= */

.contact-intro h1 {
  margin-top: 22px;

  font-size: clamp(45px, 5vw, 68px);

  line-height: 1.06;

  font-weight: 700;

  letter-spacing: -2.5px;

  color: #f5f7fa;

  text-shadow:
    0 0 30px rgba(255, 255, 255, 0.06);
}


.contact-intro h1 span {
  display: block;

  background: linear-gradient(
    90deg,
    #00a6d6 0%,
    #03a6a6 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;

  color: transparent;
}


/* =================================
   INTRO PARAGRAPH
================================= */

.contact-intro p {
  max-width: 470px;

  margin-top: 25px;

  color: #9da6af;

  font-size: 14px;

  line-height: 1.7;
}


/* =================================
   DECORATION
================================= */

.contact-decoration {
  position: relative;

  width: 300px;
  height: 150px;

  margin-top: 50px;
}


.decoration-circle {
  position: absolute;

  left: 15px;
  top: 20px;

  width: 90px;
  height: 90px;

  border-radius: 50%;

  border: 1px solid rgba(0, 166, 214, 0.4);

  box-shadow:
    0 0 30px rgba(0, 166, 214, 0.08);
}


.decoration-circle::before {
  content: "";

  position: absolute;

  width: 54px;
  height: 54px;

  top: 17px;
  left: 17px;

  border-radius: 50%;

  border: 1px solid rgba(3, 166, 166, 0.3);
}


.decoration-circle::after {
  content: "";

  position: absolute;

  width: 8px;
  height: 8px;

  top: 40px;
  left: 40px;

  border-radius: 50%;

  background: #03a6a6;

  box-shadow:
    0 0 15px rgba(3, 166, 166, 0.8);
}


.decoration-line {
  position: absolute;

  left: 95px;
  top: 67px;

  width: 100px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      #00a6d6,
      #03a6a6,
      rgba(3, 166, 166, 0)
    );

  transform: rotate(-18deg);

  transform-origin: left center;
}


.decoration-text {
  position: absolute;

  left: 175px;
  top: 48px;

  color: #858d96;

  font-size: 9px;

  line-height: 1.6;

  letter-spacing: 1.8px;
}


/* =================================
   FORM CARD
================================= */

.contact-form-card {
  position: relative;

  padding: 42px;

  background:
    linear-gradient(
      180deg,
      rgba(22, 44, 61, 0.45) 0%,
      rgba(7, 13, 18, 0.95) 100%
    );

  border: 1px solid #29455d;

  border-radius: 18px;

  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(0, 160, 255, 0.04);
}


/* =================================
   CYAN / TEAL TOP LINE
================================= */

.contact-form-card::before {
  content: "";

  position: absolute;

  top: -1px;
  left: 12%;

  width: 76%;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      #00a6d6,
      #03a6a6,
      transparent
    );

  opacity: 0.9;
}


/* =================================
   FORM HEADER
================================= */

.form-header {
  margin-bottom: 30px;
}


.form-header-top {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  margin-bottom: 10px;
}


.form-header-top > span {
  background: linear-gradient(
    90deg,
    #00a6d6 0%,
    #03a6a6 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;

  color: transparent;

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 1.8px;

  white-space: nowrap;
}


.form-header-top p {
  margin: 0;

  color: #858d96;

  font-size: 11px;

  line-height: 1.5;

  text-align: right;
}


/* =================================
   FORM HEADING
================================= */

.form-header h2 {
  margin-top: 0;

  font-size: 32px;

  line-height: 1.15;

  font-weight: 600;

  letter-spacing: -1px;

  color: #f5f7fa;
}


.form-header h2 strong {
  background: linear-gradient(
    90deg,
    #00a6d6 0%,
    #03a6a6 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;

  color: transparent;
}


/* =================================
   FORM ROW
================================= */

.form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 15px;

  margin-bottom: 15px;
}


.input-group {
  display: flex;

  flex-direction: column;
}


.input-group label,
.services-select > label {
  margin-bottom: 8px;

  color: #c9d0d6;

  font-size: 16px;

  font-weight: 500;
}


.input-group input,
.input-group textarea {
  width: 100%;

  border: 1px solid #29455d;

  background: rgba(2, 7, 12, 0.8);

  border-radius: 8px;

  color: #f5f7fa;

  outline: none;

  font-family: inherit;

  font-size: 12px;

  transition: all 0.3s ease;
}


.input-group input {
  height: 46px;

  padding: 0 13px;
}


.input-group textarea {
  min-height: 100px;

  padding: 13px;

  resize: vertical;
}


.input-group input::placeholder,
.input-group textarea::placeholder {
  color: #59636c;
}


.input-group input:focus,
.input-group textarea:focus {
  border-color: #00a6d6;

  box-shadow:
    0 0 15px rgba(0, 166, 214, 0.08),
    inset 0 0 10px rgba(3, 166, 166, 0.02);
}


.full-input {
  margin-bottom: 25px;
}


/* =================================
   SERVICES
================================= */

.services-select {
  margin-bottom: 28px;
}


.services-select > label {
  display: block;

  margin-bottom: 16px;
}


.service-options {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  column-gap: 25px;

  row-gap: 13px;
}


.service-option {
  position: relative;

  display: flex;

  align-items: center;

  gap: 9px;

  color: #858d96;

  font-size: 16px;

  cursor: pointer;

  transition: color 0.25s ease;
}


.service-option:hover {
  color: #f5f7fa;
}


.service-option input {
  position: absolute;

  opacity: 0;

  pointer-events: none;
}


.custom-checkbox {
  width: 15px;
  height: 15px;

  flex-shrink: 0;

  border: 1px solid #29455d;

  border-radius: 4px;

  background: #02070c;

  transition: all 0.25s ease;
}


.service-option input:checked + .custom-checkbox {
  border-color: #00a6d6;

  background:
    linear-gradient(
      135deg,
      #00a6d6,
      #03a6a6
    );

  box-shadow:
    0 0 12px rgba(0, 166, 214, 0.3);
}


.service-option input:checked
+ .custom-checkbox::after {
  content: "✓";

  display: flex;

  align-items: center;

  justify-content: center;

  width: 100%;
  height: 100%;

  color: #02070c;

  font-size: 10px;

  font-weight: 700;
}


/* =================================
   SUBMIT BUTTON
================================= */

.contact-submit {
  min-width: 160px;

  width: 100%;

  height: 50px;

  padding: 0 22px;

  border-radius: 30px;

  border: 1px solid #29455d;

  background:
    linear-gradient(
      180deg,
      #162c3d 0%,
      #070d12 100%
    );

  color: #fff;

  text-decoration: none;

  font-family: inherit;

  font-size: 14px;

  font-weight: 500;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  cursor: pointer;

  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.15),
    0 0 15px rgba(0, 160, 255, 0.08);

  transition: all 0.3s ease;
}


.contact-submit:hover {
  color: #fff;

  border-color: #00a6d6;

  transform: translateY(-1px);

  box-shadow:
    0 0 20px rgba(0, 191, 255, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
}


.contact-submit span {
  font-size: 17px;

  transition: transform 0.3s ease;
}


.contact-submit:hover span {
  transform: translateX(5px);
}


/* =================================
   PORTFOLIO SECTION
================================= */

.portfolio-section {
  position: relative;

  padding: 95px 40px 110px;

  background: #02070c;

  border-top: 1px solid rgba(255, 255, 255, 0.05);
}


/* =================================
   SUBTLE WAVE
================================= */

.portfolio-section::before {
  content: "";

  position: absolute;

  width: 120%;
  height: 250px;

  left: -10%;
  top: -120px;

  border-top: 2px solid rgba(0, 166, 214, 0.15);

  border-radius: 50%;

  transform: rotate(-4deg);

  filter: blur(5px);

  pointer-events: none;
}


/* =================================
   PORTFOLIO HEADING
================================= */

.portfolio-heading {
  position: relative;

  z-index: 2;

  max-width: 700px;

  margin: 0 auto 55px;

  text-align: center;
}


.portfolio-heading > span {

  color: #d2d2d2;

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 1.5px;
}


.portfolio-heading h2 {
  margin-top: 12px;

  font-size: 44px;

  line-height: 1.15;

  font-weight: 600;

  letter-spacing: -1.5px;

  color: #f5f7fa;
}


.portfolio-heading h2 strong {
  background: linear-gradient(
    90deg,
    #00a6d6 0%,
    #03a6a6 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;

  color: transparent;
}


.portfolio-heading p {
  max-width: 600px;

  margin: 15px auto 0;

  color: #858d96;

  font-size: 13px;

  line-height: 1.7;
}


/* =================================
   CLIENT LOGOS
================================= */

.portfolio-logos {
  position: relative;

  z-index: 2;

  max-width: 1250px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(5, 1fr);

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


.portfolio-logo {
  height: 145px;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 25px;

  border-right: 1px solid rgba(255, 255, 255, 0.08);

  transition: all 0.3s ease;
}


.portfolio-logo:last-child {
  border-right: none;
}


.portfolio-logo:hover {
  background: rgba(0, 166, 214, 0.035);
}


.logo-placeholder {
  color: #59636c;

  font-size: 15px;

  font-weight: 600;

  letter-spacing: 2px;

  transition: all 0.3s ease;
}


.portfolio-logo:hover .logo-placeholder {
  background: linear-gradient(
    90deg,
    #00a6d6 0%,
    #03a6a6 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;

  color: transparent;

  text-shadow:
    0 0 15px rgba(0, 166, 214, 0.3);
}


/* =================================
   TABLET
================================= */

@media (max-width: 1000px) {

  .contact-wrapper {
    grid-template-columns: 1fr;

    max-width: 700px;

    gap: 60px;
  }


  .contact-intro {
    max-width: 650px;

    margin: auto;

    text-align: center;
  }


  .contact-intro p {
    margin-left: auto;
    margin-right: auto;
  }


  .contact-decoration {
    margin-left: auto;
    margin-right: auto;
  }


  .portfolio-logos {
    grid-template-columns: repeat(3, 1fr);
  }


  .portfolio-logo:nth-child(3) {
    border-right: none;
  }

}


/* =================================
   MOBILE
================================= */

@media (max-width: 650px) {

  .contact-section {
    padding: 75px 20px;
  }


  .contact-intro h1 {
    font-size: 45px;

    letter-spacing: -1.8px;
  }


  .contact-intro p {
    font-size: 13px;
  }


  .contact-decoration {
    margin-top: 40px;
  }


  .contact-form-card {
    padding: 28px 20px;
  }


  .form-header-top {
    flex-direction: column;

    align-items: flex-start;

    gap: 6px;
  }


  .form-header-top p {
    text-align: left;
  }


  .form-row {
    grid-template-columns: 1fr;
  }


  .service-options {
    grid-template-columns: 1fr;
  }


  .form-header h2 {
    font-size: 28px;
  }


  .portfolio-section {
    padding: 75px 20px 90px;
  }


  .portfolio-heading h2 {
    font-size: 34px;
  }


  .portfolio-heading p {
    font-size: 12px;
  }


  .portfolio-logos {
    grid-template-columns: repeat(2, 1fr);
  }


  .portfolio-logo {
    height: 120px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }


  .portfolio-logo:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }


  .portfolio-logo:nth-child(even) {
    border-right: none;
  }

}


/* =================================
   SMALL MOBILE
================================= */

@media (max-width: 400px) {

  .contact-section {
    padding: 60px 16px;
  }


  .contact-intro h1 {
    font-size: 38px;
  }


  .contact-form-card {
    padding: 25px 16px;
  }


  .form-header h2 {
    font-size: 25px;
  }


  .portfolio-heading h2 {
    font-size: 30px;
  }


  .portfolio-logo {
    height: 105px;
  }

}

/* FILE: pages\Home\Home.css */

/* FILE: pages\Results\Results.css */

/* FILE: pages\Services\ServiceDetail.css */
/* =========================================================
   SERVICE DETAIL PAGE
   Theme matched with Main Hero
========================================================= */

.service-detail-page {
  width: 100%;
  min-height: 100vh;

  background: #02070c;
  color: #f5f7fa;

  font-family: "Inter", "Segoe UI", sans-serif;

  overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.service-detail-container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.service-detail-hero {
  position: relative;

  padding: 110px 0 75px;

  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(20, 160, 210, 0.16),
      transparent 32%
    ),
    radial-gradient(
      circle at 90% 75%,
      rgba(20, 100, 180, 0.12),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #02070c 0%,
      #061018 55%,
      #02070c 100%
    );

  overflow: hidden;
}


/* =========================================================
   HERO GLOW
========================================================= */

.service-detail-hero::before {
  content: "";

  position: absolute;

  width: 700px;
  height: 350px;

  left: -250px;
  top: 50px;

  border-radius: 50%;

  border: 2px solid rgba(30, 190, 230, 0.13);

  filter: blur(7px);

  transform: rotate(-12deg);

  pointer-events: none;
}

.service-detail-hero::after {
  content: "";

  position: absolute;

  width: 650px;
  height: 300px;

  right: -250px;
  bottom: -80px;

  border-radius: 50%;

  border: 2px solid rgba(20, 120, 190, 0.12);

  filter: blur(8px);

  transform: rotate(10deg);

  pointer-events: none;
}


/* =========================================================
   HERO GRID
========================================================= */

.hero-content-wrap {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: 1.35fr 0.85fr;

  gap: 55px;

  align-items: center;
}


/* =========================================================
   HERO COPY
========================================================= */

.hero-copy {
  max-width: 760px;
}


/* =========================================================
   EYEBROW
========================================================= */

.service-eyebrow {
  display: inline-flex;

  align-items: center;

  margin: 0 0 22px;

  padding: 7px 16px;

  border-radius: 30px;

  background: rgba(30, 190, 230, 0.075);

  border: 1px solid rgba(57, 190, 226, 0.14);

  box-shadow:
    0 0 20px rgba(0, 190, 230, 0.08);

  color: #4bccf0;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.hero-copy h1 {
  margin: 0;

  max-width: 800px;

  font-size: clamp(42px, 5.8vw, 70px);

  line-height: 1.05;

  font-weight: 700;

  letter-spacing: -2.5px;

  color: #f5f7fa;

  text-shadow:
    0 0 30px rgba(255, 255, 255, 0.07);
}


/* =========================================================
   SUMMARY
========================================================= */

.hero-summary {
  margin: 24px 0 0;

  max-width: 680px;

  color: #9da6af;

  font-size: 15px;

  line-height: 1.7;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-actions {
  display: flex;

  flex-wrap: wrap;

  align-items: center;

  gap: 12px;

  margin-top: 30px;
}


/* =========================================================
   BUTTON BASE
========================================================= */

.service-primary-btn,
.service-secondary-btn,
.service-back-link {
  display: inline-flex;

  justify-content: center;
  align-items: center;

  min-width: 200px;

  height: 50px;

  padding: 0 22px;

  border-radius: 30px;

  text-decoration: none;

  font-size: 14px;

  font-weight: 600;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.service-primary-btn,
.service-back-link {
  color: #ffffff;

  background: linear-gradient(
    135deg,
    #20c9e8,
    #119bd0
  );

  border: 1px solid rgba(57, 190, 226, 0.4);

  box-shadow:
    0 5px 25px rgba(0, 190, 230, 0.25);
}

.service-primary-btn:hover,
.service-back-link:hover {
  transform: translateY(-2px);

  box-shadow:
    0 8px 30px rgba(0, 190, 230, 0.4);
}


/* =========================================================
   SECONDARY BUTTON
========================================================= */

.service-secondary-btn {
  border: 1px solid #29455d;

  background: linear-gradient(
    180deg,
    #162c3d 0%,
    #070d12 100%
  );

  color: #ffffff;

  font-weight: 500;

  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.15),
    0 0 15px rgba(0, 160, 255, 0.08);
}

.service-secondary-btn:hover {
  transform: translateY(-2px);

  border-color: #39bee2;

  box-shadow:
    0 0 20px rgba(0, 191, 255, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
}


/* =========================================================
   HERO PANEL
========================================================= */

.hero-panel {
  position: relative;

  padding: 32px 28px;

  border-radius: 24px;

  background:
    linear-gradient(
      180deg,
      rgba(22, 44, 61, 0.72) 0%,
      rgba(7, 13, 18, 0.94) 100%
    );

  border: 1px solid #29455d;

  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.08),
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 0 25px rgba(0, 140, 220, 0.07);

  overflow: hidden;
}


/* =========================================================
   PANEL GLOW
========================================================= */

.hero-panel::before {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  top: -100px;
  right: -70px;

  border-radius: 50%;

  background: rgba(32, 201, 232, 0.12);

  filter: blur(35px);

  pointer-events: none;
}


/* =========================================================
   PANEL BADGE
========================================================= */

.panel-badge,
.card-kicker {
  display: inline-flex;

  align-items: center;

  color: #4bccf0;

  font-size: 22px;

  font-weight: 700;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}


/* =========================================================
   PANEL TITLE
========================================================= */

.hero-panel h3 {
  position: relative;

  margin: 18px 0 12px;

  font-size: clamp(1.6rem, 2.4vw, 2.2rem);

  line-height: 1.2;

  letter-spacing: -0.8px;

  color: #f5f7fa;
}


/* =========================================================
   PANEL TEXT
========================================================= */

.hero-panel p {
  position: relative;

  margin: 0;

  color: white;

  font-size: 18px;

  line-height: 1.75;
}


/* =========================================================
   BODY
========================================================= */

.service-detail-body {
  position: relative;

  padding: 55px 0 0;

  background: #02070c;
}


/* =========================================================
   DETAIL GRID
========================================================= */

.detail-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 20px;
}


/* =========================================================
   DETAIL CARD
========================================================= */

.detail-card {
  position: relative;

  padding: 30px 28px;

  min-height: 280px;

  border-radius: 22px;

  background:
    linear-gradient(
      180deg,
      rgba(22, 44, 61, 0.62) 0%,
      rgba(7, 13, 18, 0.96) 100%
    );

  border: 1px solid #29455d;

  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.07),
    0 20px 45px rgba(0, 0, 0, 0.25);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}


/* =========================================================
   CARD HOVER
========================================================= */

.detail-card:hover {
  transform: translateY(-4px);

  border-color: rgba(57, 190, 226, 0.55);

  box-shadow:
    0 0 25px rgba(0, 170, 230, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
}


/* =========================================================
   ACCENT CARD
========================================================= */

.accent-card {
  background:
    radial-gradient(
      circle at top right,
      rgba(20, 170, 220, 0.09),
      transparent 35%
    ),
    linear-gradient(
      180deg,
      rgba(22, 44, 61, 0.68) 0%,
      rgba(7, 13, 18, 0.96) 100%
    );
}


/* =========================================================
   CARD LIST
========================================================= */

.detail-card ul {
  list-style: none;

  margin: 22px 0 0;

  padding: 0;

  display: grid;

  gap: 15px;
}

.detail-card li {
  position: relative;

  padding-left: 24px;

  color: #9da6af;

  font-size: 14px;

  line-height: 1.7;
}


/* =========================================================
   LIST DOT
========================================================= */

.detail-card li::before {
  content: "";

  position: absolute;

  left: 0;

  top: 9px;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #20c9e8;

  box-shadow:
    0 0 12px rgba(32, 201, 232, 0.8);
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.service-detail-bottom {
  position: relative;

  padding: 55px 0 90px;

  background: #02070c;
}


/* =========================================================
   BOTTOM WRAPPER
========================================================= */

.bottom-wrap {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 30px;

  align-items: center;

  padding: 32px;

  border-radius: 22px;

  background:
    linear-gradient(
      180deg,
      rgba(22, 44, 61, 0.62) 0%,
      rgba(7, 13, 18, 0.95) 100%
    );

  border: 1px solid #29455d;

  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.07),
    0 20px 50px rgba(0, 0, 0, 0.3);

  overflow: hidden;

  position: relative;
}


/* =========================================================
   BOTTOM GLOW
========================================================= */

.bottom-wrap::before {
  content: "";

  position: absolute;

  width: 300px;
  height: 180px;

  right: -100px;
  bottom: -100px;

  border-radius: 50%;

  background: rgba(20, 180, 230, 0.1);

  filter: blur(40px);

  pointer-events: none;
}


/* =========================================================
   BOTTOM COPY
========================================================= */

.bottom-copy,
.bottom-cta {
  position: relative;

  z-index: 2;
}

.bottom-copy p,
.bottom-cta p {
  margin: 14px 0 0;

  max-width: 520px;

  color: #9da6af;

  font-size: 14px;

  line-height: 1.7;
}


/* =========================================================
   CTA
========================================================= */

.bottom-cta {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 5px;
}


/* =========================================================
   EMPTY STATE
========================================================= */

.empty-state {
  display: flex;

  align-items: center;

  justify-content: center;

  min-height: 70vh;

  background:
    radial-gradient(
      circle at center,
      rgba(20, 150, 210, 0.08),
      transparent 40%
    ),
    #02070c;
}

.empty-state h1 {
  margin-bottom: 25px;

  color: #f5f7fa;

  font-size: 40px;

  letter-spacing: -1px;
}

.empty-state .service-detail-container {
  text-align: center;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  .service-detail-container {
    width: min(100% - 32px, 720px);
  }

  .hero-content-wrap {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .hero-copy {
    max-width: 100%;

    text-align: center;
  }

  .service-eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-summary {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-panel {
    max-width: 650px;

    width: 100%;

    margin: 0 auto;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .bottom-wrap {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .bottom-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .bottom-cta {
    align-items: center;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {
  .service-detail-container {
    width: calc(100% - 32px);
  }

  .service-detail-hero {
    padding: 80px 0 55px;
  }

  .hero-copy h1 {
    font-size: 45px;

    letter-spacing: -1.5px;
  }

  .hero-summary {
    font-size: 14px;

    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: column;

    gap: 9px;

    margin-top: 25px;
  }

  .service-primary-btn,
  .service-secondary-btn {
    width: 200px;

    min-width: 200px;

    height: 46px;

    font-size: 13px;
  }

  .hero-panel {
    padding: 26px 22px;

    border-radius: 20px;
  }

  .hero-panel h3 {
    font-size: 1.6rem;
  }

  .detail-card {
    padding: 26px 22px;

    min-height: auto;
  }

  .service-detail-body {
    padding-top: 35px;
  }

  .service-detail-bottom {
    padding: 40px 0 65px;
  }

  .bottom-wrap {
    padding: 27px 20px;

    border-radius: 20px;
  }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
  .service-detail-container {
    width: calc(100% - 28px);
  }

  .service-detail-hero {
    padding: 65px 0 45px;
  }

  .service-eyebrow {
    font-size: 10px;

    padding: 6px 12px;

    letter-spacing: 0.13em;
  }

  .hero-copy h1 {
    font-size: 35px;

    line-height: 1.08;

    letter-spacing: -1px;
  }

  .hero-summary {
    margin-top: 16px;

    font-size: 13px;

    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .service-primary-btn,
  .service-secondary-btn {
    width: 180px;

    min-width: 180px;

    height: 43px;

    padding: 0 16px;

    font-size: 12px;
  }

  .hero-panel {
    padding: 23px 19px;

    border-radius: 18px;
  }

  .panel-badge,
  .card-kicker {
    font-size: 9px;
  }

  .hero-panel h3 {
    margin-top: 14px;

    font-size: 1.4rem;
  }

  .hero-panel p {
    font-size: 13px;

    line-height: 1.6;
  }

  .detail-grid {
    gap: 14px;
  }

  .detail-card {
    padding: 23px 19px;

    border-radius: 18px;
  }

  .detail-card ul {
    margin-top: 17px;

    gap: 12px;
  }

  .detail-card li {
    padding-left: 21px;

    font-size: 13px;

    line-height: 1.6;
  }

  .detail-card li::before {
    width: 7px;
    height: 7px;

    top: 8px;
  }

  .bottom-wrap {
    padding: 24px 18px;

    border-radius: 18px;
  }

  .bottom-copy p,
  .bottom-cta p {
    font-size: 13px;

    line-height: 1.6;
  }

  .empty-state h1 {
    font-size: 30px;
  }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 360px) {
  .service-detail-container {
    width: calc(100% - 24px);
  }

  .hero-copy h1 {
    font-size: 31px;

    letter-spacing: -0.8px;
  }

  .hero-summary {
    font-size: 12px;
  }

  .service-primary-btn,
  .service-secondary-btn {
    width: 165px;

    min-width: 165px;

    height: 41px;

    font-size: 11px;
  }

  .hero-panel {
    padding: 20px 16px;
  }

  .detail-card {
    padding: 21px 16px;
  }
}

/* FILE: pages\Services\Services.css */

