@font-face {
    font-family: 'Revampted';
    src: url('Revamped.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body, html {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #000000;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

/* Let your main content grow as needed */
main {
    flex: 1;
  }

strong:hover {
    cursor: pointer;
    animation: glitch-text 1s infinite;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.branding {
    display: flex;
    align-items: baseline;
}

.main-nav {
    margin-left: auto;
    text-align: right;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;  /* aligns items to the right */
    gap: 20px;
    margin-right: 50px;
    margin-top: 50px;
    padding: 0;
}

.main-nav li {
    list-style-type: none;
    list-style: none;
}

.button-container {
    display: inline-block;
    padding: 2px; /* this will act as your border thickness */
    border-radius: 8px; /* outer rounded corners */
    background: repeating-linear-gradient(90deg,
    rgba(48,112,205,1) 0%, 
    rgba(145,28,187,1) 25%, 
    rgba(48,112,205,1) 50%, 
    rgba(145,28,187,1) 100%);
    background-size: 200% 200%;
    animation: gradientShift 5s linear infinite;
  }
  
  .cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000; /* solid black background */
    border: none;
    border-radius: 6px; /* slightly smaller so the gradient border shows */
    text-decoration: none;
  }
  
  .gradient-text {
    background: repeating-linear-gradient(90deg,
    rgba(48,112,205,1) 0%, 
    rgba(145,28,187,1) 25%, 
    rgba(48,112,205,1) 50%, 
    rgba(145,28,187,1) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    animation: gradientShift 5s ease infinite;
  }

  .cta-button:hover {
    animation: pulseGlow 1.5s infinite;
  }


/* Pulsing glow keyframes */
@keyframes pulseGlow {
    0% {
      box-shadow: 0 0 5px rgba(48,112,205,0.6), 0 0 10px rgba(145,28,187,0.6);
    }
    50% {
      box-shadow: 0 0 20px rgba(48,112,205,1), 0 0 30px rgba(145,28,187,1);
    }
    100% {
      box-shadow: 0 0 5px rgba(48,112,205,0.6), 0 0 10px rgba(145,28,187,0.6);
    }
  }

.corporate-logo {
    max-width: 100px; /* Adjust width as needed */
    margin-right: 0px;
}

.company-name {
    font-family: 'Revampted', sans-serif;
    font-size: 1.2rem;
    color: #3070CD;
    margin: 0px;
    line-height: 1;
    /*transform: translateY(-26px) translateX(-89.7px);*/
    transform: translateY(-26px) translateX(-89.7px);
    /* Apply a multicolor gradient background */
    background: linear-gradient(90deg, 
        rgba(48,112,205,0.5) 0%, 
        rgba(48,112,205,1) 25%, 
        rgba(145,28,187,1) 50%,
        rgba(145,28,187,0.5) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-line {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3070CD, #911CBB, transparent);
    margin: 0;
    box-shadow: 0 0 10px #3070CD;
}


.page-header {
    width: 95%;
    max-width: 900px;
    background: linear-gradient(45deg, #222, #3070CD, #911CBB, #222);
    background-size: 400% 400%;
    color: #ffffff;
    padding: 15px 10px;
    text-align: center;
    margin: auto;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(48,112,205,0.5);
    animation: textShadowVary 10s linear infinite, gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes textShadowVary {
    0%  { text-shadow: 2px 2px 4px rgba(145,28,187,0.6); }
    25%   { text-shadow: 2px 2px 4px rgba(48,112,205,0.6); }
    50%  { text-shadow: 2px 2px 4px rgba(255,255,255,0.6); }
    75% { text-shadow: 2px 2px 4px rgba(48,112,205,0.6); }
    100%  { text-shadow: 2px 2px 4px rgba(145,28,187,0.6); }
}

.page-header h2 {
    margin: 0;
    font-size: 2rem;
    color: #3070CD;
}

.page-header p {
    margin: 5px 0 0;
    font-size: 1.1rem;
    /* Start with your base color and animate */
    color: #ffffff;
    animation: textShadowVary 10s linear infinite;
}


main {
    width: 80%;
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background-color: #111;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

hr.cyber-line {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3070CD, #911CBB, transparent);
    margin: 40px 0;
    box-shadow: 0 0 10px #3070CD;
}


.team-callout {
    background-color: #222;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 30px;
}

.team-callout h2 {
    color: #3070CD;
    margin-bottom: 10px;
}

.about-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
}

.about-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

/* Adjust the headshot container to match the headshot dimensions */
.headshot-container {
    position: relative;
    display: inline-block; /* Only takes up the size of its content */
    width: 150px;
    height: 150px;
    margin: 30px auto 0; /* 60px top margin, auto side margins to center */
    z-index: 0; /* Creates a stacking context */
}

/* Your headshot image remains unchanged */
.headshot {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    object-fit: cover;
    aspect-ratio: 1 / 1;
    position: relative;
    z-index: 1;
}

.headshot:hover {
    cursor: pointer;
    animation: glitch-image 1s infinite;
}

/* Add overlay on the container */
.headshot-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;     /* Matches container width */
    height: 150px;    /* Matches container height */
    /*margin-top: 60px;  /* Matches headshot margin */ 
    border-radius: 50%;  /* Ensures a circular overlay */
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.headshot-container:hover::after {
    opacity: 0.5;
    animation: glitch-overlay 1s infinite;
}

.about-text {
    max-width: 70%;
    text-align: left;
}

@media (max-width: 700px) {
    .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .headshot-container {
        order: -1; /* Moves it above */
        margin-bottom: 15px;
        margin-top: 0px;
    }
    .about-text {
        order: 0;
        text-align: left;
        margin-top: 0px;
    }
    .about-text h2 {
        text-align: center;
    }
}

.offerings-section {
    margin-bottom: 30px;
}

.offerings-section h2 {
    /*border-bottom: 2px solid #3070CD;*/
    padding-bottom: 10px;
    margin-bottom: 15px;
}

ul {
    list-style: disc;    /* uses built‑in disc bullets */
    margin: 0;
    padding-left: 1.5em; /* Adjust spacing as needed */
}

ul li {
    margin-bottom: 10px;
}


ul li::marker {
    color: #3070CD;      /* Set bullet color */
    font-weight: bold;   /* Optional: make the bullet bold */
}

.cta {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: #222;
    border-radius: 8px;
}

/*
.cta-button {
    display: inline-block;
    padding: 12px 20px;
    margin-top: 10px;
    font-size: 16px;
    color: #000;
    background-color: #3070CD;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    box-shadow:0 0 15px #911CBB;
}
*/

footer {
    text-align: center;
    padding: 10px;
    width: 100%;
    background-color: #000;
    color: grey;
    position: relative;
    margin-top: auto;
}

.centered {
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 100%;*/
    min-height: 300px;
    position: relative; /* Added for relative positioning */
}

.static-image {
    position: absolute;
    z-index: 1;
}

.moving-image {
    position: absolute;
    z-index: 2;
    transition: transform 1s ease;
}

.logo-text {
	position: absolute;
	z-index: 3;
}

.logo-link {
    display: block; /* Ensure it behaves as a block-level element */
    text-align: center; /* Preserve the centered layout */
    text-decoration: none;
    /* Reset any default padding/margin if needed */
}

.about-text p:hover {
    cursor: pointer;
}

.about-text strong:hover {
    cursor: pointer;
    animation: glitch-text 1s infinite;
}

.consultation-modal {
    /*display: none; /* Hidden by default */
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: visibility 0s, opacity 0.3s ease;

    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8); /* Dark semi-transparent overlay */
}

.modal-content {
    background-color: #111; /* Dark background for modal */
    color: #fff; /* White text */
    margin: 10% auto;
    padding: 20px;
    width: 80%;
    max-width: 300px;
    border-radius: 8px;
    position: relative;
    border: 2px solid #3070CD; /* Use your primary theme color */
    box-shadow: 0 0 15px #911CBB; /* Purple glow for extra flair */
}

.close-button {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}

.close-button:hover {
    color: #911CBB;
}

/* Optional: Style the form elements to match the theme */
#consultationForm label {
    display: block;
    margin-bottom: 5px;
    color: #fff;
}

#consultationForm {
    padding: 0 10px; /* Adds horizontal padding inside the form */
  }
  
  #consultationForm input,
  #consultationForm textarea {
    width: 100%;
    box-sizing: border-box; /* Ensures padding and borders are included in the width */
    margin-bottom: 10px;
    padding: 8px;
    background-color: #222;
    border: 1px solid #3070CD;
    color: #fff;
    border-radius: 4px;
  }

#consultationForm button {
    padding: 10px 20px;
    background-color: #3070CD;
    border: none;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#consultationForm button:hover {
    background-color: #911CBB;
}

/* Glitch effect keyframes */
@keyframes glitch-text {
    0%  { text-shadow: 1px 1px 0 #911CBB, -1px -1px 0 #3070CD; }
    20% { text-shadow: -1px 2px 0 #911CBB, 1px -2px 0 #3070CD; }
    40% { text-shadow: 2px -1px 0 #911CBB, -2px 1px 0 #3070CD; }
    60% { text-shadow: -2px -1px 0 #911CBB, 2px 1px 0 #3070CD; }
    80% { text-shadow: 1px -2px 0 #911CBB, -1px 2px 0 #3070CD; }
    100%    { text-shadow: -1px 1px 0 #911CBB, 1px -1px 0 #3070CD; }
}

@keyframes glitch-image {
    0%  { filter: drop-shadow(1px 1px 1px #911CBB); }
    15% { filter: drop-shadow(0.8px 0.8px 1px #911CBB); }
    30% { filter: drop-shadow(1px -0.5px 1px #3070CD); }
    45% { filter: drop-shadow(-0.5px 1px 1px #911CBB); }
    60% { filter: drop-shadow(0.5px -1px 1px #3070CD); }
    75% { filter: drop-shadow(-1px 0.5px 1px #911CBB); }
    90% { filter: drop-shadow(0.5px 1px 1px #3070CD); }
    100% { filter: drop-shadow(1px 1px 1px #911CBB); }
}

@keyframes glitch-overlay {
    0% { background-color: rgba(145, 28, 187, 0.5); }
    25% { background-color: rgba(48, 112, 205, 0.5); }
    50% { background-color: rgba(145, 28, 187, 0.5); }
    75% { background-color: rgba(48, 112, 205, 0.5); }
    100% { background-color: rgba(145, 28, 187, 0.5); }
}

@keyframes glitch-text-nav {
    0%  { text-shadow: 0.25px 0.25px 0 #911CBB, -0.25px -0.25px 0 #3070CD; }
    20% { text-shadow: -0.25px 0.5px 0 #911CBB, 0.25px -0.5px 0 #3070CD; }
    40% { text-shadow: 0.5px -0.25px 0 #911CBB, -0.5px 0.25px 0 #3070CD; }
    60% { text-shadow: -0.5px -0.25px 0 #911CBB, 0.5px 0.25px 0 #3070CD; }
    80% { text-shadow: 0.25px -0.5px 0 #911CBB, -0.25px 0.5px 0 #3070CD; }
    100%    { text-shadow: -0.25px 0.25px 0 #911CBB, 0.25px -0.25px 0 #3070CD; }
}
  
@keyframes glitch-border {
    0%   { transform: translate(0,0); border-color: #3070CD; box-shadow: 0 0 5px #911CBB; }
    33%  { transform: translate(0.5px,-0.5px); border-color: #ffffff; box-shadow: 0 0 6px #ffffff; }
    66%  { transform: translate(-0.5px,0.5px); border-color: #000000; box-shadow: 0 0 7px #000000; }
    100% { transform: translate(0,0); border-color: #3070CD; box-shadow: 0 0 5px #911CBB; }
}
