/* Variables */
:root {
    /* Colors */
    --dark-blue: #0B2567;
    --light-blue: #0094FF;
    --green: #00FF66;
    --white: #FFF;
    --grey: #6D6D6D;
    --light-grey: #757575;
    --dark-grey: #434343;
    --blue: #0684DF;
    --cyane: #29F0CC;

    /* Gradients */
    --primary-gradient: linear-gradient(88deg, var(--blue) 3.4%, var(--cyane) 103.56%);
    --text-gradient: linear-gradient(338deg, var(--blue) -27.9%, var(--cyane) 103.14%);
    --card-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.64) 96.35%, rgba(255, 255, 255, 0.40) 100%);

    /* Shadows */
    --button-shadow: 0px 0px 14.7px 6px rgba(47, 230, 255, 0.25);
    --button-shadow-hover: 0px 0px 20px 8px rgba(47, 230, 255, 0.5);
    --tooltip-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    /* Spacing */
    --section-spacing: 2rem;
    --card-spacing: 1rem;
    --form-spacing: 0.75rem;

    /* Border Radius */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 25px;
    --border-radius-xl: 41px;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
}

/* Fonts */
@font-face {
    font-family: 'Gilroy-Bold';
    src: url('../assets/fonts/Gilroy-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy-Medium';
    src: url('../assets/fonts/Gilroy-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy-Regular';
    src: url('../assets/fonts/Gilroy-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Gilroy-Regular', sans-serif;
    font-size: 1rem;
    color: var(--dark-grey);
}

img {
    max-width: 100%;
    height: auto;
    contain: content;
}

a {
    text-decoration: none;
    transition: color var(--transition-fast);
}

/* Typography */
.gilroy-bold { font-family: 'Gilroy-Bold'; }
.gilroy-medium { font-family: 'Gilroy-Medium'; }
.gilroy-regular { font-family: 'Gilroy-Regular'; }

.dark-blue { color: var(--dark-blue) !important; }
.dark-grey { color: var(--dark-grey) !important; }
.grey { color: var(--grey) !important; }

.gradient-txt {
    background: var(--text-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    will-change: background;
}

/* Layout */
.vh100 { height: 100vh; }
.py-075 { padding: var(--form-spacing) 0 !important; }
.pt-8 { padding-top: 6rem !important; }

.bg-gradient {
    width: 100%;
    position: absolute;
    z-index: -1;
    contain: content;
}

.bg-gradient img {
    height: 75vh;
    width: 100%;
    max-height: 600px;
    will-change: transform;
}

/* Common Components */
.buttonDesign {
    background: var(--primary-gradient);
    box-shadow: var(--button-shadow);
    white-space: nowrap;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    padding: 0 2.2rem;
    will-change: transform, box-shadow;
    backface-visibility: hidden;
}

.buttonDesign:hover {
    transform: scale(1.03);
    box-shadow: var(--button-shadow-hover);
}

.border-dark-blue {
    border: 1px solid var(--dark-blue) !important;
}

/* Section Headers */
.section-header {
    display: inline-block;
    font-size: 3rem;
    border-bottom: 2px solid var(--dark-blue);
    padding-bottom: 0.5rem;
}

#partners-title {
    font-size: 3rem;
    border-bottom: 2px solid var(--dark-blue);
}

.partner-card {
    width: 300px;
}

.partner-card img {
    height: 100px;
}



