/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

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

.home body {
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;
  color: #333;
}

/* ================= HEADER ================= */
.home header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 120px;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  
}

.home .logo-container {
  display: flex;
  align-items: center;
  background-color: rgb(5, 5, 5);
  justify-content: center;
  height: 100%;
  gap: 15px;
}

.home .logo-container img {
  height: 120px;
  width:160px;
}

.home .logo-container h1 {
  font-size: 40px;
    background: linear-gradient(
      90deg,
      hsl(45, 83%, 71%),
hsl(51, 76%, 82%)

    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;        /* for Firefox */
    color: transparent;
  
  /* font-weight: 700; */
}

/* ================= VIDEO SECTION ================= */
.video-section {
  width: 100%;
  height: 100vh;
  margin-top: 130px; /* header height adjust */
  position: relative;
}
.video-section video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.home .video-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* TEXT INSIDE VIDEO */
.home .video-text {
  position: absolute;
  bottom: 25px;
  left: 25px;
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  background: rgba(0,0,0,0.55);
  padding: 12px 20px;
  border-radius: 8px;
  max-width: 90%;
}
.home .video-text p{
  color:white;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}
.home .video-text a {
  
  color: #ffeb3b;
  text-decoration: none;
  font-weight: 600;
}

/* ================= ABOUT SECTION ================= */
.home .about-section {
  width: 100%;
  padding: 70px 0;
  background: #ffffff;
}

.home .about-container {
  display: flex;
  width: 90%;
  margin: auto;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.home .about-image img {
  width: 420px;
  height: 80vh;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.15);
}

.home .about-text {
  flex: 1;
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
}

.home .about-text h2 span {
  color: #0066cc;
  font-size: 32px;
}

.home .about-text p {
  margin-bottom: 15px;
}

.home .about-text hr {
  border: none;
  border-top: 2px solid #0066cc;
  margin: 20px 0;
}

.home .blue-text {
  color: #0066cc;
  font-weight: 700;
}

.home .highlight {
  color: #0066cc;
  font-weight: bold;
}

/* FOOTER BOX */
.home .foot-section {
  width: 100%;
  height: 300px;
  background: rgb(7,144,186);
  margin-top: 40px;
}

/* ================= HIGHLIGHTS SECTION ================= */
.home .highlights {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding: 50px 40px;
}

.home .card {
  width: 23%;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.home .card:hover {
  transform: translateY(-6px);
}

.home .card img {
  width: 100%;
  height: 170px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 15px;
}

.home .card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #003366;
}

.home .card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.home .card a {
  margin-top: 10px;
  display: inline-block;
  font-weight: 600;
  color: #ff6600;
  text-decoration: none;
}

.home .card a:hover {
  text-decoration: underline;
}

.home .scrolling-text {
  font-size: 50px;
  font-weight: 700;
  color: #2f3fa0;
  white-space: nowrap;      /* prevent wrapping */
  overflow: hidden;         /* hide overflow */
  display: block;
}

.home .scrolling-text::after {
  content: "MONARCHY INDIA ELEVATORS"; /* duplicate content removed */
  display: inline-block;
  padding-left: 100%;       /* start outside right */
  animation: scrollText 20s linear infinite;
}

@keyframes scrollText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .scrolling-text {
    font-size: 30px;
  }
}
.home .marquee {
    position: relative;
    white-space: nowrap;
    font-size: 32px;
    font-weight: 700;
    color: #048d14;
    /* CHANGE THESE TWO LINES */
    left: -100%;           /* start outside left */
    animation: moveText 10s linear infinite; /* duration speed */
}

/* CHANGE keyframes */
@keyframes moveText {
    0% { left: -100%; }   /* start outside left */
    100% { left: 100%; }  /* move outside right */
}
/* Floating Contact Us Button */
.home #contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #007BFF;
    color: #ffffff;
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

home #contact-btn:hover {
    background: #0056b3;
    transform: translateY(-3px);
}


/* ================= CONTACT BUTTONS ================= */
.home .button-container {
  position: fixed;
  bottom: 100px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1000;
}

.home .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.home .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.home .whatsapp {
  background-color: #25D366;
}

.home .phone {
  background-color: #007AFF;
}

/* Optional: icon inside button */
.home .btn img {
  height: 24px;
  width: 24px;
}




.home .hero-overlay {
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  padding: 50px 20px;
  border-radius: 12px;
}

.home .hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.home .hero p {
  font-size: 1.3rem;
  margin-bottom: 25px;
}

.home .hero-btn {
  padding: 14px 35px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(45deg, #ffb400, #ff7f50);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.home .hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,127,80,0.4);
}

/* Sections */
.home .container {
  width: 90%;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.home h2 {
  font-size: 2rem;
  color: #0d1b2a;
  margin-bottom: 20px;
  border-bottom: 3px solid #ffb400;
  display: inline-block;
  padding-bottom: 5px;
}

.home h3 {
  font-size: 1.5rem;
  margin-top: 25px;
  margin-bottom: 15px;
}

/* Paragraphs */
.home p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

/* Services Grid */
.home .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.home .service-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.home .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.home .service-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #0d1b2a;
}

.home .service-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Contact Button */
.home .contact-btn {
  display: inline-block;
  padding: 14px 35px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(45deg, #ffb400, #ff7f50);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.home .contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,127,80,0.4);
}

/* Footer */
.home .footer {
  background: #0d1b2a;
  color: #fff;
  text-align: center;
  padding: 25px 20px;
  margin-top: 60px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
}



/* ================= LOGIN BUTTON ABOVE REVIEWS ================= */
.customer-reviews .review-login-btn-box {
    text-align: right;
    margin: 20px 40px;
}

.customer-reviews .review-login-btn {
    background: #f55803;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    transition: 0.3s ease;
    margin-right:900px;
    
}

.customer-reviews .review-login-btn:hover {
    background: #003fcc;
}

.customer-reviews .review-title {
    font-size: 24px;        /* before maybe 40px or big */
    font-weight: 600;
    margin-bottom: 20px;
}

.customer-reviews .review-box h3 {
    font-size: 18px;        /* user name size */
    margin: 0;
}

.customer-reviews .review-email {
    font-size: 14px;        /* email small */
    color: #666;
}

.customer-reviews .review-text {
    font-size: 15px;        /* review content */
    line-height: 1.5;
    color: #333;
}

.customer-reviews .stars {
    font-size: 18px;        /* star size */
    margin: 8px 0;
}

.customer-reviews .review-user-img {
    width: 60px;            /* reduce size */
    height: 60px;
    border-radius: 50%;
}
/* ================= VIEW ALL REVIEWS BUTTON ================= */
.customer-reviews .view-all-btn-box {
    text-align: center;
    margin: 30px 0;  /* spacing above and below the button */
}

.customer-reviews .view-all-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #007BFF; /* blue color */
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    transition: all 0.3s ease;
}

.customer-reviews .view-all-btn:hover {
    background-color: #0056b3; /* darker blue on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.5);
}
/* ================= GLOBAL REVIEW SECTION ================= */
.customer-reviews .customer-reviews {
  padding: 20px 40px;
  font-family: Arial, sans-serif;
}

.customer-reviews .review-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
}

/* ================= REVIEW BOXES ================= */
.customer-reviews .review-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.customer-reviews .review-box {
  width: 100%;
  max-width: 350px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.customer-reviews .review-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ================= REVIEW HEADER ================= */
.customer-reviews .review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.review-user-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

/* ================= TEXT STYLES ================= */
.review-name {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.review-email {
  font-size: 14px;
  color: #666;
}

.review-text {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
  margin-top: 10px;
}

/* ================= STAR RATING ================= */
.stars {
  font-size: 18px;
  color: #f5b301;
  margin: 8px 0;
}

/* ================= LOGIN BUTTON ================= */
.review-login-btn-box {
  margin: 20px 40px;
  text-align: right;
}

.review-login-btn {
  background: #f55803;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}

.review-login-btn:hover {
  background: #003fcc;
}

/* ================= VIEW ALL BUTTON ================= */
.view-all-btn-box {
  text-align: center;
  margin: 30px 0;
}

.view-all-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #007BFF;
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
  transition: 0.3s ease;
}

.view-all-btn:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 86, 179, 0.5);
}
/* ================= RESPONSIVE (Mobile ≤ 768px) ================= */
@media (max-width: 768px) {

  /* HEADER */
  .home header {
      height: 80px;
  }

  .home .logo-container img {
      height: 60px;
  }

  .home .logo-container h1 {
      font-size: 22px;
  }

  /* VIDEO SECTION */
  .home .video-section {
      height: 40vh;
      margin-top: 90px; /* changed to match smaller header */
  }

  /* HERO */
  .home .hero h1 {
      font-size: 1.8rem;
  }

  .home .hero p {
      font-size: 1rem;
  }

  /* SCROLLING TEXT */
  .home .scrolling-text {
      font-size: 30px;
  }

  /* ABOUT SECTION */
  .home .about-container {
      flex-direction: column;
      text-align: center;
  }

  .home .about-image img {
      width: 100%;
      height: auto;
  }

  .home .about-text {
      font-size: 16px;
      padding: 0 10px;
  }

  .home .about-text h2 span {
      font-size: 24px;
  }

  /* HIGHLIGHTS - CARDS */
  .home .highlights {
      flex-direction: column;
      align-items: center;
      padding: 20px 10px;
      gap: 20px;
  }

  .home .card {
      width: 80%;
      max-width: 300px;
  }

  .home .card img {
      width: 100%;
      height: auto;
      border-radius: 10px;
  }

  .home .card h3 {
      font-size: 18px;
      margin-bottom: 10px;
  }

  .home .card a {
      font-size: 14px;
  }
}
