* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Montserrat', sans-serif;
  height: 100%;
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.512);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
}

/* Logo Section Styling */
.logo-section img {
  height: 50px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  transition: all 0.3s ease-in-out;
}


nav {
  display: flex;
  gap: 2rem;
}

nav a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

nav a:hover {
  color: #f58220;
}

.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  animation: backgroundSlideshow 20s infinite ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pusha{ 
  padding-top: 150px !important;
}

.full-width-image-section {
  width: 100%;
  height: 100%;
  background: url('images/bannere.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.overlay-text {
  background: rgba(0, 0, 0, 0.5);
  padding: 3rem 2rem;
  border-radius: 12px;
  color: #fff;
  text-align: center;
  max-width: 90%;
  animation: fadeInUp 1s ease-in-out;
}

.overlay-text h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.overlay-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button {
  padding: 0.75rem 2rem;
  background-color: #00a859;
  color: #fff;
  border: none;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #007a44;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
  .full-width-image-section {
    height: 70vh;
  }

  .overlay-text h2 {
    font-size: 2rem;
  }

  .overlay-text p {
    font-size: 1rem;
  }
}



.overlay {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.512);
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 90%;
  animation: fadeIn 2s ease-in;
}

.content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  animation: textChange 6s infinite;
}

button {
  background: #f58220;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

button:hover {
  background: #f58220;
  transform: scale(1.05);
}

/* Background slideshow */
@keyframes backgroundSlideshow {
  0% { background-image: url('images/WhatsApp\ Image\ 2025-08-07\ at\ 13.19.47_4a93235a.jpg'); }
  33% { background-image: url('images/WhatsApp\ Image\ 2025-08-07\ at\ 13.19.47_4a93235a.jpg'); }
  66% { background-image: url('images/WhatsApp\ Image\ 2025-08-07\ at\ 13.19.47_4a93235a.jpg'); }
  100% { background-image: url('images/WhatsApp\ Image\ 2025-08-07\ at\ 13.19.47_4a93235a.jpg'); }
}

/* Text fade effect */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 70px;
    left: 0;
    background: rgba(0, 0, 0, 0.512);
    width: 100%;
    flex-direction: column;
    display: none;
  }

  nav.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .content h1 {
    font-size: 2rem;
  }

  button {
    font-size: 0.9rem;
  }
}


/*after hero section*/
.info-section {
  padding: 4rem 2rem;
  background: #f7f7f7;
}

.info-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.info-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  transition: transform 0.5s ease;
}

.info-image img:hover {
  transform: scale(1.02);
}

.info-text {
  flex: 1;
  min-width: 300px;
  animation: slideInRight 1.5s ease forwards;
}

.info-text h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #222;
  font-family: 'Orbitron', sans-serif;
}

.info-text p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.explore-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  background: #f58220;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background: #f58220;
}

/* Text animation */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive layout */
@media (max-width: 768px) {
  .info-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .info-text h1 {
    font-size: 1.8rem;
  }

  .info-text p {
    font-size: 1rem;
  }

  .info-image img {
    max-width: 100%;
  }
}


/*after hero section*/

.info-section {
  padding: 4rem 2rem;
  background: #f7f7f7;
}

.info-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

/* This ensures text on left, image on right by default */
.info-container.reverse {
  flex-direction: row;
}

.info-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  transition: transform 0.5s ease;
}

.info-image img:hover {
  transform: scale(1.02);
}

.info-text {
  flex: 1;
  min-width: 300px;
  animation: slideInLeft 1.5s ease forwards;
}

.info-text h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #222;
  font-family: 'Orbitron', sans-serif;
}

.info-text p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.explore-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  background: #f58220;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background: #f58220;
  transform: scale(1.05);
}

/* Text animation */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive layout */
@media (max-width: 768px) {
  .info-container.reverse {
    flex-direction: column;
    text-align: center;
  }

  .info-text h1 {
    font-size: 1.8rem;
  }

  .info-text p {
    font-size: 1rem;
  }

  .info-image img {
    max-width: 100%;
  }
}

/*small about us*/
.about-us-section {
  position: relative;
  padding: 4rem 2rem;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.about-us-content {
  max-width: 800px;
  text-align: center;
  z-index: 2;
}

.about-us-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #111;
  font-family: 'Orbitron', sans-serif;
}

.about-us-content p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.read-more-btn {
  padding: 0.75rem 1.5rem;
  background: #f58220;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background: #f58220;
  transform: scale(1.05);
}

/* Bold Diagonal Moving Line */
.animated-line {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, transparent 49%, #f58220 51%);
  z-index: 1;
  opacity: 0.8;
  transform: rotate(0deg);
  animation: rotateLine 10s linear infinite;
}

/* Motion effect */
@keyframes rotateLine {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(15deg) scale(1.05);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-us-content h2 {
    font-size: 2rem;
  }

  .about-us-content p {
    font-size: 1rem;
  }

  .animated-line {
    width: 200px;
    height: 200px;
    top: -60px;
    right: -60px;
  }
}

/*end of small about us*/

/*covers card section*/
/* Section Container */
.cover-section {
  padding: 4rem 2rem;
  background: #fdfdfd;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 2rem;
  color: #111;
}

/* Scroll Container */
.card-scroller {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.card-scroller::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Individual Card */
.cover-card {
  min-width: 300px;
  max-width: 300px;
  background: linear-gradient(135deg, #f58220, #879a98);
  color: #000;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cover-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Text Styling */
.big-heading {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-family: 'Orbitron', sans-serif;
}

.sub-heading {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #111;
}

.cover-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1rem 0;
  color: #222;
}

.cover-list li {
  margin-bottom: 0.5rem;
}

.card-description {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .cover-card {
    min-width: 80%;
    margin: 0 auto;
  }
}

/*end of covers cards section*/

/*payment options section*/
  .payment-banner {
    background: #ffffff;
    height: 50vh;
    overflow-y: auto;
    padding: 2rem 1rem;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    animation: fadeIn 1s ease-in-out;
  }

  .payment-container {
    max-width: 1100px;
    margin: auto;
    animation: slideUp 1.2s ease-in-out;
  }

  .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2d2d2d;
    font-weight: bold;
  }

  .payment-method {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
    gap: 1rem;
  }

  .method-number {
    font-size: 2rem;
    font-weight: bold;
    color: #f58220;
    min-width: 2rem;
  }

  .method-content h3 {
    font-size: 1.3rem;
    margin: 0;
    color: #2d2d2d;
  }

  .method-content p {
    font-size: 1rem;
    color: #444;
    margin-top: 0.4rem;
  }

  .logos {
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .logos img {
    height: 30px;
    object-fit: contain;
    transition: transform 0.3s ease;
  }

  .logos img:hover {
    transform: scale(1.05);
  }

  .contact-details {
    margin-top: 2rem;
    font-size: 0.95rem;
    text-align: center;
    color: #444;
  }

  .contact-details a {
    color: #f58220;
    text-decoration: none;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  @media (max-width: 768px) {
    .payment-banner {
      height: auto;
      padding: 2rem 1rem;
    }

    .payment-method {
      flex-direction: column;
      align-items: flex-start;
    }

    .logos {
      justify-content: flex-start;
    }
  }
/*end of payment option*/

/*repirations section*/
.repatriation-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      position: relative;
      background: url('images/270-2709123_hearse-on-basis-mercedes-benz-e-class-mercedes-removebg-preview.png') center/cover no-repeat;
      overflow: hidden;
    }

    .text-content {
      flex: 1;
      padding: 3rem;
      z-index: 2;
      background-color: #ffffff82; /* Semi-transparent white */
    }

    .text-content h2 {
      color: #f58220; /* Orange header */
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .highlight-header {
      color: #000;
      background-color: #f58220;
      display: inline-block;
      padding: 0.3rem 1rem;
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 1rem;
    }

    .text-content p {
      margin-bottom: 1rem;
      line-height: 1.6;
      color: #333;
    }

    .assist-pricing {
      display: flex;
      gap: 2rem;
      margin-top: 1rem;
    }

    .assist, .pricing {
      background-color: #e2e2e2;
      padding: 1rem;
      border-left: 5px solid #4d6b57;
      flex: 1;
    }

    .pricing {
      border-left-color: #1d3127;
    }

    .join-btn {
      margin-top: 1.5rem;
      background-color: #f58220;
      color: white;
      border: none;
      padding: 0.8rem 2rem;
      font-size: 1rem;
      cursor: pointer;
      transition: 0.3s;
    }

    .join-btn:hover {
      background-color: #d56f15;
    }

    /* Overlap on desktop */
   

    /* Mobile View */
    @media (max-width: 768px) {
      .repatriation-section {
        flex-direction: column;
      }

      .text-content {
        padding: 2rem;
        margin-left: 0;
      }

      .assist-pricing {
        flex-direction: column;
      }
    }

    /*contact section*/
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 20px;
  background: #f9f9f9;
  justify-content: center;
}

.form-container,
.location-container {
  flex: 1 1 400px;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

h2 {
  margin-bottom: 20px;
  color: #333;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

form button {
  background-color: #f58220;
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background-color: #f58220;
}

.location {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.location i {
  font-size: 24px;
  color: #f58220;
  margin-top: 5px;
}

.location h4 {
  color: #000;
      background-color: #f58220;
      display: inline-block;
      padding: 0.3rem 1rem;
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 1rem;
}

.location p {
  margin: 0;
  color: #555;
}

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    padding: 20px 10px;
  }
}

    /*end of contact section*/

/*footer*/ 
.site-footer {
  background-color: #1f1f1f;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  bottom: 0;
  width: 100%;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.site-footer h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #f58220;
}

.footer-about,
.footer-links,
.footer-social {
  flex: 1 1 250px;
  margin: 20px 0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: #f58220;
}

.footer-social .social-icons a {
  font-size: 1.5rem;
  margin-right: 15px;
  color: #fff;
  text-decoration: none;
}

.footer-social .social-icons a:hover {
  color: #f58220;
}

.footer-bottom {
  text-align: center;
  padding: 15px 0 0;
  font-size: 0.9rem;
  color: #ccc;
  border-top: 1px solid #444;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-about,
  .footer-links,
  .footer-social {
    margin: 10px 0;
  }

  .footer-social .social-icons a {
    margin-right: 10px;
  }
}


/*gallery*/
.gallery-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.gallery-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(80%);
}

/* Optional: make some images larger for collage effect */
.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

/* Responsive fallback for small screens */
@media (max-width: 768px) {
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/*end of gallery*/

.brochure-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.brochure-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.brochure-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.download-btn {
  background: linear-gradient(to right, #f58220, #2b3639);
  color: #fff;
  padding: 14px 24px;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.download-btn:hover {
  background: linear-gradient(to right, #f58220, #97b5c0);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Responsive behavior */
@media (max-width: 600px) {
  .download-btn {
    width: 100%;
    text-align: center;
  }
}
