/* Reset & base styles */
body, html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  /* Navbar */
  .navbar {
    background-color: #000; /* Black navbar */
    padding: 1rem 0;
    transition: background-color 0.3s ease-in-out;
  }
  
  .navbar .nav-link {
    color: #fff;
    font-weight: 500;
    margin-left: 1rem;
  }
  
  .navbar .nav-link:hover,
  .navbar .nav-link.active {
    color: #ff3c3c;
  }
  
  /* Hero Section */
  .hero-section {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    color: white;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
  }
  
  .hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
  }
  
  .hero-section p {
    font-size: 1.25rem;
  }
  
  .hero-section .btn {
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
  }
  
  /* Packages Section */
  .packages {
    background-color: #f9f9f9;
  }
  
  .packages .card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s;
  }
  
  .packages .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  }
  
  /* About Section */
  .about-us {
    background-color: #fff;
  }
  
  .about-us p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
  }
  
  /* Support Section */
  .support {
    background-color: #f1f1f1;
  }
  
  .support p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
  }
  
  /* Footer */
  footer {
    background-color: #111;
    color: white;
    text-align: center;
  }
  
  footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  footer a:hover {
    color: #ff3c3c;
  }
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  
  .hero {
    height: 60vh;
    position: relative;
  }
  .hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  .navbar {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .vod-section {
    padding: 3rem 1rem;
    background: #f8f9fa;
    border-radius: 1rem;
  }
  .vod-text h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #003366;
    margin-bottom: 1rem;
  }
  .vod-text p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #444;
  }
  .vod-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
  }
  .logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px; /* lartësia që do për logon */
  }
  
  .logo-container img {
    height: 100px; /* ose sa të duash madhësinë e logos */
  }

/* logo per sms*/

.contact-footer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: white;
    padding: 12px 18px;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    font-family: sans-serif;
    z-index: 1000;
    transition: background-color 0.3s;
  }
  
  .contact-footer:hover {
    background-color: #0056b3;
  }
  
  .message-box i {
    margin-right: 10px;
    font-size: 18px;
  }
  
  .chat-popup {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1001;
    font-family: sans-serif;
  }
  
  .chat-header {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .chat-header button {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
  }
  
  .chat-body {
    padding: 10px;
  }
  
  .chat-body textarea {
    width: 100%;
    height: 80px;
    margin-top: 10px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    resize: none;
  }
  
  .send-btn {
    margin-top: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
  }
  
  .send-btn:hover {
    background-color: #0056b3;
  }

/* test*/

  section {
    background: #f9f9f9;
  }
  
  h2 {
    color: #003366;
  }
  
  p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .shadow {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .rounded-4 {
    border-radius: 1.5rem;
  }
  
  img {
    transition: transform 0.3s ease;
  }
  
  img:hover {
    transform: scale(1.05);
  }
  #mapCoverage {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }