/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
  overflow-x: hidden; /* Prevent horizontal scroll */
  }
  /* Top Bar */
  .top-bar {
    display: flex;
    justify-content: space-between;
    padding: 5px 20px;
    background: linear-gradient(135deg, #b00 65%, #333 35%);
    color: white;
    font-size: 16px;
    font-weight: 400;
  }
  
  .top-bar .social-links a {
    color: white;
    text-decoration: none;
    margin-left: 5px;
    margin-top: 50px;
    font-size: 20px;
    line-height: 1;
  }
  
  /* Main Header */
  .main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .main-header h1 {
    font-size: 22px;
    color: #b00;
    text-align: center;
  }
  
  .logo {
    height: 50px;
  }
  
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-top: 50px;
  }
  
  .nav-menu ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
  }
  
  .toggle-btn {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .nav-menu ul {   
      display: none;
      flex-direction: column;
      background:#b00;
      position: absolute;
      top: 70px;
      right: 30px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      width: 200px;
      padding: 10px;
      border-radius: 4px;
      z-index: 1000;
    }
    .nav-menu ul li a{
        color: white;
        font-size: 20px;
    }
    .nav-menu ul.active {
      display: flex;
    }
  
    .toggle-btn {
      display: block;
    }
  }
  
  .fixed-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
  }
  
  .fixed-icons a {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
  }
  
  .fixed-icons a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
  }
  
  .call {
    background-color: #34c759;
    color: white;
  }
  
  .whatsapp {
    background-color: #25d366;
    color: white;
  }
  
  .email {
    background-color: #007bff;
    color: white;
  }
  
  .fixed-icons a i {
    font-size: 24px;
  }
  
  .pic{
    background-image: url('../images/Our-Network.jpg');
    background-size: cover;
    background-position: center;
    padding: 40px 20px;
    text-align: center;
    color: #f3f3f3;
  }
  .pic h3{
    font-size: 3rem;
    color: #000;
  }


  .containers {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
    background-image:url('../images/map.jpg');
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 1rem;
}

.containers ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.containers li {
    margin: 0;
}

.containers a {
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 0.8rem 1.2rem;
    display: inline-block;
    background: #f50303;
    border: 2px solid #09ff00;
    border-radius: 5px;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

a:hover {
    color: #fff;
    background: #007bff;
    transform: scale(1.05);
}



/* Responsive Styles */
@media (max-width: 768px) {

    .containers {
        padding: 1rem;
    }

    .containers ul {
        gap: 0.5rem;
    }

    .containers a {
        font-size: 1.5rem;
        padding: 0.6rem 1rem;
    }
}

@media (max-width: 480px){

    h2 {
        font-size: 1.5rem;
    }

    .containers a {
        font-size: 1rem;
        padding: 0.5rem 0.8rem;
    }
}


/* Quote Section Styling */
.quote-section {
    background:linear-gradient(135deg, #b00 50%, #333 50%); /* Dark blue background */
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
}

/* Form Container */
.qouteclass {
    max-width: 600px;
    margin: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    padding: 40px 30px;
    box-sizing: border-box;
}

/* Title */
.qouteclass h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #001f54;
    font-size: 30px;
    font-weight: 700;
}

/* Form Fields */
.qouteformclass {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.qouteformclass label {
    display: none; /* Hidden for modern minimalist design */
}

.qouteformclass input[type="text"],
.qouteformclass input[type="email"],
.qouteformclass textarea {
    padding: 14px 18px;
    border-radius: 6px;
    border: 1.5px solid #ccc;
    font-size: 16px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.qouteformclass input:focus,
.qouteformclass textarea:focus {
    border-color: #007bff;
    background-color: #fff;
    outline: none;
}

/* Submit Button */
.quote-btn {
    background: linear-gradient(to right, #007bff, #00c6ff);
    color: #fff;
    font-size: 18px;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.quote-btn:hover {
    background: linear-gradient(to right, #0056b3, #0096d6);
}

/* Responsive */
@media (max-width: 600px) {
    .qouteclass {
        padding: 30px 20px;
    }

    .qouteclass h2 {
        font-size: 26px;
    }
}

    .addressee {
      background-image:url('../images/scrollbg.jpg'); 
      text-align: center;
      }
      .addressee h3{
      color: #000;
      font-size: xxx-large;
      }
      .addressee p{
      color: #000;
      }
      #map {
      width: 100%;
      height: 400px;
      margin-top:10px;
      
      }
      
      iframe {
      border: 0; /* Separate border styling */
      margin: 0;
      padding: 0;
      }
      
/* General Footer Styling */
footer {
    background:linear-gradient(135deg, #b00 50%, #333 50%);
    color: #fff;
    padding: 40px 0;
    font-family: 'Arial', sans-serif;
    text-align: left;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 20px;
  }
  
  .footer-section h3,
  .footer-section h4 {
    color: #e1ff00;
    margin-bottom: 10px;
  }
  
  .footer-section p, 
  .footer-section ul {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .footer-section a {
    color: #00c8ff;
    text-decoration: none;
  }
  
  .footer-section a:hover {
    text-decoration: underline;
  }
  
  .footer-section ul {
    list-style-type: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 8px;
  }
  
  .footer-bottom {
    text-align: center;
    padding: 20px;
    background-color: #1a1a1a;
    font-size: 14px;
  }
  
  .footer-bottom p {
    margin: 0;
  }
  
  /* Responsive Footer */
  @media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
  
    .footer-section {
        margin-bottom: 20px;
    }
  
    .footer-bottom {
        font-size: 12px;
    }
  }
        