/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&family=Rubik:wght@400;500&display=swap');

/* CSS Variables */
:root {
    /* Color Palette - Split-Complementary */
    --primary-color: #00A8E8; /* Bold Blue */
    --secondary-color: #FF5733; /* Bold Orange */
    --accent-color: #FFC300; /* Accent Yellow */
    --dark-color: #333333; /* Dark for text */
    --light-color: #FFFFFF; /* Light for text */
    --background-gradient: linear-gradient(135deg, #00A8E8 0%, #FFC300 100%);
    --overlay-color: rgba(0, 0, 0, 0.5);
    
    /* Font Families */
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Rubik', sans-serif;
    
    /* Transition Settings */
    --transition-speed: 0.3s;
    
    /* Breakpoints */
    --breakpoint-mobile: 768px;
    
    /* Utility Colors */
    --hover-primary: #007fad;
    --hover-secondary: #cc4a1b;
    
    /* Glassmorphism */
    --glass-background: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-blur: 10px;
}

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

body {
    font-family: var(--font-body);
    color: var(--dark-color);
    background-color: #f0f2f5;
    line-height: 1.6;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass-background);
    backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: background 0.3s ease;
}

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

.logo a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

nav {
    position: relative;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color var(--transition-speed);
}

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

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-color);
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--light-color);
    z-index: 1;
    max-width: 600px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
}

.btn:hover {
    background-color: var(--hover-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #ffffff;
}

.features h2 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--glass-background);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.feature-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature-card p {
    font-size: 1rem;
    color: var(--dark-color);
}

/* Insights Section */
.insights {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.insights h2 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    padding-left: 70px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 10px;
    width: 20px;
    height: 20px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    border: 4px solid var(--light-color);
}

.timeline-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-item p {
    font-size: 1rem;
    color: var(--dark-color);
}

/* News Section */
.news {
    padding: 80px 0;
    background-color: #ffffff;
}

.news h2 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.news-item {
    background: var(--glass-background);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.news-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.news-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 15px;
    color: var(--primary-color);
}

.news-item p {
    font-size: 1rem;
    margin: 0 15px 15px 15px;
    color: var(--dark-color);
}

.news-item a {
    display: block;
    text-align: right;
    margin: 0 15px 15px 15px;
    font-weight: 500;
    color: var(--secondary-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.news-item a:hover {
    color: var(--hover-secondary);
}

/* Press Section */
.press {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.press h2 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.press-item {
    background: var(--glass-background);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.press-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.press-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.press-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 15px;
    color: var(--primary-color);
}

.press-item p {
    font-size: 1rem;
    margin: 0 15px 15px 15px;
    color: var(--dark-color);
}

/* External Resources Section */
.resources {
    padding: 80px 0;
    background-color: #ffffff;
}

.resources h2 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.resources-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.resource-item {
    background: var(--glass-background);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 20px;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.resource-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.resource-item a {
    text-decoration: none;
    color: var(--dark-color);
    transition: color var(--transition-speed);
}

.resource-item a:hover h3 {
    color: var(--primary-color);
}

.resource-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.resource-item p {
    font-size: 1rem;
    color: var(--dark-color);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact h2 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.contact-form {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.contact-form form {
    background: var(--glass-background);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px var(--primary-color);
    outline: none;
}

.contact-form .btn {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
}

.contact-form .btn:hover {
    background-color: var(--hover-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 40px 0;
}

.footer-links,
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a,
.social-links a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-speed);
}

.footer-links a:hover,
.social-links a:hover {
    color: var(--primary-color);
}

.social-links a {
    font-size: 1.2rem;
}

.footer-links a {
    font-size: 1rem;
}

footer p {
    text-align: center;
    font-size: 0.9rem;
    color: var(--light-color);
}

/* Success Page */
.success-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f2f5;
}

.success-page .content {
    text-align: center;
    padding: 40px;
    background: var(--glass-background);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.success-page h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.success-page p {
    font-size: 1.2rem;
    color: var(--dark-color);
}

/* Privacy and Terms Pages */
.privacy,
.terms {
    padding-top: 100px;
    padding: 80px 0;
    background-color: #ffffff;
}

.privacy h2,
.terms h2 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.privacy p,
.terms p {
    max-width: 800px;
    margin: 0 auto 20px auto;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-color);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color var(--transition-speed);
}

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

/* Read More Links */
.read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-speed);
}

.read-more:hover {
    color: var(--hover-secondary);
}

/* Social Links Text */
.social-links a {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Responsive Styles */
@media (max-width: var(--breakpoint-mobile)) {
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background: var(--glass-background);
        backdrop-filter: blur(var(--glass-blur));
        flex-direction: column;
        width: 200px;
        padding: 20px;
        border: 1px solid var(--glass-border);
        display: none;
    
    }

    .nav-links.active {
        display: flex;
    }

    .burger {
        display: flex;
    }
   
}
html,body{
    overflow-x: hidden;
}
@media (max-width: 768px) {
    header .container{
        flex-direction: column;
    }
    .nav-links {
        flex-wrap: wrap;
    }
}