/* style.css */

:root {
    --color-1: #0d1b2a;
    --color-2: #1b263b;
    --color-3: #415a77;
    --color-4: #778da9;
    --color-5: #e0e1dd;
    --font-main: 'Poppins', sans-serif;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: var(--font-main);
    background-color: var(--color-6);
    color: var(--color-5);
    line-height: 1.6;
  }
  
  
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  overscroll-behavior: none;
  font-family: sans-serif;
}


  .gallery {
    background-color:#d3f3ff;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--color-5);
  }
  
  .gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, box-shadow 0.3s ease;
    border-radius: 20px;
    filter: brightness(0.8);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  

  
  
  
  @media (max-width: 768px) {
    .gallery-container {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .section-title {
      font-size: 2.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .gallery-container {
      grid-template-columns: 1fr;
    }
  
    .section-title {
      font-size: 2rem;
    }
  }
  
    
  .why-choose-us {
    background-color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    border-radius: 10px;
  }
  
  .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
  }
  
  .reasons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 2rem;
  }
  
  .reason {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    position: relative;
  }
  
  .reason:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  }
  
  .reason h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-3);
    margin-bottom: 1rem;
  }
  
  .reason p {
    font-size: 1.2rem;
    color: var(--color-1);
    line-height: 1.6;
  }
  
  .reason-icon {
    font-size: 3rem;
    color: var(--color-5);
    margin-bottom: 1.5rem;
  }
  
  .reason-icon i {
    transition: transform 0.3s ease;
  }
  

  @media (max-width: 768px) {
    .reasons {
      grid-template-columns: repeat(1, 1fr);
    }
  
    .reason {
      padding: 1.5rem;
    }
  }
  
  /* FAQ Section */
.faq {
    background-color: var(--color-5);  /* Light background for the section */
    padding: 2rem;
    max-width: 800px;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .faq .section-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--color-1);  /* Dark color for the section title */
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .faq-item {
    background-color: var(--color-2);  /* Dark background for each item */
    margin: 1rem 0;
    padding: 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
  }
  
  .faq-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }
  
  .faq-question {
    font-size: 1.3rem;
    color: var(--color-5);  /* Light color for questions */
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .faq-answer {
    display: none;
    font-size: 1.1rem;
    color: var(--color-3);  /* A medium shade for answers */
    padding-top: 0.5rem;
    line-height: 1.6;
  }
  
  .faq-item.active .faq-answer {
    display: block;
  }
  
  .toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-6);  /* Vibrant color for the toggle symbol */
  }
  
  .faq-item.active .toggle {
    content: "-";
    transform: rotate(180deg); /* Rotating for minus */
  }
  
  /* Mobile responsiveness */
  @media (max-width: 768px) {
    .faq .section-title {
      font-size: 1.8rem;
    }
    .faq-item {
      padding: 1rem;
    }
    .faq-question {
      font-size: 1.2rem;
    }
  }
  /* Testimonials Section */
.testimonials {
    background-color: var(--color-5);  /* Light background color */
    padding: 3rem;
    text-align: center;
  }
  
  .testimonials .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-1);  /* Dark color for section title */
    margin-bottom: 2rem;
  }
  
  .testimonial-cards {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .testimonial-card {
    background-color: var(--color-2);  /* Dark color for cards */
    color: var(--color-5);  /* Light text color */
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 30%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }
  
  .testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    .testimonial-cards {
      flex-direction: column;
      gap: 1rem;
    }
    .testimonial-card {
      width: 100%;
    }
  }
  .quality-technology {
    background-color: var(--color-5);
    padding: 5rem 2rem;
    text-align: center;
  }
  
  .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-6);
    margin-bottom: 3rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
  }
  
  .qt-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .qt-card {
    background-color: var(--color-1);
    border-radius: 20px;
    padding: 2rem;
    max-width: 340px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }
  
  .qt-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  }
  
  .qt-icon-wrapper {
    background-color: var(--color-1);
    padding: 1rem;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s;
  }
  
  .qt-card:hover .qt-icon-wrapper {
    background-color: var(--color-5);
  }
  
  .qt-icon-wrapper img {
    width: 40px;
    height: 40px;
    transition: transform 0.5s ease;
  }
  
  .qt-card:hover img {
    transform: rotate(10deg) scale(1.1);
  }
  
  .qt-content h3 {
    font-size: 1.4rem;
    color: var(--color-5);
    margin-bottom: 1rem;
  }
  
  .qt-content p {
    color: var(--color-4);
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .qt-cards {
      flex-direction: column;
      align-items: center;
    }
  }
  
  .sectors {
    background: var(--color-5);
    padding: 5rem 2rem;
    text-align: center;
  }
  
  .sectors .section-title {
    font-size: 2.8rem;
    color: var(--color-1);
    margin-bottom: 3rem;
    font-weight: 700;
  }
  
  .sectors-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .sector-card {
    background-color: var(--color-2);
    padding: 2rem;
    border-radius: 20px;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  .sector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  }
  
  .sector-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .sector-title {
    font-size: 1.5rem;
    color: var(--color-5);
    margin-bottom: 0.5rem;
  }
  
  .sector-desc {
    font-size: 1rem;
    color: var(--color-4);
    line-height: 1.6;
  }

  
  .caption {
    font-weight: bold;
  }
  .made-with-passion {
    background-color:#d3f3ff ;
    padding: 6rem 2rem;
    text-align: center;
  }
  
  .made-with-passion .container {
    max-width: 1300px;
    margin: auto;
  }
  
  .section-title {
    font-size: 2.8rem;
    color: #01161E;
    margin-bottom: 1rem;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 3rem;
  }
  
  .timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .timeline-step {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: center;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
  }
  
  .timeline-step:nth-child(1) { animation-delay: 0.2s; }
  .timeline-step:nth-child(2) { animation-delay: 0.4s; }
  .timeline-step:nth-child(3) { animation-delay: 0.6s; }
  .timeline-step:nth-child(4) { animation-delay: 0.8s; }
  
  .timeline-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.15);
  }
  
  .icon-box {
    background-color: #d3f3ff;
    border-radius: 50%;
    padding: 1.2rem;
    width: 80px;
    height: 80px;
    margin: auto;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
  }
  
  .icon-box img {
    width: 40px;
    height: 40px;
  }
  
  .timeline-step h3 {
    font-size: 1.4rem;
    color: #124559;
    margin-bottom: 0.5rem;
  }
  
  .timeline-step p {
    font-size: 1rem;
    color:var(--color-1);
  }
  
  /* Animation */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @media (max-width: 768px) {
    .timeline {
      flex-direction: column;
      align-items: center;
    }
  }
  .expertise {
    padding: 4rem 2rem;
    background: #ffffff;
    text-align: center;
  }

  .section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #598392;
  }

  .expertise-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  .expertise-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  }

  .expertise-card img {
    width: 64px;
    margin-bottom: 1rem;
  }

  .expertise-card h3 {
    font-size: 1.3rem;
    color: #124559;
    margin-bottom: 0.5rem;
  }

  .expertise-card p {
    font-size: 1rem;
    color: #598392;
    margin-bottom: 1rem;
  }

  .read-more {
    color: #1557C0;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
  }

  .read-more:hover {
    color: #0A9396;
  }
  .about-us {
    padding: 6rem 2rem;
    background: linear-gradient(145deg, var(--color-1), var(--color-3));
    color: var(--color-5);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    
    
  }
  
  .about-us::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, var(--color-4), transparent 70%);
    opacity: 0.05;
    animation: rotateLight 20s linear infinite;
    z-index: 0;
  }
  
  @keyframes rotateLight {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  
  .about-us .container {
    max-width: 850px;
    margin: auto;
    z-index: 1;
    position: relative;
    
  }
  
  .about-us h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: white;
  }
  
  .about-us p {
    font-size: 1.3rem;
    line-height: 1.9;
    font-weight: 300;
  }
  .contact-cta {
    padding: 5rem 2rem;
    background: var(--color-5);
    color: var(--color-1);
    text-align: center;
    position: relative;
  }
  
  .contact-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .contact-cta p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 400;
  }
  
  .call-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-1);
    color: var(--color-5);
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
  }
  
  .call-button:hover {
    background: var(--color-3);
    color: var(--color-1);
  }
  .footer {
    background: var(--color-1);
    color: var(--color-5);
    padding: 4rem 2rem 2rem;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 10;
    border-top: 3px solid var(--color-3); /* Shtuar një kufi të lehtë për të ndarë footerin */
  }
  
  .footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem; /* Pak më shumë hapësirë mes kolonave */
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--color-4); /* Të bëjë ndarjen më të lehtë vizualisht */
    padding-bottom: 2rem;
  }
  
  .footer-logo {
    font-size: 2rem;
    color: var(--color-5);
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  
  .footer-tagline {
    color: var(--color-4);
    font-style: italic;
    font-size: 1.1rem; /* Rritur pak për të bërë më të dukshme */
  }
  
  .footer-links h3 {
    font-size: 1.2rem;
    color: var(--color-5);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 0.8rem; /* Disa hapësira më shumë mes elementeve */
  }
  
  .footer-links a {
    color: var(--color-4);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
  }
  
  .footer-links a:hover {
    color: var(--color-3);
    text-decoration: underline; /* Shkëlqim i tekstualizuar në hover */
  }
  
  .footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-4);
    border-top: 2px solid var(--color-4); /* Kufiri më i ngushtë për të ndarë footerin nga përmbajtja */
    padding-top: 1.5rem;
  }
  
  .footer-bottom p {
    margin: 0;
    font-size: 1rem; /* Përshtatje për të bërë më të lehtë leximin */
    color: var(--color-4);
  }
  
  /* === GLOBAL === */
@media (max-width: 768px) {
    body {
      font-size: 16px;
    }
  
    .section-title {
      font-size: 2.5rem;
    }
  }
  
  
  
  /* === HERO SECTION === */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2.5rem;
    }
  
    .hero-content p {
      font-size: 1rem;
    }
  
    .cta-button {
      padding: 0.8rem 2rem;
    }
  }
  
  /* === GALLERY SECTION === */
  @media (max-width: 768px) {
    .gallery-container {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .section-title {
      font-size: 2.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .gallery-container {
      grid-template-columns: 1fr;
    }
  
    .section-title {
      font-size: 2rem;
    }
  }
  
  /* === WHY CHOOSE US SECTION === */
  @media (max-width: 768px) {
    .reasons {
      grid-template-columns: 1fr;
    }
  
    .reason {
      padding: 1.5rem;
    }
  }
  
  /* === FAQ SECTION === */
  @media (max-width: 768px) {
    .faq .section-title {
      font-size: 1.8rem;
    }
  
    .faq-item {
      padding: 1rem;
    }
  
    .faq-question {
      font-size: 1.2rem;
    }
  }
  
  /* === TESTIMONIALS SECTION (Assuming structure) === */
  @media (max-width: 768px) {
    .testimonials {
      padding: 2rem 1rem;
    }
  
    .testimonial {
      padding: 1.5rem;
      text-align: center;
    }
  
    .testimonial p {
      font-size: 1rem;
    }
  }
  
  /* === FOOTER (if exists) === */
  @media (max-width: 768px) {
    footer {
      flex-direction: column;
      text-align: center;
      padding: 2rem 1rem;
    }
  
    footer .footer-links {
      flex-direction: column;
      gap: 1rem;
    }
  }
 
  .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transform: translateX(-20px); /* ✅ THIS is fine */
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: var(--color-1);
  border-radius: 5px;
  /* ❌ Remove transform here */
}

          
          /* Individual video card */
          .video-card {
            background-color: var(--color-2);
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
          }
          
          .video-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(65, 90, 119, 0.5); /* glow with color-3 */
          }
          
          /* Video wrapper */
          .video-frame {
            width: 100%;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            border-top-left-radius: 1.5rem;
            border-top-right-radius: 1.5rem;
          }
          
          .video-frame video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
          }
          
/* Container for the video cards */
.video-cards-container {
  display: flex;
  gap: 2.5rem; /* Distance between cards */
  justify-content: center; /* Spread the cards evenly */
  flex-wrap: wrap; /* Allow cards to wrap on smaller screens */
  margin-top: 3rem; /* Optional, to add some space from the top */
}

/* Individual video card */
.video-card {
  background-color: var(--color-2);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  display: flex;
  flex-direction: column;
  width: 100%; /* Default to 100% width on smaller screens */
  max-width: 300px; /* Limit the size of the card */
}

/* Hover effect on the card */
.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(65, 90, 119, 0.5);
  filter: blur(0.5px);
}

/* Video wrapper */
.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Card content */
.card-content {
  padding: 1.5rem 1.2rem;
  background-color: var(--color-3);
  color: var(--color-5);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
  color: var(--color-5);
}

.card-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-4);
  opacity: 0.95;
}

/* Responsive styling */
@media (max-width: 768px) {
  .video-cards-container {
    flex-direction: column;
    align-items: center; /* Center cards vertically */
  }

  .video-card {
    max-width: 100%; /* Full width on smaller screens */
    margin-bottom: 1.5rem; /* Add some space between cards */
  }
}




.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: var(--color-5);
  position: relative;
  z-index: 1000;
  overflow: visible; /* ← add this to allow logo to extend if needed */
}


.nav-links {
  display: none; /* Start fully hidden */
  flex-direction: column;
  list-style: none;
  gap: 3rem;
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  background-color: var(--color-5);
  height: 100vh;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  z-index: 999;
}

/* Only show when active */
.nav-links.active {
  display: flex;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 0;
    right: -250px;
    width: 250px;
    background-color: var(--color-5);
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .close-btn {
    display: block;
  }

  .nav-links li {
    margin: 1rem 0;
  }

  .nav-links li a {
    font-size: 1.2rem;
  }
}












/* Navigation Links Styles */
.nav-links li a {
  text-decoration: none;
  font-weight: 500;
  color: var(--color-1);
  font-size: 1rem;
  transition: 0.3s;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.nav-links li a:hover {
  background-color: var(--color-1);
  color: var(--color-5);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}


/* Close Button Styles */
.close-btn {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-1);
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .close-btn {
    display: block;
  }

  .nav-links li {
    margin: 1rem 0;
  }

  .nav-links li a {
    font-size: 1.2rem;
  }
}
body {
  overflow-x: hidden;
}

/* Desktop Styles (No hamburger, horizontal menu) */
@media (min-width: 769px) {
  .nav-links {
    display: flex;
    position: static;
    height: auto;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    right: 0;
  }

  .hamburger {
    display: none; /* Hide hamburger on desktop */
  }

  .close-btn {
    display: none; /* Hide close button on desktop */
  }
}

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
  overflow-x: hidden; 
}

.map-section {
  background-color: var(--color-2);
  padding: 3rem 1.5rem;
  text-align: center;
}

.map-section .section-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--color-5);
}

.map-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 1.5rem;
  overflow: hidden;
}

iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 1.5rem;
}
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--color-3);
  color: var(--color-5);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s, transform 0.3s;
}

#backToTop:hover {
  background-color: var(--color-2);
  transform: translateY(-4px);
}


.logo-img {
  height: 100px !important;
  max-height: none;
  display: block;
  object-fit: contain;
}



.floating-call {
  position: fixed;
  top: 75%; /* push it lower than middle */
  right: 20px;
  transform: translateY(-50%);
  z-index: 9999;
  animation: slideInRight 0.8s ease-out;
}

.call-link {
  text-decoration: none;
}

.glass-button {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.9rem 1.4rem;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.glass-button:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.2);
}

.call-icon svg {
  fill: #00ffa2;
  width: 28px;
  height: 28px;
}

.call-text {
  white-space: nowrap;
}

/* Entry animation */
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateY(-50%) translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

/* Responsive mobile: icon only */
@media (max-width: 600px) {
  .glass-button {
    padding: 1rem;
    border-radius: 50%;
    justify-content: center;
  }

  .call-text {
    display: none;
  }
}


