:root {
    --primary: #1a2a44; /* Deep Blue from logo */
    --accent: #c5a059;  /* Gold from logo */
    --white: #ffffff;
    --gray: #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Montserrat', sans-serif; }

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
}

.logo span { color: var(--accent); }

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

.nav-links li a {
    text-decoration: none;
    color: var(--primary);
    margin-left: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links li a:hover { color: var(--accent); }

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(26, 42, 68, 0.8), rgba(26, 42, 68, 0.8)), 
                url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero h1 { font-size: 3.5rem; margin-bottom: 20px; }

.btn-primary {
    background: var(--accent);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px;
    display: inline-block;
    transition: 0.3s;
}

.btn-secondary {
    border: 2px solid var(--white);
    color: white;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px;
    display: inline-block;
}

/* About Section Styles */
.about { padding: 100px 8%; background: #fff; }

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0px var(--primary);
}

.experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--accent);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    z-index: 2;
}

.experience-badge .number { display: block; font-size: 1.5rem; font-weight: bold; }

.about-text { flex: 1.2; min-width: 300px; }

.sub-title {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 700;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text p { margin-bottom: 20px; color: #666; }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary);
}

.feature-item i { color: var(--accent); }

/* Play Button Overlay */
.about-image { position: relative; }
.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    z-index: 5;
    transition: 0.3s;
}
.about-image:hover .play-overlay {
    color: var(--accent);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Video Modal Background */
.video-modal {
    display: none; 
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

/* Modal Content (Video Container) */
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
}

/* Close Button */
.close-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Services Grid */
.services { padding: 100px 8%; background: var(--gray); }
.section-title { text-align: center; margin-bottom: 50px; font-size: 2.5rem; color: var(--primary); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card:hover { transform: translateY(-10px); border-bottom: 5px solid var(--accent); }

.service-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

/* Contact */
.contact { padding: 80px 8%; }
#contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

#contact-form input, #contact-form textarea {
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

footer {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 40px;
}

/* Gallery Styles */
.gallery-section { padding: 80px 8%; background: #fff; }

.filter-btns {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    margin: 5px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    border-radius: 30px;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 42, 68, 0.9));
    color: white;
    padding: 20px;
    opacity: 0;
    transition: 0.3s;
    text-align: center;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* Testimonials Styles */
.testimonials {
    padding: 100px 8%;
    background-color: var(--gray);
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

.client-info {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.client-info strong {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
}

.client-info span {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float i {
    font-size: 24px;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: white;
}

/* Logic for Hiding/Showing via JS */
.gallery-item.hide { display: none; }

[data-aos^="zoom"][data-aos^="zoom"] {
  opacity: 1;
  transition-property: opacity,transform;
}

[data-aos^="fade"][data-aos^="fade"] {
  opacity: 1;
  transition-property: opacity,transform;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.2rem; }

    .about-image img { box-shadow: 10px 10px 0px var(--primary); }
    .about-features { grid-template-columns: 1fr; }
}

/* Hide text on small mobile screens to keep it clean */
@media (max-width: 480px) {
    .whatsapp-text {
        display: none;
    }
    .whatsapp-float {
        padding: 15px;
        bottom: 20px;
        right: 20px;
    }
}

/* Pulse Animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}