
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');


/* VARIABLES */
:root {
    --dark: #2d2d2d;
    --light: #fff;
    --brand-color-primary: #39A7FF;
    --brand-color-secondary: #7C7C7C;
    --brand-color-secondary-light: #f4f8ff;
    --box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.08);
    --font-style: 'Urbanist', sans-serif;
}

html,
body {
    overflow-x: hidden;
    font-family: "Urbanist", serif;
}

body {
    position: relative;
}


.btn-brand-primary{
    font-family: "Urbanist", serif;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    background: radial-gradient(circle, rgba(0, 0, 0, 1) 0%, rgba(48, 55, 62, 1) 50%, rgba(0, 0, 0, 1) 100%);
    padding: 10px;
    padding-inline: 22px;
}

.btn-brand-primary:hover{
    background: radial-gradient(circle, rgba(0, 0, 0, 1) 0%, rgba(48, 55, 62, 1) 50%, rgba(0, 0, 0, 1) 100%);
    color: #ffffff;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navheading {
    color: var(--dark);
    font-weight: 500;
    text-decoration: none;
}

.navheading.active {
    color: var(--brand-color-primary);
}

#home {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.6), rgb(255, 255, 255)),
        url('./assets/media/Bg2.png');
    background-repeat: no-repeat;
    background-size: 100% 100%; /* Ensures the image covers the entire width and height */
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* height: 100vh; */
}

.blur-gradient {
    padding-top: 5em;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: conic-gradient(rgba(0, 145, 255, 0.9) 0deg 160deg,
            rgba(67, 176, 255, 0.6) 160deg 300deg,
            rgb(255, 255, 255) 300deg 360deg);
    filter: blur(100px);
    animation: premium-drift 20s ease-in-out infinite alternate;
}

@keyframes premium-drift {
    0%   { transform: rotate(0deg)   translate(0, 0)     scale(1);   }
    33%  { transform: rotate(120deg) translate(30px, -50px) scale(1.1); }
    66%  { transform: rotate(240deg) translate(-20px, 40px) scale(0.9); }
    100% { transform: rotate(360deg) translate(0, 0)     scale(1);   }
}

.content {
    position: absolute;
    top: 70%;
    left: 51%;
    transform: translate(-50%, -50%);
    max-width: 95vw;
    color: black;
    text-align: center;
}

.content h1 {
    font-size: 70px;
    background: linear-gradient(to right, #000000, #000000, #ffffff, #ffffff, #000000, #000000);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: "Urbanist", serif;
    font-weight: 600;
    line-height: 1.15;
    margin-block: 15px;
}

.content p {
    font-weight: 400;
}

.hero-divider {
    width: 1px;
    height: 44px;
    background: var(--dark);
}

.global-section {
    padding: 3.5rem 0;
    background: #f4f8ff;
}

.global-copy {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}


.world-map {
    width: min(100%, 560px);
    height: auto;
    opacity: 0.9;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.world-map:hover {
    transform: scale(1.04) translateZ(0);
}

/* Services marquee */
.services-flow {
    position: relative;
    margin-top: 0;
    padding: 3.5rem 0 2.5rem;
    overflow: hidden;
}

.services-ribbon {
    position: relative;
    width: 110%;
    margin-left: -5%;
    margin-block: 1.1rem;
    padding: 0.7rem 0;
    border-radius: 999px;
    overflow: hidden;
    background: var(--ribbon-bg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.services-ribbon--dark {
    --ribbon-bg: linear-gradient(90deg, #0b0b0b, #1c232a, #0b0b0b);
    --ribbon-color: #ffffff;
    --ribbon-pill-bg: rgba(255, 255, 255, 0.08);
    --ribbon-pill-border: rgba(255, 255, 255, 0.2);
    transform: rotate(1.5deg);
}

.services-ribbon--light {
    /* --ribbon-bg: linear-gradient(90deg, rgba(57, 167, 255, 0.2), #ffffff, rgba(57, 167, 255, 0.2)); */
    --ribbon-bg: var(--brand-color-primary);
    --ribbon-color: #ffffff;
    --ribbon-pill-bg: rgba(255, 255, 255, 0.15);
    --ribbon-pill-border: rgba(255, 255, 255, 0.3);
    transform: rotate(-2deg);
}

.services-ribbon__track {
    display: flex;
    width: max-content;
    animation: ribbon-marquee 22s linear infinite;
}

.services-ribbon__track--reverse {
    animation-direction: reverse;
}

.services-ribbon__group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0 1.5rem;
    list-style: none;
    margin: 0;
}

.services-ribbon__item {
    font-family: "Urbanist", serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ribbon-color);
    padding: 0.45rem 0.95rem;
    background: var(--ribbon-pill-bg);
    border: 1px solid var(--ribbon-pill-border);
    border-radius: 999px;
    white-space: nowrap;
}

@keyframes ribbon-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .services-ribbon__track {
        animation: none;
    }
}

.section-head{
    font-family: "Urbanist", serif;
    font-weight: 600;
    background: radial-gradient(circle at top right, rgb(220, 220, 220), rgb(0, 0, 0), rgba(57, 167, 255, 1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 30px;
    line-height: 1.2;
}

.tapered-line-horizontal {
    width: min(900px, 90%);
    height: 20px;
    background: #555;
    clip-path: polygon(50% 71%, 100% 72%, 49% 73%, 0 72%);
    margin: 0 auto;
}


.client-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 4vw, 3.25rem);
}

.client-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-card img {
    max-height: 320px;
    max-width: 150px;
    width: auto;
    height: auto;
}

.client-card:hover {
    opacity: 0.85;
}

.cardBackground {
    background-color: rgba(57, 167, 255, 0.06);
    border-radius: 10px;
    margin-top: 2rem;
    line-height: 1.7;
}

.cardBackground h3 {
    font-family: "Urbanist", serif;
    font-size: 24px;
    margin-bottom: 20px;
}

.cardBackground p {
    font-family: "Urbanist", serif;
    font-weight: 300;
    font-size: 14px;
    padding-bottom: 40px;
}

.services-section {
    padding: 3.5rem 0 4rem;
}

.services-heading {
    max-width: 720px;
    margin: 0 auto 2.5rem;
}

.services-heading p {
    margin-bottom: 0;
}

.services-grid > [class*="col-"] {
    display: flex;
}

.services-grid .servicecard {
    flex: 1;
    margin: 0;
}

.servicecard {
    background: #F5FAFF;
    border-radius: 20px;
    padding: 0;
    margin: 5px;
    border: rgba(57, 167, 255, 0.05) solid 1px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, background-color, box-shadow;
}

/* Specific hover effect only for our services section */
.service-card-interactive:hover {
    background-color: var(--dark);
    transform: translateY(-8px) scale(1.01) translateZ(0);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.servicecard img {
    transition: filter 0.4s ease;
}

.service-card-interactive:hover img {
    filter: brightness(0) invert(1);
}

.servicecard h2 {
    font-family: "Urbanist", serif;
    font-weight: 500;
    font-size: 28px;
    background: linear-gradient(135deg, rgba(45, 45, 45, 1), rgba(45, 45, 45, 1), rgba(255, 255, 255, 0.3));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
}

.service-card-interactive:hover h2 {
    background: none;
    -webkit-text-fill-color: var(--light);
    color: var(--light);
}

.servicecard a {
    font-family: "Urbanist", serif;
    font-size: small;
    font-weight: 600;
    color: var(--brand-color-primary);
    transition: color 0.4s ease;
    text-decoration: none;
}

.service-card-interactive:hover a {
    color: var(--light);
}

.servicecard p,
label {
    font-family: "Urbanist", serif;
    font-weight: 400;
    font-size: 12px;
    background: linear-gradient(135deg, rgba(45, 45, 45, 1), rgba(45, 45, 45, 1), rgba(255, 255, 255, 0.725));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
}

.service-card-interactive:hover p,
.service-card-interactive:hover label {
    background: none;
    -webkit-text-fill-color: var(--light);
    color: var(--light);
}

#quote {
    margin: 5rem;
    margin-top: 10rem;
}

#quote h1 {
    font-weight: 600;
    font-size: 90px;
    line-height: 0.77;
    background: radial-gradient(circle at top right, rgb(220, 220, 220), rgb(0, 0, 0), rgba(57, 167, 255, 1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

#quote p {
    font-weight: 400;
    font-size: 20px;
}

#quote.quote-section {
    margin: 0;
}

#quote.quote-section h1 {
    font-size: clamp(2.75rem, 6vw, 5.5rem);
    line-height: 0.95;
}

#quote.quote-section .quote-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

#quote.quote-section .quote-social__link {
    display: inline-flex;
}

#quote.quote-section .quote-social__link img {
    display: block;
}

#quote.quote-section .quote-cta {
    width: fit-content;
    margin: 0 auto;
}

.contact-section {
    padding: 3.5rem 0 4rem;
}

.contact-section .contact-title {
    font-size: clamp(2.1rem, 4.2vw, 3.5rem);
}

.contact-section .contact-meta {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    margin-top: 0.75rem;
}

.contact-section .contact-card {
    margin: 0 auto;
}

.contact-section .form-label {
    display: block;
    text-align: left;
}

.form-label{
    font-family: "Urbanist", serif;
    font-weight: 500;
    font-size: 14px;
    padding: 0;
    margin: 0;
}

input.form-control,
textarea.form-control {
    border: 1px solid rgba(57, 167, 255, 0.2);
    border-radius: 8px;
    padding: 10px;
    font-family: "Urbanist", serif;
    font-weight: 400;
    font-size: 14px;
}

@media (max-width: 991.98px) {
    .contact-section {
        text-align: center;
    }
}


/* smaller devices */
@media (max-width: 992px) {
    .dis-none {
        display: none;
    }

    .services-flow {
        padding: 2.5rem 0 2rem;
        margin-top: 16em;
        margin-bottom: 0;
    }

    .services-flow__label {
        font-size: 0.75rem;
        letter-spacing: 0.25em;
    }

    .services-ribbon {
        width: 120%;
        margin-left: -10%;
        transform: rotate(-1.5deg);
        margin-bottom: 0;
        transform: rotate(-2.2deg);
    }

    .services-ribbon__item {
        font-size: 0.75rem;
        letter-spacing: 0.04em;
    }

    .content h1 {
        font-size: 3.5em;
        padding-top: 3em;
    }

    .content p {
        padding-top: 0.5em;
        font-size: 1.2em;
    }

    .global-section {
        padding: 2.5rem 0;
        text-align: center;
    }

    .global-copy {
        margin-inline: auto;
    }

    /* .tapered-line-horizontal {
        display: none;
    } */


    /* .section-head{
        margin-top: 5em;
    }

    .blur-gradient {
        width: 250px;
        height: 250px;
    }

    

    #about h4 {
        font-size: 30px;
    }

    .inabout{
        margin-top: 0em;
    }

    #about{
        margin-top: 0;
    }

    #about h2{
        margin-top: 0;
    }

    .our-headings {
        margin-bottom: 30px;
        margin-left: unset;
        font-size: 50px;
        padding-left: 0.45em;
    }

    .servicecard {
        margin-block: 20px;
    }

    
    #quote {
        margin: unset;
        margin-top: 10rem;
    }

    .Client-logo {
        height: 150px;
        margin-block: 40px;
        width: auto;
        margin-inline: unset;
    }

    .contact-div {
        padding: 0.5em;
        margin-top: 2em;
        margin-bottom: 4em;
    } */

}