/* ===================================
   BOOKMYHALL - MAIN STYLESHEET
   Modern, Premium Design System
   =================================== */

:root {
  /* Color Palette */
  --primary-color: #144f93;
  --primary-dark: #144f93;
  --primary-light: #3b82f6;
  --secondary-color: #faa61c;
  --accent-color: #8b5cf6;
  --dark-bg: #1a1a2e;
  --light-bg: #efeff4;
  --white: #ffffff;
  --text-dark: #161616;
  --text-light: #161616;
  --border-color: #e5e7eb;
  --success-color: #10b981;

  /* Typography */
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Outfit", sans-serif;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ===================================
   GLOBAL STYLES
   =================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
}
h2 {
  font-size: 2.5rem;
  font-weight: 700;
}
h3 {
  font-size: 1.875rem;
  font-weight: 700;
}
h4 {
  font-size: 1.5rem;
  font-weight: 600;
}
h5 {
  font-size: 1.25rem;
  font-weight: 600;
}
h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  color: var(--text-light);
  font-size: 18px;
  line-height: 1.5;
  font-family: var(--font-secondary);
}

a {
  color: var(--primary-color);
  text-decoration: none !important;
  transition: color var(--transition-base);
  font-family: var(--font-secondary) !important;
}

a:hover {
  color: var(--secondary-color);
}

.pt--80 {
  padding-top: 30px;
}

.pb--80 {
  padding-bottom: 30px;
}
/* ===================================
   NAVIGATION BAR
   =================================== */

.navbar-smooth {
  transition: all var(--transition-base);
  background-color: #efeff4;
}

.navbar-smooth.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.navbar-brand img {
  width: 150px;
}

.navbar-expand-lg .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
  justify-content: space-between !important;
}

.brand-icon {
  font-size: 1.75rem;
}

.nav-link {
  font-weight: 500;
  color: var(--text-light) !important;
  margin: 0 1.5rem;
  transition: color var(--transition-base);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color) !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 5px;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 90%;
}

.nav-buttons {
  display: flex;
  align-items: center;
}

.btn-login,
.btn-download {
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  font-size: 0.875rem;
}

.btn-login {
  background-color: transparent;
  color: #144f93;
  text-decoration: underline;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.btn-login:hover {
  color: var(--secondary-color);
}

.btn-download {
  background: #144f93;
  color: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: 50px;
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Mobile Navbar - Hide default Bootstrap collapse on mobile */
@media (max-width: 1000px) {
  .navbar-collapse {
    display: none !important;
  }

  .navbar-toggler {
    display: flex !important;
  }
}

/* ===================================
   BUTTONS - GENERAL
   =================================== */

.btn-primary-lg,
.btn-secondary-lg,
.btn-outline-primary,
.btn-download-large,
.btn-submit {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary-lg {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn-primary-lg:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn-secondary-lg {
  background-color: var(--light-bg);
  color: var(--text-dark);
  border: 2px solid var(--border-color);
}

.btn-secondary-lg:hover {
  background-color: var(--white);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-download-large {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  color: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-download-large:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn-submit {
  background: #144f93;
  color: var(--white);
  box-shadow: none;
  padding: 0.875rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.btn-submit:hover {
  background: #0f3761;
  transform: none;
  box-shadow: var(--shadow-md);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
  background-image: url(../images/shapes/banner-section.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0px 0px 0px;
  overflow: hidden;
}
#banner-style-span {
  background-color: #fff;
  width: 260px;
  padding: 7px 11px;
  border-radius: 70px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.badge-primary {
  display: inline-block;
  background: #ffffff !important;
  color: var(--primary-color);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-2xl);
  font-size: 0.875rem;
  font-weight: 600;
}

.rainbox-color-text {
  background: linear-gradient(
    to right,
    #144f93,
    #b7136d,
    #faa61c 70%
  ) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title {
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
  margin: 1.5rem 0;
}

.hero-subtitle {
  color: var(--text-light);
  margin: 1.5rem 0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-mockups {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.mockup {
  position: absolute;
  filter: drop-shadow(var(--shadow-2xl));
}

.mockup-1 {
  width: 200px;
  height: 420px;
  left: 10%;
  top: 50%;
  transform: translateY(-50%) rotateZ(-15deg);
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

.mockup-2 {
  width: 200px;
  height: 420px;
  left: 50%;
  top: 20%;
  transform: translateX(-50%) rotateZ(5deg);
  z-index: 4;
  animation: float 4s ease-in-out infinite 0.3s;
}

.mockup-3 {
  width: 200px;
  height: 420px;
  right: 10%;
  top: 50%;
  transform: translateY(-50%) rotateZ(15deg);
  z-index: 3;
  animation: float 3.5s ease-in-out infinite 0.6s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* .phone-frame {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 2rem;
  padding: 12px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 25px;
  background: var(--dark-bg);
  border-radius: 0 0 1.5rem 1.5rem;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
} */

/* ===================================
   SECTION STYLING
   =================================== */

.section-label {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-2xl);
  font-size: 20px;
  font-weight: 400;
  background: linear-gradient(
    to right,
    #144f93,
    #b7136d,
    #faa61c 70%
  ) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-family: "Manrope", sans-serif;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about-section {
  background: var(--white);
  position: relative;
  z-index: 100;
}

.process-section {
  position: relative !important;
  z-index: 1000 !important;
}
.about-section h4 {
  font-size: 22px;
  font-weight: 500;
}

.about-card h5 {
  font-size: 22px;
  font-weight: 500;
}
.about-us-card {
  background: #efeff4;
  border-radius: 20px;
  padding: 0px 35px 35px 35px;
  text-align: center;
}

.about-us-card2 {
  background: #efeff4;
  border-radius: 20px;
  padding: 35px 35px 0px 35px;
  text-align: center;
}

.about-card-image img {
  width: 300px;
}

#left-about-card {
  margin-top: 40px;
}

#rigth-about-card {
  margin-bottom: 40px;
}

.about-card-content p {
  font-size: 15px;
}
.about-mockup {
  perspective: 1000px;
  margin-bottom: 2rem;
}

.about-card-image2 img {
  position: absolute;
  top: 0;
  left: 50%;
}

.about-mockup-left {
  transform: rotateY(15deg);
}

.about-mockup-right {
  transform: rotateY(-15deg);
}

.phone-frame-large {
  width: 100%;
  max-width: 280px;
  height: 550px;
  background: var(--white);
  border-radius: 2.5rem;
  padding: 14px;
  box-shadow: var(--shadow-2xl);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.phone-frame-large::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 170px;
  height: 27px;
  background: var(--dark-bg);
  border-radius: 0 0 1.75rem 1.75rem;
  z-index: 10;
}

.phone-screen-large {
  width: 100%;
  height: 100%;
  border-radius: 2rem;
}

.about-card {
  background: var(--light-bg);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-xl);
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.about-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.card-header h4 {
  color: var(--text-dark);
  margin: 0;
}

.testimonial {
  padding: var(--spacing-lg) 0;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.rating {
  color: #fbbf24;
  font-size: 0.8rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

.feature-item i {
  color: #144f93;
  font-size: 1.25rem;
}

.hall-owners-card {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.05) 0%,
    rgba(139, 92, 246, 0.05) 100%
  );
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-2xl);
}

.hall-owners-card h4 {
  color: var(--primary-color);
}

.hall-owners-card p {
  margin: 1rem 0;
}

.owner-image-placeholder {
  text-align: center;
}

/* ===================================
   PROCESS SECTION
   =================================== */
/* 
.step-item {
  background: var(--white);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-2xl);
  margin-bottom: var(--spacing-lg);
  border-left: 4px solid var(--primary-color);
  transition: all var(--transition-base);
}

.step-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.step-item h5 {
  color: var(--text-dark);
}

.step-item p {
  margin: 0.75rem 0 0 0;
}

.process-mockup {
  perspective: 1000px;
}

.phone-frame-xl {
  width: 100%;
  max-width: 300px;
  height: 620px;
  background: var(--white);
  border-radius: 2.5rem;
  padding: 15px;
  box-shadow: var(--shadow-2xl);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.phone-frame-xl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 28px;
  background: var(--dark-bg);
  border-radius: 0 0 2rem 2rem;
  z-index: 10;
}

.phone-screen-xl {
  width: 100%;
  height: 100%;
  border-radius: 2rem;
} */

/* ===================================
   DOWNLOAD SECTION
   =================================== */

.download-section {
  background-image: url(../images/shapes/downloadnow.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.feature-box {
  text-align: center;
  padding: var(--spacing-xl);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  color: var(--white);
  border-radius: 50%;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-box h5 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.download-phone {
  perspective: 1000px;
}

.phone-frame-download {
  width: 100%;
  max-width: 280px;
  height: 550px;
  background: var(--white);
  border-radius: 2.5rem;
  padding: 14px;
  box-shadow: var(--shadow-2xl);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.phone-frame-download::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 170px;
  height: 27px;
  background: var(--dark-bg);
  border-radius: 0 0 1.75rem 1.75rem;
  z-index: 10;
}

.phone-screen-download {
  width: 100%;
  height: 100%;
  border-radius: 2rem;
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-accordion {
  gap: 1rem;
}
.faq-item {
  border: 1px solid var(--border-color) !important;
  border-radius: 10px !important;
  overflow: hidden;
  transition: all var(--transition-base);
  margin-bottom: 1.5rem;
  background-color: #efeff4 !important;
}

.accordion-button:focus {
  z-index: 3;
  border-color: #86b7fe00 !important;
  outline: 0;
  box-shadow: none !important;
}

.faq-item:hover {
  border-color: var(--primary-color) !important;
  box-shadow: var(--shadow-md);
}

.accordion-button {
  font-weight: 600;
  color: var(--text-dark) !important;
  padding: 1.5rem;
  border-radius: var(--radius-xl) !important;
  background-color: #efeff4 !important;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(37, 99, 235, 0.05) !important;
  color: var(--secondary-color) !important;
  box-shadow: none !important;
}

.accordion-button::after {
  display: none;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  justify-content: space-between;
  transition: var(--bs-accordion-transition);
}

.accordion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  font-size: 1.125rem;
  transition: transform var(--transition-base);
  color: var(--secondary-color);
}

.accordion-button.collapsed .accordion-icon i::before {
  content: "\f067";
}

.accordion-button:not(.collapsed) .accordion-icon i::before {
  content: "\f068";
}

.accordion-body {
  padding: 1.5rem;
  background-color: var(--light-bg);
  border-top: 1px solid var(--border-color);
  font-family: "Outfit", sans-serif;
  font-size: 15px;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-section {
  background: #26282f;
}

.contact-subtitle {
  font-size: 16px;
  color: #bcbcbc !important;
  margin-bottom: 2rem;
}

textarea.form-control {
  height: 100px !important;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  padding: 20px 15px;
  width: 70%;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background: #0d0d0d00;
  z-index: 1;
}

/* Animated Border */
.contact-item::before {
  content: "";
  position: absolute;
  width: 250%;
  height: 250%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  background: conic-gradient(
    from 0deg,
    transparent,
    #f4b31b,
    #144f93,
    transparent,
    transparent
  );

  animation: rotateBorder 3s linear infinite;
  z-index: -2;
}

/* Inner Background */
.contact-item::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #26282f;
  border-radius: 18px;
  z-index: -1;
}

@keyframes rotateBorder {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.contact-item i {
  font-size: 1.75rem;
  color: #ffffff;
  min-width: 50px;
  text-align: center;
  background: #144f93;
  line-height: 50.5px;
  border-radius: 5px;
}

.contact-item h5 {
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.contact-item p {
  margin: 0;
  font-size: 0.95rem;
}

.contact-form-wrapper {
  background: #e8f0f8;
  padding: 2.5rem;
  border-radius: var(--radius-2xl);
  border: none;
}

.contact-form-wrapper h4 {
  color: #144f93;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-form-wrapper p {
  color: #666;
  font-size: 14px;
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  color: #161616;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-primary);
  transition: all var(--transition-base);
  background-color: #fff;
  font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #144f93;
  box-shadow: 0 0 0 3px rgba(20, 79, 147, 0.1);
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

/* ===================================
   FOOTER
   =================================== */

.footer-section {
  background: var(--dark-bg);
  color: #9ca3af;
  padding-top: var(--spacing-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.89);
}

.footer-title {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-text {
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #9ca3af;
  transition: color var(--transition-base);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.app-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.app-btn {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  font-size: 0.85rem;
  font-weight: 600;
}

.app-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.qr-section {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.qr-section p {
  margin: 0 0 0.5rem 0;
  font-size: 0.8rem;
  color: #9ca3af;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: #9ca3af;
}

.footer-bottom i {
  color: #ef4444;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.container-xxl {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.min-vh-100 {
  min-height: 100vh;
}

.text-center {
  text-align: center;
}

.text-md-end {
  text-align: end;
}

.mb-3 {
  margin-bottom: var(--spacing-lg) !important;
}

.mb-4 {
  margin-bottom: var(--spacing-xl) !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mt-3 {
  margin-top: var(--spacing-lg) !important;
}

.mt-4 {
  margin-top: var(--spacing-xl) !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: var(--spacing-lg) !important;
}

.ms-3 {
  margin-left: var(--spacing-lg) !important;
}

.ms-auto {
  margin-left: auto !important;
}

.w-100 {
  width: 100% !important;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.rounded {
  border-radius: var(--radius-lg) !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

/* ===================================
   SCROLLBAR STYLING
   =================================== */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* testimonals section  */

/* 
    body{
      background:#f5f5f5;
      font-family:Arial, sans-serif;
      display:flex;
      justify-content:center;
      align-items:center;
      min-height:100vh;
      padding:20px;
    } */

.testimonial-section {
  width: 100%;
  max-width: 900px;
  background: #e9e9eb;
  border-radius: 30px;
  padding: 25px 35px 25px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.testimonial-title {
  font-size: 22px;
  font-weight: 500;
  color: #111;
  margin-bottom: 20px;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  transition: 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
}

.testimonial-box {
  border: 1px solid #d2d2d2;
  border-radius: 24px;
  padding: 20px;
  background: transparent;
  position: relative;
}

.testimonial-box::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  border: 1px solid #d2d2d2;
  border-radius: 24px;
  z-index: -1;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: #2c2c2c;
  max-width: 100%;
}

.testimonial-bottom {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 18px;
}

.user-info img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
}

.user-info h4 {
  font-size: 18px;
  margin: 0;
  color: #111;
  font-weight: 600;
}

.rating {
  display: flex;
  gap: 8px;
}

.rating i {
  color: #ffb400;
  font-size: 16px;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 30px;
  z-index: 10;
  transition: 0.3s ease;
  color: #d9d9d9;
}

.arrow:hover {
  transform: translateY(-50%) scale(1.08);
}

.prev {
  left: -5px;
}

.next {
  right: -5px;
}

.flex-one-choose {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-bottom: 20px;
}

#border-only {
  border-bottom: 2px dotted #d2d2d2;
}

.border-left-only {
  /* width: 2px;
    height: 67px;
    background-color: #d2d2d2; */
  border-left: 2px dotted #d2d2d2;
}

.border-left-only2 {
  /* width: 2px;
    height: 67px;
    background-color: #d2d2d2; */
  margin-top: -18px;
  border-left: 2px dotted #d2d2d2;
}

.why-choose-card {
  background: #f6f7f9;
  border-radius: 1.5rem;
  padding: 1.5rem 1.5rem 1.25rem;
}

.why-choose-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-radius: 1.25rem;
  overflow: hidden;
}

.why-choose-feature {
  align-items: baseline !important;
}

.why-choose-feature {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.5rem;
  min-height: 72px;
  color: #12243d;
  font-weight: 400;
  font-size: 14px;
  font-family: "Outfit", sans-serif;
}

.why-choose-feature:nth-child(1),
.why-choose-feature:nth-child(2) {
  border-bottom: 1px dotted rgba(20, 79, 147, 0.16);
}

.why-choose-feature:nth-child(odd) {
  border-right: 1px dotted rgba(20, 79, 147, 0.16);
}

.feature-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #144f93;
  font-size: 0.9rem;
}

.feature-text {
  line-height: 1.35;
}

@media (max-width: 767.98px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-feature:nth-child(odd) {
    border-right: none;
  }

  .why-choose-feature:nth-child(1),
  .why-choose-feature:nth-child(2),
  .why-choose-feature:nth-child(3) {
    border-bottom: 1px dotted rgba(20, 79, 147, 0.16);
  }
}

/* ===================================
   FOOTER SECTION
   =================================== */

.footer-section {
  background: #26282f;
  color: #ffffff;
  padding: 60px 0 0px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.89);
}

.footer-content {
  margin-bottom: 40px;
}

/* Footer Left - About Section */
.footer-about {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  text-decoration: none;
  margin-bottom: 20px;
  display: inline-block;
  width: fit-content;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #3b82f6;
  font-family: var(--font-primary);
  letter-spacing: -0.5px;
}

.logo-text::first-letter {
  color: #faa61c;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: #bcbcbc;
  margin: 0;
  font-family: var(--font-secondary);
}

.line-footer {
  width: 90px;
  height: 1px;
  background: #bcbcbc;
  margin: 20px 0;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all var(--transition-base);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.social-icon:hover {
  background: #3b82f6;
  color: #fff;
  transform: translateY(-3px);
  border-color: #3b82f6;
}

.social-icon i {
  font-size: 18px;
}

/* Footer Middle - Quick Links */
.footer-links {
  padding-left: 45px;
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--primary-color);
  font-family: var(--font-primary);
}

.links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links-list li {
  margin-bottom: 12px;
}

.links-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-family: var(--font-secondary);
  display: flex;
  align-items: center;
  transition: all var(--transition-base);
  padding: 5px 0;
  gap: 5px;
  justify-content: space-between;
}

#straightline-footer {
  height: 120px;
  width: 1px;
  color: #bcbcbc;
  background: #bcbcbc;
}

.links-list a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.links-list a.active {
  color: var(--secondary-color) !important;
  padding-left: 5px;
}

.links-list a i {
  font-size: 12px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.links-list a:hover i {
  opacity: 1;
}

/* Footer Right - Download App */
.footer-download {
  padding-left: 40px;
}

.download-content {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.qr-code-box {
  position: relative;
  background: white;
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 120px;
}

.qr-code {
  width: 40%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.qr-dimension {
  position: absolute;
  bottom: -25px;
  right: 0;
  background: #3b82f6;
  color: white;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.app-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.app-button img {
  height: 40px;
  width: auto;
}

.google-play {
  background: white;
}

.google-play:hover {
  background: #f5f5f5;
}

/* Footer Bottom */
.footer-bottom {
  padding: 30px 0px 15px 0px;
  text-align: center;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-family: var(--font-secondary);
  letter-spacing: 0.3px;
}

.powered-by {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer-links {
    padding-left: 0;
  }

  .footer-download {
    padding-left: 0;
    margin-top: 30px;
  }

  .download-content {
    flex-direction: column;
    gap: 20px;
  }

  .qr-code-box {
    min-width: 100%;
    max-width: 150px;
  }

  .footer-section {
    padding: 40px 0 15px 0;
  }
}

@media (max-width: 576px) {
  .footer-about {
    margin-bottom: 30px;
  }

  .footer-links {
    margin-bottom: 30px;
  }

  .footer-heading {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .links-list a {
    font-size: 13px;
  }

  .footer-description {
    font-size: 13px;
  }

  .social-links {
    gap: 10px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .qr-code-box {
    max-width: 120px;
  }

  .footer-copyright {
    font-size: 12px;
  }
}

.accordion-button {
  font-size: 20px;
}

.footer-flex {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  gap: 35px;
  align-items: center;
}

.footer-about {
  width: 40%;
  padding-left: 40px;
}

.footer-links {
  width: 25%;
}

.footer-download {
  width: 40%;
}

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10020 !important;
}

.contact-us-link {
  text-decoration: none;
}
