/* ===========================================
   Niventra Capital Advisory India Capital
   Main Stylesheet
=========================================== */

:root {
  --bs-primary: #0a2e6d;
  --bs-secondary: #1db954;
  --bs-success: #1db954;
  --bs-warning: #f5a623;
  --bs-dark: #111827;
  --bs-light: #f8fafc;
  --bs-gray: #6b7280;
  --bs-body-color: #111827;
  --bs-body-font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding-left: 0;
}

/* Custom Nav Active */
.navbar-nav .nav-link {
  position: relative;
  transition: 0.3s;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--bs-secondary);
  transition: 0.4s;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.shadow {
  background-color: var(--bs-light);
  transition: 0.4s;
  z-index: 9999;
}

/* Hover Translate Utilities */
.hover-translate-y {
  transition: 0.35s;
}
.hover-translate-y:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12) !important;
}

.hover-translate-y-lg {
  transition: 0.35s;
}
.hover-translate-y-lg:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12) !important;
}

.hover-zoom-icon i {
  transition: 0.3s;
}
.hover-zoom-icon:hover i {
  margin-left: 8px;
}

/* Background Gradients */
.hero-section {
  /* background: linear-gradient(135deg, #f8fbff 0%, #eef7ff 100%); */
  background: url("../images/homepage.png") no-repeat center;
  background-size: 100%;
}

.stats-section,
.cta-section {
  background: linear-gradient(135deg, var(--bs-primary), #1148a8);
}

.hero-tag {
  background: #e8f7ee;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: #fff;
  padding: 15px 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.floating-card i {
  font-size: 30px;
  color: var(--bs-secondary);
}

.card-1 {
  top: 80px;
  left: -20px;
}

.card-2 {
  bottom: 80px;
  right: -20px;
}

.cta-card {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: #fff;
  color: #222;
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.cta-card i {
  font-size: 36px;
  color: var(--bs-secondary);
}

/* Custom Icons Boxes */
.feature-icon {
  width: 80px;
  height: 80px;
  background: #eef7ff;
  margin: 0 auto 25px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature-icon i {
  font-size: 34px;
  color: var(--bs-primary);
}

.service-icon,
.journey-icon {
  width: 75px;
  height: 75px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
  color: #fff;
  margin: 0 auto 25px;
}
.service-icon i,
.journey-icon i {
  font-size: 34px;
}
.journey-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 42px;
  font-weight: 700;
  color: #eef2f7;
}

.counter-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: 0.4s;
}
.counter-card:hover {
  background: rgba(255, 255, 255, 0.15);
}
.counter-card i {
  font-size: 42px;
  margin-bottom: 20px;
  color: #ffd54f;
}

.news-image {
  position: relative;
  overflow: hidden;
}
.news-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.4s;
}
.news-card:hover .news-image img {
  transform: scale(1.08);
}
.news-badge {
  position: absolute;
  top: 20px;
  left: 20px;
}

.client-image {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
}
.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #e8f5e9;
}

.stars {
  color: #ffc107;
  font-size: 20px;
  margin-bottom: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--bs-primary);
  border-radius: 50%;
  padding: 18px;
}

.cta-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.footer {
  background: #071a3d;
}
.social-links a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 50%;
  transition: 0.3s;
}
.social-links a:hover {
  background: var(--bs-secondary);
  transform: translateY(-5px);
}
.contact-info i {
  color: var(--bs-secondary);
  margin-top: 4px;
}
.newsletter-form input {
  flex: 1;
  border: none;
  padding: 18px;
  outline: none;
}
.newsletter-form button {
  border: none;
  background: var(--bs-secondary);
  color: #fff;
  padding: 0 35px;
}

#topBtn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: var(--bs-secondary);
  color: #fff;
  display: none;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

section {
  padding: 35px 0;
}

/*====================================
Investment Hero
====================================*/

.investment-hero {
  margin: 100px 0 0 0;
  background: url("../images/investment_banner.png") no-repeat;
  background-size: 100%;
  /* background-position: center; */

  /* background:linear-gradient(
        180deg,
        var(--light),
        #ffffff
    ); */
}

.hero-banner-image {
  box-shadow: var(--shadow-lg);
}

.hero-stat {
  background: #fff;

  border-radius: var(--radius-lg);

  padding: 18px;

  text-align: center;

  box-shadow: var(--shadow-sm);
}

.hero-stat h3 {
  color: var(--primary);

  font-weight: 700;

  margin-bottom: 5px;
}

.hero-stat small {
  color: var(--gray-500);
}

.floating-growth {
  position: absolute;

  bottom: 25px;

  left: -30px;

  display: flex;

  gap: 15px;

  align-items: center;

  padding: 18px 22px;

  width: 260px;
}

.btn-theme {
  background: #0d6efd;

  color: #000;

  border-radius: 50px;

  padding: 14px 28px;

  transition: var(--transition);
}

.btn-theme:hover {
  /* background: var(--primary-dark); */
  background: #0d6efd;
  color: #fff;
}

.btn-outline-theme {
  border: 2px solid #0d6efd;

  color: #0d6efd;

  border-radius: 50px;

  padding: 14px 28px;
}

.btn-outline-theme:hover {
  background: var(--primary);

  color: #fff;
}
.card-modern {
  background: #fff;

  border: none;

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-md);
}

/* Section Components */

.section-badge {
  color: var(--secondary);

  font-weight: 600;

  letter-spacing: 2px;

  font-size: 0.85rem;
}

.section-title {
  font-weight: 700;

  color: var(--primary);
}

.section-description {
  max-width: 720px;

  margin: auto;

  color: var(--gray-500);
}

.icon-circle {
  width: 70px;

  height: 70px;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 30px;

  margin: auto;
}

/*=================================
Reusable Info Card
=================================*/

.icon-box {
  width: 70px;

  height: 70px;

  min-width: 70px;

  border-radius: 18px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 30px;
}

.card-modern {
  border-radius: 20px;

  box-shadow: var(--shadow-sm);

  transition: var(--transition);
}

.card-modern:hover {
  transform: translateY(-6px);

  box-shadow: var(--shadow-lg);
}

/*=================================
Investment Category
=================================*/

.category-menu {
  gap: 15px;
}

.category-menu .nav-link {
  border-radius: 15px;

  padding: 18px;

  text-align: left;

  font-weight: 600;

  background: #fff;

  color: var(--gray-700);

  border: 1px solid var(--gray-200);
}

.category-menu .nav-link.active {
  background: var(--primary);

  color: #fff;
}

.list-group-item {
  border: none;

  padding-left: 0;
}

/*=================================
Investment Timeline
=================================*/

.timeline {
  position: relative;

  display: flex;

  justify-content: space-between;

  gap: 20px;
}

.timeline-line {
  position: absolute;

  left: 0;

  right: 0;

  top: 42px;

  height: 4px;

  background: var(--gray-200);

  z-index: 0;
}

.timeline-item {
  position: relative;

  z-index: 1;

  width: 20%;

  text-align: center;
}

.timeline-circle {
  width: 85px;

  height: 85px;

  margin: auto;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  background: var(--primary);

  color: #fff;

  font-size: 34px;

  box-shadow: var(--shadow-md);

  transition: var(--transition);
}

.timeline-item:hover .timeline-circle {
  transform: scale(1.08);

  background: var(--secondary);
}

.timeline-item h5 {
  margin-top: 25px;

  font-weight: 600;
}

.timeline-item p {
  color: var(--gray-500);

  font-size: 15px;
}

.step-badge {
  position: absolute;

  top: -8px;

  right: -8px;

  width: 28px;

  height: 28px;

  background: var(--warning);

  color: #fff;

  border-radius: 50%;

  font-size: 12px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-weight: 700;
}

/*=================================
Benefit Card
=================================*/

.benefit-card {
  display: flex;

  align-items: flex-start;

  gap: 18px;

  background: #fff;

  padding: 18px 22px;

  border-radius: 16px;

  box-shadow: var(--shadow-sm);

  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateX(8px);

  box-shadow: var(--shadow-md);
}

.benefit-card i {
  font-size: 28px;
}

.benefit-card h6 {
  margin-bottom: 5px;

  font-weight: 600;
}

.benefit-card small {
  color: var(--gray-500);
}

/*=================================
FAQ
=================================*/

.accordion-item {
  border: none;

  margin-bottom: 15px;

  border-radius: 16px !important;

  overflow: hidden;

  box-shadow: var(--shadow-sm);
}

.accordion-button {
  font-weight: 600;

  padding: 20px;
}

.accordion-button:not(.collapsed) {
  background: var(--primary);

  color: #fff;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  color: var(--gray-500);

  line-height: 1.8;
}

/*=================================
Investment CTA
=================================*/

.investment-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));

  border-radius: 32px;

  padding: 70px;

  position: relative;

  overflow: hidden;
}

.investment-cta::before {
  content: "";

  position: absolute;

  width: 350px;

  height: 350px;

  background: rgba(255, 255, 255, 0.05);

  border-radius: 50%;

  top: -150px;

  right: -120px;
}

.investment-cta::after {
  content: "";

  position: absolute;

  width: 250px;

  height: 250px;

  background: rgba(255, 255, 255, 0.04);

  border-radius: 50%;

  bottom: -100px;

  left: -80px;
}

.floating-card {
  position: absolute;

  left: -20px;

  bottom: 40px;

  background: #fff;

  padding: 18px 22px;

  border-radius: 18px;

  box-shadow: var(--shadow-lg);
}

/*=================================
Service Card
=================================*/

.service-card {
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-icon {
  width: 70px;

  height: 70px;

  border-radius: 16px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 30px;
}

.service-tags {
  margin: 20px 0;
}

.service-tags span {
  display: inline-block;

  padding: 6px 14px;

  background: var(--gray-100);

  border-radius: 30px;

  font-size: 13px;

  margin-right: 8px;

  margin-bottom: 8px;
}

.service-link {
  text-decoration: none;

  color: var(--primary);

  font-weight: 600;
}

.service-link i {
  transition: var(--transition);
}

.service-link:hover i {
  margin-left: 8px;
}

/*=================================
Quick Contact
=================================*/

.quick-contact {
  background: var(--gray-50);
}

.contact-icon {
  width: 72px;

  height: 72px;

  margin: auto;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 18px;

  font-size: 30px;
}

.contact-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));

  border-radius: 24px;

  padding: 35px 40px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  color: #fff;

  gap: 20px;
}

.contact-banner p {
  color: rgba(255, 255, 255, 0.8);
}

/*=================================
About Hero
=================================*/

.about-hero {
  margin: 100px 0 0 0;

  /* background:linear-gradient(
        180deg,
        var(--light),
        var(--white)
    ); */

  background: url(../images/aboutBanner.png) no-repeat;
  background-size: 100%;
}

.mini-card {
  display: flex;

  align-items: center;

  gap: 15px;

  background: var(--white);

  padding: 18px;

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-sm);
}

.mini-card small {
  color: var(--gray-500);
}

.floating-about {
  position: absolute;

  bottom: 25px;

  left: -25px;

  padding: 20px 24px;

  background: var(--white);

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-lg);
}

/*=================================
Our Story
=================================*/

.story-highlight {
  display: flex;

  align-items: flex-start;

  gap: 15px;

  background: var(--white);

  padding: 18px;

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-sm);

  height: 100%;

  transition: var(--transition);
}

.story-highlight:hover {
  transform: translateY(-5px);

  box-shadow: var(--shadow-md);
}

.story-highlight i {
  font-size: 30px;
}

.story-highlight h6 {
  margin-bottom: 4px;

  font-weight: 600;
}

.story-highlight small {
  color: var(--gray-500);
}

.story-floating-card {
  position: absolute;

  right: -20px;

  bottom: 30px;

  background: var(--white);

  padding: 18px 24px;

  border-radius: 18px;

  box-shadow: var(--shadow-lg);
}

/*=================================
Mission & Vision
=================================*/

.purpose-icon {
  width: 80px;

  height: 80px;

  min-width: 80px;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 20px;

  font-size: 34px;

  transition: var(--transition);
}

.card-modern:hover .purpose-icon {
  transform: rotate(-8deg) scale(1.05);
}

/*=================================
Core Values
=================================*/

.value-card {
  border: none;

  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-8px);
}

.value-icon {
  width: 80px;

  height: 80px;

  margin: auto;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 20px;

  font-size: 34px;

  transition: var(--transition);
}

.value-card:hover .value-icon {
  transform: rotate(10deg) scale(1.08);
}

.value-card h4 {
  font-weight: 600;
}

.value-card p {
  color: var(--gray-500);

  margin-bottom: 0;
}

/*=================================
Why Choose Us
=================================*/

.check-item {
  display: flex;

  align-items: center;

  gap: 12px;

  font-weight: 500;
}

.check-item i {
  font-size: 20px;
}

.experience-card {
  position: absolute;

  right: -20px;

  bottom: 30px;

  background: var(--white);

  padding: 20px 25px;

  border-radius: 20px;

  box-shadow: var(--shadow-lg);

  text-align: center;
}

.trust-card {
  background: var(--primary);

  color: var(--white);

  border-radius: 20px;

  padding: 25px;
}

.trust-card p {
  color: rgba(255, 255, 255, 0.8);
}

.trust-icon {
  width: 60px;

  height: 60px;

  min-width: 60px;

  border-radius: 16px;

  display: flex;

  justify-content: center;

  align-items: center;

  background: rgba(255, 255, 255, 0.15);

  font-size: 28px;

  margin-right: 18px;
}

/*=================================
Achievements
=================================*/

.achievement-section {
  background: #002862;
}

.counter-box {
  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(10px);

  border-radius: 24px;

  padding: 35px;

  text-align: center;

  color: #fff;

  transition: var(--transition);
}

.counter-box:hover {
  transform: translateY(-8px);

  background: rgba(255, 255, 255, 0.15);
}

.counter-box i {
  font-size: 42px;

  color: #ffd54f;
}

.counter-box h2 {
  margin: 20px 0 8px;

  font-weight: 700;
}

.award-card {
  background: #fff;

  border-radius: 20px;

  padding: 30px;

  text-align: center;

  transition: var(--transition);
}

.award-card:hover {
  transform: translateY(-8px);

  box-shadow: var(--shadow-lg);
}

.award-card i {
  font-size: 40px;

  color: var(--primary);

  margin-bottom: 20px;
}

/*=================================
Leadership Team
=================================*/

.team-card {
  overflow: hidden;

  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-card img {
  height: 320px;

  object-fit: cover;
}

.team-role {
  display: inline-block;

  color: var(--secondary);

  font-weight: 600;

  font-size: 0.9rem;
}

.team-social {
  position: absolute;

  left: 50%;

  bottom: 20px;

  transform: translateX(-50%);

  display: flex;

  gap: 12px;

  opacity: 0;

  transition: var(--transition);
}

.team-card:hover .team-social {
  opacity: 1;
}

.team-social a {
  width: 42px;

  height: 42px;

  display: flex;

  justify-content: center;

  align-items: center;

  background: rgba(255, 255, 255, 0.95);

  border-radius: 50%;

  color: var(--primary);

  text-decoration: none;

  box-shadow: var(--shadow-sm);
}

.team-social a:hover {
  background: var(--primary);

  color: var(--white);
}

/*=================================
Testimonials
=================================*/

.testimonial-card {
  max-width: 850px;

  margin: auto;

  padding: 50px;

  background: var(--white);

  border-radius: 24px;

  box-shadow: var(--shadow-md);

  text-align: center;
}

.testimonial-text {
  font-size: 1.1rem;

  color: var(--gray-600);

  line-height: 2;

  font-style: italic;
}

.client-img {
  width: 70px;

  height: 70px;

  border-radius: 50%;

  object-fit: cover;

  border: 4px solid var(--primary);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--primary);

  border-radius: 50%;

  padding: 20px;
}

.carousel-indicators [data-bs-target] {
  width: 12px;

  height: 12px;

  border-radius: 50%;

  background: var(--primary);
}

/*=================================
Our Promise
=================================*/

.promise-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));

  border-radius: 32px;

  padding: 70px;

  position: relative;

  overflow: hidden;
}

.promise-banner::before {
  content: "";

  position: absolute;

  width: 350px;

  height: 350px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.05);

  top: -140px;

  right: -100px;
}

.promise-banner::after {
  content: "";

  position: absolute;

  width: 250px;

  height: 250px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.04);

  left: -80px;

  bottom: -80px;
}

.promise-item {
  display: flex;

  align-items: center;

  gap: 12px;

  color: #fff;

  font-weight: 500;
}

.promise-item i {
  color: #22c55e;

  font-size: 20px;
}

.promise-floating {
  position: absolute;

  left: -20px;

  bottom: 40px;

  background: #fff;

  padding: 20px 25px;

  border-radius: 20px;

  display: flex;

  align-items: center;

  gap: 18px;

  box-shadow: var(--shadow-lg);
}

/*=================================
Company Timeline
=================================*/

.company-timeline {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  position: relative;
}

.timeline-progress {
  position: absolute;

  top: 35px;

  left: 0;

  right: 0;

  height: 4px;

  background: var(--gray-300);

  z-index: 0;
}

.timeline-block {
  position: relative;

  z-index: 1;

  width: 20%;

  text-align: center;
}

.timeline-dot {
  width: 70px;

  height: 70px;

  margin: auto;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  color: #fff;

  font-size: 28px;

  box-shadow: var(--shadow-md);
}

.timeline-card {
  background: #fff;

  margin-top: 25px;

  padding: 25px;

  border-radius: 20px;

  box-shadow: var(--shadow-sm);

  transition: var(--transition);
}

.timeline-card:hover {
  transform: translateY(-8px);

  box-shadow: var(--shadow-lg);
}

.timeline-year {
  display: inline-block;

  margin-bottom: 10px;

  font-weight: 700;

  color: var(--primary);
}

/*=================================
About Contact CTA
=================================*/

.contact-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));

  border-radius: 32px;

  padding: 70px;

  position: relative;

  overflow: hidden;
}

.cta-feature {
  display: flex;

  align-items: center;

  gap: 12px;

  color: #fff;

  font-weight: 500;
}

.cta-feature i {
  color: var(--secondary);

  font-size: 20px;
}

.cta-floating-card {
  position: absolute;

  left: -20px;

  bottom: 40px;

  background: #fff;

  padding: 20px 25px;

  border-radius: 20px;

  display: flex;

  align-items: center;

  gap: 18px;

  box-shadow: var(--shadow-lg);
}

.contact-box-icon {
  width: 75px;

  height: 75px;

  margin: auto;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 18px;

  font-size: 32px;
}

/*=================================
Contact Hero
=================================*/

.contact-hero {
  margin: 100px 0 0 0;
  background: url("../images/contactu_bg.png") no-repeat;
  background-size: cover;

  /* background:linear-gradient(
        180deg,
        var(--light),
        var(--white)
    ); */
}

.hero-info-card {
  background: #fff;

  border-radius: 20px;

  padding: 22px;

  text-align: center;

  box-shadow: var(--shadow-sm);

  transition: var(--transition);

  height: 100%;
}

.hero-info-card:hover {
  transform: translateY(-6px);

  box-shadow: var(--shadow-md);
}

.hero-info-card i {
  font-size: 34px;
}

.hero-info-card i,
.hero-info-card h6,
.hero-info-card small {
  color: #000;
}

.contact-floating-card {
  position: absolute;

  left: -20px;

  bottom: 40px;

  background: #fff;
  color: #000;

  padding: 20px 25px;

  border-radius: 20px;

  box-shadow: var(--shadow-lg);
}

/*=================================
Contact Cards
=================================*/

.contact-card {
  border: none;

  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-8px);

  box-shadow: var(--shadow-lg);
}

.contact-icon {
  width: 80px;

  height: 80px;

  margin: auto;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 20px;

  font-size: 34px;

  transition: var(--transition);
}

.contact-card:hover .contact-icon {
  transform: scale(1.1);
}

.contact-link {
  display: inline-block;

  margin-top: 12px;

  text-decoration: none;

  font-weight: 600;

  color: var(--primary);
}

.contact-link:hover {
  color: var(--secondary);
}

/*=================================
Contact Form
=================================*/

.contact-feature {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 20px;

  font-weight: 500;
}

.contact-feature i {
  color: #22c55e;

  font-size: 22px;
}

.form-control,
.form-select {
  border-radius: 14px;

  padding: 14px 16px;

  border: 1px solid #dee2e6;

  box-shadow: none;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);

  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

textarea.form-control {
  resize: none;
}

/*=================================
Why Contact Us
=================================*/

.why-contact-item {
  display: flex;

  align-items: center;

  gap: 12px;

  font-weight: 500;
}

.why-contact-item i {
  color: #22c55e;

  font-size: 20px;
}

.response-card {
  position: absolute;

  right: -20px;

  bottom: 35px;

  background: #fff;

  padding: 20px 25px;

  border-radius: 20px;

  box-shadow: var(--shadow-lg);
}

.mini-stat {
  background: #fff;

  padding: 22px;

  text-align: center;

  border-radius: 18px;

  box-shadow: var(--shadow-sm);
}

.mini-stat h3 {
  color: var(--primary);

  font-weight: 700;

  margin-bottom: 5px;
}

.mini-stat span {
  color: var(--gray-500);
}

/*=================================
Consultation Process
=================================*/

.process-wrapper {
  position: relative;
}

.process-line {
  position: absolute;

  top: 42px;

  left: 8%;

  right: 8%;

  height: 4px;

  background: var(--gray-300);

  z-index: 0;
}

.process-card {
  position: relative;

  z-index: 1;

  background: #fff;

  border-radius: 22px;

  padding: 35px 25px;

  text-align: center;

  box-shadow: var(--shadow-sm);

  transition: var(--transition);

  height: 100%;
}

.process-card:hover {
  transform: translateY(-10px);

  box-shadow: var(--shadow-lg);
}

.process-icon {
  width: 85px;

  height: 85px;

  margin: auto;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 50%;

  color: #fff;

  font-size: 34px;
}

.step-number {
  display: inline-block;

  margin: 20px 0 15px;

  padding: 6px 16px;

  background: var(--gray-100);

  border-radius: 30px;

  color: var(--primary);

  font-weight: 700;

  font-size: 14px;
}

.process-card h5 {
  font-weight: 600;

  margin-bottom: 15px;
}

.process-card p {
  color: var(--gray-500);

  margin-bottom: 0;
}

/*=================================
Office Locations
=================================*/

.office-feature {
  overflow: hidden;

  border-radius: 30px;

  box-shadow: var(--shadow-lg);
}

.office-image {
  object-fit: cover;

  min-height: 420px;
}

.office-card {
  border: none;

  border-radius: 22px;

  box-shadow: var(--shadow-sm);

  transition: var(--transition);
}

.office-card:hover {
  transform: translateY(-8px);

  box-shadow: var(--shadow-lg);
}

.office-card i {
  color: var(--primary);

  margin-right: 10px;
}

/*=================================
Google Map
=================================*/

.map-wrapper {
  overflow: hidden;

  border-radius: 24px;
}

.map-wrapper iframe {
  width: 100%;

  height: 500px;

  border: 0;
}

.map-info-card {
  background: #fff;

  border-radius: 20px;

  padding: 30px;

  text-align: center;

  height: 100%;

  box-shadow: var(--shadow-sm);

  transition: var(--transition);
}

.map-info-card:hover {
  transform: translateY(-8px);

  box-shadow: var(--shadow-lg);
}

.map-icon {
  width: 75px;

  height: 75px;

  margin: auto auto 20px;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 20px;

  font-size: 32px;
}

.map-info-card h5 {
  margin-bottom: 15px;
}

.map-info-card p {
  margin: 0;

  color: var(--gray-500);
}

/*=================================
Privacy Hero
=================================*/

.privacy-hero {
  margin: 100px 0 0 0;

  background: url("../images/privacy.png") no-repeat;
  background-size: cover;
}

.policy-update {
  display: inline-flex;

  align-items: center;

  padding: 12px 18px;

  border-radius: 14px;

  background: var(--gray-100);
}

.privacy-mini-card {
  background: #fff;
  color: #000;

  padding: 20px;

  border-radius: 18px;

  text-align: center;

  box-shadow: var(--shadow-sm);

  transition: var(--transition);

  height: 100%;
}

.privacy-mini-card:hover {
  transform: translateY(-6px);

  box-shadow: var(--shadow-md);
}

.privacy-mini-card i {
  font-size: 34px;
}

.privacy-floating-card {
  position: absolute;

  left: -20px;

  bottom: 40px;

  background: #0d6efd;
  color: #fff;

  padding: 20px 24px;

  border-radius: 20px;

  box-shadow: var(--shadow-lg);
}
