:root {
    --primary: #F07F1A;      /* Logo Orange */
    --secondary: #3F3B8E;    /* Logo Blue */
    --white: #ffffff;
    --light-gray: #f4f6f9;
    --dark: #222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: var(--white);
    color: var(--secondary);
    scroll-behavior: smooth;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: rgba(255,255,255,255.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: var(--secondary);
}

.logo img {
    height: 50px;
}

nav a {
    margin-left: 25px;
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    color: var(--secondary);
    animation: fadeUp 1s ease forwards;
}

.hero p {
    font-size: 20px;
    margin-top: 15px;
    color: var(--primary);
    animation: fadeUp 1.4s ease forwards;
}

/* Hero Section with Background Cover */
.hero {
    height: 90vh;
    background: url('../assets/hero-bg.jpg') center center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Dark Overlay for Text Visibility */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* Hero Content */
.hero-overlay {
    position: relative;
    text-align: center;
    color: white;
    z-index: 2;
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 15px;
    animation: fadeUp 1s ease forwards;
}

.hero-overlay p {
    font-size: 20px;
    color: #F07F1A; /* Logo Orange */
    animation: fadeUp 1.4s ease forwards;
}

/* Sections */
.section {
    padding: 80px 8%;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary);
}

/* Cards - Glassmorphism */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: rgba(255,255,255,0.7);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.4s;
    opacity: 0;
    transform: translateY(40px);
}

.card:hover {
    transform: translateY(-10px);
}

.card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 6px;
    overflow: hidden;
    z-index: 1000;
}

.dropdown-content a {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f2f2f2;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.contact-section {
    text-align: center;
}

.contact-details {
    margin-bottom: 30px;
    font-size: 16px;
    color: var(--secondary);
}

.contact-form {
    max-width: 500px;
    margin: 0 auto 40px auto;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    text-align: center;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    outline: none;
}

.contact-form button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: var(--secondary);
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-details p {
    margin: 15px 0;
    font-size: 17px;
}

.contact-details i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 18px;
}

.contact-details a {
    text-decoration: none;
    color: var(--secondary);
}

.contact-details a:hover {
    color: var(--primary);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: var(--secondary);
    color: white;
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px);}
    to { opacity: 1; transform: translateY(0);}
}

.show {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: 1s ease;
}