@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --surface: rgba(0, 0, 0, 0.03);
    --surface-hover: rgba(0, 0, 0, 0.06);
    --accent-blue: #5D9CEC;
    --accent-blue-dark: #4A90E2;
    --text-primary: #050505;
    --text-secondary: #666666;
    --border: rgba(0, 0, 0, 0.08);
    --glass-blur: blur(12px);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    background-color: var(--bg-white);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
}

p {
    color: var(--text-secondary);
}

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

/* Glassmorphism Utility */
.glass {
    background: var(--surface);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border);
    border-radius: 20px;
}

.glass:hover {
    background: var(--surface-hover);
    border-color: rgba(0, 0, 0, 0.15);
}

/* Gradients */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
}

/* Layout */
.container-new {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 120px 0;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: var(--glass-blur);
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent-blue);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 60%;
    opacity: 0.15;
    z-index: -1;
    filter: blur(40px);
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 84px;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Buttons */
.btn-premium {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--accent-blue);
    color: var(--bg-white);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(93, 156, 236, 0.3);
}

.btn-outline {
    border: 1px solid var(--border);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: var(--surface);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

/* Grid Background Utility */
.bg-grid {
    background-size: 40px 40px;
    background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
}

/* Sections */
section {
    padding: 160px 0;
    position: relative;
}

.section-head {
    max-width: 700px;
    margin-bottom: 80px;
}

.section-head.center {
    margin: 0 auto 80px;
    text-align: center;
}

/* Ticker */
.ticker-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 40px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.ticker-content {
    display: inline-block;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 40px;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    opacity: 0.6;
}

.ticker-item span {
    color: var(--accent-blue);
    margin-right: 15px;
}

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

/* Cards */
.service-card {
    padding: 60px 40px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

.service-card .icon-box {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(93, 156, 236, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    transition: var(--transition-smooth);
}

.service-card:hover .icon-box {
    background: var(--accent-blue);
    color: white;
}

.service-card:hover .icon-box i {
    color: white !important;
}

/* Stats */
.grid-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-item h3 {
    font-size: 48px;
    margin-bottom: 10px;
}

/* Why Us */
.why-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.why-item .icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 15px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* Testimonials */
.testimonial-card {
    padding: 40px;
    border-radius: 30px;
}

.testimonial-card .quote {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    font-size: 18px;
    margin: 0;
}

.author-info p {
    font-size: 14px;
    margin: 0;
}


/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 768px) {
    .container-new {
        padding: 0 20px;
    }
    .hero-content h1 {
        font-size: 48px;
    }
    .nav-links {
        display: none;
    }
}
