body {
    font-family: 'Montserrat', sans-serif;
    background-color: #121212; /* Dark background for the page */
    color: #e0e0e0; /* Light text color for readability */
  }
  
  .navbar {
    background-color: #1c1c1c; /* Darker navbar */
  }
  
  .navbar-brand img {
    height: 100px;
  }
  
  .hero-section {
    position: relative;
    width: 100%;
    height: 90vh; /* Full height of the viewport */
    overflow: hidden;
  }
  
  /* Style for the video */
  .hero-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire section */
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Darker overlay for better contrast */
    color: #e0e0e0; /* Lighter text on dark overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }
  
  .hero-section h1 {
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff; /* Light color for headings */
  }
  
  .hero-section h2 {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    font-style: normal;
    color: #ddd; /* Light gray for secondary headings */
  }

  .hero-section h3 {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    font-style: normal;
    color: #fff; /* Light gray for secondary headings */
  }

  .hero-section h4 {
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    font-style: normal;
    color: #fff; /* Light gray for secondary headings */
  }

  @keyframes bounce {
    0% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-20px); /* Move up a little */
    }
    50% {
        transform: translateY(0); /* Back to original position */
    }
    70% {
        transform: translateY(-10px); /* Move up again */
    }
    100% {
        transform: translateY(0); /* Final position */
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg); /* Start at 0 degrees */
    }
    100% {
        transform: rotate(720deg); /* End at 360 degrees (full circle) */
    }
}
  
  .hero-section img {
    width: 72%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    padding-left: 0%;
    transition: transform 0.2s ease-in-out;
    cursor: pointer; /* Makes the logo appear clickable */
  }

  .hero-section img.bounce {
    animation: bounce 0.6s ease; /* Apply the bounce animation */
}

.hero-section img.spin {
    animation: spin 1s ease-in-out; /* Apply the spin animation */
}

  
  .about-section {
    padding: 60px 0;
    background-color: #1e1e1e; /* Darker background for about section */
    color: #e0e0e0; /* Light text for readability */
  }
  
  .footer {
    background-color: #1c1c1c; /* Dark footer */
    color: #e0e0e0; /* Light footer text */
    padding: 20px;
  }
  
  .hero-section p {
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 30px;
    color: #fff; /* Light color for the paragraph */
  }
  
  /* Additional sections like services, contact, etc. */
  section {
    background-color: #181818; /* Dark background for other sections */
    color: #e0e0e0; /* Ensure the text is readable */
    padding: 40px 0;
  }
  
  /* If you have links */
  a {
    color: #f2f2f2; /* Light link color for contrast */
  }
  
  a:hover {
    color: #bb86fc; /* Soft purple on hover */
  }

  .instagram {
    display: block; /* Makes each button a block element, so they can be centered */
    margin: 30px auto; /* Adds space above and below the button, and centers it horizontally */
    background-color: rgb(160, 192, 231); /* Makes the button magenta */
    color: white; /* Makes the text color white */
    padding: 12px 20px; /* Adjusts padding for the button */
    font-size: 1rem; /* Increases font size */
    border: none; /* Removes border */
    border-radius: 3px; /* Rounds the corners */
    text-align: center; /* Centers the text */
    width: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Adds smooth transition for hover effect */
}

.bi-instagram {
    font-size: 1rem; /* Adjust the size (3rem is large, you can reduce or increase) */
    color: #464646;  /* Instagram red color */
    padding-right: 20px;
}

.btn-primary {
  --bs-btn-bg: #1c1c1c !important; /* Makes the button magenta */
}

#logo {
  cursor: pointer; /* Makes the logo appear clickable */
}

  
  