
:root{
  --text: #e9eef5;
  --hero-blue: #1da8ff;
  --hero-bg: rgba(10, 14, 20, 0.75);
}

.HomeHeader {
    border:0px solid rgb(221, 31, 31);
    width: 1200px;
    min-height: 550px;
    height: auto;
    background-image: url("Images/wavebackground.gif"); /* <-- use forward slashes */
    background-size:100%;
    background-repeat: no-repeat;
    /*background-position: 0px -150px;*/
    box-shadow: 0 10px 14px -6px rgba(206, 174, 16, 0.6);
    
    color: #fff;              /* optional: ensure text is readable */
    display: flex;            /* optional: center content */
    text-align: center;
    position:relative;
    z-index: 11;
  }

#HomeBody
{
    margin: 0 auto;
    width: 1200px;
    min-height: 450px;
    height: auto;
    border:0px solid red;
    background-color: #000000;
    color:#ffffff;
    position: relative;
    box-shadow: 10px 8px 10px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-wrap: wrap;
    
}
#CenterMe
{
    top:0px;
    width:925px;
    height: auto;
    border:0px solid red;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    clear:both;
    position:relative;
       
}

  .ContentBody1
{
    border:0px solid rgb(68, 0, 255);
    background-color: #000000;
    color:#ffffff;
    width:1200px;
    margin:auto;
    position: relative;
    z-index: 10;
    clear: both; 
        
}
.ContentBody12
{
    border:0px solid red;
    background-color: #000000;
    /*box-shadow: 0px 0px 10px rgba(206, 174, 16,1);*/
    color:#ffffff;
    width: 300px;
    position: relative;
    
float: none !important;
  width: auto !important;


}
.ContentBody122
{
    border:0px solid red;
    background-color: #000000;
    box-shadow: -12px 0 16px -12px rgba(206, 174, 16, 0.6);
    color:#ffffff;
    width: 300px;
    margin:5px;
clear:both;

float: none !important;
  width: auto !important;

}

.HomeImage
{
    border:0px solid red;
    width:150px;
    margin: auto;
    text-align: center;
    position:relative;
}

#Swishimage {
  top:-50px;
  margin:auto;
  height: 350px;
  position: relative;
  background: rgba(10, 14, 20, 0.75);
  color: var(--text);
  border-radius: 14px;
  padding: 28px;

    border: 2px solid rgba(0, 150, 255, 0.85);

    box-shadow:
        0 0 20px rgba(0, 150, 255, 0.35), /* soft glow */
        0 8px 25px rgba(0, 0, 0, 0.6);    /* depth */

  font-size: 25px;
}
#Swishimage img
{
border-radius: 14px;


box-shadow:
      0 12px 30px rgba(0,0,0,0.55),
      0 0 30px rgba(29,168,255,0.35);
  /* orange glow */

}






/* === Services section (grid) === */
.services {
  /* Layout */
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3 equal columns */
  gap: 24px;

  /* Sizing/containment */
  max-width: 1200px;          /* matches your existing page width */
  margin: 40px auto;          /* center it */
  padding: 0 16px;            /* a bit of side breathing room */

  /* Visual harmony with dark theme */
  color: #e6edf7;
}

.service {
  background: #0b1220;        /* same family as your footer */
  border: 1.5px solid rgb(206, 174, 16);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 10px 18px -10px rgba(0,0,0,0.6),
              0 0 0 1px rgba(206, 174, 16, 0.18);

}


.service:hover {
  box-shadow: 0 16px 24px -14px rgba(0,0,0,0.7),
              0 0 0 2px rgba(206, 174, 16, 0.32);
  transform: translateY(-1px);
  transition: box-shadow 180ms ease, transform 180ms ease;
}


.service h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  letter-spacing: 0.2px;
}

.service p {
  margin: 0;
  line-height: 1.55;
  opacity: 0.92;
}

/* Responsive: stack on narrow screens */
@media (max-width: 900px) {
  .services { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .services { grid-template-columns: 1fr; }
}

.ContentBody1,
.ContentBody12,
.ContentBody122 {
  float: none !important;
  width: auto !important;
}



/* gpt generated for server text */
.hero-card{
  position: relative;
  background: var(--hero-bg);
  color: var(--text);
  border-radius: 14px;
  padding: 26px 26px 18px;
  border: 2px solid rgba(0, 150, 255, 0.85);
  box-shadow:
    0 0 20px rgba(0, 150, 255, 0.35),
    0 8px 25px rgba(0, 0, 0, 0.6);
  max-width: 680px;  /* adjust as needed */
  margin: 0 auto;
}

#hero-rotator{
  min-height: 3.2em;                /* keeps height stable while typing */
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.2px;
  text-align: center;
  margin-bottom: 16px;
}

.cursor{
  display: inline-block;
  width: 10px;
  height: 1em;
  vertical-align: baseline;
  border-right: 2px solid var(--hero-blue);
  animation: blink 1s steps(1, end) infinite;
  margin-left: 4px;
}

.hero-gif{
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow:
    0 12px 30px rgba(0,0,0,0.55),
    0 0 30px rgba(29,168,255,0.35);
}

@keyframes blink{
  50%{ border-right-color: transparent; }
}

/* Optional: slight glow behind the text area */
.hero-card::after{
  content:"";
  position:absolute; inset:10px 10px auto 10px; height:60%;
  border-radius:12px;
  background:
    radial-gradient(60% 60% at 75% 65%, rgba(29,168,255,0.10), transparent 60%),
    radial-gradient(60% 60% at 25% 35%, rgba(255,154,60,0.08), transparent 60%);
  pointer-events:none;
  z-index:0;
}
#hero-rotator, .hero-gif{ position: relative; z-index: 1; }

