/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Poppins:wght@300;400;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "poppins", sans-serif;
}

/* Header Styling */
.section_1 {
  position: relative;
  background: url("assets/download.png");
  background-position: center;
  background-size: cover;
  padding: 20px 0;
  z-index: 1;
}

.section_1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(
    0,
    0,
    0,
    0.673
  ); /* Adjust opacity for better shadow effect */
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8); /* Inner shadow effect */
  z-index: -1;
}
/* Logo Styling */
.logo {
  width: 200px;
  max-width: 100%;
  margin-top: -50px;
}

/* Navbar Styling */
.navbar {
  background: transparent;
  font-size: 18px;
  letter-spacing: 2px;
  padding: 10px 20px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.navbar ul li {
  position: relative;
  padding: 10px 15px;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}

.navbar ul li a {
  text-decoration: none;
  color: white;
  position: relative;
  transition: color 0.3s ease-in-out;
}

.navbar ul li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #fd3030;
  color: #fd3030;
  transition: all 0.4s ease-in-out;
  transform: translateX(-50%);
}

.navbar ul li:hover::after,
.navbar ul li.active::after {
  width: 100%;
  color: #fd3030;
}

.navbar ul li:hover a {
  color: #fd3030;
}

.navbar ul li.active a {
  color: #fd3030;
}

/* Fade-in effect for menu items */
.navbar ul li {
  opacity: 0;
  transform: translateY(-10px);
  animation: fadeIn 0.5s ease-in-out forwards;
  color: #fd3030;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Offcanvas Menu */
.offcanvas {
  background-color: #212529;
}

.nav-link {
  color: white !important;
  font-weight: 500;
  transition: 0.3s;
}

.nav-link:hover {
  color: #fd3030 !important;
}
.nav-link:active {
  color: #fd3030 !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .logo {
    width: 180px;
    padding-top: 20px;
  }

  .offcanvas {
    width: 80%;
    padding-top: 20px;
  }
}
@media (max-width: 992px) {
  #togs-button {
    margin-top: 20px;
    color: #fff;
    border: none;
    background-color: #fd3030;
    float: right;
  }
}
/* Button Styles */
.btn-quote {
  background: linear-gradient(90deg, #fd3030, #ff6b6b);
  color: white;
  font-size: 16px;
  padding: 12px 25px;
  border: none;
  border-radius: 1px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 10px rgba(253, 48, 48, 0.3);
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.btn-quote:hover {
  transform: scale(1.1);
  background: linear-gradient(90deg, #ff6b6b, #fd3030);
  box-shadow: 0px 8px 20px rgba(253, 48, 48, 0.5);
}

/* Click Effect */
.btn-quote:active {
  transform: scale(1.05);
  box-shadow: 0px 3px 8px rgba(253, 48, 48, 0.7);
}

@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.graphic-custom {
  padding: 150px 0px 180px 0px;
}
@media (max-width: 992px) {
  .graphic-custom {
    padding: 50px 0px 50px 0px;
  }
  .container-fluid.navs-responsive {
    margin-top: -50px;
    display: block;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
  }
}

/* About Us Css */

.about-section {
  background: linear-gradient(to right, #000000, #0d0b0b);
  padding: 60px 0;
}
.about-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: left;
  color: #fd3030;
}
.about-text {
  font-size: 16px;
  text-align: left;
  margin-top: 20px;
}
.about-image {
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(255, 0, 0, 0.5);
}
.btn-custom {
  background-color: #fd303000;
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 1px;
  padding: 10px 20px;
  border: 1px solid #fff;
}
.btn-custom:hover {
  background-color: #e62e00;
  color: #ffffff;
}

/* Services Css */

@media (max-width: 992px) {
  .vinyl-wrap {
    padding-top: 120px;
  }
}

#services {
  padding-top: 100px;
}

@media (max-width: 992px) {
  #services {
    padding-top: 150px;
  }
}
.header {
  height: 65vh;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: zoomIn 1s ease-in-out;
  font-family: "poppins";
  letter-spacing: 2px;
}

body {
  background-color: black;
  color: white;
}
.hero-section {
  /* background: url("assets/stunning.jpg") fixed center;
  background-size: cover;
  display: flex; */
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 35vh;
}
.hero-text {
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border-radius: 10px;
}
.service-box {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.card {
  background-color: #1a1a1a;
  border: none;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(255, 0, 0, 0.5);
}
.card img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

/* Testimonials */

.testimonial-slider {
  max-width: 800px;
  margin: auto;
}
.carousel-item {
  text-align: center;
  padding: 40px;
}
.testimonial-card {
  background: #111;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}
.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
}
.testimonial-author {
  margin-top: 15px;
  font-weight: bold;
  font-size: 1.2rem;
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.testimonial-stars {
  color: gold;
  font-size: 18px;
  margin-top: 5px;
}

.contact-section {
  padding: 60px 0;
}
.contact-form {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.contact-image {
  width: 100%;
  border-radius: 10px;
}
.btn-custom {
  background-color: #fd3030;
  color: #fff;
  transition: all 0.3s ease-in-out;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  border: none;
  padding: 10px 15px;
  border-radius: 1px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn-custom:hover {
  background-color: #ff5a5a; /* Slightly lighter red */
  transform: scale(1.1); /* Slightly enlarges button */
  box-shadow: 0 4px 10px rgba(253, 48, 48, 0.5); /* Adds a glow effect */
}

.send-btn {
  width: 200px;
}
.custom-input {
  display: block;
  width: 100%;
  padding: 10px 15px;
  font-size: 1rem;
  color: #fff;
  background-color: #00000000; /* Fully transparent background */
  border: 2px solid #fff; /* White border */
  border-radius: 1px; /* Smooth edges */
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.custom-input::placeholder {
  color: rgba(255, 255, 255, 0.7); /* Light white placeholder */
}

.custom-input:focus {
  border-color: #fd3030; /* Change border color on focus */
  box-shadow: 0px 0px 8px #ffcc00cc;
}

footer {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.2)
    ),
    url(assets/Rolls-Royce.jpg);
  background-size: cover;
  background-position: center;
  color: white;
}

footer .content {
  max-width: 1250px;
  margin: auto;
  padding: 30px 40px 40px 40px;
}
footer .content .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  padding-left: 20px;
}
.content .top .logo-details {
  color: #fff;
  font-size: 30px;
}
.content .top .media-icons {
  display: flex;
}
.content .top .media-icons a {
  height: 40px;
  width: 40px;
  margin: 0 8px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.4s ease;
}
.top .media-icons a:nth-child(1) {
  background: #4267b2;
}
.top .media-icons a:nth-child(1):hover {
  color: #4267b2;
  background: #fff;
}
.top .media-icons a:nth-child(2) {
  background: #1da1f2;
}
.top .media-icons a:nth-child(2):hover {
  color: #1da1f2;
  background: #fff;
}
.top .media-icons a:nth-child(3) {
  background: #e1306c;
}
.top .media-icons a:nth-child(3):hover {
  color: #e1306c;
  background: #fff;
}
.top .media-icons a:nth-child(4) {
  background: #0077b5;
}
.top .media-icons a:nth-child(4):hover {
  color: #0077b5;
  background: #fff;
}
.top .media-icons a:nth-child(5) {
  background: #ff0000;
}
.top .media-icons a:nth-child(5):hover {
  color: #ff0000;
  background: #fff;
}
footer .content .link-boxes {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
footer .content .link-boxes .box {
  width: calc(100% / 2 - 10px);
}
.content .link-boxes .box .link_name {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 10px;
  position: relative;
}
.link-boxes .box .link_name::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 35px;
  background: #fff;
}
.content .link-boxes .box li {
  margin: 6px 0;
  list-style: none;
  font-size: 18px;
}
.content .link-boxes .box li a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.4s ease;
}
.content .link-boxes .box li a:hover {
  opacity: 1;
  text-decoration: underline;
}
.content .link-boxes .input-box {
  margin-right: 55px;
}
.link-boxes .input-box input {
  height: 40px;
  width: calc(100% + 55px);
  outline: none;
  border: 2px solid #ffffff;
  background: #eaeaea00;
  border-radius: 1px;
  padding: 0 15px;
  font-size: 15px;
  color: #ffffff;
  margin-top: 5px;
}
.link-boxes .input-box input::placeholder {
  color: #ffffff;
  font-size: 16px;
}
.link-boxes .input-box input[type="submit"] {
  background-color: #fd3030;
  border: none;
  font-size: 18px;
  font-weight: 500;
  margin: 4px 0;
  cursor: pointer;
  transition: all 0.4s ease;
}
.input-box input[type="submit"]:hover {
  opacity: 1;
}
footer .bottom-details {
  width: 100%;
  background: #000000;
}
footer .bottom-details .bottom_text {
  text-align: center;
  padding: 20px 40px;
  text-align: center;
}
.bottom-details .bottom_text span,
.bottom-details .bottom_text a {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
}
.bottom-details .bottom_text a:hover {
  opacity: 1;
  text-decoration: underline;
}
.bottom-details .bottom_text a {
  margin-right: 10px;
}
@media (max-width: 900px) {
  footer .content .link-boxes {
    flex-wrap: wrap;
  }
  footer .content .link-boxes .input-box {
    width: 40%;
    margin-top: 10px;
  }
}
@media (max-width: 700px) {
  footer {
    position: relative;
  }
  .content .top .logo-details {
    font-size: 26px;
  }
  .content .top .media-icons a {
    height: 35px;
    width: 35px;
    font-size: 14px;
    line-height: 35px;
  }
  footer .content .link-boxes .box {
    width: calc(100% / 1 - 10px);
  }
  footer .content .link-boxes .input-box {
    width: 60%;
  }
  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a {
    font-size: 12px;
  }
}
@media (max-width: 520px) {
  footer::before {
    top: 145px;
  }
  footer .content .top {
    flex-direction: column;
  }
  .content .top .media-icons {
    margin-top: 16px;
  }
  footer .content .link-boxes .box {
    width: calc(100% / 2 - 10px);
  }
  footer .content .link-boxes .input-box {
    width: 100%;
  }
}

.logo-1 {
  max-width: 250px;
  height: 250px;
}

.service-card {
  background-color: #222;
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.3s;
}
.service-card:hover {
  transform: scale(1.05);
}
.price {
  color: #f8b400;
  font-size: 1.5rem;
  font-weight: bold;
}


/* Gallery Sections */
.gallery-container {
  padding: 40px 0;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease-in-out;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.gallery-item:hover .overlay {
  opacity: 1;
}
.overlay i {
  color: white;
  font-size: 2rem;
}