/* Reset & Base */
* 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    background-color: #0f172a;
    color: white;
    line-height: 1.6;
  }
  

  /* Navbar */
  nav {
    width: 100%;
    background-color: #1e293b;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  nav .logo {
    font-size: 24px;
    font-weight: 600;
    color: white;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
  }
  
  nav ul li {
    position: relative;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  nav ul li a:hover {
    color: #38bdf8;
  }
  
  /* Bootstrap dropdown override to match dark theme */
  nav .dropdown-menu {
    background-color: #1e293b;
    border: none;
    margin-top: 8px;
  }
  
  nav .dropdown-item {
    color: white;
  }
  
  nav .dropdown-item:hover {
    background-color: #334155;
  }
  
  /* Hero Section */
  .hero {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 120px 50px 50px;
    flex-wrap: wrap;
  }
  
  .hero-text {
    max-width: 600px;
  }
  
  .hero-text h1 {
    font-size: 48px;
    margin-bottom: 10px;
  }
  
  .hero-text h2 {
    font-size: 30px;
    color: #38bdf8;
  }
  
  .hero-text h3 {
    font-size: 24px;
    margin: 10px 0;
  }
  
  .hero-text p {
    margin: 20px 0;
    font-size: 16px;
    color: #cbd5e1;
  }
  
  .btn-cv {
    background-color: #38bdf8;
    color: black;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .btn-cv:hover {
    background-color: #0ea5e9;
  }
  
  .social-icons {
    margin-top: 15px;
  }
  
  .social-icons a {
    color: white;
    margin-right: 15px;
    font-size: 20px;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #38bdf8;
  }
  
  .hero-img img {
    border-radius: 50%;
    width: 250px;
    border: 4px solid #38bdf8;
    animation: wave 3s infinite ease-in-out;
  }
  
  /* Service Details Section */
  #service-details {
    display: none;
    background-color: #1e293b;
    padding: 50px 20px;
    text-align: center;
    margin-top: 30px;
    border-top: 2px solid #38bdf8;
    animation: fadeIn 0.6s ease-in-out;
  }
  
  #service-title {
    font-size: 32px;
    margin-bottom: 15px;
    color: #38bdf8;
  }
  
  #service-description {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 20px;
    color: white;
  }
  
  #service-image {
    max-width: 90%;
    border-radius: 10px;
    border: 3px solid #38bdf8;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
  }
  
  #service-actions {
    margin-top: 20px;
  }
  
  .service-button {
    background-color: #38bdf8;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
    transition: background-color 0.3s;
  }
  
  .service-button:hover {
    background-color: #06b6d4;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes wave {
    0%, 100% {
      transform: rotate(0deg);
    }
    50% {
      transform: rotate(3deg);
    }
  }
  

  .scrolling-gallery {
    display: flex;
    gap: 40px;
    overflow: hidden;
    padding: 20px;
    white-space: nowrap;
    animation: scrollLeft 20s linear infinite;
    border-top: 1px solid #ccc;
    margin-top: 30px;
  }
  
  .scrolling-gallery img {
    height: 120px;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  
  .scrolling-gallery img:hover {
    transform: scale(1.1);
  }
  
  @keyframes scrollLeft {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  /* Lightbox styling */
  .lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9);
  }
  
  .lightbox-content {
    text-align: center;
    margin: 5% auto;
    max-width: 90%;
    color: white;
  }
  
  .lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
  }
  
  .close-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
  }
  



  /* Responsive */
  @media (max-width: 768px) {
    .hero {
      flex-direction: column;
      text-align: center;
      padding: 140px 20px 50px;
    }
    nav ul {
      flex-direction: column;
      gap: 10px;
    }
    nav .dropdown-menu {
      position: static;
      margin-top: 0;
    }
    .hero-img {
      margin-top: 30px;
    }
  }
  