/* Custom Properties  */
:root {
    /* 1. SKILLVERSITY COLORS */
    --color-primary: #1D3DCA;
    --color-secondary: #FF8800;
    --color-tertiary: #1A1A1A;
    --color-accent-yellow: #F4C542;
    --color-white: #F0F0FF;

    --color-blue-100: #3B51F2;
    --color-blue-200: #6E51F2;
    --color-orange-100: #DC8800;
    --color-orange-200: #A64C00;

    /* TYPOGRAPHY */
    --font-heading: 'Switzer', sans-serif;
    --font-body: 'Founders Grotesk', sans-serif;

    /* Custom Tracking (Letter Spacing) */
    --tracking-tighter-25: -0.025em;
    --tracking-tighter-40: -0.04em;



    /* 3. SKILLVERSITY (Rem-based for scaling) */


    /* TRACKING */
    --tracking-tighter-25: -0.025em;
    --tracking-tighter-40: -0.04em;

    /* FONT SIZES */
    --text-display: 8.0rem;
    --text-display-custom: 140pt;
    --text-h1: 2.4rem;
    --text-h2: 2.0rem;
    --text-h3: 1rem;
    --text-body: 1.0rem;
    --text-lead: 0.95rem;
    --text-small: 0.875rem;
    --text-caption: 0.75rem;



    /* gradients */
    --gradient-blue-orange: linear-gradient(to right, var(--color-blue-100), var(--color-orange-100));
    --gradient-blue-primary: linear-gradient(to right, var(--color-blue-200), var(--color-primary));
    --gradient-accent-blue: linear-gradient(to right, var(--color-accent-yellow), var(--color-blue-200));
    --gradient-secondary: linear-gradient(to right, var(--color-secondary), var(--color-orange-200));
}

body{
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: "poppins";
}
html {
  scroll-behavior: smooth;
}

@font-face {
    font-family: 'Switzer';
    src: url('../font/Switzer-Medium.otf');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Founders Grotesk';
    src: url('/path/to/your/font/FoundersGrotesk-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}


/* animation configurations */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.slide-content {
    display: none;
}

.slide-content.active {
    display: block;
    animation: fadeIn 0.8s ease-out;
}

/* Smooth transitions for inputs */
.input-group {
    transition: all 0.3s ease;
}

/* Tab Slider Animation */
.tab-btn {
    position: relative;
    z-index: 10;
}

.tab-indicator {
    position: absolute;
    height: 100%;
    border-radius: 9999px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}


footer {
  background-color: #252641;
  color: white;
}
footer .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 70px 64px;
  max-width: 1400px;
  margin: auto;
}
footer .top .left {
  font-weight: bold;
  width: 330px;
}
footer .top .left .p1 {
  font-size: 25px;
}
footer .top .left .button1, footer .top .left .button2 {
  font-size: 11px;
  margin-top: 20px;
  margin-right: 10px;
  padding: 0 20px;
  height: 30px;
  min-width: unset;
}
footer .top .left .button2 {
  background-color: rgba(76, 133, 255, 0.288);
}
footer .top .right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .top .right .cvr {
  width: 150px;
}
footer .top .right .cvr .p3 {
  font-size: 30px;
  font-weight: bold;
}
footer .top .right .cvr .p4 {
  font-size: 10px;
  color: #B7BAC7;
}
footer .bottom {
  color: #B7BAC7;
  display: flex;
  align-items: start;
  padding: 70px 64px;
  max-width: 1400px;
  margin: auto;
  border-top: 1px solid #2e2f52;
  border-bottom: 1px solid #2e2f52;
}
footer .bottom .logo {
  width: 250px;

}
footer .bottom .logo img {
  width: 150px;
  margin-bottom: 10px;
}
footer .bottom .logo .p1 {
  font-size: 11px;
}
footer .bottom .cvr {
  display: flex;
  margin-left: 100px;
}
footer .bottom .cvr .cat {
  font-size: 11px;
  margin-left: 30px;
}
footer .bottom .cvr .cat .top2 {
  color: white;
  margin-bottom: 10px;
}
footer .bottom .cvr .cat .p5 {
  margin-bottom: 7px;
}
footer .bottom .socials {
  display: flex;
  margin-top: 20px;
}
footer .bottom .socials .left2 {
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1019607843);
  margin-right: 10px;
}
footer .p6 {
  font-size: 11px;
  color: #B7BAC7;
  padding: 20px 64px;
  max-width: 1400px;
  margin: auto;
}

@media only screen and (max-width: 820px) {

    footer {
        background-color: #252641;
        color: white;
    }

    footer .top {
        display: block;
        padding: 70px 20px;
    }

    footer .top .left {
        font-weight: unset;
        width: 330px;
    }

    footer .top .left .p1 {
        font-size: 25px;
    }

    footer .top .left .button1,
    footer .top .left .button2 {
        font-size: 11px;
        margin-top: 20px;
        margin-right: 10px;
        padding: 0 20px;
        height: 30px;
        min-width: unset;
    }

    footer .top .left .button2 {
        background-color: rgba(76, 133, 255, 0.288);
    }

    footer .top .right {
        margin-top: 100px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    footer .top .right .cvr {
        width: 150px;
    }

    footer .top .right .cvr .p3 {
        font-size: 25px;
        font-weight: bold;
    }

    footer .top .right .cvr .p4 {
        font-size: 10px;
        color: #B7BAC7;
    }

    footer .bottom {
        color: #B7BAC7;
        display: block;
        align-items: start;
        padding: 70px 20px;
        border-top: 1px solid #2e2f52;
        border-bottom: 1px solid #2e2f52;
    }

    footer .bottom .logo {
        width: 250px;
    }

    footer .bottom .logo img {
        width: 150px;
    }

    footer .bottom .logo .p1 {
        font-size: 11px;
    }

    footer .bottom .cvr {
        display: flex;
        justify-content: space-between;
        margin-left: 0px;
        margin-top: 30px;
    }

    footer .bottom .cvr .cat {
        font-size: 11px;
        margin-left: 0px;
    }

    footer .bottom .cvr .cat .top2 {
        color: white;
        margin-bottom: 10px;
    }

    footer .bottom .cvr .cat .p5 {
        margin-bottom: 7px;
    }

    footer .bottom .socials {
        display: flex;
        margin-top: 20px;
    }

    footer .bottom .socials .left2 {
        height: 30px;
        width: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1019607843);
        margin-right: 10px;
    }

    footer .p6 {
        font-size: 11px;
        color: #B7BAC7;
        padding: 20px 20px;
    }
}