/* Navbar and Navigation Container */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;   /* changed from black to white */
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Desktop */
@media (min-width: 769px) {
    .logo {
        margin-left: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .logo {
        margin-left: 10px;
    }
    .logo-img {
        height: 40px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation links black for visibility */
.nav-link {
    padding: 0 20px;
    color: #000 !important;  /* black text */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu li:hover .nav-link {
    color: #e67e22 !important;
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: 25px;
}

.hamburger {
    cursor: pointer;
    margin-right: 20px;
    display: none;
    flex-direction: column;
    justify-content: center;
    height: 40px;
    width: 40px;
    background: none;
    border: none;
    outline: none;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #000;  /* black bars */
    margin: 5px 0;
    border-radius: 2px;
    transition: background 0.3s;
}

.hamburger:hover span {
    background-color: #e67e22;
}

/* Mobile menu */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #000;  /* white background */
        width: 200px;
        border-radius: 8px;
        padding: 10px;
        z-index: 2000;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu li {
        margin: 10px 0;
        text-align: right;
    }
    .nav-menu li a {
        color: #fff !important; /* white text */
    }
}



/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    padding: 15px 40px;
    font-size: 1.1rem;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* Section Titles */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

/* Gallery Section */
/* Basic CSS for gallery */
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding-top: 2rem;
}
.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.gallery-filters {
  text-align: center;
  margin-top: 1rem;
}
.filter-btn {
  margin: 0.25rem;
  padding: 0.5rem 1rem;
  background: #eee;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}
.filter-btn.active {
  background: #2ecc71;
  color: #fff;
}
.fade-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    transition: left 0.3s ease;
    z-index: 1;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    color: white;
}

.service-card > * {
    position: relative;
    z-index: 2;
}

.service-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-icon {
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: white;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: white;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #e74c3c;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-item p {
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

.contact-form button {
    padding: 15px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e74c3c;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #000;
        width: 200px;
        border-radius: 8px;
        padding: 10px;
        z-index: 2000;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
        transition: right 0.3s;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu li {
        margin: 10px 0;
        text-align: right;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .stats {
        justify-content: space-around;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .gallery-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}
/* Footer Animation */
.footer {
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1.2s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Dark Theme for Gallery to About Section */
.gallery,
.about {
    background-color: #000;
    color: white;
}

/* Headings in those sections */
.gallery .section-title,
.about .section-title {
    color: white;
}

/* Buttons and filter text in gallery */
.gallery .filter-btn {
    border-color: #27ae60;
    color: #27ae60;
}

.gallery .filter-btn.active,
.gallery .filter-btn:hover {
    background: #27ae60;
    color: black;
}

/* About stats text */
.about .stat-item h3 {
    color: #27ae60;
}

.about .stat-item p {
    color: #ccc;
}

/* About text paragraph */
.about-description {
    color: #ddd;
}

/* Image shadow tweak for dark mode */
.about-image img {
    box-shadow: 0 20px 40px rgba(39, 174, 96, 0.4);
}
.section-title::after {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
}
/* Dark Theme for Services and Contact Sections */
.services,
.contact {
    background-color: #000;
    color: white;
}

/* Section headings */
.services .section-title,
.contact .section-title {
    color: white;
}

/* Services card dark mode */
.services .service-card {
    background-color: #111;
    color: white;
}

.services .service-card:hover {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
}

.services .service-card:hover h3,
.services .service-card:hover p {
    color: white;
}

/* Icons color before hover */
.services .service-icon {
    color: #27ae60;
}

/* Contact Info styling */
.contact-item i {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
}

.contact-item h4 {
    color: #27ae60;
}

.contact-item p {
    color: #ccc;
}

/* Contact Form */
.contact-form input,
.contact-form textarea {
    background: #111;
    color: white;
    border-color: #27ae60;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2ecc71;
}

/* Contact form button hover override */
.contact-form button:hover {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
}
/* Project grouping styles */
.project-header {
  margin: 2rem 0 1rem;
  font-family: 'Playfair Display', serif;
  color: #333;
  font-size: 1.5rem;
  width: 100%;
  text-align: center;
  grid-column: 1 / -1;
}

.project-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 2rem;
  grid-column: 1 / -1;
}


.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding-top: 2rem;
}

.gallery-item {
  position: relative;
  flex: 0 1 calc(33.33% - 10px);
  box-sizing: border-box;
}

/* Gallery images and videos: uniform medium size, whole image visible */
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 200px;       /* medium size */
  object-fit: contain;  /* shows full image/video */
  border-radius: 8px;
  background: #111;     /* fills empty space in dark mode */
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.02);
}

/* Project header */
.project-header {
  margin: 2rem 0 1rem;
  font-family: 'Playfair Display', serif;
  color: #333;
  font-size: 1.5rem;
  width: 100%;
  text-align: center;
  cursor: pointer;
  transition: color 0.2s ease;
  grid-column: 1 / -1;
}

.project-header:hover {
  color: #27ae60;
}

/* Project container */
.project-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 2rem;
  grid-column: 1 / -1;
}

/* Video play button overlay */
.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(39, 174, 96, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.video-play-button i {
  color: white;
  font-size: 20px;
}

/* --- Dark theme adjustments for gallery & projects --- */
.gallery,
.about {
  background-color: #000;
  color: white;
}

.gallery .section-title {
  color: white;
}

.gallery .filter-btn {
  border-color: #27ae60;
  color: #27ae60;
}

.gallery .filter-btn.active,
.gallery .filter-btn:hover {
  background: #27ae60;
  color: black;
}
/* Lightbox overlay */
/* Add to your style.css */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  overflow: hidden;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay img,
.lightbox-overlay video {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: grab;
}

#lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  z-index: 10001;
}

#lightbox-close:hover {
  color: #27ae60;
}
.about {
    padding: 100px 0 80px 0;
    background: #fff;
    color: #222;
    position: relative;
    z-index: 1;
}
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}
.about-text {
    flex: 1;
    min-width: 300px;
}
.about-text .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}
.about-text .section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #e67e22;
    border-radius: 2px;
}
.about-description {
    line-height: 1.8;
    font-size: 1.05rem;
    color: #333;
}
.about-image {
    flex: 1;
    min-width: 300px;
}
.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Optional: fade-in animation on scroll */
.about-text, .about-image {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}
.about-text.visible, .about-image.visible {
    opacity: 1;
    transform: translateY(0);
}
