:root {
  --primary-blue: #324896;
  --primary-green: #7ab93b;
  --nav-text: #333333;
  
}

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Navbar Customization */
.navbar {
  padding: 1.25rem 0;
  background: #ffffff;
  transition: all 0.3s ease;
}

.navbar-brand {
  padding: 0;
}

/* Responsive Logo Container */

.logo-wrapper {
  display: flex;
  align-items: center; /* vertically center the logo */
  justify-content: center; /* horizontally center if needed */
  height: 50px; /* set logo container height */
}

.logo-wrapper img {
  height: 100%; /* make image fit container height */
  width: auto; /* maintain aspect ratio */
  display: block;
}

.logo-divider {
  width: 1.5px;
  height: 24px;
  background-color: #e0e0e0;
  margin: 0 4px;
}

.logo-text {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
}

.logo-text .blue {
  color: var(--primary-blue);
}
.logo-text .green {
  color: var(--primary-green);
}

/* Navigation Links */
.nav-link {
  color: var(--nav-text) !important;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 8px;
  padding: 8px 16px !important;
  border-radius: 50px;
  transition: all 0.2s ease-in-out;
}

.nav-link:hover {
  color: var(--primary-blue) !important;
}

.nav-link.active-page {
  background-color: var(--pill-bg);
  color: var(--primary-blue) !important;
}

/* Add Business Button */
.nav-btn{
  margin-top: -15px;
}
.btn-add-biz {
  background-color: var(--primary-blue);
  color: #ffffff !important;
  border-radius: 50px;
  padding: 10px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 33, 91, 0.15);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
  white-space: nowrap;
  border-bottom: #7ab93b 4px solid;
}

.btn-add-biz:hover {
  background-color: #001a4a;
  transform: translateY(-1px);
}

/* Hilling Banner Section */
.hero-banner {
  position: relative;
  width: 100%;
  background-color: #ffffff;
}

.hill-content {
  background-image: url("../images/about4.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0 20px 0;
  text-align: center;
  margin-top: -12px;
}

.banner-title {
  color: #ffffff;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* --- CONTACT SECTION (GET IN TOUCH) --- */
.contact-section {
  padding: 80px 0;
  background-color:#ffffff;
}

.contact-container {
  background-color: #EFF5FF;
  border-radius: 40px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-title {
  color: var(--primary-blue);
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.form-control-custom {
  background-color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #333;
}

.form-control-custom::placeholder {
  color: #999;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.8rem;
}

.btn-send-message {
  background-color: var(--primary-blue);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 0;
  font-weight: 700;
  width: 100%;
  transition: opacity 0.2s;
  
}
.contact-info{
padding: 25px 120px;
background-color:#ffffff;
}
.contact-info-title {
  color: var(--primary-blue);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}
/* =========================
   CONTACT EQUAL HEIGHT FIX
========================= */

.contact-container .row {
  display: flex;
  align-items: stretch;
}

.contact-container .col-lg-6 {
  display: flex;
  flex-direction: column;
}

/* form full height */
.contact-container form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.btn-send-message {
  margin-top: auto;
}

.map-container {
  height: 100% !important;
  margin-top: 0 !important; 
}

/* image perfect fit */
.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-list li {
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.contact-info-list a {
  color: #333;
  text-decoration: none;
}


/* Story Section Styles */
.story-section {
  padding: 60px 0 100px;
  background-color: #ffffff;
}

.story-title {
  color: var(--primary-blue);
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.story-content p {
  color: #444;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 20px;
}

.story-content .highlight-bold {
  font-weight: 700;
  color: #000;
}

/* Community Testimonials Section */
.community-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.community-title {
  color: var(--primary-blue);
  font-weight: 800;
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.community-subtitle {
  color: #666;
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.testimonial-card {
  border: 2px solid var(--primary-green);
  border-radius: 30px;
  padding: 30px;
  height: 100%;
  background: white;
  box-shadow: 0 6px 0 var(--primary-green);
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.stars-row {
  margin-bottom: 20px;
}

.stars-row svg {
  fill: #e53e3e; /* Red color for stars */
  margin-right: 2px;
}

.testimonial-text {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.user-meta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.user-details h4 {
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
}

.user-details span {
  color: #666;
  font-size: 0.85rem;
}

.pagination-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.dot {
  width: 25px;
  height: 6px;
  background-color: #e2e8f0;
  border-radius: 10px;
}

.dot.active {
  background-color: var(--primary-blue);
  width: 40px;
}

/* Download App Section */
.download-app-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.download-container {
  background-color: var(--primary-blue);
  border-radius: 40px;
  padding: 60px;
  color: white;
  position: relative;
  overflow: visible;
}

.download-tag {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
  letter-spacing: 1px;
}

.download-heading {
  font-size: clamp(1.8rem, 4vw, 1.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 40px;
  max-width: 650px;
}
.store-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.store-btn img {
  height: 50px;
  transition: transform 0.2s;
}

.store-btn:hover img {
  transform: scale(1.05);
}

.mobile-mockup-container {
  position: absolute;
  right: 130px;
  bottom: -150px;
  width: 320px;
  height: 650px;
  z-index: 5;
  overflow: visible;
}

.mobile-mockup-container img {
  width: 120%;
  height: 110%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  display: block;
}

/* Footer Section */
.main-footer {
  background-color: #ffffff;
  padding: 80px 0 40px;
  border-top: 1px solid #f0f0f0;
}

.footer-logo {
  margin-right: 0; /* remove extra right margin */
  margin-bottom: 20px; /* optional spacing below logo */
  display: flex;
  align-items: center; /* vertically center if needed */
  justify-content: flex-start; /* align left */
}

.footer-logo .logo-wrapper img {
  height: 50px; /* adjust logo size */
  width: auto; /* maintain aspect ratio */
  display: block;
}

.footer-desc {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-hindi {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 8px;
  display: block;
}

.footer-title {
  color: var(--primary-blue);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

.footer-links li::before {
  content: "•";
  color: #000;
  position: absolute;
  left: 0;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary-blue);
  text-decoration: underline;
}

.contact-item {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.contact-item a {
  color: #555;
  text-decoration: underline;
}

.newsletter-input {
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 50px;
  padding: 12px 25px;
  width: 100%;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.btn-subscribe {
   background-color: var(--primary-blue);
  color: #ffffff !important;
  margin-bottom: 10px;
  border-radius: 50px;
  padding: 10px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 33, 91, 0.15);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
  white-space: nowrap;
  border-bottom: #7ab93b 4px solid;
}
.btn-subscribe:hover {
  background-color: #001a4a;
  transform: translateY(-1px);
}
.newsletter-agree {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #555;
}

.bottom-bar {
  background-color: #000A15;
  padding: 15px 0;
}

.copyright-text {
  color: #FFFFFF;
  font-size: 0.85rem;
  margin: 0;
}

.copyright-text a {
  color: #FFFFFF;
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.social-icons img {
  width: 24px;
  height: 24px;
  transition: transform 0.2s;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* Responsive Adjustments */
/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .main-footer{
    margin-top: -146px;
  }
  .navbar-collapse {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
  }
  .btn-add-biz {
    width: 100%;
    margin-top: 15px;
  }
  .about-text-content {
    padding-left: 0;
    margin-top: 40px;
  }
  .about-details {
    padding: 50px 0 20px;
  }

  .community-title {
    font-size: 1.8rem;
  }

  .services-grid-container {
    padding: 40px 20px;
  }

  .contact-container {
    padding: 30px;
  }
  .map-container {
  border-radius: 20px;
  overflow: hidden;
  height: auto;
  margin-top: 65px;
}

.map-container img {
  width: 100%;
  height: 100%;
  border: 0;
}

  .download-container {
    padding: 40px;
    margin-bottom: 100px;
  }
  .mobile-mockup-container {
    position: relative;
    right: auto;
    bottom: -80px;
    margin: 0 auto;
    width: 250px;
  }
  .store-buttons {
    justify-content: center;
  }
  .social-icons {
    justify-content: center;
    margin-top: 15px;
  }
  .copyright-text {
    text-align: center;
  }
}

.btn-add-biz {
  width: 100%;
  margin-top: 15px;
}
.hill-divider svg {
  min-height: 50px;
}

.nav-link {
  margin: 5px 0;
}

.btn-add-biz {
  width: 100%;
  margin-top: 15px;
}

.hill-divider svg {
  height: 50px;
}

.hill-divider {
  top: -35px;
}

@media (max-width: 576px) {
  .map-container {
  border-radius: 20px;
  overflow: hidden;
  height: auto;
  margin-top: 65px;
}

.map-container img {
  width: 100%;
  height: 100%;
  border: 0;
}
  .logo-text {
    font-size: 1.2rem;
  }
  .hero-banner {
    padding-top: 20px;
  }
  .hill-background {
    min-height: 140px;
  }
}
