/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}


/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

#header.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #1f1f1f;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo-icon {
    position: relative;
    width: 96px;
    height: 54px;
  }
  
  .logo-img {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    z-index: 2;
  }
  
  .logo-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 247, 247, 0.233); /* green glow */
    z-index: 1;
    animation: pulse-glow 2s infinite;
  }
  
  @keyframes pulse-glow {
    0% {
      transform: scale(1);
      opacity: 0.2;
    }
    50% {
      transform: scale(1.5);
      opacity: 0.3;
    }
    100% {
      transform: scale(1);
      opacity: 0.2;
    }
  }
  

.logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #9ca3af;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #1f1f1f;
    padding: 16px 24px;
}

.mobile-nav-link {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    font-weight: 500;
    padding: 16px 0;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: #ffffff;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: 
        radial-gradient(circle at 25% 25%, #404040 0%, transparent 50%), 
        radial-gradient(circle at 75% 75%, #404040 0%, transparent 50%);
    background-size: 100px 100px;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-logo {
    margin-bottom: 32px;
}
.hero-logo {
    margin-top: 70px;
  }
  
.logo-animation {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.spinning-ring {
    position: absolute;
    inset: 0;
    border: 2px solid #6b7280;
    border-radius: 50%;
    animation: spin 8s linear infinite;
}

.pulsing-ring {
    position: absolute;
    inset: 8px;
    border: 1px solid #9ca3af;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.logo-animation svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
}

.logo-glow-effect {
    position: absolute;
    inset: -16px;
    background: linear-gradient(135deg, #1f2937, transparent, #1f2937);
    opacity: 0.3;
    filter: blur(40px);
    border-radius: 50%;
}

.hero-title {
    margin-bottom: 5px;
}

.title-main {
    display: block;
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-top: 20px;
}

.title-sub {
    display: block;
    font-size: clamp(1.5rem, 3vw, 4rem);
    font-weight: 300;
    color: #9ca3af;
    margin-top: 10px;
    
}
.title-main,
.title-sub {
  display: block;
  margin: 0;
  line-height: 1.1; /* optional: controls spacing */
}

.hero-tagline {
    font-size: clamp(1.25rem, 2vw, 2rem);
    color: #d1d5db;
    margin-bottom: 20px;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-bottom: 64px;
}

.btn {
    padding: 16px 32px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background-color: #ffffff;
    color: #000000;
}

.btn-primary:hover {
    background-color: #e5e7eb;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #6b7280;
}

.btn-secondary:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

.scroll-indicator {
    animation: bounce 2s infinite;
    cursor: pointer;
    background: none;
    border: none;
    color: #6b7280;
    transition: color 0.3s ease;
}

.scroll-indicator:hover {
    color: #9ca3af;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
}

.section-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #6b7280, transparent);
    margin: 0 auto 24px;
}

.section-subtitle {
    font-size: 18px;
    color: #9ca3af;
    max-width: 512px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 96px 0;
    background-color: rgba(17, 24, 39, 0.5);
}

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

.service-card {
    position: relative;
    background-color: rgba(31, 41, 55, 0.3);
    border: 1px solid rgba(107, 114, 128, 0.5);
    padding: 32px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    border-color: #6b7280;
    transform: scale(1.05);
}

.service-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-bg {
    opacity: 1;
}

.service-content {
    position: relative;
    z-index: 10;
}

.service-icon {
    color: #9ca3af;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.service-card:hover .service-icon {
    color: #ffffff;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.service-description {
    color: #9ca3af;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.service-card:hover .service-description {
    color: #d1d5db;
}

/* Portfolio Section */
.portfolio {
    margin-top: 10px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.portfolio-item {
    position: relative;
    background-color: #111827;
    transition: transform 0.5s ease;
}

.portfolio-item:hover {
    transform: scale(1.02);
}

.portfolio-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #ffffff;
}

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

.portfolio-content {
    padding: 24px;
}

.portfolio-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.portfolio-category {
    color: #6b7280;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.portfolio-line {
    width: 32px;
    height: 1px;
    background-color: #374151;
}

.portfolio-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.portfolio-item:hover .portfolio-title {
    color: #d1d5db;
}

.portfolio-description {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.5;
}

.portfolio-cta {
    text-align: center;
}

/* About Section */
.about {
    padding: 96px 0;
    background-color: rgba(17, 24, 39, 0.3);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 32px;
}

.about-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, #6b7280, transparent);
    margin-bottom: 32px;
}

.about-text {
    color: #d1d5db;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.about-text-secondary {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 48px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-icon {
    color: #9ca3af;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-icon {
    color: #ffffff;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.stat-label {
    color: #6b7280;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), transparent);
}

.image-corner {
    position: absolute;
    width: 32px;
    height: 32px;
}

.image-corner.top-right {
    top: -16px;
    right: -16px;
    border-top: 2px solid #6b7280;
    border-right: 2px solid #6b7280;
}

.image-corner.bottom-left {
    bottom: -16px;
    left: -16px;
    border-bottom: 2px solid #6b7280;
    border-left: 2px solid #6b7280;
}

/* Contact Section */
.contact {
    padding: 96px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-input,
/* FORM STYLES */

.custom-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 48px 32px;
    background-color: rgba(17, 24, 39, 0.5);
    border: 1px solid #374151;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.form-group-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.form-group-row .form-group {
    flex: 1;
    min-width: 45%;
}

label {
    margin-bottom: 8px;
    font-size: 14px;
    color: #d1d5db;
    font-weight: 500;
}

input,
textarea {
    background-color: rgba(31, 41, 55, 0.3);
    color: #ffffff;
    padding: 14px 16px;
    border: 1px solid #374151;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

input::placeholder,
textarea::placeholder {
    color: #9ca3af;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #ffffff;
    background-color: rgba(31, 41, 55, 0.6);
}

textarea {
    resize: vertical;
    min-height: 140px;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #5f5f5f;
    color: #000000;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #ffffff;
    transform: scale(1.03);
}


.full-width {
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-section-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #d1d5db;
}

.contact-icon {
    color: #6b7280;
}

.contact-label {
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-value {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    background-color: #1f2937;
    padding: 12px;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #374151;
    color: #ffffff;
}

.business-hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #9ca3af;
}

.hours-item {
    display: flex;
    justify-content: space-between;
}

/* Footer */
.footer {
    background-color: #111827;
    border-top: 1px solid #1f2937;
    padding: 48px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo span {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.footer-copyright {
    color: #6b7280;
    font-size: 14px;
}

.footer-tagline {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #1f2937;
}

.footer-tagline p {
    color: #4b5563;
    font-size: 14px;
}
.footer-container {
    display: flex;
}


/* Animations */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateY(0);
    }
    40%, 43% {
        transform: translateY(-8px);
    }
    70% {
        transform: translateY(-4px);
    }
    90% {
        transform: translateY(-2px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu.active {
        display: block;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (min-width: 769px) {
    .hero-buttons {
        flex-direction: row;
    }

    .footer-content {
        flex-direction: row;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #404040;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #525252;
}
.responsive-video {
    max-width: 70%;        /* Half of its container */
    width: 100%;
    height: auto;
    display: block;
  
    /* Disable zooming */
    transform: none !important;
    object-fit: contain;
    pointer-events: none;   /* Prevent gesture-based zooming */
    touch-action: pan-x pan-y; /* Allow only panning, no pinch-zoom */
  }
  
  @media (max-width: 768px) {
    .responsive-video {
      max-width: 100%;     /* Shrink on smaller screens */
    }
  }
  .contact-value a {
    color: rgb(255, 255, 255);
    text-decoration: none; /* optional, remove underline */
    transition: color 0.3s ease;
  }
  
  .contact-value a:hover {
    color: white;
  }
  
  .social-link
   {
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
    color: #999;
    transition: color 0.3s ease;
  }
  
  .social-link:hover {
    color: #ffffff; /* green accent or use your brand color */
  }
  .hero-tagline {
    display: inline-block;
    font-size: 2rem;
    line-height: 1.4;
    margin: 20px;
    max-width: 100%;
    text-align: left;
    vertical-align: middle;
    padding: 0 10px;
    white-space: normal; /* allows wrapping */
  }
  
  /* Medium screens (tablets) */
  @media (max-width: 768px) {
    .hero-tagline {
      font-size: 1.6rem;
    }
  }
  
  /* Small screens (phones) */
  @media (max-width: 480px) {
    .hero-tagline {
      font-size: 0.8rem;
    }
  }

  .hero-tagline {
    flex: 1;
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
  }
  
  .hero-camera {
    max-width: 400px;
    width: 100%;
    align-items: center; 
    height: auto;
    margin-right: 40px;
  }
  