body {
    margin: 0px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #00404b;
}

/*          Start of Menu           */

.menu_logo {
    position: absolute;
    top: 15px;
    left: 10%;
    width: 110px;
    box-sizing: border-box;
    padding: 0px 0px 0px 0px;
}

.menu_container {
    height: 100px;
    background-image: linear-gradient(#fff 2px, #bfbfbf 2px, #f9f9f9 98px, #00b1d0 98px);
    box-sizing: border-box;
    position: relative;
}

.align_menu {
    position: absolute;
    right: 10%;
    top: 0px;
    margin: 0px;
}

.align_menu a {
    margin: 0px;
    padding: 40px 20px 40px 20px;
    display: inline-block;
    color: #00798e;
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.align_menu a:hover {
    height: 100px;
    background-image: linear-gradient(#00b1d0 2px, #bfbfbf 2px, #ebebeb 98px, #00b1d0 98px);
    box-sizing: border-box;
    padding: 40px 20px 40px 20px;
    box-shadow: 0px -2px 3px #fff;
    color: #6b6b6b;
}

@media screen and (max-width:600px) {
    .logo {
        display: none;
    }

    .align_menu {
        width: max-content;
        position: unset;
        right: unset;
        margin-left: auto;
        margin-right: auto;
    }

    .align_menu a:hover {
        position: relative;
    }
}

/*               End of Menu             */

/*               Start of Block 1                 */

.block_bg {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    background: url("images/intro_bg.webp");
    background-size: cover;
    background-position: center;
}

.block_bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    z-index: 0;
}

.block_1 {
    position: relative;
    z-index: 1;
    margin: auto;
    width: 80%;
    max-width: 1200px;
    padding: 80px 0px 80px 0px;
}

.intro {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: fadeIn 1.2s ease-in 0.3s;
    animation-fill-mode: both;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.intro_logo {
    width: 40%;
    max-width: 300px;
}

.tagline {
    font-size: 16px;
    color: #ccc;
    font-style: none;
    opacity: 0;
    animation: fadeIn 1.5s ease-in 1.5s forwards;
}

.intro p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    text-align: center;
    color: #d0d0d0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.intro button {
    background: #00b1d0;
    border: none;
    padding: 12px 24px;
    color: #fff;
    font-size: 16px;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.intro button:hover {
    background: #0088a9;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 177, 208, 0.3);
}

@media (max-width: 600px) {
    .intro_logo {
        width: 60%;
    }

    .intro p {
        font-size: 16px;
    }

    .intro button {
        width: 100%;
    }
}


@media screen and (max-width:600px) {
    .intro {
        width: 80%;
    }
}

/*          End of Block 1          */

/*          Start of Block 2          */

.block_2 {
    background-color: #f9f9f9;
}

.icon_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    width: 80%;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

.icon_container a {
    flex: 1 1 280px;
    max-width: 300px;
    text-align: center;
    text-decoration: none;
    color: #00404b;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon_container a:hover {
    color: #00404b;
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.overlay {
    background: linear-gradient(to bottom, #ffffff, #f0f0f0);
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.icon_1,
.icon_2,
.icon_3,
.icon_box {
    text-align: center;
    padding: 20px;
}

.icon_container img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    box-shadow: 0px 0px 10px 6px #ffffffa9;
    background: #ffffffa9;
    border-radius: 50%;
}

.icon_container h3 {
    font-size: 1.3rem;
    color: #00798e;
    margin-bottom: 0.5rem;
}

.icon_container p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Responsive Tweaks */
@media screen and (max-width:950px) {
    .icon_container {
        width: 95%;
    }

    .icon_1,
    .icon_2,
    .icon_3 {
        padding: 20px 0;
    }
}

@media screen and (max-width:600px) {
    .icon_container {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .icon_container a {
        width: 90%;
    }
}


/*          End of Block 2          */

/*          Start of Block 3            */

.graphic_break {
    height: 50px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-image: url('images/hoverbg.webp');
    background-size: cover;
    background-position: center;
}

.block_3 {
    width: 80%;
    padding: 0px 0px 0px 0px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.block_3 h3 {
    margin-top: 60px;
}

/*          Content and Media           */
.block_4 {
    height: max-content;
    background-image: url('images/fixed-bg.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    border-bottom: #fff 13px solid;
    margin-bottom: -13px;
}

.block_4_filler {
    height: 100px;
    background: #fff;
}

.block_4_info {
    width: 70%;
    height: max-content;
    transform: translate(29%, 0%);
    background: #ffffffe5;
    padding: 40px 40px 40px 40px;
    box-shadow: 0px 3px 9px 0px #b4b4b4;
    box-sizing: border-box;
}

.block_4_info h3 {
    font-size: 30px;
}

.block_4_break {
    height: 200px;
}

@media screen and (max-width:600px) {
    .block_4_info {
        width: 90%;
        transform: none;
        margin-left: auto;
        margin-right: auto;
    }
}

/*          Looking for a website?          */
.block_5 {
    background: #fff;
    height: max-content;
}

.block_5 li {
    margin: 0px 0px 20px 0px;
}

.block_5 h3 {
    font-size: 20px;
    margin-bottom: 40px;
}

.block_5_container {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
}

.block_5_info {
    width: 90%;
    height: 30%;
    padding: 40px 40px 40px 0px;
    box-sizing: border-box;
}

.graphic_break_2 {
    width: 10%;
    background-image: url('images/hoverbg.webp');
    background-size: cover;
    background-position: right;
}

/*          Website Adaptability            */
.block_6 {
    background-image: url('images/adaptive.webp');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 80px 0px 80px 0px;
    border-bottom: #fff 0px solid;
}

.block_6_info {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    background: #cccccce1;
    padding: 40px;
    box-sizing: border-box;
    box-shadow: 0px 0px 10px 0px #000;
    border-top: #00b1d0 3px solid;
    border-bottom: #00b1d0 3px solid;
}

.block_6 p {
    display: flex;
}

.block_6 img {
    width: auto;
    height: 200px;
    padding-left: 3%;
}

@media screen and (max-width:800px) {
    .block_6_info img {
        display: none;
    }
}

/*      ---     Services        ---     */

.extras {
    border-left: 3px solid #ccc;
    padding: 0px 0px 0px 20px;
}

.contacts {
    background: #333;
    color: #fff;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.contacts h3 {
    margin: 0px;
}

.contacts a {
    text-decoration: none;
    color: #00b1d0;
}

.contacts_1 {
    padding: 20px 0px 20px 40px;
    background-image: linear-gradient(to right, #00798e, #00b1d0);
    width: 100%;
}

.contacts_form,
.contacts_info {
    padding: 20px 0px 80px 80px;
    background: #333;
    width: 50%;
    box-sizing: border-box;
}

.contacts_info {
    padding: 20px 0px 80px 80px;
}

.contact-section {
    display: inline-block;
}

.form_box {
    width: 70%;
}

.name_field,
.email_field,
.message_field {
    width: 100%;
    margin: 5px;
}

.form_message {
    width: 100%;
    margin: 5px;
}

.form_button {
    background: #333;
    border: 1px solid #00b1d0;
    padding: 10px;
    color: #fff;
    cursor: pointer;
    transition-duration: 0.4s;
    margin-top: 10px;
    margin-left: 5px;
}

.form_button:hover {
    background: #00b1d0;
}

.popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #00bfa6;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    display: none;
    z-index: 1000;
    animation: fadeInOut 4s ease-in-out;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    10% {
        opacity: 1;
        transform: translateY(0);
    }

    90% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

.copy_right {
    background: #333;
    text-align: center;
    padding: 10px 0px 10px 0px;
    font-size: 12px;
    width: 100%;
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.1);
}


@media (max-width: 600px) {

    .contacts_form,
    .contacts_info {
        width: 100%;
    }

    .name_field,
    .email_field,
    .message_field {
        width: 80%;
        margin: 5px;
    }
}


/* SERVICES PAGE */

.services_box_width {
  width: 90%;
  margin: auto;
}

.packages {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(to bottom, #f4f4f4, #eaeaea);
  border-radius: 8px 8px 0px 0px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.packages h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #00798e;
}

.packages p {
  max-width: 700px;
  margin: 0 auto 2rem auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

.divider-wave {
  margin-top: -1px;
  overflow: hidden;
  line-height: 0;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.features {
  background: linear-gradient(to bottom, #f9f9f9, #eaeaea);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.features h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #00798e;
}

.features p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #333;
}

.features ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.features ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #555;
}

.extras {
  font-size: 0.9rem;
  color: #666;
  margin-top: 1rem;
}

/*      ---     Contact Page        ---     */

.contact_body {
    background: #333;
}

.contact_filler {
    height: 100px;
}