@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #fff;
  color: #333;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ========== NAVBAR ========== */
header {
  width: 100%;
  background-color: #820000; /* maroon tone */
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  position: fixed;
  top: 0;
  z-index: 1000;
}

.logoim {
  height: 50px;
  width: auto;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav ul li a {
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #ffd700; /* golden hover */
}

/* ======= MENU ICON ======= */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #fff;
}
.fa-user{
  width: 60px;
  height: 60px;
}
.fa-solid, .fas {
    font-weight: 900;
    font-size: 43px;
    color: #ffdc64;
}
.trust-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}
* 
/* ========== HERO SECTION ========== */
.hero {
  height: 140vh;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url('https://img2.shaadi.com/assests/2025/images/homepage/marathi_mobile_bg.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  flex-direction: column;
  padding: 0 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero .cta-btn {
  padding: 12px 30px;
  background-color: #ffd700;
  color: #820000;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.hero .cta-btn:hover {
  background-color: #fff;
}
.love-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #ff4d6d;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 14px 30px;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.3s ease;
}

.love-btn:hover {
  background: #ff1e50;
}

/* Common heart style */
.heart {
  position: relative;
  width: 16px;
  height: 16px;
  background: #fff;
  transform: rotate(-45deg);
  border-radius: 50% 50% 0 0;
  transition: all 0.5s ease;
}

.heart::before,
.heart::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
}

.heart::before {
  top: 0;
  left: 50%;
}

.heart::after {
  top: 50%;
  left: 0;
}

/* Position halves */
.left {
  transform: rotate(-45deg) translateX(-100px);
}

.right {
  transform: rotate(-45deg) translateX(100px);
}

/* On hover — bring them together */
.love-btn:hover .left {
  transform: rotate(-45deg) translateX(-5px);
}

.love-btn:hover .right {
  transform: rotate(-45deg) translateX(5px);
}

/* Optional heart pulse when joined */
.love-btn:hover .heart {
  animation: pulse 0.6s ease-in-out 1;
}

@keyframes pulse {
  0% { transform: rotate(-45deg) scale(1); }
  50% { transform: rotate(-45deg) scale(1.2); }
  100% { transform: rotate(-45deg) scale(1); }
}


.why-eshpairi {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}

.why-eshpairi h2 {
  color: #8b0000;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}

.why-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.why-item {
  background: #fff5f6;
  border-radius: 20px;
  padding: 20px;
  width: 200px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.why-item:hover {
  transform: translateY(-8px);
  background: #ffe1e5;
}

.why-item i {
  font-size: 32px;
  color: #ff4d6d;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.why-item:hover i {
  transform: scale(1.2);
}

.why-item p {
  font-size: 15px;
  color: #333;
  line-height: 1.4;
}

/* ========== RESPONSIVE ========== */

/* ✅ Desktop View */
@media (min-width: 993px) {
  .menu-toggle {
    display: none !important;
  }

  nav {
    display: block !important;
    position: static !important;
    background: none !important;
  }

  nav ul {
    flex-direction: row !important;
    gap: 25px !important;
    padding: 0 !important;
  }
}

/* ✅ Tablet & Mobile View */
@media (max-width: 992px) {
  header {
    padding: 15px 30px;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #820000;
    text-align: center;
    display: none;
    transition: all 0.3s ease-in-out;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
  }

  nav ul li {
    padding: 10px 0;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero .cta-btn {
  padding: 14px 36px;
  background-color: #ffd700;
  color: #820000;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.hero .cta-btn:hover {
  background-color: #fff;
  color: #820000;
}

/* ========== FLOATING TRUST BAR ========== */
.trust-bar {
  background-color: #0a0a0a94;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  border-radius: 10px;
  padding: 25px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  color: #820000;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 8px;
}

.trust-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .trust-bar {
    flex-direction: column;
    gap: 25px;
    padding: 20px;
    width: 90%;
    bottom: -200px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .trust-item img {
    width: 50px;
    height: 50px;
  }

  .trust-item h3 {
    font-size: 1rem;
  }
}
/* ========== EXPERIENCE SECTION ========== */
.experience {
  padding: 120px 60px 80px;
  background-color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #820000;
  margin-bottom: 50px;
}

.experience-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
}

.experience-box {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex: 1 1 300px;
  max-width: 360px;
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.experience-box img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  background-color: #fffbea;
  border-radius: 12px;
  padding: 10px;
}

.experience-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #820000;
  margin-bottom: 10px;
}

.experience-box p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .experience {
    padding: 100px 20px 60px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .experience-box {
    max-width: 100%;
    padding: 25px 15px;
  }

  .experience-box img {
    width: 60px;
    height: 60px;
  }
}
