@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html, body {
    height: 100%;
    width: 100%;
    font-family: sans-serif, 'Poppins';
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    scroll-behavior: smooth;
}

/* Section */
section {
    height: auto;
    width: 100vw;
    padding: 100px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.section {
    width: 100%;
    background-color: #F8F8F8;
}

.section p {
    max-width: 1280px;
}

/* Title */
.title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.title h1 {
    font-weight: normal;
    color: #065099;
}

.title h2 {
    font-weight: normal;
    color: #065099;
}

.title h4 {
    font-weight: normal;
    color: #808080;
}

/* Column */
.column {
    width: 100%;
    max-width: 1280px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Row */
.row {
    width: 100%;
    max-width: 1280px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width:800px) {
    .row {
        display: flex;
        flex-direction: column;
    }
}

/* Card */
.card {
    height: 250px;
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    border: solid 1px #ffffff;
    border-radius: 10px;
    background-color: #F8F8F8;
    transition: ease 500ms;
}

.card:hover {
    border: solid 1px #6CB6FF;
    background-color: #E7F3FF;
    transform: translateY(-2px);
}

/* Background Card - Team section and Projects Section */
.background-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background-size: cover;
    background-position: top;
}

.background-card img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.team-card {
    height: 300px;
}

/* Card title */
.card-title {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}

.card h4 {
    text-align: center;
    color: #065099;
    font-weight: normal;
}

.card p {
    text-align: center;
    color: #808080;
    font-weight: normal;
}

.card-title h4 {
    text-align: left;
}

/* Icon Link */
.icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: lighter;
    padding: 8px;
    color: #ffffff;
    background-color: #0A85FF;
    border-radius: 100%;
    transition: ease all 500ms;
}

.icon-link:hover {
    transform: scale(1.05);
}

/* Typography */

/* Desktop Typography */
h1 {
    font-size: 3.1875rem;
}

h2 {
    font-size: 2.375rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.3125rem;
}

p, a {
    font-size: 1rem;
}

.bold {
    font-size: 1rem;
    font-weight: bold;
}

.caption {
    font-size: 0.75rem;
}

.caption-bold {
    font-size: 0.75rem;
    font-weight: bold;
}

.upsize-container .caption {
    font-size: 15px;
}


/* Mobile and Tablet Typography */

@media (max-width:1034px) {
    h1 {
        font-size: 1.625rem;
    }
    
    h2 {
        font-size: 1.4375rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    h4 {
        font-size: 1.125rem;
    }
    
    p, a {
        font-size: 0.75rem;
    }

    .bold {
        font-size: 0.75rem;
        font-weight: bold;
    }    
    
    .caption {
        font-size: 0.75rem;
    }
    
    .caption_bold {
        font-size: 0.75rem;
        font-weight: bold;
    }
}

/* Button - Gradient Button */

.button {
    background-image: linear-gradient(to right, #065099 0%, #0A85FF  51%, #065099  100%);
    background-size: 200% auto;
    height: auto;
    width: fit-content;
    min-width: 150px;
    text-align: center;
    display: block;
    font-family: 'Poppins';
    font-size: 0.75rem;
    padding: 7px 30px;
    color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 0 20px #eee;
    transition: ease-in, 1s;
}

.button:hover {
    background-position: right center;
    color: #ffffff;
    text-decoration: none;
}

.secondary-button {
    height: auto;
    width: fit-content;
    min-width: 150px;
    text-align: center;
    font-family: 'Poppins';
    font-size: 0.75rem;
    padding: 7px 30px;
    color: #065099;
    border-radius: 20px;
    background-color: transparent;
    border: solid 1px #6CB6FF;
    transition: ease-in, 1s;
}

.secondary-button:hover {
    background-color: #E7F3FF;
    border: solid 1px #6CB6FF;
}

.buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

@media(max-width:768px) {
    .buttons {
        display: flex;
        flex-direction: column;
    }
}

/* Home Page - Header */

#header {
    height: 100%;
    max-height: 1080px;
    padding: 0 10%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-image: url(../Images/home-background-image.webp);
    background-size: cover;
    background-position: center;
}

#page-header {
    height: 50%;
    max-height: 500px;
    padding: 0 10%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-image: url(../images/inolance-page-header-background.webp);
    background-size: cover;
    background-position: center;
}

@media (max-width:1024px) {
    #page-header {
        height: 30%;
    }
}

/* Navigation Bar */
header {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    background: rgba( 255, 255, 255, 0.25 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-style: solid;
    border-width: 0px 0px 1px; /* Set bottom border width */
    border-image-source: linear-gradient(to right, rgb(255, 255, 255, 0.1), rgb(0, 0, 0, 0.2), rgb(255, 255, 255, 0.1));
    border-image-slice: 0.5;
    animation-delay: 0.5s ease;
}

.logo {
    width: 120px;
}

@media(max-width:1024px) {
    .logo {
        width: 100px;
    }
}

.navlist {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 2em;
}

.navlist .button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.navlist .button a {
    color: #ffffff;
}

.navlist li {
    list-style: none;
}

.navlist li a {
    text-decoration: none;
    color: #000000;
    font-size: 0.75rem;
    font-family: 'Poppins';
    transition: all 0.55s ease;
    cursor: pointer;
}

.navlist li a:hover {
    color: #0A85FF;
}

#menu-icon {
    color: #000000;
    font-size: 30px;
    z-index: 10001;
    cursor: pointer;
    display: none;
}

/* Dropdown Menu */

@media (max-width: 1024px) {
    #menu-icon {
        display: block;
    }

    .navlist {
        position: absolute;
        top: 100%;
        right: -100%;
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        background-image: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95));
        padding: 0 10%;
        padding-top: 20%;
        padding-bottom: 30%;
        gap: 1.5em;
        transition: all 0.55s ease;
    }

    .navlist li a {
        width: 80vw;
        display: block;
        color: #000000;
        font-family: 'Poppins';
    }

    .navlist.open {
        right: 0;
    }
}

@media (max-width: 768px) {
    .navlist {
        align-items: center;
        justify-content: center;
        padding-top: auto;
        padding-bottom: 40%;
    }

    .navlist li a {
        width: 100%;
        border-bottom: none;
    }
}

/* Header Text */

.header-text {
    width: 100%;
    height: 90vh;
    margin-top: 10vh;
    padding-bottom: 10vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.page-header-text {
    width: 100%;
    height: 50vh;
    margin-top: 20vh;
    padding-bottom: 10vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

/* Scrolling Title */

/* Container to hide overflow */
.scrolling-container {
    width: 100%;
    overflow: hidden;
    background: transparent;
    padding: 10px 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

/* Scrolling wrapper that moves continuously */
.scrolling-wrapper {
    display: flex;
    animation: scrollText 20s linear infinite;
    min-width: fit-content;
}

/* Text that will scroll */
.scrolling-text {
    display: flex;
    gap: 30px; /* Space between repeating text */
    color: #6CB6FF;
    font-size: 2.375rem;
    font-family: 'Orbitron';
    font-weight: bold;
    text-transform: uppercase;
    padding-right: 30px;
}

/* Keyframes for smooth infinite scrolling */
@keyframes scrollText {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Header Button */

.header-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.header-button h4 {
    font-weight: lighter;
    color: #065099;
}

/* Scrolling Services */

.scrolling-services {
    width: 100%;
    height: auto;
    padding: 0px 10px;
    background-image: linear-gradient(120deg, #0A85FF 20%, #065099);
}

.scrolling-text ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    color: #ffffff;
    font-family: 'Poppins';
    font-weight: normal;
    list-style: none;
}

.scrolling-text ul li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-family: 'Poppins';
    font-weight: normal;
}

.scrolling-text ul li i {
    font-size: 1rem;
}

/* Services Section */

.service-img {
    width: 25%;
}

.services-p {
    width: 40vw;
    text-align: center;
}

/* Projects Section */

.icon-link .visit {
    transform: rotate(135deg);
}

/* Team Section */

.name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
}

.name p {
    color: #ffffff;
}

.team-card-title {
    width: 100%;
    gap: 10px;
}

/* FAQ Section */

.faq-container {
    width: 50%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: normal;
    justify-content: center;
    gap: 20px;
}
.faq-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
    cursor: pointer;
}
.faq-question {
    font-size: 1rem;
    color: #065099;
}
.faq-answer {
    font-size: 0.9rem;
    display: none;
    padding-left: 20px;
    padding-right: 50px;
    color: #808080;
}
.faq-icon {
    background: #0A85FF;
    color: white;
    font-size: 1rem;
    padding: 10px;
    border-radius: 50%;
}
@media (max-width: 1024px) {
    .faq-container {
        width: 100%;
    }
}

.faq-container a {
    color: #0A85FF;
}

/* Contact Us Section */

/* Contact Details */
#contact-us .row {
    width: 100%;
    max-width: 1280px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
}

.contact-us {
    background-color: #F8F8F8;
    border-radius: 10px;
    padding: 0;
    margin: 0;
}

.contact-details {
    width: 100%;
    height: 100%;
    padding: 50px;
    background-image: linear-gradient(#0A85FF, #065099);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.contact-detail {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5%;
}

.contact-details .address {
    align-items: flex-start;
}

.contact-details i {
    font-size: 1.2rem;
    padding: 8px;
    background-color: #ffffff;
    color: #0A85FF;
    border-radius: 100%;
} 

.contact-details a {
    color: #ffffff;
}

/* Contact Form */
.contact-form {
    width: 100%;
    height: 100%;
    padding: 50px;
}

form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

form input {
    width: 100%;
    height: 30px;
    text-align: top;
    background-color: transparent;
    outline: none;
    border: none;
    border-bottom: solid 1px #808080;
    color: #0A85FF;
}

form textarea {
    width: 100%;
    font-family: 'poppins';
    text-align: top;
    background-color: transparent;
    outline: none;
    border: none;
    border-bottom: solid 1px #808080;
    color: #0A85FF;
    resize: none;
}

/* Footer */

footer {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 75px;
    padding-bottom: 25px;
}

footer {
    background-color: #F8F8F8;
}

/* Footer */

footer {
    width: 100vw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding-top: 50px;
    padding-bottom: 25px;
}

footer .footer-logo {
    width: 100%;
    text-align: center;
    padding: 25px 0;
    border-style: solid;
    border-width: 0px 0px 1px;
    border-image-source: linear-gradient(to right, rgb(255, 255, 255, 0.1), rgba(0, 0, 0, 0.4), rgb(255, 255, 255, 0.1));
    border-image-slice: 0.5;
}

footer img {
    width: 150px;
}

.link-row {
    width: 100%;
    display: flex;
    align-items: flex-start;
    padding: 25px 10vw;
    max-width: 1280px;
    border-style: solid;
    border-width: 0px 0px 1px;
    border-image-source: linear-gradient(to right, rgb(255, 255, 255, 0.1), rgba(0, 0, 0, 0.4), rgb(255, 255, 255, 0.1));
    border-image-slice: 0.5;
}

.links {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 25px;
    gap: 10px;
    color: #000000;
}

@media (max-width:768px) {
    .links {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 25px;
        gap: 10px;
        color: #000000;
    }
}

.links p {
    margin-bottom: 10px;
    font-weight: bold;
}

.links a {
    color: #000000;
    transition: all ease 1s;
}

.links a:hover {
    color:#0A85FF;
}

footer .social-media a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

@media (max-width: 800px) {
    footer .social-media a {
        width: 100px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

footer i {
    width: 25px;
    font-size: 20px;
    text-align: center;
}

footer p {
    color: #000000;
}

footer .copyright-notice {
    max-width: 80vw;
    text-align: center;
}

/* Pages */

.page {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.page h3 {
    color: #065099;
    font-weight: normal;
}

/* Services Page */

.page-card {
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid #6CB6FF;
    border-radius: 10px;
}

.page-card img {
    width: 25%;
}

.page-card h3 {
    text-align: center;
}

.page-card h4 {
    width: 100%;
    text-align: left;
    color: #065099;
    font-weight: bold;
}

.page-call-to-action-card {
    background-color: #E7F3FF;
}

/* Projects Page */

.project-card {
    width: 100%;
}

.project-card img {
    width: 100%;
    border-radius: 10px;
}

/* Thank You Page */

.thank-you-page {
    display: flex;
    align-items: center;
    padding-top: 25vh;
}

.thank-you-page img {
    width: 20%;
}

.thank-you {
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.thank-you h2 {
    color: #065099;
    font-weight: normal;
}

.thank-you .caption {
    color: #0A85FF;
}

.socialmedia-lcon-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.socialmedia-lcon-links a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0A85FF;
    border-radius: 100%;
    transition: ease all 500ms
}


.socialmedia-lcon-links a:hover {
    transform: scale(1.05);
}

.socialmedia-lcon-links a i {
    font-size: 1rem;
    color: #ffffff;
}