
    :root {
      --dark-blue: rgb(10, 37, 64);
      --dodger-blue: rgb(30, 144, 255);
      --orange: rgb(255, 127, 34);
      --light: #f4f7fb;
      --white: #ffffff;
      --text: #333;
      --max-width: 1300px;
      --transition: 0.3s ease;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--light);
      color: var(--text);
      line-height: 1.7;
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: auto;
      padding: 0 20px;
    }

    section {
      scroll-margin-top: 100px;
    }

    /* =====================================
       HEADER
    ====================================== */

    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: 
		rgba(10, 37, 64, 0.96);
      backdrop-filter: blur(10px);
      transition:
        background 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    }

    header.shrink {
      background:
        rgba(255,255,255,0.97);
      box-shadow:
        0 10px 24px rgba(0,0,0,0.12);
      border-bottom:
        1px solid rgba(0,0,0,0.06);
    }

    .navbar {
      height: 92px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: height 0.35s ease;
    }

    header.shrink .navbar {
      height: 68px;
    }

    /* LOGOS */

    .logo {
      display: flex;
      align-items: center;
    }

    .logo-image {
      width: auto;
      transition:
        opacity 0.3s ease,
        height 0.3s ease;
    }

    .logo-default {
      height: 56px;
    }

    .logo-scroll {
      display: none;
      height: 42px;
    }

    header.shrink .logo-default {
      display: none;
    }

    header.shrink .logo-scroll {
      display: block;
    }

    /* NAVIGATION */
    .nav-links {
      display: flex;
      align-items: center;
      list-style: none;
      gap: 2.2rem;
    }

    .nav-links li {
      position: relative;
    }

    .nav-links a {
      position: relative;
      color: white;
      font-weight: 500;
      padding-bottom: 10px;
      transition: color 0.3s ease;
    }

    header.shrink .nav-links a {
      color: var(--dark-blue);
    }

    .nav-links a:hover {
      color: var(--orange);
    }

    .nav-links a.active::after,
    .nav-links a:hover::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 3px;
      border-radius: 20px;
      background: var(--orange);
    }

    /* BURGER */

    .burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }

    .burger span {
      width: 28px;
      height: 3px;
      border-radius: 4px;
      background: white;
      transition: 0.3s ease;
    }

    header.shrink .burger span {
      background: var(--dark-blue);
    }

    /* =====================================
       HERO
    ====================================== */

    /* =====================================
   HERO SLIDER (FIXED SLIDE VERSION)
===================================== */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
}

/* viewport mask */
.hero-slider {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.7s ease-in-out;
}

/* each slide MUST be full width */
.slide {
  min-width: 100%;
  height: 100%;
  position: relative;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* overlay stays per slide */
.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(10, 37, 64, 0.9),
      rgba(10, 37, 64, 0.72)
    );
}

/* content layer */
.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

    .slide.active {

      opacity: 1;

      visibility: visible;

      z-index: 2;

      transform: scale(1);
    }

    .slide-overlay {

      position: absolute;

      inset: 0;

      background:
        linear-gradient(
          135deg,
          rgba(10, 37, 64, 0.9),
          rgba(10, 37, 64, 0.72)
        );
    }

    .slide-content {

      position: relative;

      z-index: 3;

      height: 100%;

      display: flex;

      align-items: center;
    }

    .hero-text {

      max-width: 760px;

      color: white;
    }

    .hero-badge {

      display: inline-flex;

      align-items: center;

      gap: 10px;

      background:
        rgba(255,255,255,0.08);

      border:
        1px solid rgba(255,255,255,0.12);

      padding: 10px 18px;

      border-radius: 50px;

      margin-bottom: 28px;

      font-size: 0.92rem;

      font-weight: 500;
    }

    .hero-badge span {
      color: var(--orange);
    }

    .hero-text h1 {

      font-size: 56px;

      line-height: 1.08;

      margin-bottom: 28px;

      font-weight: 700;
    }

    .hero-text p {

      font-size: 1.08rem;

      color:
        rgba(255,255,255,0.86);

      margin-bottom: 22px;
    }

    .hero-secondary {

      color:
        rgba(255,255,255,0.72);

      margin-bottom: 40px;
    }

    .hero-buttons {

      display: flex;

      gap: 18px;

      flex-wrap: wrap;
    }

    /* BUTTONS */

    .btn {

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 12px 22px;

  border-radius: 50px;

  font-size: 1rem;

  background: var(--dodger-blue);

  color: white;

  border: 1px solid rgba(255,255,255,0.15);

  transition: all 0.25s ease;

  position: relative;

  overflow: hidden;

  cursor: pointer;
}

/* subtle badge-like texture */
.btn::before {

  content: "";

  position: absolute;

  inset: 0;

  background: rgba(255,255,255,0.08);

  opacity: 0;

  transition: opacity 0.25s ease;
}

/* HOVER EFFECT */
.btn:hover {

  background: rgba(30,144,255,0.85); /* faded dodger blue */

  transform: translateY(-2px);
}

.btn:hover::before {
  opacity: 1;
}

/* PRIMARY VARIANT (accent orange CTA override) */
.btn-primary {

  background: var(--orange);

  border: none;
}

.btn-primary:hover {

  background: rgba(255,127,34,0.85);
}

/* SECONDARY VARIANT (outline badge style) */
.btn-secondary {

  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.25);

  color: white;
}

header.shrink .btn-secondary {
  color: var(--dark-blue);
  border-color: rgba(10,37,64,0.2);
  background: rgba(10,37,64,0.05);
}

.btn-secondary:hover {

  background: rgba(30,144,255,0.15);
}

    /* HERO CONTROLS */

    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 58px;
      height: 58px;
      border: none;
      border-radius: 50%;
      background:
        rgba(255,255,255,0.12);
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
      z-index: 10;
      transition: var(--transition);
    }

    .slider-btn:hover {
      background: var(--orange);
    }

    .prev {
      left: 28px;
    }

    .next {
      right: 28px;
    }

    .slider-dots {
      position: absolute;
      left: 50%;
      bottom: 34px;
      transform: translateX(-50%);
      display: flex;
      gap: 12px;
      z-index: 10;
    }

    .dot {
      width: 12px;
      height: 12px;
      border: none;
      border-radius: 50%;
      background:
        rgba(255,255,255,0.35);
      cursor: pointer;
      transition: var(--transition);
    }

    .dot.active {
      background: var(--orange);
      transform: scale(1.2);
    }

    /* =====================================
       INTRO SECTION
    ====================================== */

    .intro {

      padding: 110px 0;

      background: white;
    }

    .intro-grid {

      display: grid;

      grid-template-columns: 1.2fr 1fr;

      gap: 70px;

      align-items: center;
    }

    .intro-content h2 {

      font-size: 3rem;

      line-height: 1.15;

      color: var(--dark-blue);

      margin-bottom: 28px;
    }

    .intro-content p {

      margin-bottom: 22px;

      color: #555;
    }

    .intro-points {

      display: grid;

      gap: 24px;
    }

    .intro-card {

      background: var(--light);

      border-left:
        5px solid var(--orange);

      border-radius: 18px;

      padding: 28px;

      transition: var(--transition);
    }

    .intro-card:hover {

      transform: translateX(5px);

      border-left-color:
        var(--dodger-blue);
    }

    .intro-card h3 {

      color: var(--dark-blue);

      margin-bottom: 12px;
    }

    /* =====================================
       EXPERTISE
    ====================================== */

    .expertise {

      padding: 110px 0;

      background: var(--dark-blue);

      color: white;
    }

    .section-header {

      text-align: center;

      margin-bottom: 65px;
    }

    .section-header h2 {

      font-size: 3rem;

      margin-bottom: 16px;
    }

    .section-header p {

      max-width: 760px;

      margin: auto;

      color:
        rgba(255,255,255,0.75);
    }

    .expertise-grid {

      display: grid;

      grid-template-columns:
        repeat(4, 1fr);

      gap: 26px;
    }

    .expertise-item {

      background:
        rgba(255,255,255,0.05);

      border:
        1px solid rgba(255,255,255,0.08);

      border-radius: 18px;

      padding: 35px 25px;

      text-align: center;

      transition: var(--transition);
    }

    .expertise-item:hover {

      transform: translateY(-6px);

      border-color: var(--orange);

      background:
        rgba(255,255,255,0.08);
    }

    .expertise-logo {

      width: 90px;
      height: 90px;

      margin: 0 auto 24px;

      border-radius: 20px;

      background: white;

      display: flex;

      align-items: center;
      justify-content: center;

      padding: 16px;
    }

    .expertise-logo img {

      width: 100%;
      height: 100%;

      object-fit: contain;
    }

    .expertise-item h3 {
      margin-bottom: 10px;
    }

    .expertise-item p {

      font-size: 0.95rem;

      color:
        rgba(255,255,255,0.72);
    }

    /* =====================================
       WORKFLOW
    ====================================== */

    .workflow {

      padding: 110px 0;

      background: var(--light);
    }

    .workflow .section-header h2 {
      color: var(--dark-blue);
    }

    .workflow .section-header p {
      color: #666;
    }

    .workflow-grid {

      display: grid;

      grid-template-columns:
        repeat(3, 1fr);

      gap: 30px;
    }

    .workflow-card {

      background: white;

      border-radius: 18px;

      padding: 36px 32px;

      position: relative;

      overflow: hidden;

      box-shadow:
        0 10px 24px rgba(0,0,0,0.08);

      transition: var(--transition);
    }

    .workflow-card:hover {
      transform: translateY(-6px);
    }

    .workflow-card::before {

      content: "";

      position: absolute;

      left: 0;
      top: 0;

      width: 6px;
      height: 100%;

      background:
        linear-gradient(
          to bottom,
          var(--orange),
          var(--dodger-blue)
        );
    }

    .step-number {

      font-size: 3rem;

      font-weight: 700;

      color:
        rgba(30,144,255,0.14);

      line-height: 1;

      margin-bottom: 18px;
    }

    .workflow-card h3 {

      color: var(--dark-blue);

      margin-bottom: 14px;
    }

    .workflow-card p {
      color: #555;
    }


	/*
	CONTACT
	*/

.contact {

  padding: 110px 0;

  background: var(--dodger-blue);

  color: white;
}

.contact .section-header p {
  color: rgba(255,255,255,0.78);
}

/* keep layout centered */
.contact .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact .section-header {
  margin-bottom: 50px;
}

/* FORM BASE */
.contact-form {

  width: 100%;

  max-width: 720px;

  display: grid;

  gap: 18px;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {

  width: 100%;

  padding: 14px 16px;

  border: none;

  border-radius: 10px;

  font-family: inherit;

  background: rgba(255,255,255,0.92);

  color: var(--dark-blue);

  font-size: 1rem;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

/* FOCUS STATE */
.contact-form input:focus,
.contact-form textarea:focus {

  outline: 2px solid var(--orange);
}

/* BUTTON */
.contact .btn-primary {
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 26px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* subtle fade overlay */
.contact .btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.8;
  
}

.contact .btn-primary:hover {
  opacity: 0.7;
  transform: translateY(-2px);
transition: opacity 0.25s ease;
}

.contact .btn-primary:hover::before {
  opacity: 1;
}

/* =====================================
   TABLET
===================================== */

@media (max-width: 768px) {

	.slide-content {
		margin-top: 20px;
	}

  .contact {
    padding: 80px 0;
  }

  .contact .section-header h2 {
    font-size: 2.2rem;
    text-align: center;
  }

  .contact .section-header p {
    text-align: center;
    font-size: 0.95rem;
  }

  .contact-form {

    width: 100%;

    padding: 0 10px;
  }

	.slider-dots {
      bottom: 34px;
	}

.hero-badge {
	display:none;
	/*display: inline-flex;*/
}

}

/* =====================================
   MOBILE
===================================== */

@media (max-width: 480px) {

  .contact {
    padding: 70px 0;
  }

  .contact-form input,
  .contact-form textarea {

    font-size: 0.95rem;

    padding: 12px 14px;
  }

  .contact .btn-primary {

    width: 100%;

    padding: 14px;
  }

}

    /* =====================================
       FOOTER
    ====================================== */

    footer {

      background: var(--dark-blue);

      color: white;

      padding: 80px 20px 30px;

      border-top:
        4px solid var(--orange);
    }

    .footer-content {

      max-width: var(--max-width);

      margin: auto;

      display: flex;

      justify-content: space-between;
      align-items: center;

      gap: 40px;

      flex-wrap: wrap;

      padding-bottom: 40px;
    }

    .footer-logo-image {

      height: 56px;

      width: auto;

      margin-bottom: 18px;
    }

    .footer-tagline {

      max-width: 500px;

      color:
        rgba(255,255,255,0.75);
    }

    .footer-contact h4 {

      color: var(--dodger-blue);

      margin-bottom: 12px;
    }

    .footer-contact a:hover {
      color: var(--orange);
    }

    .footer-bottom {

      border-top:
        1px solid rgba(255,255,255,0.08);

      padding-top: 24px;

      text-align: center;

      color:
        rgba(255,255,255,0.6);
    }

    /* =====================================
       RESPONSIVE
    ====================================== */

    @media (max-width: 1100px) {

      .intro-grid,
      .expertise-grid,
      .workflow-grid {

        grid-template-columns:
          repeat(2, 1fr);
      }

      .hero-text h1 {
        font-size: 3.5rem;
      }
    }

    @media (max-width: 768px) {

      .burger {
        display: flex;
      }

      .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--dark-blue);
        flex-direction: column;
        align-items: center;
        gap: 1.8rem;
        padding: 28px 0;
        display: none;
      }

      .nav-links.active {
        display: flex;
      }

      header.shrink .nav-links {
        background: white;
      }

      header.shrink .nav-links a {
        color: var(--dark-blue);
      }

      .hero {
        min-height: 760px;
      }

      .hero-text h1 {
        font-size: 2.7rem;
      }

      .hero-buttons {
        flex-direction: column;
      }

      .intro-grid,
      .expertise-grid,
      .workflow-grid {

        grid-template-columns: 1fr;
      }

      .section-header h2,
      .intro-content h2 {
        font-size: 2.2rem;
      }

       .footer-content {

    flex-direction: column;

    text-align: center;

    align-items: center;
  }

  .footer-brand {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;
  }

  .footer-logo-image {

    margin: 0 auto 18px auto;

    display: block;
  }

      .slider-btn {
        display: none;
      }

      .logo-default {
        height: 44px;
      }

      .logo-scroll {
        height: 34px;
      }
    }



/* Toast container */
    #toast-container {
      position: fixed;
      top: 20px;
      right: 20px;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    /* Toast base */
    .toast {
      position: relative;
      min-width: 260px;
      padding: 12px 15px;
      border-radius: 8px;
      color: #fff;
      font-size: 14px;
      overflow: hidden;

      transform: translateX(120%);
      opacity: 0;
      transition: all 0.4s ease;
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    /* Show animation */
    .toast.show {
      transform: translateX(0);
      opacity: 1;
    }

    /* Types */
    .toast.success { background: #22c55e; }
    .toast.error { background: #ef4444; }

    /* Progress bar */
    .toast::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      width: 100%;
      background: rgba(255,255,255,0.5);
      animation: progress 3s linear forwards;
    }

    @keyframes progress {
      from { width: 100%; }
      to { width: 0%; }
    }


#cookie-notice {
	display: none;
    position: fixed;
    bottom: 20px;
    left:0px;
    right: 0px;
    background: var(--dodger-blue);
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    z-index: 100;
    width: 60vw;
    margin: auto;
	align-items: center;
    justify-content: space-evenly;
    gap: 20px;
	animation: slideUp 0.5s ease forwards;
  }
  
  @media (max-width: 768px) {
	  #cookie-notice {
		flex-direction: column;
	  }
  }
  
  #cookie-notice p {
		text-align: left;
		font-size: 14px;
  }
  
  #cookie-notice div {
	  display: flex;
	  gap: 10px;
  }

  #cookie-notice button {
    margin-left: 10px;
    padding: 8px 14px;
    border: none;
    background: #fff;
    color: #222;
    border-radius: 4px;
    cursor: pointer;
  }

 @keyframes slideUp {
    from {
      transform: translateY(120%);
      opacity: 0;
    }

    to {
      transform: translateY(0);
      opacity: 1;
    }
  }