 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

    img{
      max-width:100%;
    }
    body {
      font-family: 'Poppins', sans-serif;
      overflow-x: hidden;
      background: #fff;
      color: #222;
    }

    :root {
      --blue: #275CAB;
      --red: #ED1C24;
      --light: #f5f7fc;
    }

    /* =========================
       HEADER
    ========================= */

    header {
      width: 100%;
      padding: 18px 8%;
      background: #fff;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 999;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    }

    /* .logo {
      font-size: 34px;
      font-weight: 800;
      color: var(--blue);
    } */

    /* .logo span {
      color: var(--red);
    } */

    .logo img {
    width: 50%;
}

    nav a {
      text-decoration: none;
      margin-left: 28px;
      color: #222;
      font-weight: 500;
      transition: 0.3s;
    }

    nav a:hover {
      color: var(--red);
    }

    /* =========================
       HERO SECTION
    ========================= */

    .hero {
      width: 100%;
      min-height: 100vh;
      background:
        linear-gradient(rgba(0, 0, 0, 0.6),
          rgba(0, 0, 0, 0.6)),
        url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=1400&auto=format&fit=crop');

      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      padding: 120px 8%;
      color: #fff;
    }

    .hero-content {
      max-width: 700px;
    }

    .hero h1 {
      font-size: 65px;
      line-height: 1.1;
      margin-bottom: 25px;
    }

    .hero h1 span {
      color: var(--red);
    }

    .hero p {
      font-size: 18px;
      line-height: 1.9;
      margin-bottom: 35px;
    }

    .btn {
      display: inline-block;
      padding: 15px 35px;
      background: var(--red);
      color: #fff;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      transition: 0.4s;
    }

    .btn:hover {
      background: var(--blue);
      transform: translateY(-4px);
    }

    /* =========================
       COMMON SECTION
    ========================= */

    section {
      padding: 40px 8%;
    }

    .section-title {
      text-align: center;
      /* margin-bottom: 60px; */
    }

    .section-title h2 {
      font-size: 46px;
      color: var(--blue);
      margin-bottom: 15px;
    }

    .section-title p {
      max-width: 700px;
      margin: auto;
      color: #666;
      line-height: 1.8;
    }

    /* =========================
       ABOUT SECTION
    ========================= */

    .split {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 50px;
      align-items: center;
      /* margin-bottom: 70px; */
    }

    .split img {
      width: 100%;
      border-radius: 25px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

    .content-box h3 {
      font-size: 40px;
      margin-bottom: 20px;
      color: var(--blue);
    }

    .content-box h3 span {
      color: var(--red);
    }

    .content-box p {
      color: #555;
      line-height: 2;
      margin-bottom: 18px;
    }

    /* =========================
       ACTIVATIONS
    ========================= */

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 15px;
      margin-top: 50px;
    }

    .activation-card {
      position: relative;
      height: 420px;
      overflow: hidden;
      border-radius: 25px;
      cursor: pointer;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

    .activation-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.5s;
    }

    .activation-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top,
          rgba(0, 0, 0, 0.95),
          rgba(0, 0, 0, 0.2));

      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 35px;
      color: #fff;
      transform: translateY(94%);
      transition: 0.5s;
    }

    .activation-overlay h4 {
      font-size: 30px;
      margin-bottom: 15px;
    }

    .activation-overlay p {
      line-height: 1.9;
      opacity: 0;
      transition: 0.4s;
    }

    .activation-card:hover .activation-overlay {
      transform: translateY(0);
    }

    .activation-card:hover .activation-overlay p {
      opacity: 1;
    }

    .activation-card:hover img {
      transform: scale(1.1);
    }

    /* =========================
       EVENTS
    ========================= */

    .event-wrap {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .event-box {
      background: var(--light);
      padding: 0px 35px;
      border-radius: 20px;
    }

    .event-box h3 {
      margin-bottom: 25px;
      color: var(--blue);
      font-size: 28px;
    }

    .event-box ul {
      list-style: none;
    }

    .event-box ul li {
      margin-bottom: 15px;
      color: #444;
      position: relative;
      padding-left: 22px;
    }

    .event-box ul li::before {
      content: '✔';
      position: absolute;
      left: 0;
      color: var(--red);
    }

    /* =========================
       CLIENT SECTION
    ========================= */

    .client-section {
      background: linear-gradient(135deg, var(--blue), #17376b);
      padding: 60px 0;
      text-align: center;
      color: #fff;
    }

    .client-section h2 {
      font-size: 68px;
      margin-bottom: 25px;
    }

    .client-section p {
      font-size: 18px;
    }

    .client-btn {
      display: inline-block;
      padding: 15px 40px;
      border-radius: 50px;
      background: var(--red);
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      margin-bottom: 40px;
      transition: 0.3s;
    }

    .client-btn:hover {
      background: #fff;
      color: var(--blue);
    }

    marquee {
      padding: 18px 0;
      background: #fff;
      color: var(--blue);
      font-weight: 700;
      font-size: 22px;
    }

    /* =========================
       GALLERY SLIDER
    ========================= */

    .gallery-slider {
      width: 100%;
      overflow: hidden;
      position: relative;
      margin-top: 50px;
    }

    .gallery-track {
      display: flex;
      width: calc(350px * 12);
      animation: scroll 35s linear infinite;
    }

    .gallery-track img {
      width: 480px;
      height: 290px;
      object-fit: cover;
      margin-right: 20px;
      border-radius: 20px;
      transition: 0.4s;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .gallery-track img:hover {
      transform: scale(1.05);
    }

    @keyframes scroll {

      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(calc(-350px * 6));
      }

    }

    /* =========================
       FOOTER
    ========================= */

    footer {
      background: #111;
      color: #fff;
      padding: 70px 8% 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }

    footer h3 {
      margin-bottom: 20px;
      color: var(--red);
      font-size: 26px;
    }

    footer p {
      color: #ccc;
      line-height: 1.9;
    }

    footer a {
      display: block;
      color: #ccc;
      text-decoration: none;
      margin-bottom: 12px;
      transition: 0.3s;
    }

    footer a:hover {
      color: #fff;
    }

    .copyright {
      text-align: center;
      padding-top: 25px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: #aaa;
    }

    section.padding-bottom {
    padding-bottom: 70px;
}

    /* =========================
       MOBILE
    ========================= */

    @media(max-width:768px) {

      header {
        flex-direction: column;
      }

      nav {
        margin-top: 15px;
      }

      nav a {
        margin: 0 10px;
      }

      .hero h1 {
        font-size: 42px;
      }

      .section-title h2 {
        font-size: 34px;
      }

      .content-box h3 {
        font-size: 32px;
      }

      .client-section h2 {
        font-size: 34px;
      }

      .activation-card {
        height: 360px;
      }

      .activation-overlay {
        transform: translateY(72%);
      }

      .gallery-track img {
        width: 280px;
        height: 220px;
      }

    }