/* Modern Color Palette */
:root {
    --primary: #1a1a1a;
    --secondary: #ff6b6b;
    --accent: #4ecdc4;
    --light: #f8f9fa;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--secondary), var(--accent));
  }
  
  /* Global Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }
  
  body {
    line-height: 1.6;
    color: var(--primary);
    background: var(--light);
  }
  /* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0; /* Added padding to the header */
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem; /* Adjusted padding for better spacing */
  }
  
  .logo {
    margin-left: -20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
  }
  
  .camera-icon {
    font-size: 1.5rem; /* Slightly smaller camera icon */
    color: var(--accent);
  }
  
  .logo-text {
    font-size: 1.25rem; /* Adjusted font size */
  }
  
  .highlight {
    color: var(--accent);
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem; /* Increased gap between navigation links */
    margin-right: 1rem; /* Added margin to the right */
  }
  
  .nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem; /* Adjusted font size */
  }
  
  .nav-links a:hover {
    color: var(--accent);
  }
  /* Hero Section */
  /* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a, #4ecdc4, #ff6b6b);
    background-size: 200% 200%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    animation: gradientAnimation 10s ease infinite;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Overlay for better text contrast */
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    animation: fadeIn 2s ease-in-out;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  }
  
  .hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  }
  
  .hero .btn {
    background: var(--gradient);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
  
  .hero .btn:hover {
    transform: translateY(-5px);
  }
  
  /* Gradient Animation */
  @keyframes gradientAnimation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  /* Fade-In Animation */
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  /* Services Section */
  .services {
    padding: 4rem 2rem;
    background: var(--white);
  }
  
  .services h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
  }
  
  .service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .card {
    background: var(--light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
  }
  
  .card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .card p {
    color: #666;
  }
  
  /* Portfolio Section */
  .portfolio {
    padding: 4rem 2rem;
    background: var(--light);
  }
  
  .portfolio h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
  }
  
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  
  .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover .overlay {
    transform: translateY(0);
  }
  
  .overlay h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .overlay p {
    font-size: 0.9rem;
  }
  
  /* Contact Section */
  /* Contact Section */
.contact {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
  }
  
  .contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); /* Light overlay for contrast */
    z-index: 1;
  }
  
  .contact-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  .contact h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary);
    animation: fadeIn 1.5s ease-in-out;
  }
  
  .contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: slideUp 1.5s ease-in-out;
  }
  
  .input-group {
    position: relative;
    margin-bottom: 1.5rem;
  }
  
  .input-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 1.2rem;
  }
  
  .input-group input,
  .input-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .input-group input:focus,
  .input-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(78, 205, 196, 0.2);
  }
  
  .input-group textarea {
    resize: vertical;
  }
  
  .contact-form button {
    background: var(--gradient);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  /* Animations */
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 2rem;
    background: var(--primary);
    color: var(--white);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      gap: 1rem;
    }
  
    .hero h1 {
      font-size: 2rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  
    .service-cards,
    .gallery {
      grid-template-columns: 1fr;
    }
  }

  /* Modal Styles */
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    overflow: auto;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  .modal-content {
    background: var(--white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    max-width: 90%;
    width: 800px;
    position: relative;
    animation: slideDown 0.3s ease-in-out;
  }
  
  .modal h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    text-align: center;
  }
  
  .modal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-height: 70vh;
    overflow-y: auto;
    padding: 1rem;
  }
  
  .modal-gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .modal-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
  }
  
  /* Close Button (X) */
  .close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: var(--primary);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  
  .close:hover {
    color: var(--accent);
  }
  
  /* Animations */
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  @keyframes slideDown {
    0% {
      transform: translateY(-20px);
    }
    100% {
      transform: translateY(0);
    }
  }



  /* Footer Styles */
footer {
    text-align: center;
    padding: 2rem;
    background: var(--primary);
    color: var(--white);
  }
  
  .footer-content p {
    margin: 0.5rem 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .footer-content i {
    font-size: 1.2rem;
    color: var(--accent);
  }