/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    font-family: 'Montserrat', sans-serif; /* Using Google Font */
  }
  
  h1, p {
    margin: 0;
  }
  
  /* Navbar Styles */
  nav {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 10;
  }
  
  nav .logo img {
    width: 320px; /* Adjust logo size */
  }
  
  .copyright{
    position: absolute;
    bottom: 20px;
    left: 40px;
    color: white;
    z-index: 10;
  }

  .copyright a{
   
    color: white;
    text-decoration: none;
  }

  /* Hero Section Styles */
  .hero {
    position: relative;
    height: 100vh; /* 100% of viewport height */
    overflow: hidden;
  }
  
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire screen */
    z-index: 1;
  }
  
  .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white; /* Changed to white for better visibility on dark video */
    z-index: 5;
  }
  
  /* Text container for background */
  .text-container {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.7); /* Transparent white background */
    padding: 30px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Soft shadow for better visibility */
  }
  
  .text-container p {
    font-size: 1.3rem; /* Increase the font size */
    color: #222; /* Change the color to #222 */
    margin-bottom: 20px; /* Optional: Adds space between the paragraph and the address boxes */
  }
  
  /* Styling for the h1 tag */
  h1 {
    font-style: italic;
    font-size: 3rem;
    font-weight: bold;
    color: #222;
    text-align: center; /* Ensures centered text */
    margin-bottom: 20px; /* Adds space between h1 and address boxes */
  }
  
  /* Address container styles */
  .address-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  /* Address box styles */
  .btn {
    background-color: #ec8951; /* Light background for better contrast */
    padding: 15px;
    border: 2px solid #ec8951;
    width: 150px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    text-decoration: none; /* This removes the underline */
  }
  
  .btn:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 1); /* Solid background on hover */
    border-color: #ec8951; /* Change border to black */
  }
  
  /* Text color styles for Address 1 and 2 (default white) */
  .btn p {
    font-size: 1rem;
    font-weight: bold;
    color: white; /* Text color is white by default */
    margin: 0; /* Remove any default margins */
  }
  
  /* On hover: Change text color to #ec8951 */
  .btn:hover p {
    color: #ec8951; /* Change text color on hover */
  }
  .pt{
    padding-top: 8px;
  }
  /* Media Queries for Responsiveness */
  @media (max-width: 768px) {
    .hero-text h1 {
      font-size: 2.5rem;
    }
  
    .btn p {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .hero-text h1 {
      font-size: 2rem;
    }
  
    .btn p {
      font-size: 0.9rem;
    }
  }