/* -------------------------
   TNeCOA Matrimony Theme
   Header & Footer Styles Only
   Designed by Stonsys
-------------------------- */

:root {
  --primary: #7f56d9;
  --primary-light: #9b8cff;
  --accent: #6c63ff;
  --bg: #f9f9fb;
  --card-bg: #ffffff;
  --text: #2b2b2b;
  --muted: #666;
  --border: #e5e5ea;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --radius: 14px;
}

/* ---------- GLOBAL RESETS ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: min(1200px, 92%);
  margin: auto;
}

/* ---------- NAVBAR ---------- */
.navbar {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.3s ease;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

/* Brand / Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-logo {
  height: 55px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.site-logo:hover {
  transform: scale(1.05);
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  transition: color 0.3s, background 0.3s;
}

.nav-links a:hover {
  background: var(--primary-light);
  color: #fff;
}

/* Buttons */
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff !important;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(127, 86, 217, 0.35);
}

.btn-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: #fff;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #fff;
  border-top: 1px solid var(--border);
  margin-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 40px 0;
}

.footer h3,
.footer h4 {
  color: var(--primary);
  margin-bottom: 10px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer a {
  color: var(--text);
  text-decoration: none;
  display: block;
  padding: 4px 0;
  transition: color 0.3s;
}

.footer a:hover {
  color: var(--primary);
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-links a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.social-links a:hover {
  background: var(--primary-light);
  transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9rem;
  color: #555;
  background: #fafafa;
  border-top: 1px solid #eee;
}

.footer-bottom p {
  margin: 4px 0;
}

.footer-bottom strong {
  color: #7f56d9;
}

.muted {
  color: var(--muted);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .nav-flex {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-logo {
    height: 48px;
  }

  .footer-grid {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

.icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  background: #f3edff;
  color: #7f56d9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  box-shadow: 0 4px 10px rgba(127, 86, 217, 0.15);
  transition: all 0.3s ease;
}

.icon-circle:hover {
  background: #7f56d9;
  color: #fff;
  transform: scale(1.05);
}
.icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  background: #f3edff;
  color: #7f56d9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  box-shadow: 0 4px 10px rgba(127, 86, 217, 0.15);
  transition: all 0.3s ease;
}

.icon-circle:hover {
  background: #7f56d9;
  color: #fff;
  transform: scale(1.05);
}
.join-section {
  background: #fff;
}

.join-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.join-content {
  background: #f9f6ff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.join-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.join-content .lead {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 25px;
}

.features-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
  margin-bottom: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px 16px;
  border-radius: 50px;
  box-shadow: 0 3px 10px rgba(127,86,217,0.15);
  font-weight: 500;
  color: #7f56d9;
}

.feature-item i {
  font-size: 20px;
}

.mt-3 {
  margin-top: 15px;
}

@media (max-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .join-content {
    margin-top: 30px;
    text-align: center;
  }
  .features-inline {
    justify-content: center;
  }
}
.cta-section {
  background: linear-gradient(135deg, #7f56d9 0%, #9b8cff 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  margin: 0 auto 25px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  color: #fff;
  box-shadow: 0 6px 25px rgba(255,255,255,0.1);
  transition: 0.3s ease;
}

.cta-icon:hover {
  transform: scale(1.08);
  background: rgba(255,255,255,0.25);
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #f2eaff;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #7f56d9;
  border-radius: 50px;
  padding: 14px 30px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 5px 18px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #f3edff;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 1.8rem;
  }
  .cta-section p {
    font-size: 1rem;
  }
  .cta-icon {
    width: 70px;
    height: 70px;
    font-size: 35px;
  }
}
body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #2b2b2b;
  margin: 0;
  padding: 0;
}

.home-hero {
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: linear-gradient(to right, #faf6ff, #f3edff);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-logo {
  width: 200px;
  margin-bottom: 15px;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  border-radius: 50px;
  padding: 12px 24px;
  transition: 0.3s;
  font-weight: 500;
}

.btn-primary {
  background: #7f56d9;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: #6a45c7;
}

.btn-outline {
  border: 2px solid #7f56d9;
  color: #7f56d9;
  background: transparent;
}

.btn-outline:hover {
  background: #7f56d9;
  color: #fff;
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.highlight {
  color: #7f56d9;
  text-decoration: none;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-align: center;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.feature-img,
.step-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.rounded-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.cta-section {
  background: #7f56d9;
  color: #fff;
  text-align: center;
  padding: 60px 0;
}

.cta-box h2 {
  margin-bottom: 10px;
}

.cta-box p {
  margin-bottom: 20px;
}

.muted {
  color: #666;
}

a {
  text-decoration: none;
}

@media (max-width: 768px) {
  .hero-grid, .grid-2 {
    grid-template-columns: 1fr;
  }
  .hero-text {
    text-align: center;
  }
}
.site-logo {
  height: 55px;         /* Default desktop height */
  max-height: 60px;     /* Prevents oversizing */
  width: auto;          /* Keeps proper proportions */
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.site-logo:hover {
  transform: scale(1.05);
}

/* ðŸ”¹ For Smaller Screens */
@media (max-width: 992px) {
  .site-logo {
    height: 50px;
  }
}

@media (max-width: 600px) {
  .site-logo {
    height: 45px;
  }
}