:root {
    --bg-color: #ffffff;
    /* White background */
    --text-color: #333333;
    /* Dark Grey text */
    --primary-color: #0056b3;
    /* Blue from Logo */
    --secondary-color: #ff8c00;
    /* Dark Orange for accents/buttons */
    --accent-color: #ffa500;
    --glass-bg: rgba(255, 255, 255, 0.9);
    /* Light glass */
    --glass-border: rgba(0, 0, 0, 0.05);
    --font-main: 'Outfit', sans-serif;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    height: 100vh;
    overflow-y: scroll;
    cursor: none;
    /* Hide default cursor */
}

/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    z-index: 9999;
    pointer-events: none;
    box-shadow: 0 0 10px var(--secondary-color), 0 0 20px var(--secondary-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    z-index: 9998;
    pointer-events: none;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-outline {
    opacity: 1;
}

/* Scroll Snap Sections */
.snap-section {
    scroll-snap-align: start;
    min-height: 100vh;
    width: 100%;
    position: relative;
}

/* Background Glow Effect (Subtle for Light Theme) */
/* Background Glow Effect (Enhanced) */
.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 86, 179, 0.08), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 140, 0, 0.08), transparent 50%);
    z-index: -1;
    pointer-events: none;
    animation: bgPulse 10s ease-in-out infinite alternate;
}

@keyframes bgPulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Intro Section */
.intro-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* Align content to the top */
    padding-top: 25vh;
    /* Move it down towards middle */
    text-align: center;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    /* Ensure particles don't scroll bar */
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Below content but above background */
    pointer-events: none;
}

.intro-logo,
.intro-title,
.intro-subtitle,
.btn-enter {
    position: relative;
    z-index: 2;
    /* Ensure content is above canvas */
}

.intro-logo {
    width: 450px;
    /* Larger for the full logo */
    height: auto;
    margin-bottom: 2rem;
    margin-top: 2rem;
    /* Ensure it has space from top edge */
    /* No pulse animation for the main static logo, or subtle */
    animation: float 6s ease-in-out infinite, glowPulse 4s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(0, 86, 179, 0.3));
    transition: filter 0.3s ease;
    outline: none;
    /* Remove default browser outline */
}

.intro-logo:focus {
    filter: drop-shadow(0 0 50px rgba(0, 86, 179, 0.8)) drop-shadow(0 0 20px rgba(255, 140, 0, 0.6));
    transform: scale(1.05);
}

.intro-logo:hover {
    filter: drop-shadow(0 0 30px rgba(0, 86, 179, 0.6)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

@keyframes glowPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 15px rgba(0, 86, 179, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 25px rgba(0, 86, 179, 0.5)) drop-shadow(0 0 5px rgba(255, 140, 0, 0.2));
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.intro-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: none;
    /* Hiding text title since we have full logo */
}

.intro-subtitle {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 500;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    opacity: 1;
    transform: translateY(0);
}

.intro-subtitle.fade-out {
    opacity: 0;
    transform: translateY(10px);
    /* Optional: slight slide down/up effect */
}

.btn-enter {
    padding: 1rem 3rem;
    background: #ffffff;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.1);
}

.btn-enter:hover {
    background: var(--secondary-color);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.3);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.hidden {
    transform: translateY(-100%);
}

.logo-container .logo {
    height: 40px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Primary Button (White bg, Orange text) */
.btn-primary {
    background: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    color: var(--secondary-color) !important;
    font-weight: 600;
    border: 2px solid var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--secondary-color);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

/* Main Content Wrapper */
.main-content-wrapper {
    padding-top: 80px;
    background: #f9fafb;
    /* Very light grey for main content area */
}

/* Hero Section */
.hero-section {
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #111;
}

.highlight {
    color: var(--primary-color);
    /* Blue highlight instead of gold/yellow */
}

.hero-content p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-glow {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: var(--secondary-color);
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.15);
}

.btn-glow:hover {
    transform: scale(1.05);
    background: var(--secondary-color);
    color: #ffffff;
    box-shadow: 0 4px 25px rgba(255, 140, 0, 0.4);
}

/* Services Section */
.services-section {
    padding: 5rem 5%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 2rem;
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: #666;
}

/* Contact Section */
.contact-section {
    padding: 5rem 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f9fafb;
}

.contact-container {
    width: 100%;
    max-width: 700px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-hover);
}

.contact-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    margin-top: -2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

input,
textarea {
    width: 100%;
    padding: 1rem;
    background: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    color: #333;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #ffffff;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-submit:hover {
    background: var(--secondary-color);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Loader */
.loader {
    border: 3px solid rgba(255, 140, 0, 0.3);
    border-radius: 50%;
    border-top: 3px solid var(--secondary-color);
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.form-message {
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
    min-height: 1.5rem;
}

.form-message.success {
    color: #10b981;
}

.form-message.error {
    color: #ef4444;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    color: #666;
    border-top: 1px solid #e5e7eb;
    background: #ffffff;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
        /* Simple mobile hide for now */
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .intro-logo {
        width: 80%;
        max-width: 400px;
    }
}