* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent; /* Invisible track */
}

::-webkit-scrollbar-thumb {
    background: rgba(30, 58, 138, 0.3); /* Transparent blue thumb */
    border-radius: 5px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: rgba(30, 58, 138, 0.5); /* Slightly more opaque on hover */
    }

/* Firefox scrollbar */
html {
    scrollbar-color: rgba(30, 58, 138, 0.3) transparent; /* Blue thumb, invisible track */
    scrollbar-width: thin;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--primary-gradient);
    min-height: 100vh;
}

/* Header */
header {
    padding: 10px 0;
    background: var(--header-gradient);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px var(--shadow-light);
}

nav {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.logo {
    cursor: pointer;
}

    .logo img {
        width: 140px;
        height: auto;
    }

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--nav-link-color);
    font-size: 24px;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

    .hamburger::before,
    .hamburger::after,
    .hamburger span {
        content: '';
        display: block;
        width: 22px;
        height: 2px;
        background: white;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    align-items: center;
}

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        background: linear-gradient(135deg, #E31837 0%, #1E3A8A 50%, #DC2626 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        padding: 8px 16px;
        border-radius: 20px;
    }

        .nav-links a:hover,
        .nav-links a.active {
            background: rgba(227, 24, 55, 0.1);
            -webkit-text-fill-color: #E31837;
        }

/* Profile Picture and Dropdown */
.profile-container {
    position: relative;
    display: flex;
    align-items: center;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    transition: all 0.3s ease;
}

    .profile-pic:hover {
        transform: scale(1.1);
        box-shadow: 0 4px 12px var(--overlay-light);
    }

    .profile-pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.profile-initials {
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.profile-dropdown {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow-medium);
    z-index: 1001;
    min-width: 150px;
}

    .profile-dropdown.active {
        display: block;
    }

    .profile-dropdown a,
    .profile-dropdown button {
        display: block;
        padding: 12px 20px;
        text-decoration: none;
        color: var(--text-dark);
        font-size: 14px;
        font-weight: 500;
        border: none;
        background: none;
        width: 100%;
        text-align: left;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .profile-dropdown a:hover,
        .profile-dropdown button:hover {
            background: var(--bg-light);
            color: var(--primary-dark-blue);
        }

/* Hero Section */
.hero {
    margin-top: 90px;
    padding: 40px 20px;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.hero-content p {
    font-size: 20px;
    opacity: 0.9;
    color: white;
}

.hero-image {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-top: 20px;
}

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

/* General Section Styling */
section {
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-content {
    text-align: center;
}

    .section-content h2 {
        font-size: 36px;
        font-weight: 700;
        color: white;
        margin-bottom: 20px;
    }

    .section-content p {
        font-size: 16px;
        color: white;
        line-height: 1.6;
        max-width: 800px;
        margin: 0 auto 20px;
    }

/* Mission Section */
.mission-section {
    background: var(--hover-bg);
    border-radius: 15px;
    padding: 50px;
}

/* Story Section */
.story-section {
    padding: 50px;
}

    .story-section .section-content {
        text-align: center;
    }

/* Values Section */
.values-section {
    padding: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-medium);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px var(--shadow-heavy);
    }

    .value-card i {
        font-size: 40px;
        color: var(--primary-dark-blue);
        margin-bottom: 15px;
    }

    .value-card h3 {
        font-size: 22px;
        color: var(--text-dark);
        margin-bottom: 10px;
    }

    .value-card p {
        font-size: 14px;
        color: var(--text-medium);
    }

/* Call to Action Section */
.cta-section {
    text-align: center;
    padding: 50px;
    background: var(--primary-gradient);
    border-radius: 15px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--white);
    color: var(--primary-dark-blue);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 20px var(--shadow-heavy);
    }

/* Footer */
footer {
    background: var(--header-gradient);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    color: white;
    text-align: center;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

    .footer-links a {
        background: linear-gradient(135deg, #E31837 0%, #1E3A8A 50%, #DC2626 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        opacity: 0.9;
        transition: opacity 0.3s ease;
    }

        .footer-links a:hover {
            opacity: 1;
            -webkit-text-fill-color: #E31837;
        }

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

    .footer-social a {
        background: linear-gradient(135deg, #E31837 0%, #1E3A8A 50%, #DC2626 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 20px;
        opacity: 0.9;
        transition: opacity 0.3s ease;
    }

        .footer-social a:hover {
            opacity: 1;
            -webkit-text-fill-color: #E31837;
        }

.footer-copy {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
    width: 100%;
    color: white;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* Responsive Design */
@media (max-width: 1024px) {
.hero {
    margin-top: 100px;
    padding: 40px 15px;
}

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
     font-size: 16px;
    }

    .hero-image {
        height: 350px;
    }

    section {
        padding: 30px 15px;
    }

    .section-content h2 {
        font-size: 30px;
    }

    .section-content p {
        font-size: 14px;
    }

    .mission-section,
    .story-section,
    .values-section,
    .cta-section {
        padding: 30px;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .value-card {
        padding: 20px;
    }

        .value-card i {
            font-size: 30px;
        }

        .value-card h3 {
            font-size: 18px;
        }

        .value-card p {
            font-size: 12px;
        }

    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    nav {
        display: flex;
        justify-content: center;
  position: relative;
        align-items: center;
    }

    .logo {
display: flex;
        justify-content: center;
        align-items: center;
        flex-grow: 1;
 position: relative;
        z-index: 1002;
    }

     .logo img {
 width: 120px;
            height: auto;
   }

    .hamburger {
  display: flex;
 position: absolute;
 left: 10px;
        top: 50%;
  transform: translateY(-50%);
   z-index: 1003;
}

    .profile-pic {
        position: absolute;
  right: 10px;
  top: 50%;
        transform: translateY(-50%);
      z-index: 1003;
 }

    .nav-links {
     display: none;
        flex-direction: column;
      position: absolute;
 top: 60px;
left: 0;
     width: 100%;
   background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
        padding: 20px;
      box-shadow: 0 8px 20px var(--shadow-medium);
      border-radius: 8px;
        border-bottom: 2px solid rgba(227, 24, 55, 0.3);
        z-index: 1001;
    }

        .nav-links.active {
    display: flex;
 }

        .nav-links li {
      width: 100%;
            text-align: center;
    margin: 10px 0;
        }

        .nav-links a {
      display: block;
  padding: 12px;
            font-size: 16px;
 background: linear-gradient(135deg, #E31837 0%, #1E3A8A 50%, #DC2626 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    border-radius: 10px;
            transition: background 0.3s ease;
            font-weight: 600;
        }

.nav-links a:hover,
            .nav-links a.active {
 background: rgba(227, 24, 55, 0.1);
                -webkit-text-fill-color: #E31837;
            }

  .hero {
        margin-top: 90px;
      padding: 30px 15px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 14px;
    }

  .hero-image {
        height: 280px;
    }

    section {
    padding: 20px 10px;
  margin-top: 0.5rem;
    }

    .section-content h2 {
        font-size: 24px;
    }

    .section-content p {
        font-size: 12px;
    }

    .mission-section,
    .story-section,
    .values-section,
    .cta-section {
        padding: 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 12px 0;
    }

    nav {
        padding: 0 10px;
    }

    .logo img {
width: 130px;
    }

    .hero {
    margin-top: 85px;
        padding: 25px 10px;
}

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 12px;
  }

 .hero-image {
     height: 200px;
 }

    section {
margin-top: 0.5rem;
    }

    .section-content h2 {
        font-size: 20px;
    }

    .section-content p {
        font-size: 12px;
    }

    .mission-section,
    .story-section,
    .values-section,
    .cta-section {
        padding: 15px;
    }

    .value-card i {
        font-size: 24px;
    }

    .value-card h3 {
        font-size: 16px;
    }

    .value-card p {
        font-size: 12px;
    }

    .cta-button {
        padding: 8px 16px;
        font-size: 12px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .footer-social a {
        font-size: 16px;
    }

    .footer-copy {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .logo img {
        width: 45px;
    }

    .nav-links a {
    font-size: 14px;
    }

    .hero-content h1 {
   font-size: 22px;
  }
}
