
/* Base Styles */
:root {
    --brand: #01008a;
    --brand-light: #3333a8;
    --brand-lighter: #6565c6;
    --brand-dark: #00006d;
    --brand-darker: #000050;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-800);
    line-height: 1.5;
    background-color: #fff;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* Utility Classes */
.section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 6rem 0;
    }
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* Utility Classes */
.section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 6rem 0;
    }
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.w-full {
    width: 100%;
}

.space-y-2>*+* {
    margin-top: 0.5rem;
}

.space-y-6>*+* {
    margin-top: 1.5rem;
}

.space-x-4>*+* {
    margin-left: 1rem;
}

.space-x-8>*+* {
    margin-left: 2rem;
}

.text-center {
    text-align: center;
}

.text-brand {
    color: var(--brand);
}

.text-gray-500 {
    color: var(--gray-500);
}

.text-gray-600 {
    color: var(--gray-600);
}

.text-white {
    color: white;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mr-3 {
    margin-right: 0.75rem;
}

.mr-4 {
    margin-right: 1rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.z-50 {
    z-index: 50;
}

.overflow-hidden {
    overflow: hidden;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.fixed {
    position: fixed;
}

.absolute {
    position: absolute;
}

.top-0 {
    top: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

/* Padding Utilities */
.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.pt-4 {
    padding-top: 1rem;
}

.pt-8 {
    padding-top: 2rem;
}

.pt-12 {
    padding-top: 3rem;
}

.pt-16 {
    padding-top: 4rem;
}

.pt-20 {
    padding-top: 5rem;
}

.pt-24 {
    padding-top: 6rem;
}

.pt-28 {
    padding-top: 7rem;
}

.pt-32 {
    padding-top: 8rem;
}

.pb-2 {
    padding-bottom: 0.5rem;
}

.pb-4 {
    padding-bottom: 1rem;
}

.pb-8 {
    padding-bottom: 2rem;
}

.pb-12 {
    padding-bottom: 3rem;
}

.pb-16 {
    padding-bottom: 4rem;
}

.pb-20 {
    padding-bottom: 5rem;
}

.pb-24 {
    padding-bottom: 6rem;
}

.pb-28 {
    padding-bottom: 7rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.hidden {
    display: none;
}

.grid {
    display: grid;
}

.hidden {
    display: none;
}

.grid {
    display: grid;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

/* Background Colors */
.bg-transparent {
    background-color: transparent;
}

.bg-white {
    background-color: white;
}

.bg-gray-50 {
    background-color: var(--gray-50);
}

.bg-gray-900 {
    background-color: var(--gray-900);
}

.bg-brand {
    background-color: var(--brand);
}

/* Responsive Grid */
.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:flex-row {
        flex-direction: row;
    }

    .md\:items-start {
        align-items: flex-start;
    }

    .md\:mb-0 {
        margin-bottom: 0;
    }

    .md\:text-left {
        text-align: left;
    }

    .md\:w-1\/2 {
        width: 50%;
    }

    .md\:hidden {
        display: none;
    }

    .md\:flex {
        display: flex;
    }

    .md\:text-xl {
        font-size: 1.25rem;
    }

    .md\:text-3xl {
        font-size: 1.875rem;
    }

    .md\:text-4xl {
        font-size: 2.25rem;
    }

    .md\:text-5xl {
        font-size: 3rem;
    }

    .md\:leading-tight {
        line-height: 1.25;
    }

    .md\:btn-auto {
        width: auto;
    }

    .md\:pt-40 {
        padding-top: 10rem;
    }

    .md\:pb-28 {
        padding-bottom: 7rem;
    }

    .md\:pt-32 {
        padding-top: 8rem;
    }

    .md\:pb-20 {
        padding-bottom: 5rem;
    }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:flex-row {
        flex-direction: row;
    }

    .md\:items-start {
        align-items: flex-start;
    }

    .md\:mb-0 {
        margin-bottom: 0;
    }

    .md\:text-left {
        text-align: left;
    }

    .md\:w-1\/2 {
        width: 50%;
    }

    .md\:hidden {
        display: none;
    }

    .md\:flex {
        display: flex;
    }

    .md\:text-xl {
        font-size: 1.25rem;
    }

    .md\:text-3xl {
        font-size: 1.875rem;
    }

    .md\:text-4xl {
        font-size: 2.25rem;
    }

    .md\:text-5xl {
        font-size: 3rem;
    }

    .md\:leading-tight {
        line-height: 1.25;
    }

    .md\:btn-auto {
        width: auto;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lg\:flex-row {
        flex-direction: row;
    }

    .lg\:w-1\/2 {
        width: 50%;
    }

    .lg\:w-1\/3 {
        width: 33.333333%;
    }

    .lg\:w-2\/3 {
        width: 66.666667%;
    }

    .lg\:gap-16 {
        gap: 4rem;
    }

    .lg\:text-5xl {
        font-size: 3rem;
    }
}

/* Navbar */
#navbar {
    transition: all 0.3s ease;
}

#navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.nav-link {
    color: var(--gray-800);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--brand);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--brand);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.mobile-nav-link {
    padding: 0.75rem 1.5rem;
    color: var(--gray-800);
    transition: all 0.2s ease;
}

.mobile-nav-link:hover {
    color: var(--brand);
    background-color: var(--gray-50);
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background-color: rgba(1, 0, 138, 0.1);
    color: var(--brand);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--brand);
    color: white;
}

.btn-primary:hover {
    background-color: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--brand);
    color: var(--brand);
}

.btn-secondary:hover {
    background-color: var(--gray-50);
    border-color: var(--gray-400);
    color: var(--gray-800);
}

.btn-block {
    width: 100%;
}

/* Hero Section */
.bg-blob-1 {
    position: absolute;
    top: -2.5rem;
    right: -2.5rem;
    width: 18rem;
    height: 18rem;
    background-color: rgba(1, 0, 138, 0.05);
    border-radius: 50%;
    filter: blur(3rem);
    z-index: -1;
}

.bg-blob-2 {
    position: absolute;
    top: 50%;
    left: -5rem;
    width: 18rem;
    height: 18rem;
    background-color: rgba(1, 0, 138, 0.05);
    border-radius: 50%;
    filter: blur(3rem);
    z-index: -1;
}

.float-card {
    position: absolute;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    z-index: 10;
}

.float-card-1 {
    top: -1.5rem;
    left: -1.5rem;
    animation: float 5s ease-in-out infinite;
}

.float-card-2 {
    bottom: 3rem;
    right: -1.5rem;
    animation: float 5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.float-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(1, 0, 138, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    color: var(--brand);
}

/* Services Section */
.section-title {
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 1.25rem;
        margin-bottom: 3rem;
    }
}

.service-card {
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--gray-100);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-lighter);
    background-color: white;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* About Section */
.decorative-border {
    position: absolute;
    z-index: -10;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
    border: 2px solid var(--brand);
}

.float-stat {
    position: absolute;
    bottom: 2rem;
    right: -3rem;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(229, 231, 235, 0.5);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    border-radius: 0.75rem;
    animation: float 5s ease-in-out infinite;
    z-index: 500;
}

.float-stat-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(1, 0, 138, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(1, 0, 138, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--brand);
}

/* Testimonials Section */
.quote-icon {
    position: absolute;
    top: -2.5rem;
    left: -1rem;
    font-size: 7.5rem;
    color: rgba(1, 0, 138, 0.05);
    transform: rotate(-12deg);
    z-index: 0;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    padding-bottom: 3rem;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-out;
}

.testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 1rem;
}

.testimonial-card {
    padding: 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(229, 231, 235, 0.5);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-image {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .testimonial-image {
        width: 6rem;
        height: 6rem;
    }
}

.star-rating {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
    color: var(--brand);
}

@media (min-width: 768px) {
    .star-rating {
        justify-content: flex-start;
    }
}

.testimonial-quote {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-name {
    font-weight: 600;
    color: var(--gray-900);
}

.testimonial-position {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    .testimonial-nav {
        padding: 0 1rem;
    }
}

.testimonial-prev,
.testimonial-next {
    width: 2.5rem;
    height: 2.5rem;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--gray-50);
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonial-indicator {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background-color: var(--gray-300);
    transition: all 0.3s ease;
    cursor: pointer;
}

.testimonial-indicator.active {
    background-color: var(--brand);
    width: 2rem;
    border-radius: 1rem;
}

/* Clients Section */
.client-logos-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 4rem;
    margin: 0 auto;
}

.client-logos {
    display: flex;
    position: absolute;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    flex-shrink: 0;
}

.client-logo img {
    height: 4rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.client-logo img:hover {
    opacity: 1;
}

.client-fade-left,
.client-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4rem;
    z-index: 10;
}

.client-fade-left {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.client-fade-right {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

/* Contact Section */
.contact-info-card,
.contact-form-card {
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(229, 231, 235, 0.5);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(1, 0, 138, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    color: var(--brand);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(1, 0, 138, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--gray-800);
}

.social-icon:hover {
    background-color: var(--brand);
    color: white;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.25rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 2px rgba(1, 0, 138, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 6rem;
}

.form-success {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
}

.success-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #10b981;
    font-size: 1.5rem;
}

/* Footer */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-800);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background-color: var(--brand);
}

.footer-links {
    list-style: none;
    space: 0.75rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    margin-bottom: 1rem;
    align-items: flex-start;
    color: var(--gray-400);
}

.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid var(--gray-800);
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-fade-in {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeIn 0.7s ease-out forwards;
}

.animate-fade-in-right {
    opacity: 0;
    transform: translateX(20px);
    animation: fadeInRight 0.7s ease-out forwards;
}

.animate-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease, transform 1s ease;
}

.animate-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.hero-padding {
    padding: 40px;
}

/* #mobile-nav{
    display: none;
} */
.mobile-nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    /* Equivalent to bg-white/95 */
    backdrop-filter: blur(8px);
    /* Equivalent to backdrop-blur-md */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Equivalent to shadow-lg */
    transition: transform 0.3s ease-in-out;
    transform: translateY(-200%);
    /* Default hidden state */
}

@media (max-width:600px) {
    .hero-padding {
        padding: 10px;
    }

    #about {
        overflow: hidden;
    }

    .decorative-border {
        position: absolute;
        z-index: -10;
        bottom: -6px;
        right: -11px;
        width: 98%;
    }

    .float-stat {
        position: absolute;
        bottom: -2rem;
        right: 1rem;
        padding: 10px 15px;
    }

    .float-stat .text-3xl {
        font-size: 22px;
    }

    .btn {
        font-size: 14px;
    }

    #navbar {
        z-index: 9999;
    }

    #mobile-nav {
        /* display: none; */
        z-index: 9911;
        /* background: white; */
    }


    /* To make it visible */
    .mobile-nav.active {
        transform: translateY(0);
    }
}
