* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Poppins', sans-serif;
line-height: 1.6;
background: radial-gradient(#2d2d2d, #000000);
color: #333;
}
.container {
width: 90%;
max-width: 75rem;
margin: 0 auto;
}

.section {
padding: 3.75rem 1.25rem;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: orange;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 0rem;
  color: orange;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
nvbr {
  font-family: poppins;
  background: black;
  min-height:20vh;
    
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  width: 100%;
  position: fixed;
  top: 0;
  box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(0.625rem);
  z-index: 999;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 2rem;
  max-width: 100rem;
}

.navbar-logo {
height: 3.75rem;
}

.navbar-container .navbar-menu {
  display: flex;
  text-align: center;
  gap: 1.5rem;
  list-style: none;
}

.navbar-container .navbar-menu li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 0.1875rem 1.25rem;
  border-radius: 1.25rem;
  border: 0.125rem solid transparent;
  transition: all 0.7s ease;
  
}

.navbar-container .navbar-menu li a:hover,
.navbar-container .navbar-menu li a.active{
  color: #162530;
  background: #ffa500;
  border: 0.125rem solid #fff;
}

.navbar-toggle {
  display: none;
  background: transparent;
  padding: 0.625rem;
  border: none;
  cursor: pointer;
}

.bar {
  display :block;
  width: 1.5625rem;
  height: 0.1875rem;
  margin: 0.3125rem auto;
  background: #fff;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 55rem) {
  .navbar {
    backdrop-filter: none;
  }
  
  .navbar-container .navbar-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.7rem !important;
    position: absolute;
    height: 100vh;
    width: 15.625rem;
    top: 0;
    right: 0;
    overflow: hiddem;
    padding: 5rem 1.5rem;
    box-shadow: 0 0.625rem 0.625rem rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(0.625rem);
  }
  
  .navbar-container .navbar-menu.active {
    display: flex;
  }
  
  .navbar-toggle {
   display: block;
    z-index: 999;
  }
  navbar-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .navbar-toggle.active .bar:nth-child(1) {
    transform: translateY(0.5rem) rotate(45deg);
  }
  
  .navbar-toggle.active .bar:nth-child(3) {
    transform : translateY(-0.5rem) rotate(-45deg);
  }
}

@media (max-width: 30rem) {
  .navbar-container{
    padding: 0 1rem;
  }
  
  .navbar-toggle {
    font-size: 1.7rem;
  }
  .navbar-container .navbar-menu li a {
    font-size: 1.2rem;
    padding: 0.1875rem 0.9375rem;
  }
}

/* Hero Section with Video Background */
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-image: url("https://i.ibb.co/1Y1TzDHm/Contact-banner.jpg"); /* Replace 'your-image.jpg' with your image file path */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  border: none;
  background-size: cover; /* Scales the image to cover the entire element */
  background-position: center; /* Centers the image */
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
/* Responsive Hero */
@media (max-width: 48rem) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

/*animation*/
.service-card {
  background:none;
}
.service-card:hover {
  transform: translateY(-0.5rem);
  border-color: white;
  box-shadow: 0 0.625rem 1.5625rem rgba(0,0,0,0.2);
}


/* Contact Section */
.contact {
  padding: 1rem 2rem 0.5rem 2rem;
  min-height: 20h;
  text-align: center;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  gap: 2rem;
  max-width: 68.75rem;
  margin: 2rem auto;
  text-align: left;
}
.contact-info{
  border: 0.375rem solid orange;
  border-radius: 0.625rem;
}
.contact-info:hover{
  border-color: #fff;
  border-radius:1.25rem;
}
.contact-info h3 {
  text-align: center;
  margin-top: 0.25rem;
  color: orange;
}
.contact-info p {
  text-align: center;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}
.qr-img {
  width: 7.5rem;
  margin-top: 1rem;
  margin-left: 38%;
  border: 0.1875rem solid orange;
}
.social-icons a {
  margin-left: 0rem;
  color: #333;
  font-weight: 600;
  font-size: 0.95rem;
}
.contact-form form {
  display: flex;
  flex-direction: column;
}
.contact-form input,
.contact-form textarea {
  margin-bottom: 1rem;
  padding: 0.8rem;
  border: 0.0625rem solid #ccc;
  border-radius: 0.375rem;
}
.contact-form button {
  background-color: red;
  color: white;
  padding: 0.8rem;
  border: none;
  border-radius: 0.375rem;
  font-weight: bold;
  cursor: pointer;
}

/* Footer Section */
.footer {
  background: #111;
  color: #eee;
  padding: 3rem 2rem 1rem;
  text-align:center;
}
.footer-brand a{
  position: relative;justify-content: center;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 4rem;
  max-width: 68.75rem;
  margin: auto;
}

.footer-brand img {
  width: 7.5rem;
  margin-bottom: 1rem;
}
.footer-brand p {
  text-align: center;
  width:100%;
  font-size: 1rem;
  line-height: 1.5;
}
.footer-links h2,
.footer-contact h2 {
  color: orange;
  margin-bottom: 0.8rem;
}
.footer-links ul {
  position: relative;
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a {
  color: #eee;
  text-decoration: none;
  font-size: 0.95rem;
}
.footer-contact p {
  width:100%;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.footer-contact .social-icons img {
  width:2rem;
}
.footer-bottom {
  text-align: center;
  border-top: 0.0625rem solid #333;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #999;
}
.service-card {
  opacity: 0;
  transform: translateY(12.5rem);
}

.service-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

/* --- Your Original Code (unchanged) --- */
/* I kept all your existing CSS as-is */

/* --- Responsive Tweaks --- */

/* Tablets and smaller (below 1024px) */
@media (max-width: 64rem) {
  .contact-wrapper {
    grid-template-columns: 1fr; /* Stack items vertically */
    text-align: center;
  }

  .contact-info {
    padding: 1rem;
  }

  .qr-img {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
  }
}

/* Mobile Devices (below 768px) */
@media (max-width: 48rem) {
  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .contact {
    padding: 2rem 1rem;
  }

  .contact-info p {
    font-size: 0.85rem;
  }

  .qr-img {
    width: 6rem; /* smaller QR for mobile */
  }

  .contact-form button {
    font-size: 0.9rem;
    padding: 0.7rem;
  }

  .footer-container {
    grid-template-columns: 1fr; /* stack footer items */
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto 1rem;
  }

  .social-icons {
    margin-top: 1rem;
  }
}

/* Extra small screens (below 480px) */
@media (max-width: 30rem) {
  .navbar-container .navbar-menu li a {
    font-size: 1rem;
    padding: 0.3rem 0.6rem;
  }

  .hero {
    height: 50vh; /* smaller hero */
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .contact {
    padding: 1.5rem 0.8rem;
  }

  .qr-img {
    width: 5rem;
  }

  .footer {
    padding: 2rem 1rem;
  }
}

