/* CSS Reset and Variables */
:root {
    /* Colors */
    --primary-color: #FF5722;
    --primary-dark: #D84315;
    --secondary-color: #FFA000;
    --text-light: #ffffff;
    --text-dark: #333333;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-800: #343a40;
    
    /* Typography */
    --font-size-base: 16px;
    --font-size-sm: 0.875rem;    /* 14px */
    --font-size-md: 1rem;        /* 16px */
    --font-size-lg: 1.125rem;    /* 18px */
    --font-size-xl: 1.25rem;     /* 20px */
    --font-size-2xl: 1.5rem;     /* 24px */
    --font-size-3xl: 2rem;       /* 32px */
    --font-size-4xl: 2.5rem;     /* 40px */
    
    /* Spacing */
    --spacing-xs: 0.25rem;       /* 4px */
    --spacing-sm: 0.5rem;        /* 8px */
    --spacing-md: 1rem;          /* 16px */
    --spacing-lg: 1.5rem;        /* 24px */
    --spacing-xl: 2rem;          /* 32px */
    --spacing-2xl: 3rem;         /* 48px */
    
    /* Other */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-max-width: 1200px;
    --header-height: 80px;
    --background-overlay: rgba(0, 0, 0, 0.7);
    --nav-background: rgba(0, 0, 0, 0.9);
}

/* Base Styles */
html {
    font-size: var(--font-size-base);
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: url('assets/Image2.jpg') no-repeat center center fixed;
    background-size: cover;
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Adjusted opacity to 0.4 for better visibility */
    z-index: -1;
}

.container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    color: var(--text-light);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: var(--nav-background);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

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

.header-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.header-logo {
    height: 50px;
    width: auto;
}

h1 {
    font-size: large;
    margin: 0;
    font-weight: 600;
    color: var(--text-light);
}

/* Navigation */
.horizontal-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.horizontal-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.horizontal-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: small;
    padding: 8px 0;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
}

.horizontal-nav a:hover,
.horizontal-nav a.active {
    background: var(--primary-color);
    transform: translateY(-2px);
    padding: 10px;
}

/* Mobile Menu Toggle */
.menu-checkbox {
    display: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle i {
    transition: transform 0.3s ease;
}

/* Hero Section */
.hero {
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    margin-top: 80px;
}

.hero-overlay {
    background: var(--background-overlay);
    padding: clamp(20px, 5vw, 40px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    max-width: 800px;
    width: 100%;
}

.hero-overlay img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero h2 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: var(--text-light);
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: #ddd;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Content Section */
.content {
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 0;
    margin: 40px 0;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 30px;
}

.content p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin-bottom: 20px;
}

/* Buttons and Links */
.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 15px 30px;
    text-decoration: none;
    font-size: clamp(1rem, 2vw, 1.2rem);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.cta-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
    background: var(--background-overlay);
    backdrop-filter: blur(5px);
}

footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .horizontal-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--nav-background);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        overflow-y: auto;
    }

    .menu-checkbox:checked ~ .horizontal-nav {
        left: 0;
    }

    .menu-checkbox:checked ~ .menu-toggle i {
        transform: rotate(90deg);
    }

    .horizontal-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        align-items: center;
    }

    .horizontal-nav a {
        display: block;
        padding: 15px;
        text-align: center;
        font-size: 1.1rem;
    }

    .header-container {
        padding: 0 10px;
    }

    .hero {
        padding-top: 120px;
    }

    .content {
        margin: 20px;
    }
}

@media screen and (max-width: 480px) {
    .header-logo-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .header-logo {
        height: 40px;
    }

    .hero-overlay {
        padding: 20px;
    }
}

/* Report Page Specific Styles */
.report-content {
    margin-top: 120px;
}

.report-content h3 {
    color: var(--primary-color);
    margin-top: 30px;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.report-content ul, 
.report-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.report-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.report-content strong {
    color: var(--primary-dark);
}

.report-content p {
    text-align: justify;
    margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
    .report-content {
        margin-top: 100px;
    }
}
