* {
    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;
    overflow-x: hidden;
}

/* 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-red);
        }

/* Hero Section */
.hero {
    margin-top: 90px;
    padding: clamp(20px, 5vw, 40px) clamp(10px, 2vw, 20px);
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.hero-content p {
    font-size: clamp(16px, 2vw, 20px);
    opacity: 0.9;
    color: white;
}

.hero-image {
    width: 100%;
    height: clamp(250px, 45vw, 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: clamp(20px, 5vw, 40px) clamp(10px, 2vw, 20px);
}

.section-content {
    text-align: center;
}

    .section-content h2 {
        font-size: clamp(28px, 4vw, 36px);
        font-weight: 700;
        color: white;
        margin-bottom: 20px;
    }

    .section-content p {
        font-size: clamp(14px, 1.8vw, 16px);
        color: white;
        line-height: 1.6;
        max-width: 800px;
        margin: 0 auto 20px;
    }

/* Contact Info Section */
.contact-info-section {
    background: var(--hover-bg);
    border-radius: 15px;
    padding: clamp(30px, 5vw, 50px);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(20px, 3vw, 30px);
    margin-top: 30px;
}

.contact-card {
    background: var(--white);
    border-radius: 15px;
    padding: clamp(20px, 3vw, 30px);
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-medium);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px var(--shadow-heavy);
    }

    .contact-card i {
        font-size: clamp(30px, 4vw, 40px);
        color: var(--primary-red);
        margin-bottom: 15px;
    }

    .contact-card h3 {
        font-size: clamp(18px, 2vw, 22px);
        color: var(--text-dark);
        margin-bottom: 10px;
    }

    .contact-card p {
        font-size: clamp(12px, 1.5vw, 14px);
        color: var(--text-medium);
    }

    .contact-card a {
        color: var(--primary-red);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .contact-card a:hover {
            color: var(--primary-orange);
        }

/* Contact Form Section */
.contact-form-section {
    padding: clamp(30px, 5vw, 50px);
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: clamp(15px, 2vw, 20px);
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

    .form-group label {
        font-size: clamp(14px, 1.8vw, 16px);
        color: white;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .form-group input,
    .form-group textarea {
        padding: clamp(10px, 1.5vw, 12px);
        font-size: clamp(12px, 1.5vw, 14px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        transition: border-color 0.3s ease, background 0.3s ease;
    }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: white;
            opacity: 0.7;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #E31837;
            background: rgba(255, 255, 255, 0.15);
        }

    .form-group textarea {
        resize: vertical;
    }

.cta-button {
    display: inline-block;
    padding: clamp(12px, 1.5vw, 15px) clamp(24px, 3vw, 30px);
    background: var(--white);
    color: var(--primary-red);
    text-decoration: none;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 600;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 20px var(--shadow-heavy);
    }

/* Map Section */
.map-section {
    padding: clamp(30px, 5vw, 50px);
}

.map-placeholder {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-medium);
}

    .map-placeholder iframe {
        width: 100%;
        height: clamp(300px, 40vw, 400px);
        border: none;
    }

/* Footer */
footer {
    background: var(--header-gradient);
    backdrop-filter: blur(10px);
    padding: clamp(20px, 5vw, 40px) clamp(10px, 2vw, 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: clamp(15px, 3vw, 20px);
}

.footer-links {
    display: flex;
    gap: clamp(10px, 2vw, 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: clamp(12px, 1.8vw, 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: clamp(10px, 2vw, 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: clamp(16px, 2.5vw, 20px);
        opacity: 0.9;
        transition: opacity 0.3s ease;
    }

        .footer-social a:hover {
            opacity: 1;
            -webkit-text-fill-color: #E31837;
        }

.footer-copy {
    margin-top: clamp(15px, 2vw, 20px);
    font-size: clamp(12px, 1.8vw, 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: 1400px) {
    nav,
    section,
    .footer-content {
        max-width: 1200px;
    }
}

@media (max-width: 1024px) {
   .hero {
    margin-top: 100px;
padding: clamp(30px, 4vw, 40px) clamp(10px, 2vw, 15px);
   }

  .hero-image {
   height: 350px;
    }

    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .map-placeholder iframe {
        height: 350px;
    }
}

@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;
            }

 .profile-container {
        margin-left: auto;
 }

    .profile-dropdown {
        top: 60px;
        right: 10px;
    }

    .hero {
        margin-top: 90px;
        padding: clamp(30px, 4vw, 35px) clamp(10px, 2vw, 15px);
    }

    .hero-image {
height: 280px;
    }

    .section-content h2 {
        font-size: clamp(24px, 3.5vw, 30px);
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    section {
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 12px 0;
    }

    nav {
        padding: 0 10px;
    }

    .logo img {
        width: 130px;
    }

    .hero {
        margin-top: 85px;
     padding: clamp(25px, 4vw, 30px) clamp(10px, 2vw, 10px);
    }

    .hero-image {
        height: 200px;
    }

    .section-content h2 {
        font-size: clamp(20px, 3vw, 24px);
    }

    .section-content p {
        font-size: clamp(12px, 1.5vw, 14px);
  }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .map-placeholder iframe {
    height: 300px;
    }

    section {
        margin-top: 0.5rem;
    }
}

@media (max-width: 360px) {
    .logo img {
     width: 45px;
    }

    .hero-image {
        height: 180px;
    }

    .contact-card h3 {
        font-size: 16px;
}

  .contact-card p {
        font-size: 12px;
    }
}
