/* ===========================================
   Niventra Capital Advisory India Capital
   Main Stylesheet
=========================================== */

:root {
  --bs-primary: #0a2e6d;
  --bs-secondary: #c3982a;
  --bs-success: #c3982a;
  --bs-warning: #c3982a;
  --bs-btn-bg: #c3982a;
  --bs-btn-border-color: #c3982a;
  --bs-dark: #111827;
  --bs-light: #f8fafc;
  --bs-gray: #6b7280;
  --bs-body-color: #111827;
  --bs-body-font-family: "Poppins", sans-serif;
}

/* Custom Overrides to match all yellows/warnings to logo gold (#c3982a) */
/* .text-warning {
  color: #fff !important;
} */

.bg-warning {
  background-color: #c3982a !important;
}

.bg-warning-subtle {
  background-color: rgba(195, 152, 42, 0.15) !important;
}

.border-warning {
  border-color: #c3982a !important;
}

.btn-warning {
  background-color: #c3982a !important;
  border-color: #c3982a !important;
  color: #111827 !important;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active {
  background-color: #ad821d !important;
  border-color: #ad821d !important;
  color: #111827 !important;
}

.btn-outline-warning {
  color: #c3982a !important;
  border-color: #c3982a !important;
}

.btn-outline-warning:hover,
.btn-outline-warning:focus,
.btn-outline-warning:active {
  background-color: #c3982a !important;
  border-color: #c3982a !important;
  color: #111827 !important;
}

.btn-success {
  --bs-btn-color: #fff;
  --bs-btn-bg: #c3982a;
  --bs-btn-border-color: #c3982a;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #a67c1e;
  --bs-btn-hover-border-color: #a67c1e;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #a67c1e;
  --bs-btn-active-border-color: #a67c1e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #c3982a;
  --bs-btn-disabled-border-color: #c3982a;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding-left: 0;
}

/* ===========================================
   Header & Navbar Enhanced Aesthetics
=========================================== */
.top-bar {
  background: #061533;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-area {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(195, 152, 42, 0.2);
  transition: all 0.35s ease;
}

.header-area.shadow {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 12px 35px rgba(10, 46, 109, 0.15) !important;
}

.navbar-brand .logo {
  width: 72px !important;
  height: 72px !important;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  border: 3px solid rgba(195, 152, 42, 0.5);
  box-shadow: 0 4px 15px rgba(195, 152, 42, 0.2) !important;
}

.navbar-brand:hover .logo {
  transform: scale(1.08) rotate(2deg);
  border-color: rgba(195, 152, 42, 0.9);
  box-shadow: 0 8px 25px rgba(195, 152, 42, 0.45) !important;
}

.navbar-nav .nav-link {
  position: relative;
  transition: color 0.3s ease;
  font-weight: 500;
  padding: 8px 14px !important;
  color: #1e293b !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #0a2e6d !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 0;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #c3982a, #ffe596);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 70%;
}

.btn-header-cta {
  background: linear-gradient(135deg, #c3982a 0%, #a67c1e 100%) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(195, 152, 42, 0.35) !important;
  transition: all 0.3s ease !important;
}

.btn-header-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(195, 152, 42, 0.5) !important;
  color: #fff !important;
}


/* 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: #c3982a;
  color: #fff;
  margin: 0 auto 25px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-icon i,
.feature-icon i {
  font-size: 34px;
  color: #fff;
}

.service-icon,
.journey-icon {
  width: 75px;
  height: 75px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #937d2e, var(--bs-secondary));
  color: #fff;
  margin: 0 auto 25px;
}

.btn-outline-primary {
  --bs-btn-color: #fff !important
}

.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: #c3982a;
  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: #c3982a;
  backdrop-filter: blur(10px);
}

.footer {
  background: #071a3d;
}

.footer h4,
.footer small {
  color: #ffda7c !important;
}

.social-links {
  display: none !important;
}

#state-filters .btn-outline-success.active,
#state-filters .btn-outline-success:hover {
  background-color: #c3982a !important;
  border-color: #c3982a !important;
}

.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: 50px 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: #fff;

  border-radius: 50px;

  padding: 14px 28px;

  transition: var(--transition);
}

.btn-theme:hover {
  /* background: var(--primary-dark); */
  background: #0d6efd;
  color: #fff;
}

/* .text-primary, */
/* .bg-info-subtle, */
/* .bg-warning-subtle {
  color: #ffff !important;
} */

.btn-outline-theme {
  border: 2px solid #fff;

  color: #fff !important;

  border-radius: 50px;

  /* Floating map button */

  padding: 14px 28px;
}

.floating-map-btn {
  /* position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999; */
  background: #ffffff;
  color: #000;
  padding: 12px 14px;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.floating-map-btn img {
  width: 18px;
  height: 18px;
}

.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: #0d6efd;

  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: 50px 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: radial-gradient(circle at 10% 20%, rgba(195, 152, 42, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(13, 110, 253, 0.2) 0%, transparent 45%),
    linear-gradient(135deg, #07193b 0%, #030b1e 100%);
  position: relative;
  overflow: hidden;
}

.counter-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-radius: 24px;
  padding: 35px 25px;
  text-align: center;
  color: #fff;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.counter-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(195, 152, 42, 0.4);
  box-shadow: 0 25px 50px rgba(195, 152, 42, 0.18);
}


.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: #c3982a;
  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: #c3982a;
  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: 50px 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: #c3982a;

  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: #c3982a;

  font-size: 20px;
}

.text-success {
  color: #c3982a !important;
}

.bg-success-subtle {
  background-color: #c3982a !important;
  color: #fff !important;
}

.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);
}

.about-hero,
.investment-hero {
  background: radial-gradient(circle at 80% 20%, rgba(195, 152, 42, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(13, 110, 253, 0.25) 0%, transparent 45%),
    linear-gradient(135deg, #07193b 0%, #030b1e 100%);
}

.privacy-hero {
  margin: 50px 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);
}

/* ===========================================
   Hero Swiper Slider Ultra-Premium Styles
=========================================== */
.min-vh-75 {
  min-height: 80vh;
}

.hero-section {
  background: #061533;
}

.hero-slide {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.bg-hero-1 {
  background: radial-gradient(circle at 80% 20%, rgba(195, 152, 42, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(13, 110, 253, 0.25) 0%, transparent 45%),
    linear-gradient(135deg, #07193b 0%, #030b1e 100%);
}

.bg-hero-2 {
  background: radial-gradient(circle at 20% 30%, rgba(195, 152, 42, 0.2) 0%, transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(14, 165, 233, 0.2) 0%, transparent 40%),
    linear-gradient(135deg, #0a2558 0%, #040e24 100%);
}

.bg-hero-3 {
  background: radial-gradient(circle at 75% 30%, rgba(99, 102, 241, 0.2) 0%, transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(195, 152, 42, 0.2) 0%, transparent 40%),
    linear-gradient(135deg, #061838 0%, #020919 100%);
}

/* Glassmorphism Cards with Glow */
.hero-glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 70px rgba(195, 152, 42, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.gradient-text-gold {
  background: linear-gradient(135deg, #ffe596 0%, #c3982a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Floating Animation */
.floating-element {
  animation: floatAnim 4s ease-in-out infinite;
}

.floating-element-reverse {
  animation: floatAnimReverse 5s ease-in-out infinite;
}

@keyframes floatAnim {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatAnimReverse {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(12px);
  }
}

/* Custom Range Input */
.custom-range {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
}

.custom-range::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  background: #c3982a;
  box-shadow: 0 0 15px rgba(195, 152, 42, 0.8);
  border: 2px solid #fff;
  cursor: pointer;
}

/* Swiper Pagination & Controls */
.hero-pagination {
  bottom: 25px !important;
}

.hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-pagination .swiper-pagination-bullet-active {
  background: #c3982a;
  width: 40px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(195, 152, 42, 0.6);
}

.hero-next,
.hero-prev {
  color: #fff;
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.hero-next:hover,
.hero-prev:hover {
  background: #c3982a;
  color: #111;
  border-color: #c3982a;
  box-shadow: 0 0 25px rgba(195, 152, 42, 0.6);
  transform: scale(1.08);
}

.hero-next::after,
.hero-prev::after {
  font-size: 22px;
  font-weight: bold;
}

.testimonial-card {
  position: relative;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(10, 46, 109, 0.1) !important;
  border-color: rgba(195, 152, 42, 0.3) !important;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 80px;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(195, 152, 42, 0.12);
  pointer-events: none;
}

.testimonial-pagination {
  bottom: 0 !important;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #cbd5e1;
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--bs-primary);
  width: 32px;
  border-radius: 6px;
}


/* ===========================================
   Ultra-Premium Footer Styles
=========================================== */
.footer-main {
  background: radial-gradient(circle at 10% 20%, rgba(195, 152, 42, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(13, 110, 253, 0.1) 0%, transparent 45%),
    linear-gradient(180deg, #07193b 0%, #030b1e 100%);
}

.footer-social-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-social-icon:hover {
  background: #c3982a;
  color: #111;
  border-color: #c3982a;
  box-shadow: 0 0 20px rgba(195, 152, 42, 0.5);
  transform: translateY(-4px);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7) !important;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #c3982a !important;
  transform: translateX(5px);
}

.footer-contact-item {
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-item i {
  width: 32px;
  height: 32px;
  background: rgba(195, 152, 42, 0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ===========================================
   Modern Company Timeline Styles
=========================================== */
.company-timeline-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(180deg, #0a2e6d 0%, #c3982a 50%, #0a2e6d 100%);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item-block {
  position: relative;
  margin-bottom: 40px;
}

.timeline-node {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #0a2e6d;
  color: #c3982a;
  border: 4px solid #fff;
  box-shadow: 0 0 20px rgba(10, 46, 109, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  z-index: 10;
  font-size: 20px;
  transition: all 0.3s ease;
}

.timeline-item-block:hover .timeline-node {
  background: #c3982a;
  color: #111;
  border-color: #fff;
  box-shadow: 0 0 25px rgba(195, 152, 42, 0.6);
  transform: translateX(-50%) scale(1.15);
}

.timeline-card-box {
  width: 45%;
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
}

.timeline-item-block:hover .timeline-card-box {
  transform: translateY(-5px);
  border-color: rgba(195, 152, 42, 0.3);
  box-shadow: 0 20px 40px rgba(10, 46, 109, 0.1);
}

.timeline-item-left .timeline-card-box {
  margin-right: auto;
  text-align: right;
}

.timeline-item-right .timeline-card-box {
  margin-left: auto;
  text-align: left;
}

@media (max-width: 991px) {
  .timeline-line {
    left: 30px;
  }

  .timeline-node {
    left: 30px;
  }

  .timeline-card-box {
    width: calc(100% - 80px);
    margin-left: 80px !important;
    text-align: left !important;
  }
}