* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0a0a0a;
  color: #fff;
  line-height: 1.6;
}


/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  color: #fff;
  overflow: hidden;
 background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
  opacity: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.hero-content, .navbar {
  position: relative;
  z-index: 2;
}

/* Optional: make the transition smoother visually */
.hero-content {
  text-align: center;
  padding-bottom: 100px;
  transition: opacity 1s ease;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(0,0,0,0.4);
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ff4500;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #ff4500;
}

.hero-content {
  text-align: center;
  padding-bottom: 100px;
  margin-top: -100px;
  
}

.hero-content h2 {
  margin-top: 30vh;
  font-size: 6rem;
}

.hero-content span {
  color: #ff4500;
}

.hero-content p {
  margin: 10px 0 20px;
    font-size: 24px;
}



a {
  color: #fff;
  text-decoration: none;
}

.btn {
  background: #ff4500;
  color: #fff;
  padding: 10px 25px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  font-size: 24px;
}

.btn:hover {
  background: #ffb347;
}
/* ==== SOCIAL BUTTONS ==== */
.social-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: #ff4500;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover effects */
.social-icon:hover {
  background: #ffb347;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 165, 0, 0.4);
}

/* Optional SVG styling if you paste inline icons */
.social-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

/* ===== SOLUTIONS ===== */
.solutions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  padding: 80px 60px;
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('Images/bg\ red.jpeg');
  background-repeat: no-repeat;
  background-size: cover;
}

.solutions .text {
  flex: 1;
  min-width: 280px;
  margin-right: 40px;
}

.solutions h2 {
    font-size: 48px;
}

.solutions h4 {
    font-size: 24px;
}

.solutions .text span {
  color: #ff4500;
}

.image-stack {
  position: relative;
  flex: 1;
  min-width: 300px;
}

.img-placeholder {
  
  border: 2px solid #ff4500;
} 

.img-placeholder.large {
  width: 300px;
  height: 400px;
  margin: 20px;
  background: url("Images/bigsquare.JPG");
  background-repeat: no-repeat;
  background-size: contain;
}

.img-placeholder.small {
  width: 250px;
  height: 250px;
  position: absolute;
  top: 100px;
  left: 300px;
  background: url("Images/smallsquare.JPG");
  background-repeat: no-repeat;
  background-size: cover;
}

/* ===== CARDS ===== */
/* ===== FEATURES SECTION ===== */
.features {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 25px;
  padding: 100px 10%;
  background-color: #000;
  flex-wrap: wrap;
  
}

.feature-card {
  background: #222;
  color: #fff;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  text-align: center;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: all 0.3s ease;
}

.feature-card.highlight {
  background: #ff4500;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(255, 69, 0, 0.4);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.feature-image {
  width: 100%;
  height: 220px;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 4px;
  background: #111;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-card:hover img {
  transform: scale(1.1);
}

.price {
  font-size: 2rem;
  font-weight: 700;
  margin: 10px 0;
}

.description {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #ddd;
}

.book-btn {
  background: #ff4500;
  border: none;
  color: #fff;
  padding: 10px 25px;
  border-radius: 3px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}
.book-btn1 {
  background: #222;
  border: none;
  color: #fff;
  padding: 10px 25px;
  border-radius: 3px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.book-btn:hover {
  background: #ffb347;
  color: #111;
  transform: scale(1.05);
}
.book-btn1:hover {
  background: #ffb347;
  color: #111;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 950px) {
  .features {
    flex-direction: column;
    align-items: center;
  }
}


/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 80px 40px;
   background-image: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.9)), url('Images/bg\ red.jpeg');
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 3rem;
  color: #ffb347;
}

/* .img-placeholder {
    background: url('');
    border: 2px dashed #ff4500;
} */

.grid, .grid2, .grid3, .grid4{
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* ✅ 4 per row */
  gap: 30px;
}

.grid2, .grid3, .grid4 {
    margin-top: 30px;
}



.testimonial {
  background: #222;
  padding: 20px;
  border-radius: 10px;
}
/*Image Profiles and Dp for Testimonals */

.img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center; 
}





/* ===== CONTACT ===== */
.contact {
  text-align: center;
  padding: 80px 40px;
  background: #1a0000;
  background-image: linear-gradient(to bottom, rgba(60, 7, 7, 0.909), rgb(84, 2, 2)), url('Images/Redcandle.jpg');
  background-repeat: repeat-x;
  background-size: contain;
}

.contact h2 {
    font-size: 3rem;
}

.contact form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
 
  .hidden {
    display: none;
  }
  
.contact input, .contact textarea {
  padding: 10px;
  border: none;
  outline: none;
  border-radius: 5px;
}

.contact button {
  background: #ff4500;
  color: #fff;
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 5px;
}

.contact button:hover {
  background: #ffb347;
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: #999;
}
.footer p {
    margin-top: 30px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .logo  {
    text-align: center;
    line-height: 30px;
    margin-bottom: 15px;
    font-weight: bold;
  }
  .navbar {
    flex-direction: column;
  }

  .hero-content {
    margin-top: -100px;
  }
  .hero-content h2 {
    font-size: 3.5rem;
    line-height: 4rem;
  }
  .hero-content p {
    font-size: 21px ;
    padding: 20px;
  }
  .hero-content .btn {
    font-size: 21px ;
  }
  .solutions h2 {
    font-size: 32px;
    line-height: 48px;
     text-align: left;
}
.solutions h4 {
    font-size: 18px;
    text-align: ;
}



  .solutions {
    flex-direction: column;
    padding: 50px 0px;
    width: 100%;
  
 
  }
   .solutions .text{
     width: 85%;
     margin: 40px 10px;
  }

  .solutions .image-stack{
    width: 70%;
  }

  .img-placeholder.small {
  width: 150px;
  height: 200px;
  position: absolute;
  top: 0px;
  left: 0px;
 
}

.img-placeholder.large {
  width: 260px;
  height: 350px;
}
.testimonials h2 {
    font-size: 32px;
}

.grid , .grid2, .grid3, .grid4{
    display: flex;
    flex-direction: column;
}


  .image-stack {
    margin-top: 40px;
  }

  .contact h2 {
    font-size: 32px;
}
}


