*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
  }
  .topbar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000; /* Dark background to match */
    z-index: 1000; /* Ensures it stays on top */
  }
  
  /* Prevent header from being overlapped */
  .header-offset {
    margin-top: 50px; /* Adjust to match the height of the top bar */
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* Header styles */
  header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: fixed;
    top: 0;
      left: -1px;
      width: 100%;
    z-index: 1000; /* Ensures it's above other elements */
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    margin-top: -1%;
    display: flex;
    align-items: center;
    gap: -14px;
    flex-direction: column;
  }
  
  
  .logo-text{
    margin-left: 11%;
    font-size: -19px;
    margin-top: -12%;
  
  }
  
  .logo-text h1 {
    color: #f97316;
    font-size: 1rem;
    font-weight: bold;
    width: 113%;
  }
  
  .logo-text p {
    font-size: 0.875rem;
    color: #516096;
    width: 114%;
  }
  
  /* Navigation styles */
  .nav-container {
    position: relative;
  }
  
  .nav-toggle {
    display: none;
  }
  
  .nav-toggle-label {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
  }
  
  .nav-toggle-label span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
  }
  
  nav {
    display: flex;
    gap: 2rem;
  }
  
  nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  nav a:hover {
    color: #f97316;
  }
  
  nav a.active {
    color: #f97316;
  }


@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}



/* Banner Section */
.banner {
    background-color: #0d6efd;
    color: white;
    text-align: center;
    padding: 40px 0;
    font-size: 24px;
}

/* Address Boxes */
.content-section {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    margin-top: 13%;
    background-color: #fff;
}

.address-box {
    width: 43%;
    background-color: #e9e9e9;
    padding: 10px;
       text-align: center;
    border-radius: 10px;
    box-shadow:3px 3px 3px 4px rgba(0,0,0,1.1);
}
.address-box:hover{
  transform: translateY(5px);
  box-shadow:3px 3px 3px 4px rgba(0,0,0,1.1);
}

/* Contact Form */
.contact-form {
    background-color: #0d6efd;
    color: white;
    padding: 30px;
    text-align: center;
    margin: 20px auto;
    width: 80%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

.contact-form button {
    background-color: #fff;
    color: #0d6efd;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #ddd;
}
.address-box h3{
  color: #f97316;
}

/* Contact Section Layout */
.contact-section {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    background-color: #f9f9f9;
    gap: 20px;
    
    flex-wrap: wrap;
}

/* Map Card */
.map-card {
    flex: 1;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
  box-shadow:3px 3px 3px 4px rgba(0,0,0,1.1);
    min-width: 300px;
}

/* Contact Form Card */
.contact-form-card {
    flex: 1;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
  box-shadow:3px 3px 3px 4px rgba(0,0,0,1.1);
    min-width: 300px;
}

/* Form Styling */
.contact-form-card form input,
.contact-form-card form textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form-card form button {
    background-color: #0d6efd;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form-card form button:hover {
    background-color: #084298;
}


.backlink p {
  font-size: 16px;
  display: none !important;
}

.backlink {
  margin-top: 30px;
  display: none;
}








/* .footer-address */
.footer-address {
   background: linear-gradient(to right, #000000, rgb(131 42 51));
    padding: 40px 20px;
    margin-top: auto;
    color: white;
  }
  
  .footer-address-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
  }
  
  .footer-address-logo img {
      height: 40px;
      margin-bottom: 10px;
      filter: brightness(0) invert(1);
  }
  
  .contact-info {
      background: rgba(255,255,255,0.1);
      padding: 20px;
      border-radius: 10px;
  }
  
  
  /* Footer styles */
  .footer {
    padding: 1.5rem 1rem;
    background-color: #000000;
    border-top: 1px solid #e9ecef;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
  }
  
  .copyright {
    color: #6c757d;
    font-size: 0.9rem;
  }
  
  .social-links {
    display: flex;
    gap: 1.5rem;
  }
  
  .social-link {
    color: #6c757d;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
  }
  
  .social-icon {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  
  .social-link:hover {
    color: #343a40;
  }
  
  .contact-info:hover {
    transform: translateY(-5px);
    box-shadow:10px 10px 5px  #e9ecef;
  }
  
  



  

/* Large Screens (1200px and above) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
        margin: 0 auto;
    }
   
}

/* Desktop (992px to 1199px) */
@media (max-width: 1199px) {
    .nav-toggle-label {
        display: flex;
      }
    
      .logo-text h1 {
        color: #f97316;
        font-size:15px;
        font-weight: bold;
      }
      
    .logo-text p {
      font-size: 11px;
      color: #666;
    }
    
    /* Header styles */
    header {
      margin-top: 0;
    }
      nav {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        width: 200px;
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 0.5rem 0.5rem;
      }
    
      .nav-toggle:checked ~ nav {
        display: flex;
      }
    
      .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
      }
    
      .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
        opacity: 0;
      }
    
      .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
      }


      .content-section{
        margin-top: 128px;
      }
    
    .container {
        max-width: 960px;
        margin: 0 auto;
    }
   
    .footer-address-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet Landscape (768px to 991px) */
@media (max-width: 991px) {
    .nav-toggle-label {
        display: flex;
      }
    
      .logo-text h1 {
        color: #f97316;
        font-size:15px;
        font-weight: bold;
      }
      
    .logo-text p {
      font-size: 11px;
      color: #666;
    }
    
    /* Header styles */
    header {
      margin-top: 0;
        width: 101%;
    
    }
      nav {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        width: 200px;
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 0.5rem 0.5rem;
      }
    
      .nav-toggle:checked ~ nav {
        display: flex;
      }
    
      .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
      }
    
      .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
        opacity: 0;
      }
    
      .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
      }
    
    .container {
        max-width: 720px;
    }
    
    .nav-links {
        gap: 10px;
    }
    
    .nav-links a {
        padding: 6px 12px;
        font-size: 14px;
    }




    .contact-section {
        flex-direction: column;
        padding: 10px;
    }

    .map-card,
    .contact-form-card {
        width: 100%;
    }





   
    .footer-address-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Tablet Portrait (576px to 767px) */
@media (max-width: 767px) {
    .nav-toggle-label {
        display: flex;
      }
    
      .logo-text h1 {
        color: #f97316;
        font-size:15px;
        font-weight: bold;
      }
      
    .logo-text p {
      font-size: 11px;
      color: #666;
    }
    
    /* Header styles */
    header {
      margin-top: 0;
    }
      nav {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        width: 200px;
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 0.5rem 0.5rem;
      }
    
      .nav-toggle:checked ~ nav {
        display: flex;
      }
    
      .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
      }
    
      .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
        opacity: 0;
      }
    
      .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
      }
    
    .top-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 10px;
    }
    
    nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .logo {
        align-items: center;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .content-section{
          
        flex-direction: column;
        gap: 30px;
        width: 100%;
    
    }

    .address-box{
          
      flex-direction: column;
      gap: 30px;
      width: 100%;
  
  }


    .footer-address-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-address-logo, .contact-info {
        align-items: center;
    }
}

/* Mobile (575px and below) */
@media (max-width: 575px) {
    .nav-toggle-label {
        display: flex;
      }
    
      .logo-text h1 {
        color: #f97316;
        font-size:15px;
        font-weight: bold;
      }
      
    .logo-text p {
      font-size: 11px;
      color: #666;
    }
    
    /* Header styles */
    header {
      margin-top: 0;
    }
      nav {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        width: 200px;
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 0.5rem 0.5rem;
      }
    
      .nav-toggle:checked ~ nav {
        display: flex;
      }
    
      .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
      }
    
      .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
        opacity: 0;
      }
    
      .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
      }
    
    .top-bar {
        padding: 8px;
    }
    
    .social-icons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .tagline {
        font-size: 10px;
    }
    
    .nav-links a {
        padding: 5px 10px;
        font-size: 13px;
    }
   
    
   
   
    .footer-address-content {
      gap: 25px;
  }
  
  .contact-info {
      padding: 15px;
  }
  .footer-address .header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-address .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.footer-address .logo img {
    width: 80%; /* Adjust size as needed */
    max-width: 32%; /* Ensuring it doesn't get too large */
}

.footer-address .contact-info {
    text-align: center;
}

.footer-content {
  max-width: 1208px;
  margin: 0px auto;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 0px 1rem;
  flex-direction: column;
}
.copyright{
font-size: 0.8rem;;
}

}

/* Extra Small Devices (320px and below) */
@media (max-width: 320px) {
    .nav-toggle-label {
        display: flex;
      }
    
      .logo-text h1 {
        color: #f97316;
        font-size:15px;
        font-weight: bold;
      }
      
    .logo-text p {
      font-size: 11px;
      color: #666;
    }
    
    /* Header styles */
    header {
      margin-top: -13%;
    }
      nav {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        width: 200px;
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 0.5rem 0.5rem;
      }
    
      .nav-toggle:checked ~ nav {
        display: flex;
      }
    
      .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
      }
    
      .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
        opacity: 0;
      }
    
      .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
      }
    
    .nav-links a {
        padding: 4px 8px;
        font-size: 12px;
    }
    
      }
