* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: #fff;
    overflow-x: hidden;
    background-color: #0a0a0a;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

h1 {
    color: #feb47b;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 2.5rem;
}

h2 {
    color: #ff7e5f;
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
}

h3 {
    color: #feb47b;
    margin-bottom: 0.5rem;
}

p, li {
    margin-bottom: 1rem;
}

ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

/* Video Background */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #000; /* Black fallback */
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/* Header & Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: relative;
    z-index: 10;
}

.logo img{
    /* Option B: Responsive Size (Good for mobile-first/larger screens) */
    /* Set a max-height for vertical space and max-width for scaling */
    max-height: 80px;
    width: auto;
    max-width: 100%; /* Ensures it shrinks on very small screens */

    /* 2. Alignment/Spacing (If you use flexbox on the header/logo container) */
    display: block; /* Important for removing any default inline spacing below the image */
    
    /* 3. Appearance (Optional Enhancements) */
    border-radius: 5px; /* Adds soft, rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle lift */
}

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

.nav-links li {
    margin-left: 2rem;
    position: relative;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.nav-link:hover {
    color: #feb47b;
}

.nav-link i {
    margin-left: 0.5rem;
    font-size: 0.8rem;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    min-width: 200px;
    padding: 1rem 0;
    list-style: none;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #feb47b;
}

/* Main Content */
main {
    position: relative;
    z-index: 5;
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn {
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn.primary {
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    color: #fff;
    height: 48px; /* Fixed height */
    padding: 12px 24px;
    min-height: 48px; /* Prevents squishing */
    box-sizing: border-box; /* Includes padding in height */
}

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

.btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Newsletter Section */
.newsletter {
    padding: 5rem 5%;
    background: rgba(0, 0, 0, 0.7);
    margin-top: 2rem;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-form input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.newsletter-form .btn.primary {
    padding: 12px 24px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    white-space: nowrap;
}

.newsletter h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
}

.input-group {
    display: flex;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.input-group input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
}

.input-group button {
    border-radius: 0 50px 50px 0;
    padding: 0 1.5rem;
}

#form-message {
    margin-top: 1rem;
    min-height: 1.5rem;
    font-weight: 500;
}

/* QR Code Styles */
.qr-code {
    margin-top: 3rem;
    text-align: center;
}

.qr-container {
    display: inline-block;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.qr-image {
    max-width: 380px;
    max-height: 380px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 0.5rem auto;
}

.qr-code p {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.qr-code p {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

/* Make QR code responsive */
@media (max-width: 768px) {
    .qr-image {
        width: 120px;  /* Smaller on mobile */
        height: 120px;
    }
    
    .qr-container {
        padding: 0.8rem;
    }
    .newsletter-form {
        flex-direction: row;
    }
    
    .newsletter-form input {
        flex: 1;
    }
    
    .newsletter-form .btn.primary {
        width: auto;
        min-width: 140px;
    }
}
/* Footer */
footer {
    padding: 2rem 5%;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #feb47b;
}

.privacy-notice {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #ccc;
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-notice a {
    color: #feb47b;
    text-decoration: none;
}

.privacy-notice a:hover {
    text-decoration: underline;
}

.floating-close {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 25px;
    background: #ff7e5f; /* Your orange color */
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    z-index: 1000;
    font-weight: 600;
    transition: all 0.3s ease;
}

.floating-close:hover {
    background: #feb47b; /* Your lighter orange */
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1.5rem 5%;
    }
    
    .logo {
        margin-bottom: 1.5rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links li {
        margin: 0.5rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .input-group input {
        border-radius: 50px;
        margin-bottom: 1rem;
    }
    
    .input-group button {
        border-radius: 50px;
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .floating-close {
        top: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
    }
    .newsletter-form {
        flex-direction: row;
    }
    
    .newsletter-form input {
        flex: 1;
    }
    
    .newsletter-form button {
        flex-shrink: 0;
        width: auto;
        min-width: 120px;
        min-height: 120px;
    }
}

/*About*/

.back-link {
    display: inline-block;
    margin-top: 2rem;
    color: #feb47b;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid #feb47b;
    border-radius: 25px;
    transition: all 0.3s;
    font-weight: 600;
}

.back-link:hover {
    background: #feb47b;
    color: #0a0a0a;
    transform: translateY(-2px);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.team-member {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-member:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem auto;
    border: 3px solid #feb47b;
    background: #1a1a1a;
}

.member-name {
    color: #feb47b;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-role {
    color: #ff7e5f;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.member-bio {
    color: #ccc;
    line-height: 1.5;
    font-size: 0.95rem;
}

.credentials {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.credential-item {
    color: #aaa;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
}

.service-icon {
    font-size: 2.5rem;
    color: #feb47b;
    margin-bottom: 1rem;
}

.intro-text {
    font-size: 1.1rem;
    text-align: center;
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.keywords {
    background: rgba(254, 180, 123, 0.1);
    border-left: 4px solid #feb47b;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.keywords h3 {
    color: #ff7e5f;
    margin-bottom: 1rem;
}

.keyword-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.keyword {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #feb47b;
    border: 1px solid rgba(254, 180, 123, 0.3);
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
        margin-top: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .keyword-list {
        justify-content: center;
    }
}

/*Privacy*/
.last-updated {
    text-align: center;
    color: #888;
    font-style: italic;
    margin-top: 2rem;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
}

/* Ensures both videos fill the screen and overlap */
#background-video, #camera-feed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video covers the area without stretching */
}

/* Start with the main video visible and the camera hidden */
#background-video {
    display: block;
}
#camera-feed {
    display: none;
}
