/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'poppins', sans-serif;
}

body {
  line-height: 1.6;
  color: #fff;
  background: radial-gradient(#2d2d2d, #000000);
}a { text-decoration: none; color: inherit; }

/* Navbar */
nvbr {
  font-family: poppins;
  background: black;
  min-height:20dvh;
    
}

.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: 100dvh;
    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: 70dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 60%;
  z-index: -1;
  filter: brightness(0.6);
}

.hero-content {
  z-index: 2;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background: black;
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 1.875rem;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  scale:1.2;
  transition: 0.5s ease-in-out;
}

/* Responsive Hero */
@media (max-width: 48rem) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

/* Section Styles */
.container{
  text-align:center;
}
.section {
  padding: 4.375rem 1.25rem;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  width: 3.75rem;
  height: 0.1875rem;
  background: #000;
  display: block;
  margin: 0.625rem auto 0;
}

/* Services Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  gap: 1.875rem;
}

.service-card {
  background: #000;
  border: 0.25rem solid orange;
  border-radius: 0.75rem;
  box-shadow: 0 0.375rem 1.125rem rgba(0,0,0,0.1);
  padding: 1.5625rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card img {
  width: 100%;
  border-radius: 0.625rem;
  margin-bottom: 1.25rem;
}

.service-card:hover {
  transform: translateY(-0.5rem);
  border-color: white;
  box-shadow: 0 0.625rem 1.5625rem rgba(0,0,0,0.2);
}

.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  color: orange;
}

.service-card p {
  font-size: 0.9375rem;
  color: white;
}

/* CTA Section */
.cta-section {
  background: #000;
  color: #fff;
  height: 50dvh;
  text-align: center;
  padding: 4rem 8rem;
}

.cta-section h2 {
  font-size: 1.875rem;
  margin-bottom: 1.25rem;
}

.cta-section .btn {
  background: #fff;
  margin-bottom: 1rem;
  color: #000;
  padding: 0.75rem 1.5625rem;
  border-radius: 0.625rem;
  text-decoration: none;
  font-weight: bold;
}

.cta-section .btn:hover {
  background: orange;
  color: #000;
}

/* ================================
 Footer
================================ */
.footer {
  background: #111;
  color: #eee;
  padding: 3rem 2rem 1rem;
  text-align: center;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 2rem;
  max-width: 68.75rem;
  margin: auto;
}

.footer-brand img {
  width: 7.5rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 1rem;
  line-height: 1.5;
}

.footer-links h2,
.footer-contact h2 {
  color: orange;
  margin-bottom: 0.8rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #eee;
  font-size: 0.95rem;
}

.footer-contact p {
  font-size: 0.9rem;
}

.footer-contact .social-icons img {
  width: 2rem;
}

.footer-bottom {
  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;
}

/* --- EXISTING CODE (unchanged) --- */
/* Your full CSS code remains as is above... */


/* --- RESPONSIVE ENHANCEMENTS --- */

/* Tablet & Small Desktop Adjustments */
@media (max-width: 75rem) {
  .hero {
    height: 60dvh;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
  .cta-section {
    padding: 3rem 4rem;
  }
}

/* Tablets & Large Phones */
@media (max-width: 55rem) {
  .hero {
    height: 50dvh;
    padding: 2rem 1rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .section {
    padding: 3rem 1rem;
  }
  .cta-section {
    padding: 2rem 2rem;
    height: auto;
  }
  .cta-section h2 {
    font-size: 1.5rem;
  }
  .cta-section .btn {
    padding: 0.6rem 1.2rem;
  }
  .footer-container {
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand img {
    width: 6rem;
  }
}

/* Mobile Devices */
@media (max-width: 30rem) {
  .hero {
    height: 45dvh;
    text-align: center;
    padding: 1rem;
  }
  .hero-content h1 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }
  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
  }
  .btn-primary {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .grid {
    grid-template-columns: 1fr; /* Single column for services */
  }
  .service-card {
    padding: 1rem;
  }
  .service-card h3 {
    font-size: 1.1rem;
  }
  .service-card p {
    font-size: 0.85rem;
  }
  .cta-section {
    padding: 1.5rem 1rem;
  }
  .cta-section h2 {
    font-size: 1.25rem;
  }
  .cta-section .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-links h2,
  .footer-contact h2 {
    font-size: 1.1rem;
  }
  .footer-links a,
  .footer-contact p {
    font-size: 0.85rem;
  }
  .footer-contact .social-icons img {
    width: 1.5rem;
  }
}
