@font-face {
    font-family: Montserrat;
    src: url(fonts/Montserrat-VariableFont_wght.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: Mont-Light;
    src: url(fonts/Montserrat-Light.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Montserrat, sans-serif;
    color: #abdde8;
    height: 100vh;
    overflow-x: hidden;
    background: linear-gradient(to bottom, #333, #000);
    justify-content: center;
    align-items: center;
}
a {
    text-decoration: none;
    color: inherit;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 1000;
}
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}
.logo-image {
    height: 35px;
    width: auto;
    margin-bottom: 10px;
}
.logo-text {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 22px;
    color: #fff;
    margin: 0;
}
.get-started-btn {
    background-color: #abdde8;
    padding: 10px 20px;
    font-size: 1.1em;
    color: #000;
    border-radius: 20px;
    transition: background-color 0.3s ease;
    margin-right: 50px;
}
.get-started-btn:hover {
    background-color: #ae480a;
    color: #fff;
}
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
}
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    height: 100%;
    color: #fff;
    padding-left: 100px;
}
.quote-overlay {
    position: relative;
}
.quote-box {
    padding: 20px;
    border-radius: 10px;
    max-width: 800px;
}
.quote-text {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    font-size: 32px;
    margin: 0;
    color: #343a40;
    background-color: #e1f4f8;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 1.5s, color 1.5s;
    text-transform: uppercase;
}
.btn-wrapper {
    margin-top: 10px;
    width: 100%;
    padding-left: 20px;
}
.btn {
    display: inline-block;
    padding: 20px 20px;
    background: #17141d;
    color: #fff;
    box-shadow: -1rem 0 3rem #000;
    text-decoration: none;
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    margin-top: 20px;
    margin-left: 15px;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    width: 250px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
}
.btn:hover {
    background: #000;
    font-weight: Bold;
    text-shadow: none;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    border-color: #000;
}
.quote-container {
    margin-bottom: 30px;
}
#quote {
    font-size: 2em;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    transition: opacity 1s ease-in-out;
}
.hero-btn {
    background-color: #ff5f5f;
    padding: 15px 30px;
    font-size: 1.2em;
    color: #fff;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}
.hero-btn:hover {
    background-color: #ff3a3a;
}

.client-quote {
    font-style: italic;
    color: #ccc;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 22px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.client-info {
    font-weight: 500;
    color: #999;
    font-size: 22px;
    margin-top: 10px;
    text-align: center;
}
.icon-grid-section {
    padding: 10px 0 50px 0;
    margin-top: 20px;
    background: linear-gradient(to bottom, #313131, #333);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}
.icon-grid-section .visually-hidden {
    display: none !important;
}
.icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    max-width: 90vw;
    margin: 0 auto;
}
.icon-box {
    display: flex;
    align-items: center;
    padding: 30px 30px 30px 30px;
    background: linear-gradient(to bottom, #333, #000);
    border-radius: 10px;
    cursor: pointer;
    font-size: 2em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    justify-content: flex-start;
}
.icon-box img {
    width: 60px;
    height: 60px;
    margin-top: 15px;
    margin-right: 15px;
    margin-left: 40px;
    filter: brightness(0) saturate(100%) invert(75%) sepia(41%) saturate(190%) hue-rotate(143deg) brightness(103%) contrast(94%);
}
.icon-box span {
    font-size: 0.7em;
    color: #fff;
    text-align: left;
    flex-grow: 1;
    white-space: normal;
    word-wrap: break-word;
}
.large-text-box {
    margin-top: 20px;
    padding: 30px;
    background: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 90vw;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.5em;
    color: #fff;
    text-align: center;
    font-weight: 100;
}

#long-text {
    margin: 0;
}
#timeline {
    padding: 50px 0;
    background: linear-gradient(to bottom, #000, #333);
    text-align: center;
    z-index: 1;
}
h2 {
    font-size: 3em;
    margin-bottom: 10px;
    margin-top: 20px;
    color: #abdde8;
    font-weight: 300;
    text-align: center;
}
h3 {
    font-family: Mont-Light;
    font-size: 2em;
    margin-bottom: 1px;
    color: #fff;
    text-align: center;
}
h4 {
    font-size: 1em;
    margin-bottom: 1px;
    color: #fff;
    font-weight: 200;
}
h5 {
    font-size: 1.3em;
    margin-bottom: 1px;
    color: #fff;
    font-weight: 100;
}
.timeline-container {
    position: relative;
    max-width: 1700px;
    margin: 0 auto;
    padding-top: 5px;
}
.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
    opacity: 0;
    transition: all 0.8s ease-in-out;
}
.timeline-item.left {
    left: 0;
    text-align: right;
}
.timeline-item.right {
    left: 50%;
    text-align: left;
}
.timeline-container::before {
    content: "";
    position: absolute;
    width: 6px;
    background-color: #198fb3;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 50px;
}
.icon-circle {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #333;
}
.left .icon-circle {
    right: -80px;
}
.right .icon-circle {
    left: -80px;
}
.timeline-content {
    padding: 20px;
    background: #444;
    color: #fff;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
    font-size: 1.5em;
    margin-bottom: 1px;
}
.color-bar {
    position: absolute;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #791518, #df4c03);
}
.left .right-edge {
    right: 0;
}
.right .left-edge {
    left: 0;
}
.timeline-item.show {
    opacity: 1;
    transform: translateY(0);
}
.timeline-item {
    transform: translateY(100px);
}
@media screen and (max-width: 768px) {
    .timeline-item {
        width: 100%;
        left: 0;
    }
    .timeline-item.left .icon-circle,
    .timeline-item.right .icon-circle {
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .timeline-container::before {
        left: 50%;
    }
}
.reach-out-section {
    padding: 50px 0;
    background: linear-gradient(to bottom, #e0f7fa, #fff);
    text-align: center;
}
form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}
.form-row {
    display: flex;
    justify-content: space-between;
}
.form-group {
    margin-bottom: 10px;
}
.half-width {
    width: 48%;
}
.full-width {
    width: 100%;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fafafa;
    color: #333;
    transition: border-color 0.3s ease-in-out;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
    font-style: italic;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
    outline: 0;
}
textarea {
    resize: none;
}
button[type="submit"] {
    background-color: #000;
    color: #fff;
    padding: 12px 225px;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    font-weight: 500;
    margin-top: 10px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
button[type="submit"]:hover {
    background-color: #0056b3;
}
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}
.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
#closePopup {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
}


#mathVerification {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #000000;
  }
  
#mathQuestion {
font-size: 1.2em;
font-weight: bold;
color: #000000;
}


#mathAnswer {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  outline: none;
  font: inherit;
  width: 70%;
  padding: 10px;
  font-size: 1.1em;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  margin-left: auto;
}


#mathAnswer:focus {
border-color: #373838;
outline: none;
}



@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    .half-width {
        width: 100%;
        margin-bottom: 15px;
    }
    form {
        padding: 15px;
    }
    .reach-out-section h2 {
        font-size: 1.8em;
    }
}
.footer-section {
    padding: 50px 0;
    background: linear-gradient(to bottom, #333, #000);
    color: #fff;
    font-family: Lato, sans-serif;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}
.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-logo {
    width: 256px;
    margin-bottom: 25px;
}
.footer-email {
    font-size: 1.2em;
    color: #abdde8;
}
.footer-right {
    display: flex;
    gap: 20px;
}
.footer-link {
    color: #abdde8;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}
.footer-link:hover {
    color: #fff;
}
.footer-bottom p,
.footer-right p {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 1.2em;
}
.footer-bottom {
    text-align: center;
    margin-top: 10px;
    color: #abdde8;
}
.cookie-popup {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    font-weight: 100;
    z-index: 1000;
}
.cookie-popup h5 {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 100;
}
.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.cookie-btn {
    background-color: #4caf50;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 100;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}
.cookie-btn:hover {
    background-color: #45a049;
}
.cookie-btn:last-child {
    background-color: #f44336;
}
.cookie-btn:last-child:hover {
    background-color: #e53935;
}
.cookie-policy-link {
    color: gold;
    text-decoration: underline;
    font-weight: 100;
}
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-left,
    .footer-right {
        align-items: center;
    }
    .footer-right {
        margin-top: 20px;
        gap: 15px;
    }
}

