* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
  min-height: 2000px;
}

/* Toast Notification */
/* Toast Notification */
#toast.toast {
  position: fixed;
  top: 0; /* start from top */
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: #fff;
  padding: 16px 30px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  max-width: 90%;
  text-align: center;
}

/* Show animation: slide down + fade in */
#toast.toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(30px); /* slide down from top */
}

/* Success & Error colors */
#toast.toast.success {
  background: linear-gradient(135deg, #28a745 0%, #7be495 100%);
}

#toast.toast.error {
  background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%);
}

/* Responsive text */
@media (max-width: 768px) {
  #toast.toast {
    font-size: 0.9rem;
    padding: 14px 20px;
  }
}

@media (max-width: 480px) {
  #toast.toast {
    font-size: 0.85rem;
    padding: 12px 16px;
  }
}

/* Navbar container */
.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* align logo to the left */
  padding: 0px 22px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Logo */
.navbar .logo img {
  height: 80px;
  transition: all 0.3s ease;
}

/* Hide nav links and hamburger icon on all screens */
.nav-links,
.menu-toggle {
  display: none !important;
}

/* Responsive logo sizes */
@media (max-width: 1200px) {
  .navbar .logo img {
    height: 70px;
  }
}

@media (max-width: 768px) {
  .navbar .logo img {
    height: 55px;
  }
}

@media (max-width: 480px) {
  .navbar .logo img {
    height: 45px;
  }
}

/* hero section css */
/* Hero Section */
.hero-section {
  background: url("../assests/image/banner.jpg") center center/cover no-repeat;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between; /* desktop: text left, form right */
  padding: 0 8%;
  flex-wrap: wrap;
  overflow: hidden;
}

/* Overlay */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 102, 255, 0.4);
  z-index: 1;
}

/* Hero Content & Form */
.hero-content,
.hero-form {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

.hero-content {
  width: 50%;
  animation-delay: 0.3s;
}

/* ------------------- Existing CSS ------------------- */
/* ------------------- Existing CSS ------------------- */
.hero-form {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  padding: 30px 25px;
  border-radius: 16px;
  width: 32%;
  animation-delay: 0.2s;
}

/* Animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Text Styling */
.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #fff;
}
.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #fff;
}

.hero-form h3 {
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 20px;
}
.hero-form label {
  display: block;
  font-size: 0.8rem;
  color: #fff;
}
.hero-form input {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: none;
  outline: none;
}

/* Consent Checkbox Inline on all screens */
.hero-form .consent {
  display: flex;
  /* align-items: center; */
  flex-wrap: nowrap;
  margin-bottom: 15px;
  font-size: 0.8rem;
  color: #fff;
}
.hero-form .consent input {
  width: auto;
}
.hero-form button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #ff7b00;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.hero-form button:hover {
  background: #e06e00;
}

/* ------------------- Tick & Error CSS ------------------- */
.input-wrapper {
  position: relative;
  width: 100%;
}
.input-wrapper input {
  width: 100%;
  box-sizing: border-box;
  padding-right: 30px; /* space for tick */
}
.tick {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: green;
  font-weight: bold;
  display: none;
}
.error {
  font-size: 12px;
  display: none;
}

/* ------------------- Mobile & Tablet Screens (≤992px) ------------------- */
@media (max-width: 992px) {
  .hero-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 5%;
    gap: 30px;
  }
  .hero-form {
    width: 100%;
    order: -1;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-form label,
  .hero-form .input-wrapper,
  .hero-form input,
  .hero-form button {
    width: 100%;
    max-width: 100%; /* Fix for mobile input width */
  }
  .hero-content {
    width: 100%;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-form .consent {
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }
}

/* ------------------- Small Phones (≤576px) ------------------- */
@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.7rem;
  }
  .hero-content p {
    font-size: 0.95rem;
  }
  .hero-form h3 {
    font-size: 1.3rem;
  }
  .hero-form input {
    padding: 8px 10px;
  }
  .hero-form button {
    padding: 10px;
    font-size: 0.95rem;
  }
}

/* ===== WHO WE ARE SECTION ===== */
.who-we-are {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 80px 10%;
}

.content {
  flex: 1 1 50%;
  padding-right: 40px;
}

.content h4 {
  color: #0070f3;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}

.content h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
}

.content p {
  line-height: 1.5;
  color: gray;
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 550px;
}

.highlights {
  display: flex;
  gap: 40px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.highlight {
  text-align: center;
}

.highlight h2 {
  color: #2880ff;
  font-size: 58px;
  font-weight: 600;
}

.highlight p {
  font-size: 44px;
  font-weight: 500;
  color: #000;
  line-height: 1.2;
  font-weight: bold;
}

/* VIDEO SIDE */
.video-wrapper {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-thumbnail {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: 315px;
  background-image: url("../assests/image/who we are.webp");
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Overlay Row */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.45);
  padding: 8px 12px;
  color: #fff;
}

.video-logo img {
  height: 36px;
  background-color: #fff;
  border-radius: 4px;
  padding: 2px;
}

.video-title {
  font-size: 15px;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  flex: 1;
  margin-left: 10px;
}

.video-actions-top {
  display: flex;
  gap: 12px;
  align-items: center;
}

.video-actions-top div {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.video-actions-top div:hover {
  background: rgba(255, 255, 255, 0.2);
}

.video-actions-top svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

/* Center Play Button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: #ff0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.play-btn::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 26px solid #fff;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  margin-left: 5px;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 900px) {
  .who-we-are {
    flex-direction: column;
    text-align: center;
  }

  .content {
    padding-right: 0;
  }

  .video-wrapper {
    margin-top: 40px;
  }

  .video-overlay {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .video-title {
    margin-left: 0;
  }
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {
  .who-we-are {
    flex-direction: column;
    text-align: center;
    padding: 40px 0; /* remove side padding */
  }

  .content {
    order: 1;
    width: 100%;
    padding: 0 20px;
  }

  .content h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .content p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .highlights {
    flex-direction: row;
    justify-content: center;
    gap: 25px;
    padding-top: 15px;
    border-top: 1px solid #eee;
  }

  .highlight h2 {
    font-size: 36px;
  }

  .highlight p {
    font-size: 18px;
  }

  /* ===== VIDEO SECTION ===== */
  .video-wrapper {
    order: 2;
    width: 100vw; /* full screen width */
    margin-top: 0;
    margin-left: calc(-50vw + 50%);
  }

  .video-thumbnail {
    width: 100vw; /* cover full screen */
    height: auto;
    aspect-ratio: 16 / 9;
    max-width: 100%;
    border-radius: 0; /* no rounded corners for edge-to-edge look */
    background-size: cover;
    background-position: center;
  }

  /* Overlay row (logo → title → actions) */
  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.45);
    padding: 6px 10px;
    color: #fff;
  }

  .video-logo img {
    height: 26px;
    width: auto;
  }

  .video-title {
    flex: 1;
    font-size: 12px;
    margin-left: 6px;
    font-weight: 500;
  }

  .video-actions-top {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .video-actions-top div {
    padding: 3px 6px;
    font-size: 11px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.6);
  }

  .video-actions-top svg {
    width: 13px;
    height: 13px;
  }

  /* Play button centered */
  .play-btn {
    width: 65px;
    height: 65px;
    background-color: #ff0000;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .play-btn::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 20px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
  }
}

/* offer section css */
.offer-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: auto;
}

.offer-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 35px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.icon {
  background: #2a73ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(42, 115, 255, 0.3);
}

.offer-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.offer-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* ✅ Responsive styling for mobile/tablet */
@media (max-width: 1024px) {
  body {
    padding: 40px;
  }
  .offer-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  body {
    padding: 30px 0px;
  }
  .offer-section {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .offer-card {
    padding: 25px;
  }
  .icon {
    width: 42px;
    height: 42px;
  }
}
