/* ==================== CSS VARIABLES ==================== */
:root {
    --primary-blue: #0066FF;
    --accent-red: #FF0033;
    --white: #FFFFFF;
    --black: #000000;
    --dark-blue: #001F3F;
    --light-blue: #3399FF;
    --gray: #1a1a1a;

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.8s ease;
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* ==================== CUSTOM CURSOR ==================== */
.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease, border-color 0.3s ease;
    mix-blend-mode: difference;
}

body:hover .cursor-trail {
    transform: scale(1.5);
}

/* ==================== BACKGROUND EFFECTS ==================== */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--primary-blue) 1px, transparent 1px),
        linear-gradient(90deg, var(--primary-blue) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.03;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-blue);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-red);
    bottom: 20%;
    right: 10%;
    animation-delay: -7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--light-blue);
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 65px;
    border-radius: 25% 10%;
    transition: transform var(--transition-medium);
}

.nav-logo img:hover {
    transform: scale(1.05) rotate(2deg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 500;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-red));
    transition: width var(--transition-medium);
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link:hover::after {
    width: 100%;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 2rem;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-red));
    opacity: 0.1;
    animation: morphFloat 15s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 30%;
    right: 15%;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation-delay: -5s;
}

.shape-3 {
    width: 180px;
    height: 180px;
    top: 60%;
    left: 70%;
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    animation-delay: -10s;
}

@keyframes morphFloat {

    0%,
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(50px, -50px) rotate(90deg);
    }

    50% {
        border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
        transform: translate(100px, 0) rotate(180deg);
    }

    75% {
        border-radius: 70% 30% 30% 70% / 30% 60% 40% 70%;
        transform: translate(50px, 50px) rotate(270deg);
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0;
    position: relative;
}

/* Glitch Effect */
.glitch {
    position: relative;
    color: var(--white);
    animation: glitch-skew 3s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--accent-red);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--primary-blue);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(10px, 9999px, 31px, 0);
        transform: skew(0.3deg);
    }

    5% {
        clip: rect(70px, 9999px, 71px, 0);
        transform: skew(0.1deg);
    }

    10% {
        clip: rect(31px, 9999px, 91px, 0);
        transform: skew(0.5deg);
    }

    15% {
        clip: rect(2px, 9999px, 35px, 0);
        transform: skew(0.2deg);
    }

    20% {
        clip: rect(88px, 9999px, 98px, 0);
        transform: skew(0.4deg);
    }

    25% {
        clip: rect(45px, 9999px, 60px, 0);
        transform: skew(0.3deg);
    }

    30% {
        clip: rect(78px, 9999px, 92px, 0);
        transform: skew(0.1deg);
    }

    35% {
        clip: rect(12px, 9999px, 55px, 0);
        transform: skew(0.6deg);
    }

    40% {
        clip: rect(65px, 9999px, 72px, 0);
        transform: skew(0.2deg);
    }

    45% {
        clip: rect(34px, 9999px, 47px, 0);
        transform: skew(0.4deg);
    }

    50% {
        clip: rect(90px, 9999px, 100px, 0);
        transform: skew(0.3deg);
    }

    55% {
        clip: rect(5px, 9999px, 25px, 0);
        transform: skew(0.5deg);
    }

    60% {
        clip: rect(55px, 9999px, 80px, 0);
        transform: skew(0.1deg);
    }

    65% {
        clip: rect(20px, 9999px, 40px, 0);
        transform: skew(0.4deg);
    }

    70% {
        clip: rect(75px, 9999px, 85px, 0);
        transform: skew(0.2deg);
    }

    75% {
        clip: rect(15px, 9999px, 50px, 0);
        transform: skew(0.6deg);
    }

    80% {
        clip: rect(60px, 9999px, 95px, 0);
        transform: skew(0.3deg);
    }

    85% {
        clip: rect(8px, 9999px, 30px, 0);
        transform: skew(0.1deg);
    }

    90% {
        clip: rect(82px, 9999px, 99px, 0);
        transform: skew(0.5deg);
    }

    95% {
        clip: rect(28px, 9999px, 62px, 0);
        transform: skew(0.2deg);
    }

    100% {
        clip: rect(42px, 9999px, 73px, 0);
        transform: skew(0.4deg);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(65px, 9999px, 100px, 0);
        transform: skew(0.5deg);
    }

    5% {
        clip: rect(25px, 9999px, 45px, 0);
        transform: skew(0.2deg);
    }

    10% {
        clip: rect(85px, 9999px, 90px, 0);
        transform: skew(0.4deg);
    }

    15% {
        clip: rect(15px, 9999px, 28px, 0);
        transform: skew(0.1deg);
    }

    20% {
        clip: rect(48px, 9999px, 75px, 0);
        transform: skew(0.6deg);
    }

    25% {
        clip: rect(92px, 9999px, 99px, 0);
        transform: skew(0.3deg);
    }

    30% {
        clip: rect(32px, 9999px, 58px, 0);
        transform: skew(0.5deg);
    }

    35% {
        clip: rect(72px, 9999px, 88px, 0);
        transform: skew(0.2deg);
    }

    40% {
        clip: rect(18px, 9999px, 42px, 0);
        transform: skew(0.4deg);
    }

    45% {
        clip: rect(58px, 9999px, 82px, 0);
        transform: skew(0.1deg);
    }

    50% {
        clip: rect(5px, 9999px, 20px, 0);
        transform: skew(0.3deg);
    }

    55% {
        clip: rect(78px, 9999px, 95px, 0);
        transform: skew(0.6deg);
    }

    60% {
        clip: rect(38px, 9999px, 65px, 0);
        transform: skew(0.2deg);
    }

    65% {
        clip: rect(95px, 9999px, 100px, 0);
        transform: skew(0.5deg);
    }

    70% {
        clip: rect(22px, 9999px, 52px, 0);
        transform: skew(0.4deg);
    }

    75% {
        clip: rect(68px, 9999px, 85px, 0);
        transform: skew(0.1deg);
    }

    80% {
        clip: rect(12px, 9999px, 35px, 0);
        transform: skew(0.3deg);
    }

    85% {
        clip: rect(52px, 9999px, 78px, 0);
        transform: skew(0.6deg);
    }

    90% {
        clip: rect(88px, 9999px, 98px, 0);
        transform: skew(0.2deg);
    }

    95% {
        clip: rect(42px, 9999px, 70px, 0);
        transform: skew(0.4deg);
    }

    100% {
        clip: rect(8px, 9999px, 25px, 0);
        transform: skew(0.5deg);
    }
}

@keyframes glitch-skew {

    0%,
    100% {
        transform: skew(0deg);
    }

    20% {
        transform: skew(1deg);
    }

    40% {
        transform: skew(-1deg);
    }

    60% {
        transform: skew(0.5deg);
    }

    80% {
        transform: skew(-0.5deg);
    }
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-red), var(--primary-blue));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 3s linear infinite;
    margin-bottom: 1rem;
}

@keyframes gradient {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--light-blue);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== BUTTONS ==================== */
.btn {
    position: relative;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: none;
    overflow: hidden;
    transition: all var(--transition-medium);
    display: inline-block;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ==================== SCROLL INDICATOR ==================== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--primary-blue);
    border-radius: 20px;
    margin: 0 auto 0.5rem;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {

    0%,
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-indicator p {
    font-size: 0.9rem;
    color: var(--light-blue);
}

/* ==================== SECTIONS ==================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-text-stroke: 2px var(--primary-blue);
    color: transparent;
    transform: translate(5px, 5px);
    opacity: 0.3;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--light-blue);
    margin-bottom: 4rem;
    font-weight: 300;
}

/* ==================== SERVICES SECTION ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(0, 31, 63, 0.3);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-red) 100%);
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-blue) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-medium);
    pointer-events: none;
}

.service-card:hover .card-glow {
    opacity: 0.2;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    position: relative;
    z-index: 1;
}

.card-icon svg {
    width: 100%;
    height: 100%;
    transition: transform var(--transition-medium);
}

.service-card:hover .card-icon svg {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.card-footer {
    position: relative;
    z-index: 1;
}

.learn-more {
    color: var(--primary-blue);
    font-weight: 600;
    display: inline-block;
    transition: transform var(--transition-fast);
}

.service-card:hover .learn-more {
    transform: translateX(5px);
}

/* ==================== ABOUT SECTION ==================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-text strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all var(--transition-medium);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ==================== 3D CUBE ==================== */
.cube-container {
    perspective: 1000px;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cube {
    width: 200px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube 20s infinite linear;
}

@keyframes rotateCube {
    from {
        transform: rotateX(0deg) rotateY(0deg);
    }

    to {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

.cube-face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.3), rgba(255, 0, 51, 0.3));
    border: 2px solid var(--primary-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    backdrop-filter: blur(5px);
}

.cube-face.front {
    transform: rotateY(0deg) translateZ(100px);
}

.cube-face.back {
    transform: rotateY(180deg) translateZ(100px);
}

.cube-face.right {
    transform: rotateY(90deg) translateZ(100px);
}

.cube-face.left {
    transform: rotateY(-90deg) translateZ(100px);
}

.cube-face.top {
    transform: rotateX(90deg) translateZ(100px);
}

.cube-face.bottom {
    transform: rotateX(-90deg) translateZ(100px);
}

/* ==================== CONTACT SECTION ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(0, 31, 63, 0.3);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 15px;
    transition: all var(--transition-medium);
}

.contact-item:hover {
    border-color: var(--primary-blue);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* ==================== CONTACT FORM ==================== */
.contact-form {
    background: rgba(0, 31, 63, 0.3);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(0, 102, 255, 0.3);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-medium);
    outline: none;
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    transition: all var(--transition-medium);
    font-size: 1rem;
}

.form-group input:focus~label,
.form-group input:valid~label,
.form-group textarea:focus~label,
.form-group textarea:valid~label {
    top: -1rem;
    font-size: 0.85rem;
    color: var(--primary-blue);
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-red));
    transition: width var(--transition-medium);
}

.form-group input:focus~.input-line,
.form-group textarea:focus~.input-line {
    width: 100%;
}

.form-group textarea {
    resize: none;
}

/* ==================== FOOTER ==================== */
.footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(0, 102, 255, 0.2);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    height: 50px;
    border-radius: 25% 10%;
}

.footer-logo p {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--white);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 50%;
    color: var(--primary-blue);
    transition: all var(--transition-medium);
}

.footer-social a:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 102, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ==================== REVEAL ON SCROLL ==================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 968px) {
    .nav-links {
        gap: 1rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .nav-links {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    section {
        padding: 4rem 0;
    }
}

/* ==================== TOAST NOTIFICATION STYLING ==================== */
.toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 10000;
}

.toast {
    min-width: 250px;
    max-width: 350px;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: var(--white);
    background: rgba(0, 102, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toast.toast-success {
    background: rgba(0, 200, 100, 0.9);
}

.toast.toast-error {
    background: rgba(200, 0, 0, 0.9);
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-icon {
    font-size: 1.2rem;
}
