/* @import "tailwindcss"; */

:root {
  /* Brand Colors */
  --color-primary: #e42514;
  --color-primary-light: #ff5a36;
  --color-primary-hover: #b71c10;
  --color-accent: #ff5a36;


  /* Secondary Colors */
  --color-blue: #001e4b;
  --color-blue-light: #335c99;
  --color-blue-dark: #000a1a;

  /* Neutral Colors */
  --color-white: #FFFFFF;
  --color-light-gray: #F5F5F5;
  --color-medium-gray: #d8d8d8;
  --color-dark-gray: #424242;
  --color-black: #000000;

  /* Backgrounds */
  --bg-hero-gradient: linear-gradient(135deg, rgba(228, 37, 20, 0.8) 0%, rgba(255, 90, 54, 0.6) 100%);
  --bg-section-red: #b71c10;
  --bg-section-red-gradient: linear-gradient(135deg, #e42514 0%, #ff5a36 100%);
  --bg-pool-turquoise: #26C6DA;
  --bg-mountain-blue: #1565C0;

  /* Typography */
  --font-brand: 'Kanit', sans-serif;
  --font-size-h1: 4rem;
  --font-size-h2: 2.5rem;
  --font-size-h3: 1.5rem;
  --font-size-body: 1rem;
  --font-size-label: 0.875rem;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 600;
  --line-height-body: 1.6;
  --letter-spacing-h1: 0.02em;
  --letter-spacing-h3: 0.1em;
  --letter-spacing-label: 0.05em;

  /* Layout */
  --container-max-width: 1200px;
  --container-padding: 0 20px;
  --section-padding: 80px 40px;
  --footer-padding: 40px;
  --card-radius: 8px;
  --button-radius: 4px;
  --transition: all 0.3s ease;
  --box-shadow-card: 0 4px 16px rgba(0, 0, 0, 0.1);
  --box-shadow-card-hover: 0 8px 32px rgba(0, 0, 0, 0.15);

  /* My Layout */
  --spacing: clamp(4rem, 10vw, 12rem);
  --min-spacing: calc(var(--spacing) / 2);
  --box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  /*   --box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, var(--color-light-gray) 0px 1px 2px 0px; */
  --border-radius: 0.5rem;


  /* Breakpoints */
  --breakpoint-mobile: 768px;
  --breakpoint-tablet: 1024px;
  --breakpoint-desktop: 1200px;
}

::selection {
  background-color: var(--color-primary);
  color: var(--color-white)
}

.no-select {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

body {
  font-family: var(--font-brand);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  /* color: var(--color-white); */
  /* background: var(--color-white); */
  margin: 0;
  padding: 0;
}

h1 {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-light);
  letter-spacing: var(--letter-spacing-h1);
  /* text-transform: lowercase; */
  margin: 0 0 1rem 0;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-regular);
  text-transform: none;
  margin: 0 0 1rem 0;
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-h3);
  margin: 0 0 1rem 0;
  /*  color: var(--color-blue); */
}

label {
  font-size: var(--font-size-label);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-label);
  /*  color: var(--color-blue); */
}

.container {
  max-width: var(--container-max-width);
  padding: var(--container-padding);
  margin: 0 auto;
}


.lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
  max-width: 100vw;
  overflow: hidden;
}

.line {
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  /* Lines start centered */
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.line::after {
  content: "";
  display: block;
  position: absolute;
  height: 15vh;
  width: 100%;
  top: -50%;
  left: 0;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0%,
      var(--color-light-gray) 75%,
      var(--color-light-gray) 100%);
  animation: drop 7s 0s infinite alternate;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}


/* Positioning for 4 lines */
.line:nth-child(1) {
  margin-left: -40%;
  /* Shift far left */
}

.line:nth-child(1)::after {
  animation-delay: 0s;
  /* Start immediately */
}

.line:nth-child(2) {
  margin-left: 0%;
  /* Shift moderately left */
}

.line:nth-child(2)::after {
  animation-delay: 1s;
  /* Slight delay */
}

.line:nth-child(3) {
  margin-left: 40%;
  /* Shift moderately right */
}

.line:nth-child(3)::after {
  animation-delay: 2s;
  /* Further delay */
}

.line:nth-child(4) {
  margin-left: 30%;
  /* Shift far right */
}

.line:nth-child(4)::after {
  animation-delay: 3s;
  /* Last delay */
}


@keyframes drop {
  0% {
    top: -50%;
  }

  100% {
    top: 110%;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.section-container {
    background-color: #000a1a;
    /* background-image: url("../src/assets/pattern1.svg"); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-blend-mode: overlay;
    min-height: 100vh;
    width: 100%;
    position: relative;

/*   background-color: #000A1A;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg fill-opacity='0.2'%3E%3Cpath fill='%23000e24' d='M486 705.8c-109.3-21.8-223.4-32.2-335.3-19.4C99.5 692.1 49 703 0 719.8V800h843.8c-115.9-33.2-230.8-68.1-347.6-92.2C492.8 707.1 489.4 706.5 486 705.8z'/%3E%3Cpath fill='%2300122e' d='M1600 0H0v719.8c49-16.8 99.5-27.8 150.7-33.5c111.9-12.7 226-2.4 335.3 19.4c3.4 0.7 6.8 1.4 10.2 2c116.8 24 231.7 59 347.6 92.2H1600V0z'/%3E%3Cpath fill='%23001637' d='M478.4 581c3.2 0.8 6.4 1.7 9.5 2.5c196.2 52.5 388.7 133.5 593.5 176.6c174.2 36.6 349.5 29.2 518.6-10.2V0H0v574.9c52.3-17.6 106.5-27.7 161.1-30.9C268.4 537.4 375.7 554.2 478.4 581z'/%3E%3Cpath fill='%23001a41' d='M0 0v429.4c55.6-18.4 113.5-27.3 171.4-27.7c102.8-0.8 203.2 22.7 299.3 54.5c3 1 5.9 2 8.9 3c183.6 62 365.7 146.1 562.4 192.1c186.7 43.7 376.3 34.4 557.9-12.6V0H0z'/%3E%3Cpath fill='%23001E4B' d='M181.8 259.4c98.2 6 191.9 35.2 281.3 72.1c2.8 1.1 5.5 2.3 8.3 3.4c171 71.6 342.7 158.5 531.3 207.7c198.8 51.8 403.4 40.8 597.3-14.8V0H0v283.2C59 263.6 120.6 255.7 181.8 259.4z'/%3E%3Cpath fill='%23052960' d='M1600 0H0v136.3c62.3-20.9 127.7-27.5 192.2-19.2c93.6 12.1 180.5 47.7 263.3 89.6c2.6 1.3 5.1 2.6 7.7 3.9c158.4 81.1 319.7 170.9 500.3 223.2c210.5 61 430.8 49 636.6-16.6V0z'/%3E%3Cpath fill='%230d3572' d='M454.9 86.3C600.7 177 751.6 269.3 924.1 325c208.6 67.4 431.3 60.8 637.9-5.3c12.8-4.1 25.4-8.4 38.1-12.9V0H288.1c56 21.3 108.7 50.6 159.7 82C450.2 83.4 452.5 84.9 454.9 86.3z'/%3E%3Cpath fill='%23174282' d='M1600 0H498c118.1 85.8 243.5 164.5 386.8 216.2c191.8 69.2 400 74.7 595 21.1c40.8-11.2 81.1-25.2 120.3-41.7V0z'/%3E%3Cpath fill='%23244f8f' d='M1397.5 154.8c47.2-10.6 93.6-25.3 138.6-43.8c21.7-8.9 43-18.8 63.9-29.5V0H643.4c62.9 41.7 129.7 78.2 202.1 107.4C1020.4 178.1 1214.2 196.1 1397.5 154.8z'/%3E%3Cpath fill='%23335C99' d='M1315.3 72.4c75.3-12.6 148.9-37.1 216.8-72.4h-723C966.8 71 1144.7 101 1315.3 72.4z'/%3E%3C/g%3E%3C/svg%3E");
  background-attachment: fixed;
  background-size: cover; */

  /*   background-color: #000A1A;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 100 60'%3E%3Cg %3E%3Crect fill='%23000A1A' width='11' height='11'/%3E%3Crect fill='%23000b1b' x='10' width='11' height='11'/%3E%3Crect fill='%23010b1c' y='10' width='11' height='11'/%3E%3Crect fill='%23010c1c' x='20' width='11' height='11'/%3E%3Crect fill='%23010c1d' x='10' y='10' width='11' height='11'/%3E%3Crect fill='%23010d1e' y='20' width='11' height='11'/%3E%3Crect fill='%23020d1f' x='30' width='11' height='11'/%3E%3Crect fill='%23020e1f' x='20' y='10' width='11' height='11'/%3E%3Crect fill='%23020e20' x='10' y='20' width='11' height='11'/%3E%3Crect fill='%23020f21' y='30' width='11' height='11'/%3E%3Crect fill='%23020f22' x='40' width='11' height='11'/%3E%3Crect fill='%23020f23' x='30' y='10' width='11' height='11'/%3E%3Crect fill='%23021023' x='20' y='20' width='11' height='11'/%3E%3Crect fill='%23031024' x='10' y='30' width='11' height='11'/%3E%3Crect fill='%23031125' y='40' width='11' height='11'/%3E%3Crect fill='%23031126' x='50' width='11' height='11'/%3E%3Crect fill='%23031127' x='40' y='10' width='11' height='11'/%3E%3Crect fill='%23031228' x='30' y='20' width='11' height='11'/%3E%3Crect fill='%23031228' x='20' y='30' width='11' height='11'/%3E%3Crect fill='%23031329' x='10' y='40' width='11' height='11'/%3E%3Crect fill='%2303132a' y='50' width='11' height='11'/%3E%3Crect fill='%2303132b' x='60' width='11' height='11'/%3E%3Crect fill='%2302142c' x='50' y='10' width='11' height='11'/%3E%3Crect fill='%2302142d' x='40' y='20' width='11' height='11'/%3E%3Crect fill='%2302142d' x='30' y='30' width='11' height='11'/%3E%3Crect fill='%2302152e' x='20' y='40' width='11' height='11'/%3E%3Crect fill='%2302152f' x='10' y='50' width='11' height='11'/%3E%3Crect fill='%23021530' x='70' width='11' height='11'/%3E%3Crect fill='%23011631' x='60' y='10' width='11' height='11'/%3E%3Crect fill='%23011632' x='50' y='20' width='11' height='11'/%3E%3Crect fill='%23011632' x='40' y='30' width='11' height='11'/%3E%3Crect fill='%23011733' x='30' y='40' width='11' height='11'/%3E%3Crect fill='%23011734' x='20' y='50' width='11' height='11'/%3E%3Crect fill='%23011735' x='80' width='11' height='11'/%3E%3Crect fill='%23001836' x='70' y='10' width='11' height='11'/%3E%3Crect fill='%23001837' x='60' y='20' width='11' height='11'/%3E%3Crect fill='%23001837' x='50' y='30' width='11' height='11'/%3E%3Crect fill='%23001838' x='40' y='40' width='11' height='11'/%3E%3Crect fill='%23001939' x='30' y='50' width='11' height='11'/%3E%3Crect fill='%2300193a' x='90' width='11' height='11'/%3E%3Crect fill='%2300193b' x='80' y='10' width='11' height='11'/%3E%3Crect fill='%2300193c' x='70' y='20' width='11' height='11'/%3E%3Crect fill='%23001a3d' x='60' y='30' width='11' height='11'/%3E%3Crect fill='%23001a3d' x='50' y='40' width='11' height='11'/%3E%3Crect fill='%23001a3e' x='40' y='50' width='11' height='11'/%3E%3Crect fill='%23001b3f' x='90' y='10' width='11' height='11'/%3E%3Crect fill='%23001b40' x='80' y='20' width='11' height='11'/%3E%3Crect fill='%23001b41' x='70' y='30' width='11' height='11'/%3E%3Crect fill='%23001b42' x='60' y='40' width='11' height='11'/%3E%3Crect fill='%23001c43' x='50' y='50' width='11' height='11'/%3E%3Crect fill='%23001c43' x='90' y='20' width='11' height='11'/%3E%3Crect fill='%23001c44' x='80' y='30' width='11' height='11'/%3E%3Crect fill='%23001c45' x='70' y='40' width='11' height='11'/%3E%3Crect fill='%23001d46' x='60' y='50' width='11' height='11'/%3E%3Crect fill='%23001d47' x='90' y='30' width='11' height='11'/%3E%3Crect fill='%23001d48' x='80' y='40' width='11' height='11'/%3E%3Crect fill='%23001d48' x='70' y='50' width='11' height='11'/%3E%3Crect fill='%23001e49' x='90' y='40' width='11' height='11'/%3E%3Crect fill='%23001e4a' x='80' y='50' width='11' height='11'/%3E%3Crect fill='%23001E4B' x='90' y='50' width='11' height='11'/%3E%3C/g%3E%3C/svg%3E");
  background-attachment: fixed;
  background-size: cover; */

  /*    background-color: var(--color-primary);
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2000 1500'%3E%3Cdefs%3E%3CradialGradient id='a' gradientUnits='objectBoundingBox'%3E%3Cstop offset='0' stop-color='%23FF5A36'/%3E%3Cstop offset='1' stop-color='%23E42514'/%3E%3C/radialGradient%3E%3ClinearGradient id='b' gradientUnits='userSpaceOnUse' x1='0' y1='750' x2='1550' y2='750'%3E%3Cstop offset='0' stop-color='%23f24025'/%3E%3Cstop offset='1' stop-color='%23E42514'/%3E%3C/linearGradient%3E%3Cpath id='s' fill='url(%23b)' d='M1549.2 51.6c-5.4 99.1-20.2 197.6-44.2 293.6c-24.1 96-57.4 189.4-99.3 278.6c-41.9 89.2-92.4 174.1-150.3 253.3c-58 79.2-123.4 152.6-195.1 219c-71.7 66.4-149.6 125.8-232.2 177.2c-82.7 51.4-170.1 94.7-260.7 129.1c-90.6 34.4-184.4 60-279.5 76.3C192.6 1495 96.1 1502 0 1500c96.1-2.1 191.8-13.3 285.4-33.6c93.6-20.2 185-49.5 272.5-87.2c87.6-37.7 171.3-83.8 249.6-137.3c78.4-53.5 151.5-114.5 217.9-181.7c66.5-67.2 126.4-140.7 178.6-218.9c52.3-78.3 96.9-161.4 133-247.9c36.1-86.5 63.8-176.2 82.6-267.6c18.8-91.4 28.6-184.4 29.6-277.4c0.3-27.6 23.2-48.7 50.8-48.4s49.5 21.8 49.2 49.5c0 0.7 0 1.3-0.1 2L1549.2 51.6z'/%3E%3Cg id='g'%3E%3Cuse href='%23s' transform='scale(0.12) rotate(60)'/%3E%3Cuse href='%23s' transform='scale(0.2) rotate(10)'/%3E%3Cuse href='%23s' transform='scale(0.25) rotate(40)'/%3E%3Cuse href='%23s' transform='scale(0.3) rotate(-20)'/%3E%3Cuse href='%23s' transform='scale(0.4) rotate(-30)'/%3E%3Cuse href='%23s' transform='scale(0.5) rotate(20)'/%3E%3Cuse href='%23s' transform='scale(0.6) rotate(60)'/%3E%3Cuse href='%23s' transform='scale(0.7) rotate(10)'/%3E%3Cuse href='%23s' transform='scale(0.835) rotate(-40)'/%3E%3Cuse href='%23s' transform='scale(0.9) rotate(40)'/%3E%3Cuse href='%23s' transform='scale(1.05) rotate(25)'/%3E%3Cuse href='%23s' transform='scale(1.2) rotate(8)'/%3E%3Cuse href='%23s' transform='scale(1.333) rotate(-60)'/%3E%3Cuse href='%23s' transform='scale(1.45) rotate(-30)'/%3E%3Cuse href='%23s' transform='scale(1.6) rotate(10)'/%3E%3C/g%3E%3C/defs%3E%3Cg %3E%3Cg transform=''%3E%3Ccircle fill='url(%23a)' r='3000'/%3E%3Cg opacity='0.5'%3E%3Ccircle fill='url(%23a)' r='2000'/%3E%3Ccircle fill='url(%23a)' r='1800'/%3E%3Ccircle fill='url(%23a)' r='1700'/%3E%3Ccircle fill='url(%23a)' r='1651'/%3E%3Ccircle fill='url(%23a)' r='1450'/%3E%3Ccircle fill='url(%23a)' r='1250'/%3E%3Ccircle fill='url(%23a)' r='1175'/%3E%3Ccircle fill='url(%23a)' r='900'/%3E%3Ccircle fill='url(%23a)' r='750'/%3E%3Ccircle fill='url(%23a)' r='500'/%3E%3Ccircle fill='url(%23a)' r='380'/%3E%3Ccircle fill='url(%23a)' r='250'/%3E%3C/g%3E%3Cg transform='rotate(-57.6 0 0)'%3E%3Cuse href='%23g' transform='rotate(10)'/%3E%3Cuse href='%23g' transform='rotate(120)'/%3E%3Cuse href='%23g' transform='rotate(240)'/%3E%3C/g%3E%3Ccircle fill-opacity='0.02' fill='url(%23a)' r='3000'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        background-attachment: fixed;
        background-size: cover; 

    background-color: #000a1a;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1377' height='1377' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%23001E4B' stroke-width='1.2' stroke-opacity='0.1'%3E%3Crect x='-40' y='40' width='75' height='75'/%3E%3Crect x='-35' y='45' width='65' height='65'/%3E%3Crect x='-30' y='50' width='55' height='55'/%3E%3Crect x='-25' y='55' width='45' height='45'/%3E%3Crect x='-20' y='60' width='35' height='35'/%3E%3Crect x='-15' y='65' width='25' height='25'/%3E%3Crect x='-10' y='70' width='15' height='15'/%3E%3Crect x='-5' y='75' width='5' height='5'/%3E%3Crect width='35' height='35'/%3E%3Crect x='5' y='5' width='25' height='25'/%3E%3Crect x='10' y='10' width='15' height='15'/%3E%3Crect x='15' y='15' width='5' height='5'/%3E%3Crect x='40' width='75' height='75'/%3E%3Crect x='45' y='5' width='65' height='65'/%3E%3Crect x='50' y='10' width='55' height='55'/%3E%3Crect x='55' y='15' width='45' height='45'/%3E%3Crect x='60' y='20' width='35' height='35'/%3E%3Crect x='65' y='25' width='25' height='25'/%3E%3Crect x='70' y='30' width='15' height='15'/%3E%3Crect x='75' y='35' width='5' height='5'/%3E%3Crect x='40' y='80' width='35' height='35'/%3E%3Crect x='45' y='85' width='25' height='25'/%3E%3Crect x='50' y='90' width='15' height='15'/%3E%3Crect x='55' y='95' width='5' height='5'/%3E%3Crect x='120' y='-40' width='75' height='75'/%3E%3Crect x='125' y='-35' width='65' height='65'/%3E%3Crect x='130' y='-30' width='55' height='55'/%3E%3Crect x='135' y='-25' width='45' height='45'/%3E%3Crect x='140' y='-20' width='35' height='35'/%3E%3Crect x='145' y='-15' width='25' height='25'/%3E%3Crect x='150' y='-10' width='15' height='15'/%3E%3Crect x='155' y='-5' width='5' height='5'/%3E%3Crect x='120' y='40' width='35' height='35'/%3E%3Crect x='125' y='45' width='25' height='25'/%3E%3Crect x='130' y='50' width='15' height='15'/%3E%3Crect x='135' y='55' width='5' height='5'/%3E%3Crect y='120' width='75' height='75'/%3E%3Crect x='5' y='125' width='65' height='65'/%3E%3Crect x='10' y='130' width='55' height='55'/%3E%3Crect x='15' y='135' width='45' height='45'/%3E%3Crect x='20' y='140' width='35' height='35'/%3E%3Crect x='25' y='145' width='25' height='25'/%3E%3Crect x='30' y='150' width='15' height='15'/%3E%3Crect x='35' y='155' width='5' height='5'/%3E%3Crect x='200' y='120' width='75' height='75'/%3E%3Crect x='40' y='200' width='75' height='75'/%3E%3Crect x='80' y='80' width='75' height='75'/%3E%3Crect x='85' y='85' width='65' height='65'/%3E%3Crect x='90' y='90' width='55' height='55'/%3E%3Crect x='95' y='95' width='45' height='45'/%3E%3Crect x='100' y='100' width='35' height='35'/%3E%3Crect x='105' y='105' width='25' height='25'/%3E%3Crect x='110' y='110' width='15' height='15'/%3E%3Crect x='115' y='115' width='5' height='5'/%3E%3Crect x='80' y='160' width='35' height='35'/%3E%3Crect x='85' y='165' width='25' height='25'/%3E%3Crect x='90' y='170' width='15' height='15'/%3E%3Crect x='95' y='175' width='5' height='5'/%3E%3Crect x='120' y='160' width='75' height='75'/%3E%3Crect x='125' y='165' width='65' height='65'/%3E%3Crect x='130' y='170' width='55' height='55'/%3E%3Crect x='135' y='175' width='45' height='45'/%3E%3Crect x='140' y='180' width='35' height='35'/%3E%3Crect x='145' y='185' width='25' height='25'/%3E%3Crect x='150' y='190' width='15' height='15'/%3E%3Crect x='155' y='195' width='5' height='5'/%3E%3Crect x='160' y='40' width='75' height='75'/%3E%3Crect x='165' y='45' width='65' height='65'/%3E%3Crect x='170' y='50' width='55' height='55'/%3E%3Crect x='175' y='55' width='45' height='45'/%3E%3Crect x='180' y='60' width='35' height='35'/%3E%3Crect x='185' y='65' width='25' height='25'/%3E%3Crect x='190' y='70' width='15' height='15'/%3E%3Crect x='195' y='75' width='5' height='5'/%3E%3Crect x='160' y='120' width='35' height='35'/%3E%3Crect x='165' y='125' width='25' height='25'/%3E%3Crect x='170' y='130' width='15' height='15'/%3E%3Crect x='175' y='135' width='5' height='5'/%3E%3Crect x='200' y='200' width='35' height='35'/%3E%3Crect x='200' width='35' height='35'/%3E%3Crect y='200' width='35' height='35'/%3E%3C/g%3E%3C/svg%3E");
  */

  /*
  background-color: #000A1A;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='508' height='508' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23001E4B' stroke-width='1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%23335C99'%3E%3Ccircle cx='769' cy='229' r='5'/%3E%3Ccircle cx='539' cy='269' r='5'/%3E%3Ccircle cx='603' cy='493' r='5'/%3E%3Ccircle cx='731' cy='737' r='5'/%3E%3Ccircle cx='520' cy='660' r='5'/%3E%3Ccircle cx='309' cy='538' r='5'/%3E%3Ccircle cx='295' cy='764' r='5'/%3E%3Ccircle cx='40' cy='599' r='5'/%3E%3Ccircle cx='102' cy='382' r='5'/%3E%3Ccircle cx='127' cy='80' r='5'/%3E%3Ccircle cx='370' cy='105' r='5'/%3E%3Ccircle cx='578' cy='42' r='5'/%3E%3Ccircle cx='237' cy='261' r='5'/%3E%3Ccircle cx='390' cy='382' r='5'/%3E%3C/g%3E%3C/svg%3E");
  stroke-dashoffset: 50;
  stroke-dasharray: 50; 
  animation: svgAnimation 3s alternate infinite;
*/

  /* background-color: var(--color-blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='508' height='508' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23023E7D' stroke-width='1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%230466C8'%3E%3Ccircle cx='769' cy='229' r='5'/%3E%3Ccircle cx='539' cy='269' r='5'/%3E%3Ccircle cx='603' cy='493' r='5'/%3E%3Ccircle cx='731' cy='737' r='5'/%3E%3Ccircle cx='520' cy='660' r='5'/%3E%3Ccircle cx='309' cy='538' r='5'/%3E%3Ccircle cx='295' cy='764' r='5'/%3E%3Ccircle cx='40' cy='599' r='5'/%3E%3Ccircle cx='102' cy='382' r='5'/%3E%3Ccircle cx='127' cy='80' r='5'/%3E%3Ccircle cx='370' cy='105' r='5'/%3E%3Ccircle cx='578' cy='42' r='5'/%3E%3Ccircle cx='237' cy='261' r='5'/%3E%3Ccircle cx='390' cy='382' r='5'/%3E%3C/g%3E%3C/svg%3E");
 */

}

/* Optional: Add this if you want to control the overlay opacity */
.section-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("/pattern1.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    opacity: 0.1;
    pointer-events: none;
    
}

@keyframes svgAnimation {
  0% {
    stroke-dashoffset: 50;
  }

  100% {
    stroke-dashoffset: 0;
  }
}