/* General Styles */
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      font-size: 16px;
      transition: 0.3s;
    }

    body {
      font-family: Arial, sans-serif;
      background: #f7f7f7;
      color: #333;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    h1 {
      font-size: 3.5rem;
      line-height: 3.5rem;
      font-family: 'Copse-Regular'; /* Use your custom font */
      color: #D21435;
    }

    h2 {
      font-size: 2.5rem;
      line-height: 2rem;
      font-family: 'Copse-Regular'; /* Use your custom font */      
      margin-bottom: 20px;
    }

    h3 {
      font-size: 1.25rem;
      line-height: 1.5rem;
      font-family: 'Copse-Regular'; /* Use your custom font */      
      margin-bottom: 5px;
    }

    img {
      width: 100%;
      display: block;
    }

   .container {
     max-width: 1280px;
     margin: 0 auto;
     width: 100%;
    }

    @font-face {
     font-family: 'Quantico-Bold';
     src: url('./fonts/Quantico-Bold.ttf') format('truetype'); /* .ttf file */
     font-weight: normal;
     font-style: normal;
    }


    /* =========================
       BACKGROUND PATTERN
    ========================== */

    .page-wrapper {
    background-image: url('images/wcsbg.png'); /* Replace with your background pattern image */
    background-size: auto; /* Default size for repeating patterns */
    background-position: top left; /* Start the pattern at the top-left corner */
    background-repeat: repeat; /* Repeat the pattern */
    }

    /* =========================
       TOPBAR
    ========================== */

    .topbar {
      width: 100%;
      padding: 20px 40px;
      position: relative;
      z-index: 1000;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 30px; /* tighter spacing */
    }

    .topbar a,
    .topbar button {
      background: none;
      border: none;
      cursor: pointer;
      font-size: 16px;
      font-weight: bold;
      color: #555555;
      font-family: inherit;
      transition: 0.3s;
    }

    .topbar a:hover,
    .topbar button:hover {
      color: #d8ec4b; 
    }

    /* =========================
       DROPDOWN
    ========================== */

    .dropdown {
      position: relative;
      display: flex;
      align-items: center;
     }

    /* ===== BUTTON ===== */
    .dropbtn {
     background: none;
     border: none;
     cursor: pointer;
     font-size: 1rem;
     padding: 8px 12px;
     border-radius: 999px;
     transition: 0.2s ease;
    }

    /* hover + active look for menu word */
    .dropbtn:hover,
    .dropdown.open .dropbtn {
      background: #0053B3;
      color: white;
    }

    /* ===== MENU BOX ===== */
    .dropdown-content {
      position: absolute;
      top: 45px;
      right: 0;
      min-width: 200px;
      background: #FCF9E9;
      border-radius: 14px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: 0.2s ease;
      pointer-events: none;
    }

    /* show menu when open */
    .dropdown.open .dropdown-content {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
      width: 335px;
    }

    /* ===== ITEMS ===== */
    .dropdown-content a {
      display: block;
      padding: 12px 15px;
      transition: 0.2s ease;
      color: #555555;
    }

    /* hover effect */
    .dropdown-content a:hover {
      background: #0053B3;
      color: white;
    }

    /* =========================
    HERO
    ========================== */

    .sub-hero {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 40px;
      align-items: center;
      padding: 40px;
    }

    .hero-content p {
      font-size: 1rem;
      background-color: rgba(255, 255, 255, 0.5);
      padding: 5px;
    }

/* =========================
   FEATURE BANNER
========================== */

    .feature-banner {
      height: 600px;
      background-image: url('images/wcs01.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
    }


/* =========================
   CONTENT ROW
========================== */

    .content-row {
      display: grid;
      grid-template-columns: 1.25fr 1fr;
      gap: 20px;
      padding: 0px 40px;
      align-items: center;
      color: #ffffff;
    }

    .content-row2 {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 20px;
      padding: 0px 40px 20px 40px;
      align-items: center;
      background-image: url('images/wcsbg2.png'); /* Replace with your background pattern image */
      background-size: auto; /* Default size for repeating patterns */
      background-position: top left; /* Start the pattern at the top-left corner */
      background-repeat: repeat; /* Repeat the pattern */
    }

    .content-row3 {
      display: grid;
      grid-template-columns: 0.5fr 6fr 0.5fr 6fr;
      gap: 20px;
      padding: 20px 0px;
      align-items: top;
    }

    .content-row4 {
      display: grid;
      grid-template-columns: 0.04fr 1fr;
      gap: 20px;
      padding: 20px 0px;
      align-items: top;
    }

    .content-row5 {
      display: grid;
      grid-template-columns: 0.5fr 3fr 0.5fr 6fr;
      gap: 20px;
      padding: 20px 0px;
      align-items: top;
    }


/* =========================
   IMAGES
========================== */

    .illustration-box,
    .wide-image {
      border-radius: 20px;
      height: 240px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

/* =========================
   QUOTE
========================== */

    .quote-section {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 40px;
      padding: 20px 40px;
    }

    .quote-box {
      background: #5574ff;
      color: white;
      border-radius: 30px;
      padding: 40px;
      text-align: right;
    }

    .quote-box p {
      font-size: 1.25rem;
      margin-bottom: 20px;
    }

/* =========================
   CENTER NOTE
========================== */

    .center-note {
      padding: 40px;
      text-align: center;
    }

    .center-note2 {
      padding: 40px;
      text-align: center;
      background-image: url('images/wcsbg2.png'); /* Replace with your background pattern image */
      background-size: auto; /* Default size for repeating patterns */
      background-position: top left; /* Start the pattern at the top-left corner */
      background-repeat: repeat; /* Repeat the pattern */
    }

    .center-note3 {
      padding: 10px 40px;
      text-align: center;
      background-image: url('images/wcsbg2.png'); /* Replace with your background pattern image */
      background-size: auto; /* Default size for repeating patterns */
      background-position: top left; /* Start the pattern at the top-left corner */
      background-repeat: repeat; /* Repeat the pattern */
    }

    /* =========================
       FOOTER
    ========================== */

    footer {
      padding: 30px;
      font-size: 0.75rem;
      color: #666;
      background: #F2F2F2;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }


    /* =========================
       Tablet STYLE
    ========================== */

    @media (max-width: 960px) {

    .sub-hero {
      display: grid;
      grid-template-columns: 1fr 2fr;
      height: auto;
      justify-items: center;
      align-items: center;
    }


    /* =========================
       MOBILE STYLE
    ========================== */

    @media (max-width: 768px) {

      .topbar {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        padding: 20px;
      }

      .dropdown-content {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
      }

    .sub-hero {
      display: grid;
      grid-template-columns: 1fr;
      height: auto;
      justify-items: center;
      align-items: center;
    }

    .sub-hero img{
      width: 65%;
      height: auto;
      display: block;
      margin: 0 auto;
    }

    .hero-content {
      font-size: 1rem;
      font-weight: bold;
      text-align: center;
    }

    .feature-banner {
    height: 280px;
    }

    .content-row,
    .content-row2,
    .quote-section,
    .content-row.white:last-of-type {
    grid-template-columns: 1fr;
    }

    .quote-box {
    padding: 25px;
    }

    .quote-box p {
    font-size: 1.1rem;
    }

    .footer-grid {
    grid-template-columns: 1fr;
    }

    }
