* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  height: 200vh;
  background: #111;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: #000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

/* Container */
.nav-container {
  max-width: 1400px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  color: #fff;
  line-height: 1.1;
}

.logo-main {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo-sub {
  display: block;
  font-size: 11px;
  opacity: 0.8;
  letter-spacing: 2px;
}

/* Menu */
.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: red;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Call Button */
.call-btn {
  background: #e50914;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.call-btn:hover {
  background: #ff1e1e;
  transform: scale(1.06);
  box-shadow: 0 8px 25px rgba(255,0,0,0.45);
}

/* Mobile Menu Icon */
.menu-toggle {
  display: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .call-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}






.hero-section {
  position: relative;
  min-height: 100vh;
  background: url(background.png) center/cover no-repeat;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;   /* CENTER horizontally */
  text-align: center;        /* CENTER text */
  padding: 20px;
  color: #fff;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.85)
  );
  z-index: 1;
}

/* Content */
.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;   /* CENTER all items */
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 20px;
  background: rgba(229,9,20,0.15);
  border: 1px solid #e50914;
  color: #e50914;
  font-size: 14px;
  margin-bottom: 18px;
}

/* Title */
.hero-title {
  font-size: 76px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 16px;
}

.hero-highlight {
  color: #e50914;
  font-weight: 400;
}

/* Text */
.hero-text {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 28px;
  max-width: 600px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Call Now Button */
.btn-call {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: #e50914;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  animation: glowBlink 0.3s infinite;
}

/* Glow Animation */
@keyframes glowBlink {
  0% {
    box-shadow: 0 0 6px rgba(229,9,20,0.4);
  }
  50% {
    box-shadow: 0 0 18px rgba(229,9,20,0.9);
  }
  100% {
    box-shadow: 0 0 6px rgba(229,9,20,0.4);
  }
}

/* Outline Button */
.btn-outline {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
  }
  .hero-badge{
    padding: 8px 14px;
    font-size: 10px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-call,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .hero-text{
    font-size: 12px;
  }
}









.features-section {
  background: #0b0b0b;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.features-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

/* Feature Card */
.feature-box h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-box p {
  color: #bdbdbd;
  font-size: 14px;
}

/* Icon Box */
.icon-box {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  background: rgba(229,9,20,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i {
  color: #e50914;
  font-size: 20px;
}

/* Tablet */
@media (max-width: 992px) {
  .features-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .features-container {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .features-section{
    padding: 40px 20px;
  }
  .feature-box h4 {
    font-size: 15px;
  }

  .feature-box p {
    font-size: 13px;
  }
}














.services-section {
  background: radial-gradient(circle at top, #111 0%, #000 70%);
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

/* Header */
.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-header span {
  color: var(--red);
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
}

.services-header h2 {
  font-size: 42px;
  font-weight: 600;
  margin-top: 8px;
}

/* Grid */
.services-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.service-card {
  background: linear-gradient(180deg, #141414, #0e0e0e);
  border-radius: 14px;
  padding: 34px 30px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.35s ease;
  position: relative;
}

/* SAME hover effect for ALL cards */
.service-card:hover {
  border-color: rgba(229,9,20,0.6);
  box-shadow:
    0 0 0 1px rgba(229,9,20,0.4),
    0 0 30px rgba(229,9,20,0.35);
  transform: translateY(-6px);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #e50914; /* SOLID RED */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon i {
  color: #ffffff;
  font-size: 20px;
}

/* Title */
.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Text */
.service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #cfcfcf;
}

/* Tablet */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-header h2 {
    font-size: 34px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-section{
    padding: 40px 20px;
  }

  .services-header h2 {
    font-size: 28px;
  }

  .service-card {
    padding: 28px 24px;
  }
}












.why-section {
  background: radial-gradient(circle at top, #111111 0%, #000000 70%);
  padding: 90px 20px;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.why-tag {
  color: #e50914;
  font-size: 15px;
  letter-spacing: 2px;
  font-weight: 600;
}

.why-title {
  font-size: 58px;
  font-weight: 600;
  margin: 14px 0 18px;
  line-height: 1.2;
}

.why-title span {
  color: #e50914;
}

.why-text {
  font-size: 15px;
  line-height: 1.7;
  color: #cfcfcf;
  max-width: 520px;
}

/* RIGHT */
.why-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: linear-gradient(180deg, #141414, #0e0e0e);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
}

.why-item i {
  color: #e50914;
  font-size: 18px;
}

.why-item span {
  font-size: 14px;
  color: #eaeaea;
}

.why-item:hover {
    border: 0.5px solid #e50914;
}

/* Tablet */
@media (max-width: 992px) {
  .why-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-title {
    font-size: 38px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .why-title {
    font-size: 30px;
  }
  .why-section{
    padding: 40px 20px;
  }

  .why-item {
    padding: 14px 16px;
  }

  .why-item span {
    font-size: 13px;
  }
}








.portfolio-section {
  background: #000000;
  padding: 80px 20px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 40px;
}

.portfolio-header span {
  color: #e50914;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
}

.portfolio-header h2 {
  font-size: 42px;
  margin-top: 6px;
}

/* SLIDER */
.slider {
  position: relative;
  max-width: 1000px;
  margin: auto;
  border-radius: 14px;
  overflow: hidden;
}

.slider img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* Navigation Arrows */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.2);
  border: none;
  color: #ffffff;
  font-size: 16px;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 6px;
}

.prev { left: 5px; }
.next { right: 5px; }

/* Dots */
.dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.dot {
  width: 18px;
  height: 4px;
  background: #444444;
  border-radius: 4px;
  cursor: pointer;
}

.dot.active {
  background: #e50914;
}

/* Mobile */
@media (max-width: 768px) {
  .slider img {
    height: 280px;
  }
  .portfolio-section {
    padding: 0px 20px;
  }

  .portfolio-header h2 {
    font-size: 28px;
  }
}









.cta-section {
  position: relative;
  background: radial-gradient(circle at center, #772020 0%, #000000 70%);
  padding: 100px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
}

/* Top tag */
.cta-tag {
  color: #e50914;
  font-size: 15px;
  letter-spacing: 2px;
  font-weight: 600;
}

/* Title */
.cta-title {
  font-size: 52px;
  font-weight: 600;
  line-height: 1.2;
  margin: 18px 0;
}

.cta-title span {
  color: #e50914;
}

/* Text */
.cta-text {
  font-size: 17px;
  color: #cfcfcf;
  max-width: 650px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Call Button */
.btn-call {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  background: #e50914;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  animation: redBlink 1.2s infinite;
}

/* Blink animation */
@keyframes redBlink {
  0% {
    box-shadow: 0 0 6px rgba(229,9,20,0.4);
  }
  50% {
    box-shadow: 0 0 22px rgba(229,9,20,0.9);
  }
  100% {
    box-shadow: 0 0 6px rgba(229,9,20,0.4);
  }
}

/* Outline button */
.btn-outline {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 500;
}

.btn-outline:hover {
  background: #ffffff;
  color: #000000;
}

/* Service area */
.cta-area {
  margin-top: 32px;
  font-size: 14px;
  color: #bdbdbd;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-title {
    font-size: 32px;
  }
  .cta-section {
    padding: 40px 20px;
  }

  .cta-text {
    font-size: 14px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-call,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
}









.footer {
  background: radial-gradient(circle at top, #111111 0%, #000000 70%);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  padding: 70px 20px 0;
}

/* Main container */
.footer-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 40px;
}

/* Logo */
.footer-logo {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
}

/* Text */
.footer-text {
  font-size: 14px;
  line-height: 1.7;
  color: #cfcfcf;
  margin-bottom: 14px;
}

.footer-text.gst {
  margin-top: 20px;
  font-size: 13px;
  color: #bdbdbd;
}

/* Titles */
.footer-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* Lists */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list a {
    text-decoration: none;
}
.footer-list li:hover{
    color: #e50914;
}

.footer-list li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: #cfcfcf;
  margin-bottom: 14px;
  line-height: 1.6;
}

.footer-list li i {
  color: #e50914;
  margin-top: 4px;
}

/* Simple list (services) */
.footer-list.simple li {
  display: block;
  padding-left: 0;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  color: #bdbdbd;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer{
    padding: 40px 20px 0px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}












.gallery-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
}
.gallery-section h1{
  margin-bottom: 15px;
  color: #e50914;
  text-align: center;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
