
:root {
  /* Primary Brand Colors - Green Based */
  --primary: #89c53b;
  --primary-dark: #1b5e1e;
  --primary-light: rgba(137, 197, 59, 0.15);
  --primary-gradient: linear-gradient(135deg, #89c53b, #7db334, #6ea22d);

  /* Text Colors */
  --text-dark: #1b1f23;
  --text-sub: #89c53b; /* Subheadings */
  --text-mid: #495057;
  --text-light: #6c757d;

  /* Background Colors */
  --bg-body: #f4fdf5;
  --bg-hero: linear-gradient(120deg, #eafbe9 0%, #f4fdf5 100%);
  --bg-card: #ffffff;
  --bg-form: #f8fcf8;

  /* Borders */
  --border-light: #e0f1e1;
  --border-mid: #cce7cd;
  --divider-color: rgba(27, 94, 30, 0.1);

  /* Shadows */
  --shadow-primary: 0 10px 25px rgba(137, 197, 59, 0.25);
  --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
  --card-shadow: 0 6px 20px rgba(137, 197, 59, 0.1);

  /* Effects */
  --focus-shadow: 0 0 0 4px rgba(137, 197, 59, 0.35);

  /* Transitions */
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; */
   font-family: "Poppins", sans-serif;
}

body {
  background: var(--bg-body);
  padding-top: 80px;
}

/* ================= Typography ================= */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.subheading {
  color: var(--text-sub);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  display: block;
}

p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.text-dark {
  color: var(--text-dark) !important;
}

.text-sub {
  color: var(--text-sub) !important;
}

.text-mid {
  color: var(--text-mid) !important;
}

/* ================= Modern Navbar ================= */
.navbar {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 40px;
    transition: var(--transition);
}
/* ================= BharatVerify Logo ================= */
.navbar .bharatverify-logo {
    height: 35px; /* Adjust as needed to match branding */
    transition: var(--transition);
    margin-left: 12px;
}

.navbar .bharatverify-link {
    display: flex;
    align-items: center;
    padding: 9px 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.navbar .bharatverify-link:hover {
    background-color: var(--primary-light);
}

/* Optional: Add border or scale effect on hover */
.navbar .bharatverify-link:hover img {
    transform: scale(1.05);
}

.navbar-nav {
    margin-left: 30px;
}

.nav-link {
    color: var(--text-mid) !important;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 8px 15px !important;
    margin: 0 5px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    background: var(--primary-light);
}

.nav-link i {
    margin-right: 8px;
    font-size: 0.95rem;
    width: 20px;
    text-align: center;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
}

.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-primary);
    padding: 15px 0;
    margin-top: 10px;
    min-width: 240px;
    border: 1px solid var(--border-light);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 10px 20px !important;
    font-size: 1rem;
    color: var(--text-mid);
    transition: var(--transition);
    display: flex;
    align-items: center;
    border-radius: 6px;
    margin: 0 10px;
    width: auto;
}

.dropdown-item i {
    margin-right: 10px;
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
    color: var(--primary);
}

.dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary) !important;
    transform: translateX(5px);
}

.btn-contact {
    background: var(--primary-gradient);
    color: white !important;
    padding: 10px 25px !important;
    border-radius: 50px !important;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
    border: none !important;
    display: inline-flex;
    align-items: center;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(67, 97, 238, 0.35);
}

.btn-contact i {
    margin-right: 8px;
}

.navbar-toggler {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2867, 97, 238, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile menu */
@media (max-width: 992px) {
    .navbar-nav {
        margin: 20px 0 0;
        padding: 20px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-link {
        padding: 12px 15px !important;
        margin: 5px 0;
    }

    .dropdown-menu {
        box-shadow: none;
        border: 1px solid var(--border-light);
        margin: 5px 0;
        width: 90%;
    }

    .desktop-contact {
        padding: 20px 0;
        text-align: center;
    }
}

/* ================= Modern Hero Section ================= */
.hero-section {
    background: var(--bg-hero);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--primary-light);
    filter: blur(80px);
    z-index: 0;
}

.hero-content {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-heading {
    font-size: 3.25rem;
    margin-bottom: 1.75rem;
    line-height: 1.15;
}

.hero-highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding: 0 2px;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.92;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-custom-outline,
.btn-custom-fill {
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-custom-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-custom-outline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--primary-light);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn-custom-outline:hover::before {
    width: 100%;
}

.btn-custom-fill {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-primary);
}

.btn-custom-fill::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.btn-custom-fill:hover::after {
    height: 100%;
}

.hero-img {
    max-width: 95%;
    height: auto;
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.section-title-bar {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.title-bar {
    width: 5px;
    height: 40px;
    background: var(--primary);
    border-radius: 10px;
    margin-right: 15px;
}

.section-title {
    font-size: 2.1rem;
    margin: 0;
}

.section-title span {
    color: var(--primary);
}

.divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
    margin: 3rem 0;
}

/* ================= Sections ================= */
section {
    padding: 40px 0;
}

/* Top bar styles */
.d-flex.align-items-center.mb-4 {
    margin-bottom: 2rem !important;
}

.border-start {
    border-left: 4px solid var(--primary) !important;
    height: 30px;
    margin-right: 0.75rem;
}

/* Card styles */
.product-card {
    background-color: var(--bg-card);
    border-radius: 14px;
    padding: 32px 28px;
    height: 100%;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    box-shadow: var(--shadow-light);
    margin-bottom: 20px;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-mid);
    box-shadow: 0 12px 24px -8px rgba(137, 197, 59, 0.25);
}

/* About cards */
.position-relative.mt-5 .row>div {
    padding: 15px;
}

.position-relative.mt-5 .row .card {
    height: 100%;
    border-radius: 14px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    border: none;
}

.position-relative.mt-5 .row .card:hover {
    box-shadow: var(--shadow-hover);
}

/* Divider */
.divider {
    height: 1px;
    background: var(--divider-color);
    margin: 3.5rem 0;
    border: 0;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f4fdf5, #eafbe9);
    border-radius: 30px 30px 0 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 20px auto;
    border-radius: 2px;
}

.contact-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-light);
    height: 100%;
    text-align: center;
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
}

.contact-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    text-align: left;
}

.contact-info i {
    color: var(--primary);
    margin-right: 15px;
    min-width: 20px;
    font-size: 18px;
}

.contact-form {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-light);
}

.form-control {
    background-color: var(--bg-form);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 1.02rem;
    margin-bottom: 1.6rem;
    transition: border 0.3s ease;
}

.form-control:focus {
    border-color: #d8f0b9;
    box-shadow: 0 0 0 3px var(--focus-shadow);
    background: white;
}

.btn-submit {
    background: var(--primary-gradient);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-submit i {
    margin-left: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

/* ================= Modern Footer ================= */
.footer {
  background: var(--primary-gradient);
  color: var(--text-light);
  border-top: 4px solid var(--primary-dark);
  padding-top: 4rem;
  position: relative;
}

.footer-content {
  position: relative;
  z-index: 1;
  padding: 3rem 2rem 1rem;
  animation: fadeInUp 0.8s ease-in-out;
  background-color: var(--bg-card);
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.footer-heading {
  color: var(--primary-dark);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 50px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.contact-info p {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
}

.contact-info i {
  color: var(--primary-dark);
  min-width: 20px;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  transition: 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.social-btn:hover {
  background-color: var(--accent-dark);
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  outline: none;
  font-size: 0.95rem;
  background-color: #fff;
}

.newsletter-form button {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: var(--accent-dark);
}

.divider {
  height: 1px;
  background-color: var(--divider-color);
  margin: 2rem 0;
}

.footer-bottom {
  background-color: var(--primary);
  color: #fff;
  text-align: center;
  padding: 1.25rem 0;
  font-size: 0.9rem;
  border-radius: 0 0 20px 20px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: var(--accent-dark);
}

@media (max-width: 768px) {
  .footer-section {
    text-align: center;
    margin-bottom: 2rem;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-logo {
    margin: 0 auto 1rem;
    display: block;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 0.75rem;
  }

  .newsletter-form button {
    width: 100%;
  }

  .social-icons {
    justify-content: center;
  }
}