/* Custom Cursor Follower */
#cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: 1px solid #3AB2D5;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    /* Removed CSS transitions for position to allow JS Lerp */
    transition: width 0.2s, height 0.2s, opacity 0.2s;
    opacity: 0.6;
    transform: translate3d(-50%, -50%, 0); /* Center the circle */
}

#cursor-follower.scale-150 {
    width: 60px;
    height: 60px;
    opacity: 0.3;
}

/* Marquee Animation */
.animate-marquee {
    animation: marquee 20s linear infinite;
    will-change: transform;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Slider Text Animations */
.slide-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

.swiper-slide-active .slide-content {
    opacity: 1;
    transform: translateY(0);
    transition: all 1s ease-out 0.5s; /* Delay to wait for slide fade */
}

/* Hide cursor on mobile */
@media (max-width: 768px) {
    #custom-cursor, #cursor-follower {
        display: none;
    }
}

/* Variables */
:root {
    --primary-color: #3AB2D5;
    --primary-dark: #299bbd;
    --secondary-color: #000000;
    --text-color: #333333;
    --text-light: #777777;
    --bg-light: #f9fbfd;
    --white: #ffffff;
    --dark: #111111;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(58, 178, 213, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: 1px solid rgba(255, 255, 255, 0.3);
/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: default !important; /* Force default cursor everywhere */
}

a, button, input, select, textarea, .cursor-pointer {
    cursor: pointer !important; /* Force pointer on interactive elements */
}   cursor: none; /* Hide default cursor */
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary-color);
}

.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.sub-heading {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.main-heading {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

.section-padding {
    padding: 100px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(58, 178, 213, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--secondary-color);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 50px; /* Adjust based on logo aspect ratio */
    width: auto;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white); /* Default for transparent header */
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
}
