/* Basic Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .hero video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.4);
  }
  
  .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
    padding: 20px;
  }
  
  .hero-content .logo {
    max-width: 180px;
    margin: 0 auto 30px;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.3));
  }
  
  .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #ddd;
  }
  
  .hero-buttons a {
    display: inline-block;
    padding: 14px 28px;
    margin: 0 10px;
    background-color: white;
    color: black;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.3s;
  }
  
  .hero-buttons a.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
  }
  
  .hero-buttons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255,255,255,0.2);
  }
  
  /* Sections */
  .section {
    padding: 100px 20px;
    text-align: center;
  }
  .section.light {
    background-color: #fff;
    color: #000;
  }
  .section.dark {
    background-color: #111;
    color: #fff;
  }
  
  .section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    opacity: 0.85;
  }
  
  /* Portfolio Grid (updated to prevent large images) */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 40px;
    padding: 0 20px;
    justify-items: center;
  }
  
  .portfolio-grid img {
    max-width: 100%;
    max-height: 300px;
    width: auto;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }
  
  .portfolio-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.2);
  }
  
  
  /* Services */
  .services {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 40px auto 0;
  }
  
  @media (min-width: 768px) {
    .services {
      flex-direction: row;
      justify-content: space-between;
    }
  }
  
  .services div {
    flex: 1;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(255,255,255,0.05);
  }
  
  /* Call To Action */
  .cta-button {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 16px 32px;
    border: 2px solid black;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #222;
    transform: translateY(-2px);
  }
  
  /* Footer */
  footer {
    background-color: #000;
    padding: 40px 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
  }
  footer a {
    color: #ccc;
  }
  footer a:hover {
    color: white;
    text-decoration: underline;
  }
  