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

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

:root {
    /* Cloud-inspired color palette */
    --sky-50: #f0f9ff;
    --sky-100: #e0f2fe;
    --sky-200: #bae6fd;
    --sky-300: #7dd3fc;
    --sky-400: #38bdf8;
    --sky-500: #0ea5e9;
    --sky-600: #0284c7;
    --sky-700: #0369a1;
    --sky-800: #075985;
    --sky-900: #0c4a6e;
    
    --cyan-50: #ecfeff;
    --cyan-100: #cffafe;
    --cyan-200: #a5f3fc;
    --cyan-300: #67e8f9;
    --cyan-400: #22d3ee;
    --cyan-500: #06b6d4;
    --cyan-600: #0891b2;
    
    /* Neutral palette */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    
    /* Semantic colors */
    --primary: var(--sky-600);
    --primary-light: var(--sky-400);
    --primary-dark: var(--sky-700);
    --accent: var(--cyan-400);
    --text-primary: var(--slate-900);
    --text-secondary: var(--slate-600);
    --text-light: var(--slate-500);
    --bg-primary: #ffffff;
    --bg-secondary: var(--slate-50);
    --bg-tertiary: var(--sky-50);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-sky: 0 8px 16px -4px rgba(14, 165, 233, 0.15);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(to bottom, var(--bg-primary) 0%, var(--sky-50) 100%);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* Subtle cloud background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60vh;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(56, 189, 248, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(6, 182, 212, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(14, 165, 233, 0.05) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-base);
}

header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
}

.header-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: var(--transition-fast);
    flex-shrink: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo:hover {
    color: var(--primary);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--sky-400) 0%, var(--cyan-400) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sky);
}

nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.625rem 1rem;
    border-radius: var(--radius-md);
    position: relative;
}

nav a:hover {
    color: var(--primary);
    background: var(--sky-50);
}

nav a.active {
    color: var(--primary);
    background: var(--sky-100);
}

.demo-button {
    background: linear-gradient(135deg, var(--sky-500) 0%, var(--sky-600) 100%);
    color: white;
    padding: 0.625rem 1.5rem;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    font-weight: 600;
    font-size: 0.9375rem;
    box-shadow: var(--shadow-sky);
    flex-shrink: 0;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.demo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -4px rgba(14, 165, 233, 0.25);
    background: linear-gradient(135deg, var(--sky-600) 0%, var(--sky-700) 100%);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.mobile-menu-toggle:hover {
    background: var(--sky-50);
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #000000;
    transition: var(--transition-base);
    border-radius: 2px;
    margin: 5px auto;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Main Content */
main {
    position: relative;
}

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

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--slate-900) 0%, var(--sky-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-break: keep-all;
    white-space: nowrap;
}

.hero p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    font-weight: 400;
}

/* CSPM Overview Section */
.cspm-overview {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
}

.cspm-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sky-200), transparent);
}

.cspm-overview h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.cspm-content {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.cspm-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.cspm-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--slate-200);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sky-400), var(--cyan-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--sky-200);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
    display: flex;
    justify-content: center; 
    align-items: center;     
    gap: 0.75rem;
}

.feature-card h3 span {
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--sky-100), var(--cyan-100));
    border-radius: var(--radius-lg);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* Compliance Section */
.compliance {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--bg-primary) 0%, var(--bg-tertiary) 100%);
}

.compliance h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.compliance-intro {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 4rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.compliance-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--slate-200);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.compliance-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--sky-300);
}

.compliance-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
}

.compliance-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
}

.compliance-detail {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

/* CTA Section */
.cta {
    padding: 8rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--sky-500) 0%, var(--cyan-500) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
}

.cta p {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--sky-600);
    text-decoration: none;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.2);
    position: relative;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px -5px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.contact h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-item {
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--sky-50) 0%, white 100%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--slate-200);
    transition: var(--transition-base);
    text-align: center;
}

.contact-item:hover {
    border-color: var(--sky-300);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.contact-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    border-bottom: 2px solid transparent;
}

.contact-item a:hover {
    border-bottom-color: var(--primary);
}

/* Footer */
footer {
    background: var(--slate-900);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--slate-300);
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 500;
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: var(--sky-400);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-800);
    color: var(--slate-400);
    font-size: 0.875rem;
}

/* Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--slate-100);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--sky-400), var(--cyan-400));
    border-radius: 6px;
    border: 2px solid var(--slate-100);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--sky-500), var(--cyan-500));
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--sky-400) var(--slate-100);
}

/* Text selection styling */
::selection {
    background-color: var(--sky-400);
    color: white;
}

::-moz-selection {
    background-color: var(--sky-400);
    color: white;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--sky-400);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 968px) {
    .header-content {
        padding: 0 1.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.75rem 0;
    }

    .header-content {
        padding: 0 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: white;
        padding: 6rem 2rem 2rem;
        transition: left var(--transition-slow);
        box-shadow: var(--shadow-xl);
        overflow-y: auto;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        align-items: stretch;
    }

    nav li {
        width: 100%;
        border-bottom: 1px solid var(--slate-100);
    }

    nav a {
        display: block;
        font-size: 1rem;
        padding: 1.25rem 0;
        width: 100%;
        border-radius: 0;
    }

    .demo-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .hero {
        padding: 5rem 0 4rem;
    }
    
    .hero h1 {
        white-space: normal;
    }

    .cspm-overview,
    .compliance,
    .contact {
        padding: 4rem 0;
    }

    .cta {
        padding: 5rem 0;
    }

    .cspm-features,
    .compliance-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature-card,
    .compliance-card {
        padding: 1.75rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-item {
        padding: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}
.highlight-red {
  color: red;
}
.highlight-black{
    color : black;
}
.highlight-blue{
    color: blue
}
@media (max-width: 480px) {
    .header-content {
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .demo-button {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
    }

    .hero {
        padding: 4rem 0 3rem;
    }

    .cspm-overview,
    .compliance,
    .contact {
        padding: 3rem 0;
    }

    .cta {
        padding: 4rem 0;
    }

    .feature-card,
    .compliance-card,
    .contact-item {
        padding: 1.5rem;
    }

    nav {
        width: 100%;
    }
}
/* Snow Effect Styles */
/* Update these in your CSS block */
.cloud {
    position: fixed;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    z-index: -2;           /* behind most content, but in front of your ::before gradient */
    box-shadow: 
        0 0 40px 15px rgba(255,255,255,0.7),
        inset 0 0 30px rgba(200,220,255,0.4);
    transform: translateX(-30%) scaleX(1.4); /* flatter & wider look */
    will-change: transform;
}

/* Make them puffy by using multiple pseudo-elements or just accept simple circles */
.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 30px 10px rgba(255,255,255,0.6);
}

.cloud::before {
    width: 60%;
    height: 60%;
    top: -30%;
    left: 10%;
}

.cloud::after {
    width: 70%;
    height: 70%;
    bottom: -30%;
    right: 10%;
}

@keyframes drift {
    0% {
        transform: translateX(-30%) translateY(0);
    }
    100% {
        transform: translateX(130vw) translateY(30px);   /* gentle downward drift */
    }
}
/* Print styles */
@media print {
    header,
    footer,
    .demo-button,
    .cta,
    .mobile-menu-toggle,
    .menu-overlay {
        display: none;
    }
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.compliance-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.compliance-card:nth-child(1) { animation-delay: 0.1s; }
.compliance-card:nth-child(2) { animation-delay: 0.2s; }
.compliance-card:nth-child(3) { animation-delay: 0.3s; }
.compliance-card:nth-child(4) { animation-delay: 0.4s; }
.compliance-card:nth-child(5) { animation-delay: 0.5s; }

/* Improve performance */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
nav ul {
    list-style-type: none;
    display: flex;
    margin-right: 20px;
}

nav ul li {
    margin-left: 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
}

.demo-button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.demo-button:hover {
    background-color: #0056b3;
}

/* Hero Section Styles */
.hero {
    text-align: center;
    padding: 100px 0;
    background-color: #f9f9f9;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

/* Content Section Styles */
.content-section {
    padding: 50px 0;
}

.content-section h1, .content-section h2, .content-section h3 {
    color: #333;
}

.content-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-section ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
}



/* Responsive Styles */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: start;
    }

    nav ul {
        margin-bottom: 10px;
        width: 100%;
    }

    nav ul li {
        margin-left: 0;
        margin-right: 20px;
    }
}