* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
  background-color: black;
  position: relative;
  font-family: sans-serif;
}

/* Smooth Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #cd1313, #460000);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #ff1a1a, #660000);
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 20px;
    background-color: transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(0px);
}

nav.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(205, 19, 19, 0.3);
}

.logo img {
    height: 80px;
    width: 160px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    height: 3px;
    width: 25px;
    background-color: white;
    margin: 3px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.list ul {
    color: white;
    list-style: none;
    display: flex;
    gap: 30px;
}

.list ul li span {
    padding: 10px 15px;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
    display: inline-block;
}

.list ul li span:hover {
    color: white;
    background: linear-gradient(to right, #cd1313, #460000);
    box-shadow: 0 0 10px #82080875, 0 0 25px #8713158c, 0 0 50px #e61e177f, 0 0 100px #bc07077f;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: url("bg2.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero h1 {
  position: relative;
  font-size: clamp(60px, 12vw, 150px);
  font-family: "Cinzel", serif;
  font-weight: 500;
  color: white;
  z-index: 2;
  text-align: center;
  letter-spacing: 5px;
}

/* Container Section */
.container {
  margin: 0;
  background: linear-gradient(to bottom, #2b020b, #470101);
  padding: 80px 20px;
}

.box {
  margin: 0 auto;
  padding: 50px 60px;
  max-width: 1200px;
  background-color: rgba(178, 177, 176, 0.334);
  border-radius: 20px;
}

.work p {
  padding: 30px;
  color: #e3eadf;
  font-size: clamp(30px, 6vw, 60px);
  text-align: center;
  font-family: "Encode Sans SC", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brands {
  padding: 0 20px 30px 20px;
}

.b1 {
  justify-content: center;
  align-items: center;
  display: flex;
  margin: 50px 0;
  flex-wrap: wrap;
  gap: 50px;
  padding: 20px 0;
}

.b1 img {
  max-width: 200px;
  height: auto;
  flex-shrink: 0;
}

.b1-content {
  flex: 1;
  min-width: 250px;
}

.b1-content h3 {
  color: #e3eadf;
  font-size: clamp(20px, 2vw, 26px);
  font-family: "Inter", "Segoe UI", "Roboto", sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
}

.b1 p {
  color: white;
  font-size: clamp(15px, 1.5vw, 18px);
  font-family: "Inter", "Segoe UI", "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
}

/* Our Work Section */
.ourWork {
  margin: 0;
  background: linear-gradient(to bottom, #470101, #2b020b);
  padding: 80px 20px;
}

.video {
  background-color: #24050b;
  padding: 20px;
  border-radius: 20px;
  margin: 10px 70px;
}

.video-grid {
  max-width: 1200px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 20px;
}

.video-item {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  overflow: hidden;
}

.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Container2 */
.container2 {
  margin: 0;
  background: linear-gradient(to bottom, #2b020b, rgba(0, 0, 0, 0.681));
  padding: 50px 20px;
}

.box2 {
  margin: 0 auto;
  max-width: 1200px;
  border-radius: 20px;
  text-align: center;
}

.box2 img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  max-height: 700px;
  object-fit: cover;
}

/* Services */
.services {
  display: flex;
  gap: 50px;
  padding: 80px 20px 0px 20px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.sImg {
  flex: 1;
  min-width: 300px;
}

.sImg img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

.service {
  flex: 1;
  min-width: 400px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1000px;
}

.service div {
  margin: 20px 0;
  padding: 30px;
  border-radius: 10px;
  min-height: 320px;
  text-align: center;
  background: linear-gradient(to right, #650404, #310101);
  transition: all 0.3s ease;
  position: relative;
}

.service div:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 10px #82080875,
    0 0 25px #8713158c,
    0 0 50px #e61e177f,
    0 0 100px #bc07077f;
}

.service h3 {
  margin-top: 10px;
  font-size: clamp(14px, 2vw, 20px);
  font-family: "Encode Sans SC", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #fcfcfc;
  margin-bottom: 20px;
}

.service p.yo {
  font-size: clamp(30px, 6vw, 60px);
  font-family: "Encode Sans SC", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: bold;
  color: white;
}

.serviceImg {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 120px;
  height: 120px;
}

/* Reviews */
.review {
  overflow: hidden;
  width: 100%;
  margin: 0px;
  padding: 80px 60px 40px 60px;
  background: linear-gradient(to bottom, black, #2b020b);
}

.review-bar {
  display: flex;
  gap: 40px;
  width: max-content;
}

.review-bar>div {
  flex-shrink: 0;
  width: 350px;
  min-height: 280px;
  background: linear-gradient(135deg, #fdfcf8 0%, #f9f7f0 100%);
  padding: 35px;
  border-radius: 15px;
  color: #1a1a1a;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
}

.review-bar>div::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 25px;
  font-size: 60px;
  color: rgba(205, 19, 19, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.review-bar>div:hover {
  transform: translateY(-8px);
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.2),
    0 0 15px rgba(205, 19, 19, 0.3);
}

.review-bar h3 {
  font-size: clamp(17px, 2vw, 22px);
  margin-bottom: 20px;
  font-family: "Encode Sans SC", sans-serif;
  font-weight: 700;
  color: #530505;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.review-bar p {
  font-size: clamp(16px, 1.4vw, 16px);
  line-height: 1.8;
  font-family: "Inter", "Segoe UI", "Roboto", sans-serif;
  font-weight: 400;
  color: #2d2d2d;
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* Footer */
.divider {
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #cd1313, #460000);
}

.footer {
  background: #111;
  color: #bbb;
  padding: 50px 20px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 20px;
  max-width: 1200px;
  margin: 0 auto 20px auto;
}

.footer h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
}

.footer h3::after {
  content: "";
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, #cd1313, #460000);
  position: absolute;
  left: 0;
  bottom: -6px;
}

.footer p {
  font-size: 14px;
  line-height: 22px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #cd1313;
}

.contact-info li {
  font-size: 14px;
  margin: 6px 0;
}

.subscribe-form {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.subscribe-form input {
  padding: 8px;
  border: none;
  border-radius: 3px;
  flex: 1;
  min-width: 150px;
}

.subscribe-form button {
  background: linear-gradient(to right, #cd1313, #460000);
  border: none;
  color: #fff;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 3px;
  transition: 0.3s;
}

.subscribe-form button:hover {
  opacity: 0.9;
  box-shadow:
    0 0 50px #82080843,
    0 0 50px #8713158c,
    0 0 50px #e61e1740,
    0 0 50px #bc07073d;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 13px;
}

.social-icons a {
  color: #bbb;
  margin: 0 8px;
  font-size: 16px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #cd1313;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 50px;
  right: 20px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #20b358;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .list {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 80px 20px 20px 20px;
    transition: left 0.3s ease;
    z-index: 999;
  }

  .list.active {
    left: 0;
  }

  .list ul {
    flex-direction: column;
    gap: 10px;
  }

  .list ul li span:hover {
    color: white;
    background: none !important;
    box-shadow: none !important;
  }

  .hero h1 {
    font-size: clamp(40px, 10vw, 80px);
  }

  .container,
  .container2 {
    padding: 50px 15px;
  }

  .box,
  .box2 {
    margin: 0;
  }

  .brands {
    padding: 0 10px 20px 10px;
  }

  .b1 {
    flex-direction: column;
    text-align: center;
  }

  .ourWork {
    padding: 20px 15px;
  }

  .video {
    margin: 10px 20px;
    padding: 15px;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }

  .services {
    flex-direction: column;
    padding: 50px 15px;
  }

  .sImg img {
    width: 100%;
    height: auto;
    max-width: 400px;
    object-fit: contain;
  }

  .sImg {
    order: 2;
  }

  .service {
    order: 1;
    min-width: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .service div {
    min-height: 280px;
  }

  .serviceImg {
    width: 80px;
    height: 80px;
  }

  .review {
    padding: 60px 20px 20px 20px;
  }

  .review-bar {
    gap: 25px;
  }

  .review-bar>div {
    width: 280px;
    min-height: 25s0px;
    padding: 28px;
  }

  .review-bar>div::before {
    font-size: 50px;
    top: 10px;
    left: 20px;
  }

  .footer-mobile-hide {
    display: none;
  }

  .footer-mobile-links {
    display: block;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-mobile-links {
    display: flex;
    flex-direction: column;
  }

  .footer-mobile-links:nth-child(2),
  .footer-mobile-links:nth-child(3) {
    display: inline-block;
    width: 48%;
  }

  .footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer-container .footer-col:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 70px;
    width: 140px;
  }

  .hero {
    height: 80vh;
  }

  .hero h1 {
    font-size: clamp(30px, 8vw, 60px);
  }

  .work p {
    padding: 30px 15px;
  }

  .brands {
    padding: 0 5px 15px 5px;
  }

  .b1 {
    margin: 20px 0;
  }

  .service div {
    margin: 15px 0;
    padding: 20px;
    min-height: 250px;
  }

  .serviceImg {
    width: 60px;
    height: 60px;
  }

  .review-bar>div {
    width: 250px;
    min-height: 100px;
    padding: 25px;
  }

  .review-bar>div::before {
    font-size: 30px;
  }
}