
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #ffffff;
      color: #1e293b;
      line-height: 1.6;
    }

    img {
      width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      width: min(1200px, 92%);
      margin: auto;
    }

    .section {
      padding: 110px 0;
    }

    .eyebrow {
      color: #bb2b2c;
      text-transform: uppercase;
      letter-spacing: 3px;
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    h1, h2, h3, h4 {
      line-height: 1.1;
    }

    .btn {
      display: inline-block;
      padding: 16px 34px;
      font-weight: 600;
      transition: 0.3s ease;
      border: 1px solid transparent;
    }

    .btn-primary {
      background: #bb2b2c;
      color: white;
    }

    .btn-primary:hover {
      background: #9e2223;
    }

    .btn-secondary {
      border: 1px solid rgba(255,255,255,0.25);
      color: white;
    }

    .btn-secondary:hover {
      background: white;
      color: #12254b;
    }

    /* HEADER */

    header {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(255,255,255,0.96);
      border-bottom: 1px solid #e2e8f0;
      z-index: 1000;
      backdrop-filter: blur(10px);
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 22px 0;
    }

    .logo h1 {
      color: #12254b;
      font-size: 24px;
      font-weight: 800;
    }

    .logo span {
      color: #bb2b2c;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      display: block;
      margin-top: 4px;
      font-weight: 700;
    }

    nav ul {
      display: flex;
      gap: 40px;
      list-style: none;
    }

    nav a {
      font-size: 14px;
      font-weight: 600;
      transition: 0.3s ease;
    }

    nav a:hover {
      color: #bb2b2c;
    }

  

     /* MOBILE MENU */
     

.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 32px;
    color: #12254b;
    font-weight: 700;
    z-index: 1100;
  }
  
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #12254b;
    padding: 120px 40px;
    transition: 0.4s ease;
    z-index: 1050;
  }
  
  .mobile-menu.active {
    right: 0;
  }
  
  .mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  
  .mobile-menu a {
    color: white;
    font-size: 18px;
    font-weight: 600;
  }
  
  .mobile-menu a:hover {
    color: #bb2b2c;
  }
  
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 1000;
  }
  
  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  /* CLOSE BUTTON */

.menu-close {
  position: absolute;
  top: 25px;
  right: 25px;

  background: none;
  border: none;

  color: white;
  font-size: 34px;
  cursor: pointer;

  line-height: 1;
}
  

    /* HERO */

    /* BRAND GRAPHIC ELEMENTS */

    .brand-x {
      position: absolute;
      width: 420px;
      opacity: 0.50;
      z-index: 1;
    }

    .brand-x-top {
      top: -60px;
      right: -40px;
      transform: rotate(0deg);
    }

    .brand-x-bottom {
      bottom: -120px;
      left: -100px;
      transform: rotate(0deg);
    }

    .section-divider {
      width: 120px;
      height: 4px;
      background: #bb2b2c;
      margin: 28px 0 40px;
    }

    .accent-line {
      width: 60px;
      height: 3px;
      background: #bb2b2c;
      margin-bottom: 22px;
    }

    .hero {
      background: #12254b;
      color: white;
      padding: 180px 0 120px;
      overflow: hidden;
      position: relative;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.04), transparent 40%);
    }

    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 70px;
      align-items: center;
    }

    .hero-tag {
      display: inline-block;
      padding: 10px 16px;
      border: 1px solid rgba(255,255,255,0.15);
      font-size: 14px;
      margin-bottom: 28px;
      color: rgba(255,255,255,0.9);
    }

    .hero h2 {
      font-size: 72px;
      font-weight: 800;
      max-width: 800px;
    }

    .hero p {
      margin-top: 30px;
      color: #cbd5e1;
      font-size: 18px;
      max-width: 650px;
    }

    .hero-buttons {
      margin-top: 45px;
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

   /* HERO SLIDER */

.hero-image {
  position: relative;
  overflow: hidden;
  min-height: 620px;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
}

    /* PLACEHOLDER NOTE */

    .placeholder-note {
      margin-top: 12px;
      color: rgba(255,255,255,0.6);
      font-size: 12px;
    }

    /* ABOUT */

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .about h3,
    .services h3,
    .approach h3,
    .industries h3,
    .advantages h3,
    .contact h3 {
      font-size: 52px;
      color: #12254b;
      font-weight: 800;
      margin-bottom: 28px;
    }

    .about p {
      color: #475569;
      font-size: 18px;
      margin-bottom: 20px;
    }

    .vision-box,
    .mission-box {
      padding: 50px;
      border: 1px solid #e2e8f0;
      margin-bottom: 24px;
    }

    .mission-box {
      background: #12254b;
      color: white;
      border: none;
    }

    .vision-box h4,
    .mission-box h4 {
      font-size: 28px;
      margin-bottom: 20px;
    }

    /* SERVICES */

    .services {
      background: #f8fafc;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      margin-top: 70px;
    }

    @media (max-width: 768px) {
      .services-grid {
        display: flex;
        flex-direction: column;
      }
    }

    .service-card {
      background: white;
      padding: 50px;
      border: 1px solid #e2e8f0;
      transition: 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-8px);
      border-color: #bb2b2c;
      box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    }

    .service-number {
      font-size: 18px;
      font-weight: 800;
      color: #bb2b2c;
      margin-bottom: 25px;
    }

    .service-card h4 {
      font-size: 30px;
      color: #12254b;
      margin-bottom: 20px;
    }

    .service-card p {
      color: #64748b;
      margin-bottom: 30px;
    }

    .service-card ul {
      list-style: none;
    }

    .service-card li {
      margin-bottom: 16px;
      padding-left: 24px;
      position: relative;
      color: #334155;
    }

    .service-card li::before {
      content: "";
      width: 8px;
      height: 8px;
      background: #bb2b2c;
      position: absolute;
      left: 0;
      top: 10px;
    }

    /* APPROACH */

    .approach {
      background: #12254b;
      color: white;
    }

    .approach h3 {
      color: white;
    }

    .approach-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 70px;
    }

    .approach-card {
      border: 1px solid rgba(255,255,255,0.1);
      padding: 45px 35px;
      background: rgba(255,255,255,0.03);
    }

    .approach-step {
      font-size: 56px;
      font-weight: 800;
      color: #bb2b2c;
      margin-bottom: 24px;
    }

    .approach-card h4 {
      font-size: 28px;
      margin-bottom: 18px;
    }

    .approach-card p {
      color: #cbd5e1;
    }

    /* APPROACH SECTION */

.approach {
  position: relative;
  overflow: hidden;
}

/* ACCOUNTANT CUTOUT */

.approach-accountant {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 38%;
  z-index: 1;
  pointer-events: none;
}

/* CONTENT ABOVE IMAGE */

.approach .container {
  position: relative;
  z-index: 2;
}

/* GIVE GRID ROOM */

.approach-grid {
  width: 72%;
}

/* MOBILE */

@media (max-width: 992px) {

  .approach-accountant {
    opacity: 0.12;
    width: 340px;
  }

  .approach-grid {
    width: 100%;
  }
}

@media (max-width: 768px) {

  .approach-accountant {
    display: none;
  }
}

    /* INDUSTRIES */

    .industries-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 70px;
    }
    @media (max-width: 992px) {
      .industries-grid {
        display: flex;
        flex-direction: column;
      }
    }

    .industry-card {
      padding: 40px;
      border: 1px solid #e2e8f0;
      transition: 0.3s ease;
    }

    .industry-card:hover {
      background: #12254b;
      color: white;
      transform: translateY(-6px);
    }

    .industry-card span {
      color: #bb2b2c;
      font-size: 14px;
      font-weight: 700;
      display: block;
      margin-bottom: 16px;
    }

    .industry-card h4 {
      font-size: 26px;
      line-height: 1.3;
    }

    /* ADVANTAGES */

    .advantages {
      background: #f8fafc;
    }

    .advantage-wrapper {
      background: white;
      border: 1px solid #e2e8f0;
      padding: 70px;
    }

    .advantage-list {
      margin-top: 50px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }

    .advantage-item {
      display: flex;
      gap: 20px;
      align-items: start;
    }

    .check {
      min-width: 46px;
      height: 46px;
      background: #12254b;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
    }

    .advantage-item p {
      color: #334155;
      font-size: 18px;
    }

    /* CTA */

    .cta {
      background: #bb2b2c;
      text-align: center;
      color: white;
    }

    .cta h3 {
      color: white;
      max-width: 850px;
      margin: 0 auto 30px;
    }

    .cta p {
      color: rgba(255,255,255,0.85);
      font-size: 18px;
      max-width: 700px;
      margin: auto;
    }

    .cta .btn {
      margin-top: 40px;
      background: white;
      color: #12254b;
    }

    /* CONTACT */

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
    }

    .contact-info {
      margin-top: 50px;
    }

    .contact-item {
      margin-bottom: 40px;
    }

    .contact-item small {
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #64748b;
      font-size: 12px;
      font-weight: 700;
    }

    .contact-item p,
    .contact-item a {
      font-size: 28px;
      font-weight: 700;
      color: #12254b;
      margin-top: 10px;
      display: block;
    }

    .contact-form {
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      padding: 50px;
    }

    .form-group {
      margin-bottom: 24px;
    }

    label {
      display: block;
      margin-bottom: 12px;
      font-size: 14px;
      font-weight: 700;
      color: #334155;
    }

    input,
    textarea,
    select {
      width: 100%;
      padding: 18px;
      border: 1px solid #cbd5e1;
      background: white;
      font-family: inherit;
      font-size: 15px;
    }

    input:focus,
    textarea:focus,
    select:focus {
      outline: none;
      border-color: #12254b;
    }

    textarea {
      min-height: 160px;
      resize: vertical;
    }

    .submit-btn {
      width: 100%;
      background: #12254b;
      color: white;
      padding: 18px;
      border: none;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .submit-btn:hover {
      background: #0d1c3c;
    }

    /* FOOTER */

    footer {
      background: #12254b;
      color: white;
      padding: 50px 0;
    }

    .footer-grid {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 30px;
      flex-wrap: wrap;
    }

    footer h4 {
      font-size: 30px;
      margin-bottom: 14px;
    }

    footer p {
      color: #cbd5e1;
      max-width: 700px;
    }

    .copyright {
      color: #94a3b8;
      font-size: 14px;
    }

    /* RESPONSIVE */

    @media (max-width: 1100px) {
      .hero-grid,
      .about-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .services-grid,
      .approach-grid,
      .industries-grid,
      .advantage-list {
        grid-template-columns: 1fr 1fr;
      }

      .hero h2 {
        font-size: 58px;
      }
    }

    @media (max-width: 768px) {

nav {
  display: none;
}

.mobile-toggle {
  display: block;
}

.navbar .btn {
  display: none;
}
}

.industry-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: 0.3s ease;
}

.industry-icon i {
  font-size: 28px;
  color: #12254b;
  transition: 0.3s ease;
}

.industry-card:hover .industry-icon {
  border-color: rgba(255,255,255,0.2);
}

.industry-card:hover .industry-icon i {
  color: white;
}
 
  