*,
*:before,
*:after {
    box-sizing: inherit;
}

html {
    /*overflow-x: clip;*/
    scroll-behavior: smooth;
    box-sizing: border-box;
    background-color: #008080;
    /*overflow-x: hidden;*/
}

body {
    /*overflow-x: clip;*/
    margin: 0;
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: white;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
}

a:hover {
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    /* Adding that shadow! */
}

img {
    max-width: 100%;
    height: auto;
}

main {
    margin-left: 0;
    /* Centers the container */
    margin-right: auto;
    width: 100%;
    /* Ensures it fills the space on smaller screens */
}

/* 1. Full-width Outer Wrapper */
.outer {
    width: 100%;
    /*background-color: #FFF8DC;*/
    background-color: #FFE6E8;

    padding: 20px;
}

/* 2. Constrained Inner Container */
.inner {
    max-width: 1300px;
    margin-inline: auto;
    /* Centers the div */
    padding: 0 20px;
    /* Padding so content doesn't hit screen edges on mobile */
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: red;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
}

#myBtn:hover {
    background-color: #555;
}

.stay-top {
    position: fixed;
    width: 100%;
    z-index: 1;
    top: 0;
}


nav {
    background-color: black;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 70px;
    position: relative; 
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Desktop Links */
.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    padding: 0 15px;
    font-size: 1.1rem;
    transition: color 0.3s;
    padding: 1rem 2rem;
    letter-spacing: 1.5px;
}

.nav-menu li a:hover {
    color: black;
    background-color: #008080;
}

.header-container {
    display: flex;
    justify-content: space-between;
    /* Pushes title left and button right */
    align-items: center;
    /* Centers them vertically */
    padding: 10px 15px;
    width: 100%;
    text-align: center;
    align-items: center;
    color: white;
    background-color: blue;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    /* Adding that shadow! */
}

ul {
    display: flex;
    flex-direction: column;
    /* Use 'row' for horizontal lists */
    gap: 15px;
    /* Adds 15px of space between each <li> */
    list-style: none;
    /* Removes bullet points */
    padding: 0;
}

/* Sandwich Button (hidden on desktop) */
.sandwich-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

hr {
    border: 1px solid silver;
    margin-top: 30px;
    margin-bottom: 30px;
}

.main-logo {
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 2px;
    /* 1. The Multi-color Gradient */
    /* Note: We start and end with the same color (#ff8a00) for a seamless loop */
    background: linear-gradient(to right,
            #ff8a00,
            #e52e71,
            #8a2be2,
            #00d4ff,
            #ff8a00);

    /* 2. Make the background wider than the text so we can move it */
    background-size: 200% auto;

    /* 3. Clip the background to the text and make text transparent */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;

    animation: moveGradient 4s linear infinite;
}

/* 5. Define the movement */
@keyframes moveGradient {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.green-link-dark {
    border: none;
    display: inline-block;
    padding: 8px 16px;
    vertical-align: middle;
    overflow: hidden;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    background-color: green;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
}

.green-link-dark:hover {
    color: black;
    font-weight: bold;
    background-color: silver;
    box-shadow: 0 4px 8px rgba(235, 1, 1, 0.8);
}

.container {
    display: flex;
    gap: 20px;
    /* Space between the divs */
    padding: 20px;
}

.child {
    flex: 1;
    /* Both divs take up equal width */
    padding: 10px;
    border-radius: 20px;
    margin: 0px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* box-shadow: [horizontal] [vertical] [blur] [spread] [color]; */


@media (max-width: 768px) {
    .container {
        flex-direction: column;
        /* Stacks the divs vertically */
    }
}

.modal-form {
    z-index: 3;
    display: none;
    padding-top: 100px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    justify-items: center;
    height: 100%;
    overflow: auto;
    border-radius: 20px;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4)
}

.second-form {
    width: 100%;
    background-color: white;
    max-width: 1000px;
}

.tab-item {
    background: NONE;
    border: solid 1px black;
    width: 100px;
    height: 60px;
    padding: 8px 16px;
    cursor: pointer;
}

.tab-item:hover {
    background-color: aqua;
}

.close-btn {
    background: NONE;
    border: solid 1px white;
    width: 60px;
    height: 60px;
    font-size: 48px;
    cursor: pointer;
    color: white;
    line-height: 1;
}

.close-btn:hover {
    color: black;
    /* Turns red when you hover */
    background-color: aqua;
}

.close-button {
    border: none;
    display: inline-block;
    padding: 20px;
    width: 100%;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    font-weight: bold;
    background-color: inherit;
    text-align: center;
    cursor: pointer;
    background-color: silver;
    border-radius: 15px;
    white-space: nowrap;
}

.close-button:hover {
    box-shadow: 0 8px 5px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19)
}



.animate-zoom {
    animation: animatezoom 0.6s
}

@keyframes animatezoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.cert-image {
    border: 1;
}

.mySlides {
    text-align: center;
    display: none;
}

.facebook {
    background: #3B5998;
    color: white;
}

.twitter {
    background: #55ACEE;
    color: white;
}

.google {
    background: #dd4b39;
    color: white;
}

.linkedin {
    background: #007bb5;
    color: white;
}

.youtube {
    background: #bb0000;
    color: white;
}

.instagram {
    background: #125688;
    color: white;
}

.contact-span {
    letter-spacing: 12px;
    font-weight: bold;
    font-size: 25px;
}