/* ===============================
   INDEX PAGE - DEDICATED CSS
   =============================== */

/* ========== IMPORT FONTS ========== */
@font-face {
  font-family: "Product Sans";
  src: url(../../font/ProductSans-Regular.ttf);
}

/* ========== GLOBAL STYLES ========== */
body {
  font-family: "Product Sans";
  margin: 0;
  padding: 0;
}

.scrollable {
  overflow-x: hidden;
}

.container {
  max-width: 1640px;
}

/* ========== HERO SECTION ========== */
.hero {
  /* min-height: 100vh; */
  /* background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("../images/banner-image.png") center/cover no-repeat; */
  color: #fff;
  position: relative;
}

/* ========== NAVBAR ========== */
.navbar {
  padding: 15px 40px;
  background: transparent;
  transition: all 0.3s ease;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
  background: rgba(65, 136, 255, 0.1);
  border-radius: 6px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

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

.navbar-nav {
  align-items: center;
  gap: 8px;
}

.navbar-nav .nav-link {
  color: #4188FF !important;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.5px;
  padding: 10px 16px !important;
  /* border-radius: 8px; */
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
}

.navbar-nav .nav-link:hover {
  color: #2563eb !important;
  background: rgba(65, 136, 255, 0.08);
}

/* ========== CORNER BRACKETS EFFECT ========== */
.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background:
    linear-gradient(#4188FF, #4188FF) top left,
    linear-gradient(#4188FF, #4188FF) top left,
    linear-gradient(#4188FF, #4188FF) top right,
    linear-gradient(#4188FF, #4188FF) top right,
    linear-gradient(#4188FF, #4188FF) bottom left,
    linear-gradient(#4188FF, #4188FF) bottom left,
    linear-gradient(#4188FF, #4188FF) bottom right,
    linear-gradient(#4188FF, #4188FF) bottom right;
  background-size:
    0px 0px, 0px 0px,
    0px 0px, 0px 0px,
    0px 0px, 0px 0px,
    0px 0px, 0px 0px;
  background-repeat: no-repeat;
  background-position:
    top 50% left 50%, top 50% left 50%,
    top 50% right 50%, top 50% right 50%,
    bottom 50% left 50%, bottom 50% left 50%,
    bottom 50% right 50%, bottom 50% right 50%;
  pointer-events: none;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.hover-box::before,
.navbar-nav .nav-link.active::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background:
    linear-gradient(#ACCBFF, #ACCBFF) top left,
    linear-gradient(#ACCBFF, #ACCBFF) top left,
    linear-gradient(#ACCBFF, #ACCBFF) top right,
    linear-gradient(#ACCBFF, #ACCBFF) top right,
    linear-gradient(#ACCBFF, #ACCBFF) bottom left,
    linear-gradient(#ACCBFF, #ACCBFF) bottom left,
    linear-gradient(#ACCBFF, #ACCBFF) bottom right,
    linear-gradient(#ACCBFF, #ACCBFF) bottom right;
  background-size:
    0px 0px, 0px 0px,
    0px 0px, 0px 0px,
    0px 0px, 0px 0px,
    0px 0px, 0px 0px;
  background-repeat: no-repeat;
  background-position:
    top 50% left 50%, top 50% left 50%,
    top 50% right 50%, top 50% right 50%,
    bottom 50% left 50%, bottom 50% left 50%,
    bottom 50% right 50%, bottom 50% right 50%;
  pointer-events: none;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar-nav .nav-link:hover::before {
  opacity: 1;
  background-size:
    10px 2px, 2px 10px,
    10px 2px, 2px 10px,
    10px 2px, 2px 10px,
    10px 2px, 2px 10px;
  background-position:
    top 0 left 0, top 0 left 0,
    top 0 right 0, top 0 right 0,
    bottom 0 left 0, bottom 0 left 0,
    bottom 0 right 0, bottom 0 right 0;
}

.navbar-nav .nav-link.hover-box,
.navbar-nav .nav-link.active {
  color: #4188FF !important;
  background: #ACCBFF1A;
  font-weight: 600;
  border: 1px solid #4188ff17;
}

.navbar-nav .nav-link.hover-box::before,
.navbar-nav .nav-link.active::before {
  opacity: 1;
  background-size:
    10px 2px, 2px 10px,
    10px 2px, 2px 10px,
    10px 2px, 2px 10px,
    10px 2px, 2px 10px;
  background-position:
    top 0 left 0, top 0 left 0,
    top 0 right 0, top 0 right 0,
    bottom 0 left 0, bottom 0 left 0,
    bottom 0 right 0, bottom 0 right 0;
}

.navbar-nav .nav-link.hover-box:hover,
.navbar-nav .nav-link.active:hover {
  color: #2563eb !important;
  background: rgba(65, 136, 255, 0.15);
  /* transform: translateY(-1px); */
}

/* Navbar Buttons */
.navbar .d-flex {
  gap: 12px;
  align-items: center;
  margin-left: 8px;
}

.btn-contact {
  background: #4188FF;
  color: #ffffff !important;
  border: 1px solid #E1E1E1;
  border-radius: 25px;
  padding: 8px 20px;
  font-size: 14px;
  /* font-weight: 600; */
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-contact:hover {
  background: transparent;
  color: #4188FF !important;
  border-color: #4188FF;
  /* transform: translateY(-1px); */
}

.btn-donate {
  background: transparent;
  color: #4188FF !important;
  border: 1px solid #E1E1E1;
  border-radius: 25px;
  padding: 8px 20px;
  letter-spacing: 1.5px;
  /* font-size: 14px;
  font-weight: 600; */
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-donate:hover {
  /* background: #4188FF; */
  /* color: #ffffff !important; */
  /* transform: translateY(-1px); */
}

/* Logo Container */
.logo-container {
  display: flex;
  align-items: center;
}

.home-logo-icon {
  /* width: 145px; */
  height: auto;
}

.hero .navbar-nav .nav-link:hover {
  color: #4188FF !important;
  /* border: 1px solid; */
border-image-source: linear-gradient(263.25deg, rgba(65, 136, 255, 0.1) -16.37%, rgba(242, 64, 255, 0.1) 150.97%);
}

.home-logo-icon img {
  /* width: 100%; */
  height: auto;
  object-fit: contain;
}

.navbar-nav li.nav-item {
  min-width: 100px;
  text-align: center;
}

/* =========================
   FOOTER SECTION STYLES
========================= */

.footer-section {
  /* background: #f8fafc; */
  padding: 80px 0 40px 40px;
  position: relative;
  overflow: hidden;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 60px;
  position: relative;
  min-height: 200px;
}

/* Footer Links */
.footer-links {
  display: flex;
  gap: 200px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-link {
  color: #0000004D;
  text-decoration: none;
  font-size: 30px;
  font-weight: 400;
  transition: color 0.3s ease;
  line-height: 1.5;
}

.footer-link:hover {
  color: #2E2E2E;
}

.footer-link.featured-link {
  color: #1e293b;
  font-weight: 600;
}

.footer-link.active {
  color: #2E2E2E;
  font-weight: 600;
}

/* Newsletter Section */
.footer-newsletter {
  text-align: left;
}

.newsletter-title {
  font-size: 28px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 32px;
  line-height: 1.2;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  /* background: #e2e8f0; */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4188FF;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 20px;
}

.social-icon:hover {
  background: #3B82F6;
  color: white;
  transform: translateY(-2px) scale(1.05);
}

/* Decorative Elements */
.footer-decoration {
  position: absolute;
  left: 36px;
  bottom: 193px;
  right: 226px;
  /* top: 0; */
  /* bottom: 0; */
  /* width: 400px; */
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-decoration img {
  width: 100%;
  height: auto;
  max-width: 350px;
  object-fit: contain;
  position: absolute;
  top: 0;
}

/* Footer Bottom */
.footer-bottom {
  /* border-top: 1px solid #e2e8f0; */
  padding-top: 32px;
  position: relative;
  z-index: 2;
}

.footer-info {
  text-align: left;
}

.footer-address {
  font-size: 14px;
  color: #2E2E2E;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-copyright {
  font-size: 14px;
  color: #2E2E2E;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* COMMON CODE START */

.common-btn {
  background: linear-gradient(263.25deg, #4188FF -16.37%, #F240FF 150.97%);
  color: white;
  display: flex;
  justify-content: center;
  border: 1px solid white;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  align-self: flex-start;
  letter-spacing: 0.02em;
}

.common-btn:hover {
  background: linear-gradient(263.25deg, #F240FF -16.37%, #4188FF 150.97%);
  color: white;
  border: 1px solid white;
  transform: translateY(-2px) scale(1.05);
  /* box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3); */
}

.main-title {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
  line-height: 1.2;
}

.main-subtitle {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 32px;
  line-height: 1.5;
}

.dark-text {
  font-weight: 400;
  font-size: 16px;
  color: #000000 !important;
}

.main-section-title {
  font-size: 48px;
  font-weight: 700;
  color: #4188FF;
  margin-bottom: 16px;
}

.main-section-subtitle {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: #2E2E2E99;
  line-height: 1.6;
  /* max-width: 600px; */
  margin: 0 auto;
}

/* COMMON CODE END */


/* =========================
   FAQ PAGE STYLES

/* FAQ SECTION */

/* ========== FAQ MAIN SECTION ========== */
.faq-main-section {
  padding: 80px 0;
  background: #ffffff;
  /* min-height: 100vh; */
}

.faq-main-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* FAQ Header */
.faq-main-header {
  margin-bottom: 40px;
  flex: 0 0 auto;
  /* max-width: 400px; */
}

.faq-main-icon {
  margin-bottom: 24px;
}

.faq-main-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

/* FAQ Accordion */
.faq-main-accordion {
  max-width: 795px;
  border: 1px solid #E1E1E1;
  border-radius: 10px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-main-item {
  margin-bottom: 0;
  border-bottom: 1px solid #E1E1E1;
  overflow: hidden;
}

.faq-main-item:last-child {
  border-bottom: none;
}

.faq-main-question {
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  transition: all 0.3s ease;
  outline: none;
}

.faq-main-question-text {
  font-size: 20px;
  font-weight: 600;
  color: #4188FF;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.5px;
  flex: 1;
  padding-right: 20px;
}

.faq-main-arrow {
  font-size: 16px;
  color: #4188FF;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-main-question[aria-expanded="false"] .faq-main-arrow {
  transform: rotate(180deg);
}

.faq-main-question[aria-expanded="true"] .faq-main-arrow {
  transform: rotate(0deg);
}

.faq-main-answer {
  padding: 0 0 20px 0;
  transition: all 0.3s ease;
}

/* Add smooth transitions for Bootstrap collapse */
.faq-main-item .collapse {
  transition: height 0.35s ease;
}

.faq-main-item .collapsing {
  transition: height 0.35s ease;
}

/* Ensure footer doesn't jump during accordion transitions */
.footer-section {
  position: relative;
  z-index: 1;
}

.faq-main-answer-text {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* ===============================
   BOOTSTRAP 5 LOGIN PAGE - MINIMAL CUSTOM STYLES
   =============================== */

/* ========== CUSTOM TAB STYLES ========== */
.pay-page .nav-tabs .nav-link {
  color: #000;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  background: none !important;
  padding: 12px 0px;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.pay-page .nav-tabs .nav-link.active {
  color: #000000 !important;
  background: none !important;
  border-bottom: 1px solid #1a1a1a !important;
  font-size: 18px;
  font-weight: 400 !important;
}

.pay-page .nav-tabs .nav-link:hover {
  color: #000000 !important;
  background: none !important;
  border-bottom: 1px solid #1a1a1a !important;
  font-size: 18px;
  font-weight: 400 !important;
}

/* ========== FORM INPUT FOCUS STYLES ========== */
.pay-page .form-control:focus {
  border-color: #3B82F6 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}

.pay-page .form-control:focus+i,
.pay-page .form-control:not(:placeholder-shown)+i {
  color: #3B82F6 !important;
}

/* ========== BUTTON HOVER EFFECT ========== */
.pay-page .btn:hover {
  background: linear-gradient(263.25deg, #F240FF -16.37%, #4188FF 150.97%) !important;
  color: #fff;
  /* box-shadow: 0 4px 12px rgba(65, 136, 255, 0.3); */
}

/* ========== LINK HOVER EFFECTS ========== */
.pay-page a:hover {
  color: #2563eb !important;
  text-decoration: underline !important;
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */
@media (max-width: 767.98px) {
  .pay-page .display-4 {
    font-size: 2.5rem !important;
  }

  .pay-page .fs-5 {
    font-size: 1rem !important;
  }

  .pay-page .nav-tabs .nav-link {
    padding: 10px 12px;
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  .pay-page .container-fluid {
    padding: 1rem !important;
  }

  .pay-page h2 {
    font-size: 24px !important;
  }

  .pay-page .btn {
    font-size: 16px !important;
  }
}

/* ========== UTILITY CLASSES ========== */
.border-bottom-2 {
  border-bottom-width: 2px !important;
}

.z-2 {
  z-index: 2;
}

/* ========== LOGIN SPECIFIC CLASSES ========== */
.login-left-panel {
  background-image: url('../../images/loginbg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  border-radius: 10px;
}

.login-left-panel .position-relative {
  padding: 40px 35px;
  width: 77%;
}

.login-title {
  font-size: 62px;
  letter-spacing: 1.5px;
}

.login-description {
  letter-spacing: 1.5px;
  line-height: 1.7;
}



.dashboard-title {
  font-size: 62px;
  letter-spacing: 1.5px;
}

.dashboard-description {
  letter-spacing: 1.5px;
  line-height: 1.7;
}


.welcome-logo {
  width: 145px;
}

.welcome-title {
  font-size: 30px;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.login-form-container {
  max-width: 530px;
}

.login-input {
  height: 50px;
}

.login-btn {
  background: linear-gradient(263.25deg, #4188FF -16.37%, #F240FF 150.97%);
  font-size: 20px;
  letter-spacing: 0.5px;
  height: 50px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 100px;
}

.dashboard-container {
  width: 100%;
}



.signup-text {
  /* letter-spacing: 1.5px; */
}

.signup-link {
  color: #4188FF;
}

/* ========== SCROLLBAR HIDE ========== */
.overflow-auto::-webkit-scrollbar {
  display: none;
}

.overflow-auto {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ===============================
   BOOTSTRAP 5 SIGNUP PAGE - PROFESSIONAL DESIGN
   =============================== */

/* ========== LEFT PANEL STYLING ========== */
.checkout-page .signup-left-panel {
  background-image: url('../../images/loginbg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  border-radius: 10px;
}

.checkout-page .signup-left-panel .position-relative {
  padding: 40px 35px;
  width: 77%;
}

.checkout-page .signup-title {
  font-size: 62px;
  letter-spacing: 1.5px;
}

.checkout-page .signup-description {
  letter-spacing: 1.5px;
  line-height: 1.7;
}

/* ========== RIGHT PANEL STYLING ========== */
.checkout-page .welcome-logo {
  width: 145px;
}

.checkout-page .welcome-title {
  font-size: 30px;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.checkout-page .welcome-subtitle {
  font-size: 16px;
  letter-spacing: 0.5px;
  margin-bottom: 32px;
}

.checkout-page .signup-form-container {
  max-width: 1000px;
  height: calc(100vh - 100px);
  overflow-y: scroll;
  scrollbar-width: none;
}

/* ========== FORM INPUT STYLING ========== */
.checkout-page .signup-input {
  height: 50px;
}

.checkout-page .signup-input:focus {
  border-color: #3B82F6 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}

.checkout-page .signup-input:focus+i,
.checkout-page .signup-input:not(:placeholder-shown)+i {
  color: #3B82F6 !important;
}

/* ========== CUSTOM DROPDOWN STYLING ========== */
.checkout-page .custom-dropdown {
  position: relative;
  width: 100%;
}

.checkout-page .dropdown-selected {
  position: relative;
  padding: 16px 15px 16px 15px;
  border: 1px solid #dee2e6;
  border-radius: 50px;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  font-size: 16px;
  color: #6c757d;
  height: 50px;
}

.checkout-page .dropdown-selected:hover {
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkout-page .dropdown-selected.active {
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkout-page .selected-text {
  flex: 1;
  text-align: left;
  color: #6c757d;
  transition: color 0.3s ease;
}

.checkout-page .selected-text.has-value {
  color: #212529;
}

.checkout-page .dropdown-arrow {
  color: #6c757d;
  font-size: 12px;
  transition: all 0.3s ease;
  margin-left: 10px;
}

.checkout-page .dropdown-selected:hover .dropdown-arrow,
.checkout-page .dropdown-selected.active .dropdown-arrow {
  transform: rotate(180deg);
  color: #3B82F6;
}

.checkout-page .dropdown-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 250px;
  overflow-y: auto;
}

.checkout-page .dropdown-options.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.checkout-page .dropdown-option {
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #495057;
  font-size: 16px;
  border-radius: 8px;
  margin: 4px 8px;
  display: flex;
  align-items: center;
}

.checkout-page .dropdown-option:hover {
  background: #f8f9fa;
  color: #3B82F6;
}

.checkout-page .dropdown-option.selected {
  background: #e3f2fd;
  color: #3B82F6;
  font-weight: 500;
}

.checkout-page .dropdown-option:first-child {
  margin-top: 8px;
}

.checkout-page .dropdown-option:last-child {
  margin-bottom: 8px;
}

.checkout-page .dropdown-option i {
  color: inherit;
}

/* ========== BUTTON STYLING ========== */
.user-btn {
  background: linear-gradient(263.25deg, #4188FF -16.37%, #F240FF 150.97%);
  font-size: 20px;
  letter-spacing: 1.5px;
  height: 50px;
  color: #fff;
  font-weight: 700;
  border-radius: 100px;
  border: none;
}

.user-btn:hover {
  background: linear-gradient(263.25deg, #F240FF -16.37%, #4188FF 150.97%);
  color: #fff;
  /* box-shadow: 0 4px 12px rgba(65, 136, 255, 0.3); */
  /* transform: translateY(-2px) scale(1.05); */
}

/* ========== FORM CHECK STYLING ========== */
.checkout-page .form-check-input:checked {
  background-color: #3B82F6;
  border-color: #3B82F6;
}

.checkout-page .form-check-input:focus {
  border-color: #3B82F6;
  box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
}

.checkout-page .form-check-label a {
  color: #3B82F6;
}

.checkout-page .form-check-label a:hover {
  color: #2563eb;
}

/* ========== SIGNUP TEXT STYLING ========== */
.checkout-page .signup-text {
  /* letter-spacing: 1.5px; */
}

.checkout-page .signup-link {
  color: #4188FF;
}

.checkout-page .signup-link:hover {
  color: #2563eb;
}

/* ========== PASSWORD TOGGLE BUTTON ========== */
.checkout-page .password-toggle {
  background: none;
  border: none;
  color: #6c757d;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-page .password-toggle:hover {
  color: #3B82F6;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 767.98px) {
  .checkout-page .display-4 {
    font-size: 2.5rem !important;
  }

  .checkout-page .fs-5 {
    font-size: 1rem !important;
  }

  .checkout-page .welcome-title {
    font-size: 24px !important;
  }

  .checkout-page .signup-btn {
    font-size: 16px !important;
  }

  .checkout-page .dropdown-selected {
    padding: 12px 40px 12px 40px;
    height: 45px;
  }

  .checkout-page .signup-input {
    height: 45px;
  }
}

@media (max-width: 575.98px) {
  .checkout-page .container-fluid {
    padding: 1rem !important;
  }

  .checkout-page .welcome-title {
    font-size: 20px !important;
  }

  .checkout-page .dropdown-option {
    font-size: 14px;
    padding: 10px 16px;
  }
}

/* ========== UTILITY CLASSES ========== */
.checkout-page .border-bottom-2 {
  border-bottom-width: 2px !important;
}

.checkout-page .z-2 {
  z-index: 2;
}

/* ========== SCROLLBAR STYLING ========== */
.checkout-page .dropdown-options::-webkit-scrollbar {
  width: 6px;
}

.checkout-page .dropdown-options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.checkout-page .dropdown-options::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.checkout-page .dropdown-options::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* ========== ANIMATION EFFECTS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.checkout-page .signup-form-container {
  animation: fadeInUp 0.6s ease-out;
}

/* ========== FOCUS STATES ========== */
.checkout-page .form-control:focus,
.checkout-page .dropdown-selected:focus {
  border-color: #3B82F6 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
  outline: none;
}

/* ========== HOVER EFFECTS ========== */
.checkout-page .form-control:hover {
  border-color: #adb5bd;
}

.checkout-page .dropdown-selected:hover {
  transform: translateY(-1px);
}

/* ========== ICON STYLING ========== */
.checkout-page .position-absolute i {
  transition: color 0.3s ease;
}

.checkout-page .form-control:focus~i,
.checkout-page .form-control:not(:placeholder-shown)~i {
  color: #3B82F6 !important;
}

/* ========== LOADING STATE ========== */
.checkout-page .signup-btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

.checkout-page .signup-btn.loading::after {
  content: "";
  width: 16px;
  height: 16px;
  margin-left: 8px;
  border: 2px solid transparent;
  border-top: 2px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ===============================
   COMING SOON PAGE - DEDICATED CSS
   =============================== */

/* Global styles for coming soon page */
body.coming-soon-page.fixed-height {
  font-family: "Product Sans", sans-serif;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* Main wrapper */
.coming-soon-page .main-wrapper {
  min-height: 100vh;
}

.coming-soon-page .full-height-container {
  min-height: 100vh;
}

.coming-soon-page .full-height-row {
  min-height: calc(100vh - 100px);
  align-items: stretch;
  padding: 50px;
}

/* =========================
   LEFT PANEL STYLES
========================= */
.coming-soon-page .lefts-panel {
  background: #1a1a1a;
  background-image: url(../../images/commingsoonbg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  height: calc(100vh - 100px);
  position: relative;
  overflow: hidden;
}

/* Add overlay for better text readability */
.coming-soon-page .lefts-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* =========================
   RIGHT PANEL STYLES
========================= */
.coming-soon-page .col-lg-8 {
  background: #ffffff;
  padding: 40px 50px;
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* =========================
   HEADER/LOGO STYLES
========================= */
.coming-soon-page .top-left-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  z-index: 10;
  position: relative;
}

.coming-soon-page .logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coming-soon-page .logo-icon {
  width: 145px;
  margin-bottom: 12px;
}

.coming-soon-page .logo-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* =========================
   COMING SOON CONTENT
========================= */
.coming-soon-page .bottom-content {
  width: 100%;
  margin-top: auto;
}

.coming-soon-page .coming-soon-head {
  margin-bottom: 30px;
}

.coming-soon-page .coming-soon-title {
  font-size: 74px;
  font-weight: 700;
  color: #31456A;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -1px;
}

/* =========================
   DESCRIPTION SECTION
========================= */
.coming-soon-page .description-section {
  margin-bottom: 40px;
}

.coming-soon-page .desc-line-1 {
  font-size: 18px;
  color: #1e293b;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

/* =========================
   EMAIL SUBSCRIPTION FORM
========================= */
.coming-soon-page .email-subscription {
  width: 100%;
}

.coming-soon-page .email-input-container {
  position: relative;
  margin-bottom: 20px;
}

.coming-soon-page .email-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 16px;
  z-index: 2;
  pointer-events: none;
}

.coming-soon-page .email-input {
  width: 100%;
  max-width: 517px;
  padding: 16px 16px 16px 48px;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  font-size: 16px;
  background: #fff;
  color: #1e293b;
  transition: all 0.3s ease;
  font-family: "Product Sans", sans-serif;
}

.coming-soon-page .email-input:focus {
  outline: none;
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.coming-soon-page .email-input:focus+.email-icon {
  color: #3B82F6;
}

.coming-soon-page .email-input::placeholder {
  color: #94a3b8;
  font-size: 16px;
}

/* =========================
   SUBSCRIBE BUTTON
========================= */
.coming-soon-page .subscribe-btn {
  background: linear-gradient(263.25deg, #4188FF -16.37%, #F240FF 150.97%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  min-height: 50px;
  min-width: 192px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Product Sans", sans-serif;
  letter-spacing: 0.5px;
}

.coming-soon-page .subscribe-btn:hover {
  background: linear-gradient(263.25deg, #F240FF -16.37%, #4188FF 150.97%);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(65, 136, 255, 0.4);
}

.coming-soon-page .subscribe-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(65, 136, 255, 0.3);
}

.coming-soon-page .subscribe-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(65, 136, 255, 0.3);
}

/* =========================
   ANIMATION EFFECTS
========================= */

/* Fade in animation for content */
@keyframes fadeInUpComingSoon {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.coming-soon-page .coming-soon-title {
  animation: fadeInUpComingSoon 0.8s ease-out;
}

.coming-soon-page .desc-line-1 {
  animation: fadeInUpComingSoon 0.8s ease-out 0.2s both;
}

.coming-soon-page .email-subscription {
  animation: fadeInUpComingSoon 0.8s ease-out 0.4s both;
}

/* Pulse animation for subscribe button */
@keyframes pulseComingSoon {
  0% {
    box-shadow: 0 4px 15px rgba(65, 136, 255, 0.3);
  }

  50% {
    box-shadow: 0 4px 20px rgba(65, 136, 255, 0.5);
  }

  100% {
    box-shadow: 0 4px 15px rgba(65, 136, 255, 0.3);
  }
}

/* =========================
   ACCESSIBILITY IMPROVEMENTS
========================= */

/* Focus styles for better accessibility */
.coming-soon-page .subscribe-btn:focus {
  outline: 2px solid #3B82F6;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .coming-soon-page .coming-soon-title {
    color: #000;
  }

  .coming-soon-page .desc-line-1 {
    color: #000;
  }

  .coming-soon-page .email-input {
    border-color: #000;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

  .coming-soon-page .coming-soon-title,
  .coming-soon-page .desc-line-1,
  .coming-soon-page .email-subscription {
    animation: none;
  }

  .coming-soon-page .subscribe-btn:hover {
    transform: none;
  }
}

/* =========================
   PRINT STYLES
========================= */
@media print {
  .coming-soon-page .coming-soon-section {
    background: white !important;
  }

  .coming-soon-page .lefts-panel {
    display: none !important;
  }

  .coming-soon-page .subscribe-btn {
    background: #333 !important;
    color: white !important;
  }
}

/* ===============================
   BLOG PAGES - DEDICATED CSS
   =============================== */

/* =========================
   BLOG STATIC GRID STYLES
========================= */

.blog-page .blog-static-container,
.blog-detail-page .blog-static-container {
  position: relative;
  margin-bottom: 40px;
}

.blog-page .blog-static-grid,
.blog-detail-page .blog-static-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

/* =========================
   BLOG CARD DESIGN CLASSES
========================= */

.blog-page .blog-card,
.blog-detail-page .blog-card {
  background: white;
  border-radius: 16px;
  padding: 0;
  border: 1px solid #E1E1E1;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}

.blog-page .blog-image-container,
.blog-detail-page .blog-image-container {
  width: 100%;
  height: 233px;
  padding: 24px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0;
}

.blog-page .blog-image-containers,
.blog-detail-page .blog-image-containers {
  width: 100%;
  height: 400px;
  padding: 24px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0;
}

.blog-page .blog-image-container img,
.blog-page .blog-image-containers img,
.blog-detail-page .blog-image-container img,
.blog-detail-page .blog-image-containers img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 20px;
}

.blog-page .blog-category-tag,
.blog-detail-page .blog-category-tag {
  color: #3B82F6;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.blog-page .blog-title,
.blog-detail-page .blog-title {
  font-size: 16px;
  font-weight: 400;
  color: #828282;
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-page .blog-meta,
.blog-detail-page .blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.blog-page .blog-author-avatar,
.blog-detail-page .blog-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-page .blog-meta-text,
.blog-detail-page .blog-meta-text {
  color: #000000;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  max-width: 250px;
  margin-left: 5px;
}

.blog-page .common-read-btn,
.blog-detail-page .common-read-btn {
  background: linear-gradient(263.25deg, #4188FF -16.37%, #F240FF 150.97%);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s ease;
  align-self: flex-start;
  letter-spacing: 0.02em;
}

.blog-page .common-read-btn:hover,
.blog-detail-page .common-read-btn:hover {
  background: linear-gradient(263.25deg, #F240FF -16.37%, #4188FF 150.97%);
  color: white;
}

/* Blog footer wrapper class */
.blog-page .blog-footer,
.blog-detail-page .blog-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}

/* Blog card content wrapper */
.blog-page .blog-card-content,
.blog-detail-page .blog-card-content {
  padding: 0px 24px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* =========================
   BLOG SECTION STYLES
========================= */

/* Blog section container */
.blog-page .blog-section,
.blog-detail-page .blog-section {
  padding: 80px 0;
}

.blog-detail-page .main-section-titles-blog {
  font-size: 24px;
  font-weight: 700;
  color: #2E2E2E;
}

.blog-page .blog-section-header,
.blog-detail-page .blog-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.blog-page .blog-section-titles,
.blog-detail-page .blog-section-titles {
  font-size: 24px;
  font-weight: 700;
  color: #2E2E2E;
  margin-bottom: 16px;
}

/* =========================
   BLOG SLIDER CLASSES
========================= */

.blog-page .blog-slider-container,
.blog-detail-page .blog-slider-container {
  position: relative;
  margin-bottom: 40px;
}

.blog-page .blog-slider-wrapper,
.blog-detail-page .blog-slider-wrapper {
  overflow: hidden;
  border-radius: 16px;
}

.blog-page .blog-slider-track,
.blog-detail-page .blog-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 300%;
}

.blog-page .blog-slide,
.blog-detail-page .blog-slide {
  width: 33.333%;
  flex-shrink: 0;
  padding: 0 15px;
}

.blog-page .blog-grid-container,
.blog-detail-page .blog-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
}

.blog-page .blog-grid-item,
.blog-detail-page .blog-grid-item {
  width: 100%;
}

.blog-page .blog-slide .blog-card,
.blog-detail-page .blog-slide .blog-card {
  max-width: none;
  width: 100%;
}

.blog-page .blog-slider-nav,
.blog-detail-page .blog-slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.blog-page .slider-btn,
.blog-detail-page .slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  background: white;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.blog-page .slider-btn:hover,
.blog-detail-page .slider-btn:hover {
  border-color: #3B82F6;
  color: #3B82F6;
  background: #f8fafc;
}

.blog-page .slider-btn:disabled,
.blog-detail-page .slider-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.blog-page .slider-dots,
.blog-detail-page .slider-dots {
  display: flex;
  gap: 12px;
  align-items: center;
}

.blog-page .slider-dot,
.blog-detail-page .slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-page .slider-dot.active,
.blog-detail-page .slider-dot.active {
  background-color: #3B82F6;
  width: 32px;
  border-radius: 6px;
}

.blog-page .slider-dot:hover,
.blog-detail-page .slider-dot:hover {
  background-color: #94a3b8;
}

/* =========================
   MORE BLOGS SECTION STYLES
========================= */

.blog-page .more-blogs-section,
.blog-detail-page .more-blogs-section {
  /* Additional styles can be added here if needed */
}

.blog-page .more-blogs-header,
.blog-detail-page .more-blogs-header {
  text-align: left;
  margin-bottom: 35px;
  padding: 0px 20px;
}

.blog-page .more-blogs-title,
.blog-detail-page .more-blogs-title {
  font-size: 48px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0;
}

.blog-page .more-blogs-slider-container,
.blog-detail-page .more-blogs-slider-container {
  position: relative;
  margin-bottom: 40px;
}

.blog-page .more-blogs-slider-wrapper,
.blog-detail-page .more-blogs-slider-wrapper {
  overflow: hidden;
  border-radius: 16px;
  width: 100%;
  /* Show only 3 cards at a time */
}

.blog-page .more-blogs-slider-track,
.blog-detail-page .more-blogs-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 200%;
  /* 2 slides × 100% = 200% */
}

.blog-page .more-blogs-slide,
.blog-detail-page .more-blogs-slide {
  width: 50%;
  /* Each slide takes 1/2 of track width (100% ÷ 2 = 50%) */
  flex-shrink: 0;
  padding: 0 15px;
}

.blog-page .more-blogs-grid-container,
.blog-detail-page .more-blogs-grid-container {
  display: flex;
  gap: 30px;
  width: 100%;
}

.blog-page .more-blogs-grid-item,
.blog-detail-page .more-blogs-grid-item {
  flex: 1;
  min-width: 0;
}

.blog-page .more-blogs-slider-nav,
.blog-detail-page .more-blogs-slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.blog-page .more-blogs-nav-btn,
.blog-detail-page .more-blogs-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid transparent;
  color: #64748b;
  background: linear-gradient(white, white) padding-box, linear-gradient(263.25deg, #4188FF -16.37%, #F240FF 150.97%) border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.blog-page .more-blogs-nav-btn:hover,
.blog-detail-page .more-blogs-nav-btn:hover {
  border: 2px solid transparent;
  color: #64748b;
  background: linear-gradient(white, white) padding-box, linear-gradient(263.25deg, #F240FF -16.37%, #4188FF 150.97%) border-box;
}

.blog-page .more-blogs-nav-btn:disabled,
.blog-detail-page .more-blogs-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: #e2e8f0;
  color: #94a3b8;
}

.blog-page .more-blogs-nav-btn:disabled:hover,
.blog-detail-page .more-blogs-nav-btn:disabled:hover {
  border-color: #e2e8f0;
  color: #94a3b8;
  background: white;
}

.blog-page .more-blogs-slider-dots,
.blog-detail-page .more-blogs-slider-dots {
  display: flex;
  gap: 12px;
}

.blog-page .more-blogs-dot,
.blog-detail-page .more-blogs-dot {
  width: 12px;
  height: 12px;
  border-radius: 100px;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-page .more-blogs-dot.active,
.blog-detail-page .more-blogs-dot.active {
  background: #3B82F6;
  transform: scale(1.2);
  width: 40px;
  height: 12px;
  border-radius: 100px;
}

.blog-page .more-blogs-dot:hover,
.blog-detail-page .more-blogs-dot:hover {
  background: #64748b;
}

/* =========================
   BLOG POST PAGE STYLES (Blog Detail Only)
========================= */

.blog-detail-page .blog-post-section {
  background: white;
  padding: 80px 0;
  min-height: 80vh;
}

/* Blog Post Header */
.blog-detail-page .blog-post-header {
  margin-bottom: 40px;
}

.blog-detail-page .blog-category-badge {
  display: inline-block;
  background: linear-gradient(263.25deg, #4188FF -16.37%, #F240FF 150.97%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 1px solid;
  border-image: linear-gradient(263.25deg, #4188FF -16.37%, #F240FF 150.97%) 1;
  border-radius: 100px;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  margin-bottom: 24px;
}

.blog-detail-page .blog-post-title {
  font-size: 48px;
  font-weight: bold;
  color: #2E2E2E;
  line-height: 1.2;
  margin-bottom: 24px;
}

.blog-detail-page .blog-post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.blog-detail-page .blog-author-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-detail-page .blog-author-name {
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
}

.blog-detail-page .blog-meta-separator {
  color: #94a3b8;
  font-size: 14px;
}

.blog-detail-page .blog-post-date,
.blog-detail-page .blog-read-time {
  font-size: 14px;
  color: #64748b;
  font-weight: 400;
}

/* Featured Image */
.blog-detail-page .blog-featured-image {
  width: 100%;
  height: 800px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  background: #f1f5f9;
}

.blog-detail-page .blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Blog Content */
.blog-detail-page .blog-post-content {
  line-height: 1.7;
}

.blog-detail-page .blog-content-section {
  margin-bottom: 32px;
}

.blog-detail-page .blog-intro-text {
  font-size: 24px;
  color: #2E2E2E99;
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 400;
}

.blog-detail-page .main-section-title {
  font-size: 48px;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: #4188FF;
  line-height: 1.3;
  margin-bottom: 16px;
}

.blog-detail-page .main-section-titles {
  font-size: 32px;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: #4188FF;
  line-height: 1.3;
  margin-bottom: 16px;
}

.blog-detail-page .blog-section-text {
  font-size: 24px;
  color: #2E2E2E99;
  line-height: 1.7;
  margin-bottom: 0;
}

.blog-detail-page .blog-content-image {
  width: 100%;
  height: 800px;
  border-radius: 12px;
  overflow: hidden;
  margin: 24px 0;
  background: #f1f5f9;
}

.blog-detail-page .blog-content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-detail-page .blog-quote-section {
  background: #13BF00;
  padding: 32px;
  border-radius: 12px;
  margin: 32px 0;
}

.blog-detail-page .blog-quote {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin: 0;
  font-style: italic;
}

/* ========================= 
   SLICK SLIDER CUSTOM STYLES FOR BLOG CARDS
========================= */

.more-blogs-slick-slider {
  margin: 40px 0;
}

.blog-card-wrapper {
  padding: 0 15px;
  box-sizing: border-box;
}

/* Custom Navigation Container */
.blog-slider-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

/* Custom Navigation Buttons */
.blog-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  background: rgba(59, 130, 246, 0.1);
  color: #3B82F6;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-nav-btn:hover {
  background: #3B82F6;
  color: white;
  border-color: #3B82F6;
}

.blog-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.blog-nav-btn:disabled:hover {
  background: rgba(59, 130, 246, 0.1);
  color: #3B82F6;
  border-color: #e2e8f0;
}

/* Custom Dots */
.blog-slider-dots {
  display: flex;
  gap: 12px;
}

.blog-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-dot.active {
  background: #3B82F6;
  transform: scale(1.2);
}

.blog-dot:hover {
  background: #64748b;
}

/* Hide default Slick elements */
.more-blogs-slick-slider .slick-dots {
  display: none !important;
}

.more-blogs-slick-slider .slick-prev,
.more-blogs-slick-slider .slick-next {
  display: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .blog-slider-navigation {
    gap: 20px;
    margin-top: 30px;
  }

  .blog-nav-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/* ========================= 
   ABOUT PAGE SPECIFIC STYLES
========================= */

/* =========================
   ABOUT SECTIONS
========================= */

.about-page .about-section {
  padding: 80px 0;
  background: white;
}

.about-page .about-section-2 {
  background: #f8fafc;
}

.about-page .about-content {
  padding: 40px;
}

.about-page .about-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.about-page .about-badge i {
  font-size: 14px;
}

.about-page .about-title {
  font-size: 48px;
  font-weight: 700;
  color: #2E2E2E;
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-page .about-description {
  font-size: 20px;
  letter-spacing: 1.5px;
  color: #2E2E2E99;
  line-height: 1.6;
  margin-bottom: 32px;
}

.about-page .about-arrow {
  color: #3B82F6;
  font-size: 24px;
  width: 100%;
}

.about-page .about-arrow img {
  width: 100%;
}

.about-page .about-image {
  padding: 20px;
}

.about-page .about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
}

/* About Hero Section */
.about-page .about-hero-section {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.about-page .about-hero-background {
  width: 100%;
  height: 668px;
}

.about-page .about-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.about-page .about-hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0;
}

.about-page .about-hero-content {
  display: flex;
  justify-content: space-between;
}

.about-page .about-hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #3B82F6;
  line-height: 1.2;
}

.about-page .about-hero-description {
  font-size: 20px;
  color: #2D2D2D99;
  line-height: 1.6;
  max-width: 640px;
  letter-spacing: 1.5px;
  text-align: end;
}

.about-page .btn-join {
  border: 1px solid #4188FF1A;
  color: #4188FF;
  background: #4188FF1A;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1.5px;
  border-radius: 0;
}

.about-page .about-badge-img {
  width: 24px;
}

.about-page .about-badge-img img {
  width: 100%;
}

.about-page .btn-primary-custom {
  background: linear-gradient(263.25deg, #4188FF -16.37%, #F240FF 150.97%);
  border: none;
  color: white;
}

.about-page .about-badge div:last-child {
  background: linear-gradient(263.25deg, #4188FF -16.37%, #F240FF 150.97%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1.5px;
}

.about-page .get-started-buttons a:first-child {
  background: linear-gradient(90deg, #4188FF, #F240FF);
  color: #fff;
  border-radius: 100px;
  padding: 12px 24px;
  border: 1px solid #E1E1E1;
}

.about-page .get-started-buttons a:last-child {
  background: transparent;
  color: #4188FF;
  border: 1px solid #E1E1E1;
  border-radius: 100px;
  padding: 12px 24px;
}

/* Community Features Section */
.about-page .community-features-section {
  padding: 80px 0;
  background: white;
}

.about-page .community-features-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-page .community-features-grid {
  /* Using Bootstrap grid system instead of CSS Grid */
}

.about-page .community-feature-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 400px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-page .community-feature-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.about-page .community-feature-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.about-page .community-feature-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(129deg, rgb(0 0 0 / 4%) 0%, rgba(0, 0, 0, 0.6) 100%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 32px;
  color: white;
  transition: all 0.3s ease;
}

.about-page .community-feature-content h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: white;
  margin: 0;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

/* Hidden description text - shows on hover */
.about-page .community-feature-content p {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  font-size: 18px;
  color: white;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  line-height: 1.4;
}

/* Center image for hover state */
.about-page .community-feature-center-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 16px;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 10;
}

.about-page .community-feature-center-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover effects */
.about-page .community-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.about-page .community-feature-card:hover .community-feature-background img {
  opacity: 0;
}

.about-page .community-feature-card:hover .community-feature-content {
  background: #f8fafc;
  /* Light gray background like in image */
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  padding: 0;
}

.about-page .community-feature-card:hover .community-feature-content h3 {
  color: #4188FF;
  font-size: 20px;
  letter-spacing: 1.81px;
  font-weight: 700;
  text-shadow: none;
  transform: none;
  position: absolute;
  top: 32px;
  left: 32px;
  right: 32px;
  z-index: 20;
}

.about-page .community-feature-card:hover .community-feature-content p {
  color: #4188FF;
  opacity: 1;
  transform: translateY(0);
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  z-index: 20;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 400;
  line-height: 1.4;
}

.about-page .community-feature-card:hover .community-feature-center-image {
  opacity: 1;
  width: 333px;
  height: 250px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 12px;
}

/* Services Slider - Exact Copy as Provided */
.services-slider {
  /* width: 80%; */
  margin: auto;
}

.service-box {
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  background-color: transparent;
  transition: transform 0.3s ease;
}

.service-box img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

.services-slider h6 {
  margin: 10px 0 0;
  font-size: 16px;
}

/* Slick Arrow Customization */
.services-slider .slick-prev,
.services-slider .slick-next {
  font-size: 20px;
  color: black;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.services-slider .slick-prev:hover,
.services-slider .slick-next:hover {
  background: rgba(0, 0, 0, 0.5);
}

/* Innovation Gap Section */
.about-page .innovation-gap-section {
  padding: 80px 0;
}

.about-page .innovation-gap-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-page .section-badge {
  color: #3B82F6;
  font-size: 24px;
  font-weight: 500;
  display: block;
  margin-bottom: 16px;
  max-width: fit-content;
  padding: 10px 20px;
  border: 1px solid #4188FF1A;
  border-radius: 100px;
}

.about-page .section-title {
  font-size: 48px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.about-page .innovation-gap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-page .innovation-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-page .innovation-card-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-page .innovation-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-page .innovation-card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: auto;
  min-height: fit-content;
  width: auto;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-page .innovation-card-overlay h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
  transition: all 0.3s ease;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
}

.about-page .innovation-card-overlay h3.start-typing {
  animation: about-typing 2s steps(20, end) forwards;
}

.about-page .innovation-card-overlay p {
  font-size: 14px;
  opacity: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  transform: translateY(10px);
}

@keyframes about-typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* Hover effects */
.about-page .innovation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.about-page .innovation-card:hover .innovation-card-image img {
  transform: scale(1.05);
}

.about-page .innovation-card:hover .innovation-card-overlay {
  background: rgba(0, 0, 0, 0.8);
  padding: 20px 24px;
}

.about-page .innovation-card:hover .innovation-card-overlay h3 {
  margin-bottom: 8px;
  transform: translateY(-2px) scale(1.05);
}

.about-page .innovation-card:hover .innovation-card-overlay p {
  opacity: 0.9;
  max-height: 100px;
  transform: translateY(0);
}

/* Unlock Section */
.about-page .unlock-section {
  padding: 80px 0;
  background: white;
}

.about-page .unlock-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-page .unlock-grid {
  /* Using Bootstrap grid system instead of CSS Grid */
}

.about-page .unlock-grid-bg {
  background-color: #F9F9F9;
  padding: 20px;
  border-radius: 10px;
  margin: 0;
}

.about-page .unlock-card {
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
  width: 100%;
}

.about-page .unlock-card-image {
  position: relative;
}

.about-page .unlock-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page .unlock-card-content {
  background: #3B82F6;
  color: white;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-page .unlock-icon {
  font-size: 24px;
  margin-bottom: 16px;
}

.about-page .unlock-card-content h3 {
  font-size: 24px;
  letter-spacing: 1.5px;
  font-weight: 600;
  line-height: 1.3;
}

.about-page .unlock-card-content p {
  font-size: 15.15px;
  letter-spacing: 1.5px;
}

.about-page .unlock-btn {
  color: white;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  max-width: fit-content;
  border: 1px solid #fff;
  padding: 10px 22px;
  border-radius: 56px;
}

.about-page .unlock-btn:hover {
  color: white;
  opacity: 0.8;
}

/* Visionaries Section */
.about-page .visionaries-section {
  padding: 80px 0;
}

.about-page .visionaries-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-page .visionaries-grid {
  /* Using Bootstrap grid system instead of CSS Grid */
}

.about-page .visionary-card {
  border-radius: 24px;
  overflow: hidden;
  height: 500px;
  position: relative;
}

.about-page .visionary-background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.about-page .visionary-background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page .visionary-content-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px;
  color: white;
  text-align: center;
  z-index: 10;
  transition: all 0.3s ease;
}

/* Hover overlay for full card coverage */
.about-page .visionary-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #4F9CF9 0%, #3B82F6 100%);
  opacity: 0;
  z-index: 5;
  transition: opacity 0.3s ease;
}

.about-page .visionary-card:hover::before {
  opacity: 1;
}

.about-page .visionary-card:hover .visionary-content-overlay {
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 15;
  padding: 40px 24px;
}

.about-page .visionary-card:hover .visionary-text-content {
  text-align: left;
}

/* Text content styling */
.about-page .visionary-text-content {
  text-align: center;
  width: 100%;
}

.about-page .visionary-text-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.about-page .visionary-text-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 8px 0;
  font-weight: 400;
  transition: all 0.3s ease;
}

.about-page .visionary-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 16px;
  margin-bottom: 0;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.about-page .visionary-card:hover .visionary-description {
  opacity: 1;
  transform: translateY(0);
}

/* Social content styling */
.about-page .visionary-social-content {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  width: 100%;
}

.about-page .visionary-card:hover .visionary-social-content {
  opacity: 1;
  transform: translateY(0);
}

.about-page .visionary-social {
  display: flex;
  gap: 24px;
  justify-content: flex-start;
  align-items: center;
}

.about-page .visionary-social a {
  color: white;
  font-size: 32px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.about-page .visionary-social a:hover {
  opacity: 1;
  text-decoration: none;
}

/* On hover, make text larger and adjust layout */
.about-page .visionary-card:hover .visionary-text-content h3 {
  font-size: 33px;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 2.18px;
}

.about-page .visionary-card:hover .visionary-text-content p {
  font-size: 14.39px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1.8px;
  font-weight: 400;
}

/* Hide description and social icons by default on non-hover cards */
.about-page .visionary-card:not(:hover) .visionary-description,
.about-page .visionary-card:not(:hover) .visionary-social-content {
  display: none;
}

/* Partners Section */
.about-page .partners-section {
  padding: 60px 0;
  background: white;
}

.about-page .partners-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-page .partners-title {
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 2px;
  margin: 0;
}

.about-page .partners-slider {
  margin: 0 auto;
  max-width: 100%;
}

.about-page .partners-slider .slick-slide {
  padding: 0 20px;
}

.about-page .partners-slider .slick-list {
  margin: 0 -20px;
}

.about-page .partner-logo {
  display: flex !important;
  justify-content: center;
  align-items: center;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  height: 80px;
  outline: none;
}

.about-page .partner-logo:hover {
  opacity: 1;
}

.about-page .partner-logo img {
  max-width: 120px;
  max-height: 40px;
  object-fit: contain;
}

/* Hide Slick dots and arrows */
.about-page .partners-slider .slick-dots {
  display: none !important;
}

.about-page .partners-slider .slick-arrow {
  display: none !important;
}

/* Get Started Section */
.about-page .get-started-section {
  padding: 80px 0;
}

.about-page .get-started-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-page .get-started-text {
  flex: 1;
}

.about-page .get-started-title {
  font-size: 48px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 24px;
}

.about-page .get-started-description {
  font-size: 24px;
  color: #2E2E2E99;
  letter-spacing: 1.5px;
  margin-bottom: 32px;
}

.about-page .get-started-buttons {
  display: flex;
  gap: 16px;
}

.about-page .get-started-image {
  flex: 1;
}

.about-page .get-started-image img {
  width: 100%;
  height: 384px;
  object-fit: cover;
  border-radius: 16px;
}

/* Button Styles */
.about-page .btn-primary {
  background: #3B82F6;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
}

.about-page .btn-primary:hover {
  background: #2563eb;
  color: white;
  transform: translateY(-2px) scale(1.05);
}

.about-page .btn-secondary {
  background: transparent;
  color: #3B82F6;
  border: 2px solid #3B82F6;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.about-page .btn-secondary:hover {
  background: #3B82F6;
  color: white;
  transform: translateY(-2px) scale(1.05);
}

/* =========================
   JOIN COMMUNITY SECTION STYLES
========================= */

.about-page .join-community-section {
  position: relative;
  min-height: 780px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/joinour.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.about-page .join-community-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

.about-page .join-community-content {
  text-align: center;
  color: white;
}

.about-page .join-community-title {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-page .join-community-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-page .common-btn {
  background: linear-gradient(90deg, #4188FF, #F240FF);
  color: white;
  padding: 14px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  border: 1px solid #E1E1E1;
}

.about-page .common-btn:hover {
  background: linear-gradient(90deg, #F240FF, #4188FF);
  border-color: #E1E1E1;
  transform: translateY(-2px) scale(1.05);
}

.about-page .btn-outline-white {
  background: transparent;
  color: white;
  padding: 14px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  border: 1px solid #E1E1E1;
}

.about-page .btn-outline-white:hover {
  background: white;
  color: #1e293b;
  transform: translateY(-2px) scale(1.05);
}

/* ===============================
   COMMUNITY PAGE - DEDICATED CSS
   =============================== */

/* Services Slider - Service Box Styling for Community Page */
.community-page .service-box {
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  background-color: transparent;
  transition: transform 0.3s ease;
}

.community-page .service-box .visionary-card {
  margin: 0;
  width: 100%;
  height: 500px;
}

/* Services Slider Navigation */
.community-page .services-slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.community-page .services-slider-nav .slider-btn {
  width: 50px;
  height: 50px;
  background: #3b82f6;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.community-page .services-slider-nav .slider-btn:hover {
  background: #2563eb;
  transform: scale(1.1);
}

.community-page .services-slider-nav .slider-btn:active {
  transform: scale(0.95);
}

/* Hide default slick arrows */
.community-page .services-slider .slick-prev,
.community-page .services-slider .slick-next {
  display: none !important;
}

/* Visionaries Section */
.community-page .visionaries-section {
  padding: 80px 0;
  /* background: #f8fafc; */
}

.community-page .visionaries-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.community-page .visionaries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Visionaries Slider - Only for community.html */
.community-page .visionaries-slider {
  margin: 0 auto;
  max-width: 100%;
}

.community-page .visionaries-slider .slick-slide {
  padding: 0 20px;
}

.community-page .visionaries-slider .slick-list {
  margin: 0 -20px;
}

.community-page .visionaries-slider .visionary-card {
  display: block !important;
  margin: 0 !important;
}

/* Slick arrows styling */
.community-page .visionaries-slider .slick-prev,
.community-page .visionaries-slider .slick-next {
  width: 50px;
  height: 50px;
  background: #3B82F6;
  border-radius: 50%;
  z-index: 10;
}

.community-page .visionaries-slider .slick-prev:before,
.community-page .visionaries-slider .slick-next:before {
  font-size: 20px;
  color: white;
}

.community-page .visionaries-slider .slick-prev {
  left: -60px;
}

.community-page .visionaries-slider .slick-next {
  right: -60px;
}

.community-page .visionary-card:not(:hover) .visionary-description,
.community-page .visionary-card:not(:hover) .visionary-social-content {
  display: none;
}

/* Custom navigation buttons below slider */
.community-page .visionaries-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.community-page .visionaries-nav-btn {
  width: 50px;
  height: 50px;
  background: #3B82F6;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.community-page .visionaries-nav-btn:hover {
  background: #2563EB;
  transform: scale(1.1);
}

.community-page .visionaries-nav-btn:active {
  transform: scale(0.95);
}

/* Slick dots styling */
.community-page .visionaries-slider .slick-dots {
  bottom: -100px;
  display: flex !important;
  justify-content: center;
  gap: 10px;
}

.community-page .visionaries-slider .slick-dots li {
  margin: 0;
}

.community-page .visionaries-slider .slick-dots li button:before {
  font-size: 12px;
  color: #3B82F6;
  opacity: 0.5;
}

.community-page .visionaries-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #3B82F6;
}

.community-page .visionary-card {
  border-radius: 24px;
  overflow: hidden;
  height: 500px;
  position: relative;
}

.community-page .visionary-background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.community-page .visionary-background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-page .visionary-content-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px;
  color: white;
  text-align: center;
  z-index: 10;
  transition: all 0.3s ease;
}

/* Hover overlay for full card coverage */
.community-page .visionary-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #4F9CF9 0%, #3B82F6 100%);
  opacity: 0;
  z-index: 5;
  transition: opacity 0.3s ease;
}

.community-page .visionary-card:hover::before {
  opacity: 1;
}

.community-page .visionary-card:hover .visionary-content-overlay {
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 15;
  padding: 40px 24px;
}

.community-page .visionary-card:hover .visionary-text-content {
  text-align: left;
}

/* Text content styling */
.community-page .visionary-text-content {
  text-align: center;
  width: 100%;
}

.community-page .visionary-text-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.community-page .visionary-text-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 8px 0;
  font-weight: 400;
  transition: all 0.3s ease;
}

.community-page .visionary-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 16px;
  margin-bottom: 0;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.community-page .visionary-card:hover .visionary-description {
  opacity: 1;
  transform: translateY(0);
}

.community-page .section-badge {
  color: #3B82F6;
  font-size: 24px;
  font-weight: 500;
  display: block;
  margin-bottom: 16px;
  max-width: fit-content;
  padding: 10px 20px;
  border: 1px solid #4188FF1A;
  border-radius: 100px;
}

.community-page .section-title {
  font-size: 48px;
  font-weight: 700;
  color: #4188FF;
  margin: 0;
}

.community-page .section-subtitle {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: #2E2E2E99;
  line-height: 1.6;
  /* max-width: 600px; */
  margin: 0 auto;
  margin-top: 15px;
}

/* Social content styling */
.community-page .visionary-social-content {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  width: 100%;
}

.community-page .visionary-card:hover .visionary-social-content {
  opacity: 1;
  transform: translateY(0);
}

.community-page .visionary-social {
  display: flex;
  gap: 24px;
  justify-content: flex-start;
  align-items: center;
}

.community-page .visionary-social a {
  color: white;
  font-size: 32px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.community-page .visionary-social a:hover {
  opacity: 1;
  text-decoration: none;
}

/* On hover, make text larger and adjust layout */
.community-page .visionary-card:hover .visionary-text-content h3 {
  font-size: 33px;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 2.18px;
}

.community-page .visionary-card:hover .visionary-text-content p {
  font-size: 14.39px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1.8px;
  font-weight: 400;
}

/* =========================
   BLOG SECTION STYLES
========================= */

.community-page .blog-section {
  padding: 100px 0;
  background: white;
}

.community-page .blog-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.community-page .main-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
}

.community-page .section-description {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
}

.community-page .text-lg {
  font-size: 1.125rem;
}

.community-page .spacing-lg {
  letter-spacing: 0.5px;
}

/* Blog Slider */
.community-page .blog-slider-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.community-page .blog-slider-wrapper {
  position: relative;
  width: 100%;
}

.community-page .blog-slider-track {
  display: flex;
  width: 300%;
  transition: transform 0.5s ease;
}

.community-page .blog-slide {
  width: 33.333%;
  flex-shrink: 0;
}

.community-page .blog-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 15px;
}

.community-page .blog-grid-item {
  width: 100%;
}

.community-page .blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.community-page .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.community-page .blog-image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.community-page .blog-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.community-page .blog-card:hover .blog-image-container img {
  transform: scale(1.05);
}

.community-page .blog-category-tag {
  display: inline-block;
  background: #e0f2fe;
  color: #0277bd;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin: 20px 20px 15px 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.community-page .blog-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.5;
  margin: 0 20px 20px 20px;
  flex-grow: 1;
}

.community-page .blog-footer {
  padding: 0 20px 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.community-page .blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.community-page .blog-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.community-page .blog-meta-text {
  font-size: 12px;
  color: #64748b;
}

.community-page .common-read-btn {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.community-page .common-read-btn:hover {
  color: #2563eb;
  transform: translateX(3px);
}

.community-page .common-read-btn span {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.community-page .common-read-btn:hover span {
  transform: translate(3px, -3px);
}

/* Blog Navigation */
.community-page .blog-slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.community-page .slider-btn {
  width: 50px;
  height: 50px;
  background: #3b82f6;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.community-page .slider-btn:hover {
  background: #2563eb;
  transform: scale(1.1);
}

.community-page .slider-btn:active {
  transform: scale(0.95);
}

.community-page .slider-dots {
  display: flex;
  gap: 12px;
}

.community-page .slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.community-page .slider-dot.active {
  background: #3b82f6;
  transform: scale(1.2);
}

.community-page .slider-dot:hover {
  background: #64748b;
}

/* Blog slider visionary cards */
.community-page .blog-slide .visionary-card {
  border-radius: 24px;
  overflow: hidden;
  height: 500px;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.community-page .blog-slide .visionary-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.community-page .blog-slide .visionary-background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-page .blog-slide .visionary-content-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px;
  color: white;
  text-align: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.community-page .blog-slide .visionary-text-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.community-page .blog-slide .visionary-text-content p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 15px;
}

.community-page .blog-slide .visionary-description {
  font-size: 0.9rem;
  line-height: 1.6;
}

.community-page .blog-slide .visionary-social {
  display: flex;
  gap: 15px;
}

.community-page .blog-slide .visionary-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.community-page .blog-slide .visionary-social a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Card Variants in blog slider */
.community-page .blog-slide .visionary-card-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.community-page .blog-slide .visionary-card-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.community-page .blog-slide .visionary-card-dark {
  background: linear-gradient(135deg, #374151 0%, #111827 100%);
}

.community-page .blog-slide .visionary-card-light {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

/* =========================
   JOIN COMMUNITY SECTION STYLES
========================= */

.community-page .join-community-section {
  position: relative;
  min-height: 600px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../../images/joinour.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.community-page .join-community-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

.community-page .join-community-content {
  text-align: center;
  color: white;
}

.community-page .join-community-title {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.community-page .join-community-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.community-page .btn-outline-white {
  background: transparent;
  color: white;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  align-self: flex-start;
  letter-spacing: 0.02em;
  border: 1px solid white;
  display: flex;
  justify-content: center;
}

.community-page .btn-outline-white:hover {
  background: white;
  color: #1e293b;
  transform: translateY(-2px) scale(1.05);
}

/* ===============================
   PROGRAMS PAGE - DEDICATED CSS
   =============================== */

/* =========================
   PROGRAMS HEADER SECTION
========================= */

/* Programs Header Section */
.programs-page .programs-header-section {
  background: white;
  padding: 80px 0 0px 0;
  text-align: center;
}

.programs-page .programs-header-content {
  max-width: 800px;
  margin: 0 auto;
}

.programs-page .programs-main-title {
  font-size: 48px;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: #4188FF;
  margin-bottom: 24px;
  line-height: 1.1;
}

.programs-page .programs-subtitle {
  font-size: 24px;
  font-weight: 400;
  color: #2E2E2E99;
  line-height: 1.6;
  margin: 0;
}

/* =========================
   PROGRAMS SECTION
========================= */

.programs-page .programs-section {
  background: white;
  padding: 100px 0;
}

.programs-page .programs-accordion {
  margin: 0 auto;
}

.programs-page .program-item {
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 0;
}

.programs-page .program-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.programs-page .program-header:hover {
  background: rgba(65, 136, 255, 0.02);
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 8px;
}

.programs-page .program-title {
  font-size: 40px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.2;
}

.programs-page .program-arrow {
  font-size: 24px;
  color: #64748b;
  transition: all 0.3s ease;
}

.programs-page .program-header[aria-expanded="true"] .program-arrow {
  transform: rotate(180deg);
  color: #3B82F6;
}

.programs-page .program-content {
  padding: 0 0 40px 0;
  max-width: 700px;
}

.programs-page .program-content .text-lg {
  margin-bottom: 32px;
}

.programs-page .program-features {
  margin-bottom: 32px;
}

.programs-page .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #374151;
}

.programs-page .feature-item i {
  font-size: 18px;
  flex-shrink: 0;
}

/* Expanded Program Content */
.programs-page .program-content-expanded {
  padding: 0 0 40px 0;
}

.programs-page .program-hero-section {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%),
    url('../../images/collapse1.png') center/cover no-repeat;
  border-radius: 16px;
  padding: 30px 40px;
  color: white;
  position: relative;
  overflow: hidden;
}

.programs-page .program-hero-section.iot-bg {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%),
    url('../../images/collapse2.jpg') center/cover no-repeat;
}

.programs-page .program-hero-section.mentorship-bg {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%),
    url('../../images/collapse3.jpg') center/cover no-repeat;
}

.programs-page .program-hero-section.corporate-bg {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%),
    url('../../images/collapse4.jpg') center/cover no-repeat;
}

.programs-page .program-hero-section.community-bg {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%),
    url('../../images/collapse5.jpg') center/cover no-repeat;
}

.programs-page .program-hero-content {
  width: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.programs-page .program-hero-title {
  font-size: 48px;
  font-weight: 700;
  color: white;
  letter-spacing: 1.5px;
  margin-bottom: 0;
  line-height: 1.2;
}

.programs-page .program-hero-details {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.programs-page .program-hero-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 0;
  flex: 1;
}

.programs-page .program-apply-btn {
  background: #4188FF;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(65, 136, 255, 0.3);
  white-space: nowrap;
  flex-shrink: 0;
}

.programs-page .program-apply-btn:hover {
  background: #2563eb;
  color: white;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(65, 136, 255, 0.4);
}

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

/* ========== FAQ MAIN SECTION ========== */
.programs-page .faq-main-section {
  padding: 100px 0;
  background: #ffffff;
}

.programs-page .faq-main-content {
  display: flex;
  justify-content: space-between;
}

/* FAQ Header */
.programs-page .faq-main-header {
  margin-bottom: 60px;
}

.programs-page .faq-main-icon {
  margin-bottom: 24px;
}

.programs-page .faq-main-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.programs-page .main-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #000000;
  margin-bottom: 16px;
  line-height: 1.2;
}

.programs-page .main-subtitle {
  font-size: 24px;
  color: #92969C;
  margin-bottom: 32px;
  line-height: 1.5;
  letter-spacing: 1.5px;
}

/* .programs-page .common-btn {
  background: linear-gradient(263.25deg, #4188FF -16.37%, #F240FF 150.97%);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1.5px;
  min-width: 132px;
  transition: all 0.3s ease;
  display: inline-block;
}

.programs-page .common-btn:hover {
  background: linear-gradient(263.25deg, #F240FF -16.37%, #4188FF 150.97%);
  color: #ffffff;
  transform: translateY(-2px) scale(1.05); 
}*/

/* FAQ Accordion */
.programs-page .faq-main-accordion {
  max-width: 795px;
  border: 1px solid #E1E1E1;
  border-radius: 10px;
  padding: 0px 15px;
  height: fit-content;
}

.programs-page .faq-main-item {
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  border-bottom: 1.1px solid #E1E1E1;
}

.programs-page .faq-main-question {
  padding: 15px 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  transition: all 0.3s ease;
}

.programs-page .faq-main-question-text {
  font-size: 22px;
  font-weight: 600;
  color: #4188FF;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 1.5px;
  flex: 1;
  padding-right: 20px;
}

.programs-page .faq-main-arrow {
  font-size: 16px;
  color: #4188FF;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.programs-page .faq-main-question[aria-expanded="false"] .faq-main-arrow {
  transform: rotate(180deg);
}

.programs-page .faq-main-question[aria-expanded="true"] .faq-main-arrow {
  transform: rotate(0deg);
}

.programs-page .faq-main-answer {
  padding: 0 0px 10px 10px;
}

.programs-page .faq-main-answer-text {
  font-size: 18px;
  color: #000;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
  font-family: 'Product Sans';
}

/* Hero Content Styles */
.programs-page .hero-content {
  text-align: center;
  padding: 120px 40px 80px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.programs-page .heading-xl {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.programs-page .text-lg {
  font-size: 20px;
  line-height: 1.6;
  opacity: 0.9;
}

.programs-page .hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.programs-page .btn-primary-custom {
  background: #3b82f6;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
}

.programs-page .btn-primary-custom:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateY(-2px) scale(1.05);
}

.programs-page .btn-outline-custom {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.programs-page .btn-outline-custom:hover {
  background: #ffffff;
  color: #1e293b;
}

.programs-page .circle-2 {
  width: 100px;
  height: 50px;
  border-radius: 50px 50px 0 0;
  top: 40px;
}

.programs-page .circle-3 {
  width: 120px;
  height: 60px;
  border-radius: 60px 60px 0 0;
  top: 90px;
}

/* =========================
   JOIN COHORT SECTION
========================= */

.programs-page .join-cohort-section {
  background-image: url(../../images/joinour.jpg) !important;
  background: #00000099;
  padding: 80px 0;
  min-height: 548px;
  text-align: center;
  background-blend-mode: overlay;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  border-radius: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.programs-page .cohort-content {
  max-width: 750px;
  margin: 0 auto;
}

.programs-page .cohort-title {
  font-size: 48px;
  letter-spacing: 1px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
}

.programs-page .cohort-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.programs-page .btn-cohort-primary {
  /* background: linear-gradient(263.25deg, #4188FF -16.37%, #F240FF 150.97%);
  color: white;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  border: 1px solid #8B5CF6; */

  background: linear-gradient(263.25deg, #4188FF -16.37%, #F240FF 150.97%);
  color: white;
  display: flex;
  justify-content: center;
  border: 1px solid white;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  align-self: flex-start;
  letter-spacing: 0.02em;
}

.programs-page .btn-cohort-primary:hover {
  background: linear-gradient(263.25deg, #F240FF -16.37%, #4188FF 150.97%);
  color: white;
  border: 1px solid white;
  transform: translateY(-2px) scale(1.05);
}

.programs-page .btn-cohort-secondary {
  background: transparent;
  color: white;
  display: flex;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 100px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  align-self: flex-start;
  letter-spacing: 0.02em;
  border: 1px solid white;
}

.programs-page .btn-cohort-secondary:hover {
  background: white;
  color: #1e293b;
  transform: translateY(-2px) scale(1.05);
}

/* =========================
   MODAL STYLES
========================= */

.programs-page .apply-modal-content {
  border: none;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  max-width: 800px;
  width: 100%;
}

.programs-page .apply-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 20px;
  color: #64748b;
  z-index: 10;
}

.programs-page .apply-modal-body {
  padding: 60px 40px;
  text-align: center;
}

.programs-page .apply-modal-icon img {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
}

.programs-page .apply-modal-title {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

.programs-page .apply-modal-subtitle {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 32px;
}

.programs-page .apply-modal-form {
  max-width: 700px;
  margin: 0 auto;
}

.programs-page .apply-form-label {
  display: block;
  font-size: 20px;
  font-weight: 400;
  color: #2E2E2E;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  text-align: left;
}

.programs-page .apply-email-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 24px;
  transition: border-color 0.3s ease;
}

.programs-page .apply-email-input:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.programs-page .apply-submit-btn {
  width: 100%;
  background: #4f46e5;
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.programs-page .apply-submit-btn:hover {
  background: #4338ca;
  transform: translateY(-2px) scale(1.05);
}

.programs-page .success-modal-content {
  border: none;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  max-width: 800px;
  width: 100%;
}

.programs-page .success-modal-body {
  padding: 60px 40px;
  text-align: center;
}

.programs-page .success-modal-icon img {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
}

.programs-page .success-modal-title {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

.programs-page .success-modal-subtitle {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 32px;
}

.programs-page .success-submit-btn {
  background: #4f46e5;
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.programs-page .success-submit-btn:hover {
  background: #4338ca;
  transform: translateY(-2px) scale(1.05);
}

.programs-page .success-email-note {
  font-size: 14px;
  color: #94a3b8;
  margin: 0;
}

/* ===============================
   FACILITIES PAGE - DEDICATED CSS
   =============================== */

/* =========================
   FACILITIES HEADER SECTION
========================= */

/* Facilities Header Section */
.facilities-page .facilities-header-section {
  background: white;
  padding: 80px 0 60px 0;
  text-align: center;
}

.facilities-page .facilities-header-content {
  max-width: 800px;
  margin: 0 auto;
}

.facilities-page .facilities-main-title {
  font-size: 48px;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.facilities-page .facilities-subtitle {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* =========================
   FACILITIES CONTENT SECTION
========================= */

.facilities-page .facilities-section {
  padding: 80px 0;
}

.facilities-page .facilities-content {
  text-align: center;
  margin: 0 auto;
}

.facilities-page .facilities-section-title {
  font-size: 48px;
  font-weight: 700;
  color: #4188FF;
  margin-bottom: 20px;
}

.facilities-page .facilities-section-description {
  font-size: 18px;
  color: #666;
  margin-bottom: 60px;
  line-height: 1.6;
}

/* Facilities Gallery - 2 Row Moving Slider */
.facilities-page .facilities-gallery {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.facilities-page .gallery-row {
  width: 100%;
  overflow: hidden;
  margin-bottom: 15px;
}

.facilities-page .gallery-row:last-child {
  margin-bottom: 0;
}

.facilities-page .gallery-track {
  display: flex;
  width: calc(280px * 10);
  gap: 15px;
}

/* First row - moves left to right */
.facilities-page .gallery-row-1 .gallery-track {
  animation: scrollRight 25s linear infinite;
}

/* Second row - moves right to left */
.facilities-page .gallery-row-2 .gallery-track {
  animation: scrollLeft 25s linear infinite;
}

.facilities-page .gallery-track:hover {
  animation-play-state: paused;
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.facilities-page .gallery-item {
  flex: 0 0 300px;
  /* height: 160px; */
  height: 280px;
  width: 340px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.facilities-page .gallery-item:hover {
  /* transform: translateY(-8px) scale(1.02); */
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.facilities-page .gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.9);
}

.facilities-page .gallery-item:hover .gallery-image {
  /* transform: scale(1.1); */
  filter: brightness(1);
}

/* Gallery overlay effect */
.facilities-page .gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(65, 136, 255, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.facilities-page .gallery-item:hover::before {
  opacity: 1;
}

/* =========================
   VIRTUAL TOUR SECTION
========================= */

.facilities-page .virtual-tour-section {
  background: white;
  padding: 80px 0;
}

.facilities-page .virtual-tour-content {
  text-align: center;
  /* max-width: 1200px; */
  margin: 0 auto;
}

.facilities-page .virtual-tour-title {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  line-height: 1.2;
  letter-spacing: 1.5px;
}

.facilities-page .virtual-tour-viewer {
  /* background: #f8f9fa; */
  border-radius: 20px;
  /* padding: 30px; */
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
}

.facilities-page .tour-main-image {
  position: relative;
  width: 100%;
  height: 700px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #000;
}

.facilities-page .tour-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.facilities-page .tour-image.active {
  opacity: 1;
}

/* Navigation Arrows */
.facilities-page .tour-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  width: 50px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  font-size: 18px;
  color: #333;
}

.facilities-page .tour-nav-btn:hover {
  background: none;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.facilities-page .tour-prev {
  left: 20px;
}

.facilities-page .tour-next {
  right: 20px;
}

/* VR and Fullscreen Icons - Corner positioned */
.facilities-page .vr-icon,
.facilities-page .fullscreen-icon {
  position: absolute;
  bottom: 5px;
  /* background: rgba(0, 0, 0, 0.6); */
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 15;
  font-size: 18px;
  color: white;
  /* backdrop-filter: blur(10px); */
}

.facilities-page .vr-icon:hover,
.facilities-page .fullscreen-icon:hover {
  /* background: rgba(0, 0, 0, 0.8); */
  transform: scale(1.05);
}

.facilities-page .vr-icon {
  left: 20px;
}

.facilities-page .fullscreen-icon {
  right: 20px;
}

/* Thumbnail Navigation - Center positioned */
.facilities-page .tour-thumbnails {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  z-index: 15;

  background: rgba(255, 255, 255, 0.3);
  /* 30% white */
  padding: 8px 16px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}


.facilities-page .thumbnail-item {
  width: 120px;
  height: 90px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  opacity: 0.8;
}

.facilities-page .thumbnail-item:hover {
  opacity: 1;
  transform: scale(1.05);
}

.facilities-page .thumbnail-item.active {
  border-color: #4188FF;
  opacity: 1;
}

.facilities-page .thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dot Navigation - Below thumbnails */
.facilities-page .tour-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  z-index: 15;
}

.facilities-page .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.facilities-page .dot:hover {
  background: #4188FF;
  transform: scale(1.2);
}

.facilities-page .dot.active {
  background: #4188FF;
  width: 24px;
  border-radius: 5px;
}

/* Navigation Controls Below Image */
.facilities-page .tour-navigation-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 25px;
  padding: 15px;
}

.facilities-page .tour-control-btn {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  color: #333;
}

.facilities-page .tour-control-btn:hover {
  background: #4188FF;
  color: white;
  border-color: #4188FF;
  transform: scale(1.05);
}

.facilities-page .tour-control-btn:active {
  transform: scale(0.95);
}

/* External Dots Navigation */
.facilities-page .tour-dots-external {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.facilities-page .tour-dots-external .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.facilities-page .tour-dots-external .dot:hover {
  background: #4188FF;
  transform: scale(1.2);
}

.facilities-page .tour-dots-external .dot.active {
  background: #4188FF;
  width: 32px;
  border-radius: 6px;
}

.facilities-page .facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.facilities-page .active-text {
  color: #2E2E2E;
}

/* =========================
   MAKERSPACE ADVANTAGE SECTION
========================= */

.facilities-page .makerspace-advantage-section {
  background: white;
  padding: 80px 0;
}

.facilities-page .makerspace-advantage-content {
  /* max-width: 1200px; */
  margin: 0 auto;
}

.facilities-page .makerspace-advantage-header {
  text-align: center;
  margin-bottom: 60px;
}

.facilities-page .makerspace-advantage-title {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.facilities-page .makerspace-advantage-subtitle {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

/* Makerspace Cards */
.facilities-page .makerspace-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  height: 300px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Featured Card (First Card) */
.facilities-page .makerspace-card-featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}

.facilities-page .makerspace-card-featured .makerspace-card-number {
  background: linear-gradient(263.25deg, #4188FF -16.37%, #F240FF 150.97%);
  border: 1px solid #E1E1E1;
  color: white;
  width: 90px;
  height: 52px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  align-self: flex-start;
}

.facilities-page .makerspace-card-featured .makerspace-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.facilities-page .makerspace-card-featured .makerspace-card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
  letter-spacing: 1.5px;
}

.facilities-page .makerspace-card-featured .makerspace-card-description {
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.9;
  margin: 0;
  letter-spacing: 1.5px;
}

.facilities-page .makerspace-card-featured .makerspace-card-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  opacity: 0.1;
  z-index: 1;
}

.facilities-page .makerspace-card-featured .makerspace-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover Cards */
.facilities-page .makerspace-card-hover {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
}

.facilities-page .makerspace-card-hover .makerspace-card-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.facilities-page .makerspace-card-hover .makerspace-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.facilities-page .makerspace-card-hover:hover .makerspace-card-image img {
  transform: scale(1.1);
}

/* Overlay for hover cards */
.facilities-page .makerspace-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
  color: white;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateY(20px);
}

.facilities-page .makerspace-card-hover:hover .makerspace-card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.facilities-page .makerspace-card-overlay .makerspace-card-number {
  background: linear-gradient(263.25deg, #4188FF -16.37%, #F240FF 150.97%);
  border: 1px solid #E1E1E1;
  color: white;
  width: 90px;
  height: 52px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  align-self: flex-start;
}

.facilities-page .makerspace-card-overlay .makerspace-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.facilities-page .makerspace-card-overlay .makerspace-card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
  letter-spacing: 1.5px;
}

.facilities-page .makerspace-card-overlay .makerspace-card-description {
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.9;
  margin: 0;
  letter-spacing: 1.5px;
}

/* Hover effects */
.facilities-page .makerspace-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.facilities-page .makerspace-card-featured:hover {
  /* transform: translateY(-5px) scale(1.02); */
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

/* ===============================
   INDEX PAGE - DEDICATED CSS
   =============================== */

/* ========== HERO SECTION ========== */
.index-page .hero {
  min-height: 100vh;
  /*background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),*/
  /*  url("../../images/banner-image.png") center/cover no-repeat;*/
  color: #fff;
  position: relative;
}

/* ========== NAVBAR ========== */
.index-page .navbar {
  padding: 20px 40px;
}

.index-page .navbar-nav .nav-link {
  color: #fff !important;
  /* margin: 0 8px; */
  position: relative;
  font-size: 16px;
  padding: 10px 16px !important;
  transition: all 0.3s ease;
}

/* Menu hover effect with corner brackets */
.index-page .navbar-nav .nav-link:hover {
  color: white !important;
  /* border-radius: 4px; */
  position: relative;
  background: #f8fafc17;
}

.index-page .navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background:
    linear-gradient(white, white) top left,
    linear-gradient(white, white) top left,
    linear-gradient(white, white) top right,
    linear-gradient(white, white) top right,
    linear-gradient(white, white) bottom left,
    linear-gradient(white, white) bottom left,
    linear-gradient(white, white) bottom right,
    linear-gradient(white, white) bottom right;
  background-size:
    0px 0px, 0px 0px,
    0px 0px, 0px 0px,
    0px 0px, 0px 0px,
    0px 0px, 0px 0px;
  background-repeat: no-repeat;
  background-position:
    top 50% left 50%, top 50% left 50%,
    top 50% right 50%, top 50% right 50%,
    bottom 50% left 50%, bottom 50% left 50%,
    bottom 50% right 50%, bottom 50% right 50%;
  pointer-events: none;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.index-page .navbar-nav .nav-link:hover::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background:
    linear-gradient(white, white) top left,
    linear-gradient(white, white) top left,
    linear-gradient(white, white) top right,
    linear-gradient(white, white) top right,
    linear-gradient(white, white) bottom left,
    linear-gradient(white, white) bottom left,
    linear-gradient(white, white) bottom right,
    linear-gradient(white, white) bottom right;
  background-size:
    10px 2px, 2px 10px,
    10px 2px, 2px 10px,
    10px 2px, 2px 10px,
    10px 2px, 2px 10px;
  background-repeat: no-repeat;
  background-position:
    top 0 left 0, top 0 left 0,
    top 0 right 0, top 0 right 0,
    bottom 0 left 0, bottom 0 left 0,
    bottom 0 right 0, bottom 0 right 0;
  pointer-events: none;
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Active menu item - permanent corner brackets for home page */
.index-page .navbar-nav .nav-link.hover-box {
  color: white !important;
  position: relative;
  font-weight: 600;
  /* border: 1px solid; */
  border-image-source: linear-gradient(263.25deg, rgba(65, 136, 255, 0.1) -16.37%, rgba(242, 64, 255, 0.1) 150.97%);
}

.index-page .navbar-nav .nav-link.hover-box::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background:
    linear-gradient(white, white) top left,
    linear-gradient(white, white) top left,
    linear-gradient(white, white) top right,
    linear-gradient(white, white) top right,
    linear-gradient(white, white) bottom left,
    linear-gradient(white, white) bottom left,
    linear-gradient(white, white) bottom right,
    linear-gradient(white, white) bottom right;
  background-size:
    10px 2px, 2px 10px,
    10px 2px, 2px 10px,
    10px 2px, 2px 10px,
    10px 2px, 2px 10px;
  background-repeat: no-repeat;
  background-position:
    top 0 left 0, top 0 left 0,
    top 0 right 0, top 0 right 0,
    bottom 0 left 0, bottom 0 left 0,
    bottom 0 right 0, bottom 0 right 0;
  pointer-events: none;
  opacity: 1;
}

/* Navbar Buttons */
.index-page .btn-contact {
  background: #3b82f6;
  color: #fff;
  border-radius: 25px;
  padding: 6px 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 105px;
}

.index-page .btn-contact:hover {
  background: #fff;
  color: #fff;
}

.index-page .btn-donate {
  background: #fff;
  color: #2563eb;
  border-radius: 25px;
  padding: 6px 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 105px;
}

.index-page .btn-donate:hover {
  background: #f1f5f9;
  color: #1e40af;
}

/* Logo Container */
.index-page .logo-container {
  display: flex;
  align-items: center;
}

.index-page .home-logo-icon {
  width: auto;
  height: 40px;
}

.index-page .home-logo-icon img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

/* ========== HERO CONTENT ========== */
.index-page .hero-content {
  position: absolute;
  bottom: 80px;
  left: 60px;
  max-width: 790px;
}

.index-page .hero-content .heading-xl {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
}

.index-page .hero-content .text-lg {
  opacity: 0.9;
  margin-top: 15px;
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.index-page .hero-buttons a {
  display: inline-block;
  margin-right: 15px;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
}

.index-page .btn-primary-custom {
  background: linear-gradient(263.25deg, #4188FF -16.37%, #F240FF 150.97%);
  border: none;
  color: white;
}

.index-page .btn-primary-custom:hover {
  background: linear-gradient(263.25deg, #F240FF -16.37%, #4188FF 150.97%) !important;
  transform: translateY(-2px) scale(1.05);
  color: white;
}

.index-page .btn-outline-custom {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.index-page .btn-outline-custom:hover {
  background: #fff;
  color: #4188FF;
  transform: translateY(-2px) scale(1.05);
}

/* ========== STARTUPS SECTION ========== */
.index-page .startups-section {
  background-color: #f8fafc;
  padding: 80px 0;
}

.index-page .section-heading {
  font-size: 48px;
  color: #2E2E2E;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.index-page .section-description {
  color: #0000004D;
  font-size: 24px;
  letter-spacing: 1.5px;
}

.index-page .spacing-xl {
  margin-bottom: 48px;
}

.index-page .spacing-sm {
  margin-bottom: 16px;
}

.index-page .spacing-lg {
  margin-bottom: 32px;
}

/* ========== STARTUP CARDS ========== */
.index-page .startup-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  padding: 25px;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #E1E1E1;
  cursor: pointer;
}

.index-page .startup-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.index-page .startup-image {
  position: relative;
  height: 345px;
  overflow: hidden;
}

.index-page .startup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.index-page .geometric-shapes {
  position: relative;
  width: 100%;
  height: 100%;
}

.index-page .startup-content {
  padding: 30px 0px 0px 0px;
  text-align: left;
}

.index-page .startup-logo {
  margin-bottom: 16px;
}

.index-page .startup-logo img {
  width: 30px;
  height: 30px;
}

.index-page .heading-md {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
  letter-spacing: 1.5px;
}

.index-page .text-primary {
  color: #0061FF !important;
}

.index-page .text-sm {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
  letter-spacing: 1.5px;
}

.index-page .text-secondary {
  color: #828282 !important;
}

/* ========== BLOG SECTION ========== */
.index-page .blog-section {
  background: #f8fafc;
  padding: 80px 0;
}

.index-page .blog-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.index-page .main-section-title {
  font-size: 48px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

/* Blog Slider */
.index-page .blog-slider-container {
  position: relative;
  margin-bottom: 40px;
}

.index-page .blog-slider-wrapper {
  overflow: hidden;
  border-radius: 16px;
}

.index-page .blog-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 300%;
}

.index-page .blog-slide {
  width: 33.333%;
  flex-shrink: 0;
  padding: 0 15px;
}

.index-page .blog-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
}

.index-page .blog-card {
  background: white;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.index-page .blog-image-container {
  width: 100%;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  background: #000;
}

.index-page .blog-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index-page .blog-category-tag {
  color: #3B82F6;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
  letter-spacing: 1.5px;
}

.index-page .blog-title {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: 1.5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.index-page .blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.index-page .blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.index-page .blog-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.index-page .blog-meta-text {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.index-page .common-read-btn {
  background: linear-gradient(263.25deg, #F240FF -16.37%, #4188FF 150.97%) !important;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.index-page .common-read-btn:hover {
  background: linear-gradient(263.25deg, #4188FF -16.37%, #F240FF 150.97%) !important;
  color: white;
}

/* Blog Slider Navigation */
.index-page .blog-slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.index-page .slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  background: white;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.index-page .slider-btn:hover {
  border-color: #3B82F6;
  color: #3B82F6;
  background: #f8fafc;
}

.index-page .slider-dots {
  display: flex;
  gap: 12px;
  align-items: center;
}

.index-page .slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.index-page .slider-dot.active {
  background-color: #3B82F6;
  width: 32px;
  border-radius: 6px;
}

/* ========== INNOVATORS SECTION ========== */
.index-page .innovators-section {
  background: white;
  padding: 100px 0;
}

.index-page .innovators-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.index-page .innovators-content {
  padding-right: 40px;
}

.index-page .innovators-icon {
  margin-bottom: 32px;
}

.index-page .innovators-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.index-page .innovators-images {
  width: 100%;
}

.index-page .image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.index-page .grid-image-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.index-page .grid-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.index-page .grid-image-item:hover img {
  transform: scale(1.05);
}

.index-page .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: all 0.4s ease;
}

.index-page .grid-image-item:hover .image-overlay {
  opacity: 1;
}

.index-page .overlay-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  color: white;
}

.index-page .overlay-text {
  font-size: 12px;
  color: #fff;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 1.5px;
}

.index-page .grid-image-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* ========== MEMBERSHIP SECTION ========== */
.index-page .membership-section {
  background: #f8fafc;
  padding: 100px 0;
}

.index-page .membership-header {
  text-align: center;
  margin-bottom: 60px;
}

/* Billing Toggle */
.index-page .billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.index-page .toggle-container {
  display: flex;
  border-radius: 50px;
  padding: 4px;
  border: 1px solid #E4E4E4;
  gap: 4px;
}

.index-page .toggle-btn {
  padding: 12px 32px;
  letter-spacing: 1.5px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 100px;
  background: transparent;
  color: #828282;
}

.index-page .toggle-btn.active {
  background: linear-gradient(263.25deg, #F240FF -16.37%, #4188FF 150.97%) !important;
  color: white;
  font-weight: 600;
}

/* Pricing Cards - Bootstrap Grid */
.index-page .pricing-card {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 25px 25px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
}

.index-page .pricing-card * {
  position: relative;
  z-index: 2;
}

.index-page .pricing-card .card-features {
  flex-grow: 1;
}

.index-page .pricing-card .plan-button {
  margin-top: auto;
}

/* Different background images for each card */
.index-page .pricing-card-first {
  background-image: url(../../images/starter.png);
}

.index-page .pricing-card-first:hover {
  background-image: url(../../images/starter_hover.png);
}

.index-page .pricing-card-sec {
  background-image: url(../../images/explorer.png);
}

.index-page .pricing-card-sec:hover {
  background-image: url(../../images/explorer_hover.png);
}

.index-page .pricing-card-third {
  background-image: url(../../images/growth.png);
}

.index-page .pricing-card-third:hover {
  background-image: url(../../images/growth_hover.png);
}

.index-page .pricing-card-four {
  background-image: url(../../images/custom.png);
}

.index-page .pricing-card-four:hover {
  background-image: url(../../images/custom_hover.png);
}

.index-page .pricing-card:hover {
  /* transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); */
  cursor: pointer;
}

/* Active state for selected pricing card */
.index-page .pricing-card.active {
  /* transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(65, 136, 255, 0.25);
  border: 2px solid #4188FF; */
}

/* Active state background images */
.index-page .pricing-card-first.active {
  background-image: url(../../images/starter_hover.png);
}

.index-page .pricing-card-sec.active {
  background-image: url(../../images/explorer_hover.png);
}

.index-page .pricing-card-third.active {
  background-image: url(../../images/growth_hover.png);
}

.index-page .pricing-card-four.active {
  background-image: url(../../images/custom_hover.png);
}

/* Active state plan description color */
.index-page .pricing-card.active .plan-description {
  color: #4188FF;
}

/* Ensure smooth transitions on all devices */
@media (hover: hover) {
  .index-page .pricing-card:hover {
    /* transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); */
  }
}

/* Touch devices - show active state on tap */
@media (hover: none) {
  .index-page .pricing-card:active {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
}

.index-page .plan-button-primary:hover .plan-button-primary {
  background: linear-gradient(263.25deg, #4188FF -16.37%, #F240FF 150.97%) !important;
  color: #FFFFFF !important;
}

.index-page .card-header {
  margin-bottom: 32px;
}

.index-page .plan-name {
  font-size: 24px;
  font-weight: 400;
  color: #000;
  margin-bottom: 16px;
}

.index-page .plan-price {
  margin-bottom: 16px;
}

.index-page .price {
  font-size: 32px;
  font-weight: 700;
  color: #000;
}

.index-page .pricing-card.featured .price {
  color: #3B82F6;
}

.index-page .pricing-card.active.featured .price {
  background: linear-gradient(263.25deg, #4188FF -16.37%, #F240FF 150.97%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.index-page .price-period {
  display: block;
  font-size: 12px;
  color: #828282;
  margin-top: 4px;
}

.index-page .plan-description {
  font-size: 15px;
  color: #0000004D;
  line-height: 1.5;
  letter-spacing: 0.5px;
  margin: 0;
  font-weight: 600;
}

/* Features */
.index-page .card-features {
  margin-bottom: 32px;
}

.index-page .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.index-page .feature-check-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.index-page .feature-check-icon img {
  width: 24px;
  height: 24px;
}

.index-page .feature-text {
  font-size: 14px;
  line-height: 1.5;
  color: #000;
  font-weight: 400;
}

/* Plan Buttons */
.index-page .plan-button {
  width: 100%;
  padding: 16px 24px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.index-page .plan-button-primary {
  background: linear-gradient(263.25deg, #4188FF -16.37%, #F240FF 150.97%) !important;
  color: white;
  border: none;
}

.index-page .plan-button-primary:hover {
  background: linear-gradient(135deg, #F240FF 0%, #4188FF 100%);
  transform: translateY(-2px) scale(1.05);
}

.index-page .plan-button-outline {
  background: #f1f5f9;
  color: #64748b;
  border: none;
  font-weight: 400;
}

/* ========== TESTIMONIALS SECTION ========== */
.index-page .testimonials-section {
  background: white;
  padding: 100px 0;
}

.index-page .testimonials-slider-container {
  position: relative;
  margin: 0 auto;
}

.index-page .testimonials-slider-wrapper {
  overflow: hidden;
  border-radius: 16px;
}

.index-page .testimonials-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 300%;
}

.index-page .testimonial-slide {
  width: 33.333%;
  flex-shrink: 0;
  padding: 0 20px;
}

.index-page .testimonial-content {
  border-radius: 20px;
  padding: 0px 40px;
  text-align: center;
  position: relative;
}

.index-page .quote-icon {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.index-page .testimonial-text {
  font-size: 18px;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 40px;
  font-style: italic;
  border: none;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
}

.index-page .testimonial-company {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.index-page .testimonial-company img {
  max-width: 120px;
  height: auto;
  object-fit: contain;
}

.index-page .testimonial-author {
  margin-bottom: 30px;
}

.index-page .author-name {
  font-size: 20px;
  font-weight: 600;
  color: #7B542E;
  margin-bottom: 8px;
}

.index-page .author-title {
  font-size: 14px;
  color: #94a3b8;
  margin: 0;
}

.index-page .testimonial-btn {
  background: linear-gradient(135deg, #4188FF 0%, #5B9CFF 100%);
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.index-page .testimonial-btn:hover {
  background: linear-gradient(135deg, #2563eb 0%, #4188FF 100%);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(65, 136, 255, 0.4);
}

/* Navigation Arrows */
.index-page .testimonial-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid transparent;
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(263.25deg, #4188FF -16.37%, #F240FF 150.97%) border-box;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  z-index: 10;
}

.index-page .testimonial-prev {
  left: 100px;
}

.index-page .testimonial-next {
  right: 100px;
}

.index-page .fa-chevron-right,
.index-page .fa-chevron-left {
  background: linear-gradient(263.25deg, #4188FF -16.37%, #F240FF 150.97%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== JOIN COMMUNITY SECTION ========== */
.index-page .join-community-section {
  background-image: url(../../images/join.png);
  padding: 100px 0;
  text-align: center;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.index-page .community-content {
  max-width: 810px;
  margin: 0 auto;
}

.index-page .community-icon {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}

.index-page .community-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.index-page .community-title {
  font-size: 48px;
  font-weight: 700;
  color: #4188FF;
  margin-bottom: 24px;
  line-height: 1.2;
}

.index-page .community-description {
  font-size: 24px;
  color: #00000080;
  letter-spacing: 1.5px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.index-page .community-btn {
  background: linear-gradient(135deg, #4188FF 0%, #5B9CFF 100%);
  color: white;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.index-page .community-btn:hover {
  background: linear-gradient(135deg, #2563eb 0%, #4188FF 100%);
  color: white;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(65, 136, 255, 0.4);
}

/* =========================
   CONNECT WITH TECHDEN SECTION
========================= */

.connect-section {
  /* background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); */
  padding: 100px 0;
  position: relative;
}

.connect-content {
  max-width: 700px;
  margin: 0 auto;
}

.connect-title {
  font-size: 48px;
  font-weight: 700;
  color: #4188FF;
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: 1.5px;
}

.connect-description {
  font-size: 20px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.connect-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Common Button Styles */
.common-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  letter-spacing: 0.5px;
  min-width: 160px;
}

.btn-primary-gradient {
  background: linear-gradient(263.25deg, #4188FF -16.37%, #F240FF 150.97%);
  color: white;
  border: none;
}

.btn-primary-gradient:hover {
  background: linear-gradient(263.25deg, #F240FF -16.37%, #4188FF 150.97%);
  color: white;
  /* transform: translateY(-2px) scale(1.05); */
  /* box-shadow: 0 8px 25px rgba(65, 136, 255, 0.3); */
}

.btn-outline-blue {
  background: transparent;
  color: #4188FF;
  border: 2px solid #4188FF;
}

.btn-outline-blue:hover {
  background: #4188FF;
  color: white;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(65, 136, 255, 0.2);
}

.btn-outline-blue i {
  transition: transform 0.3s ease;
}

.btn-outline-blue:hover i {
  transform: translateX(4px);
}

/* =========================
   CONTACT FORM SECTION
========================= */

.contact-form-section {
  background: #ffffff;
  padding: 100px 0;
}

.contact-banner {
  height: 600px;
  background: #4188FF0D;
  justify-content: center;
  align-items: center;
  display: flex;
  border-radius: 20px;
}

.contact-info {
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.contact-form-title {
  font-size: 42px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.contact-form-description {
  font-size: 18px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
  letter-spacing: 0.3px;
}

.contact-form-container {
  background: #f8fafc;
  border-radius: 20px;
  padding: 40px 0px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 0;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  color: #374151;
  background: #ffffff;
  transition: all 0.3s ease;
  font-family: inherit;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: #4188FF;
  box-shadow: 0 0 0 3px rgba(65, 136, 255, 0.1);
  background: #ffffff;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #9ca3af;
  font-size: 15px;
}

.contact-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Form Submit Button */
.contact-form .common-btn {
  margin-top: 20px;
  padding: 18px 32px;
  font-size: 16px;
  font-weight: 600;
}

.navbar-collapse .hover-box {
  background: transparent;
  color: #4188FF !important;
  border-color: #4188FF;
}

.contact-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.contact-badge-img {
  width: 24px;
}

.contact-badge div:last-child {
  background: linear-gradient(263.25deg, #4188FF -16.37%, #F240FF 150.97%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1.5px;
}

/* =========================
   MAP SECTION
========================= */

.map-section {
  background: #f8fafc;
  padding: 100px 0;
  position: relative;
}

.map-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.google-map {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) contrast(1.1);
  transition: filter 0.3s ease;
}

.google-map:hover {
  filter: grayscale(0%) contrast(1);
}

/* Map Controls */
.map-controls {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.map-control-btn {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #374151;
  font-size: 14px;
}

.map-control-btn:hover {
  background: #4188FF;
  color: white;
  border-color: #4188FF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(65, 136, 255, 0.3);
}

/* Map Type Toggle */
.map-type-toggle {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.map-type-btn {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #374151;
  font-size: 14px;
}

.map-type-btn:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
  transform: translateY(-1px);
}

.map-type-btn.active {
  background: #4188FF;
  color: white;
  border-color: #4188FF;
}

.map-type-btn.active:hover {
  background: #3b82f6;
  border-color: #3b82f6;
}

/* Map Loading State */
.map-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.map-wrapper.loading::before {
  opacity: 1;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* =========================
   CONTACT PAGE - ABOUT BADGE STYLES
========================= */

.contact-page .about-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.contact-page .about-badge i {
  font-size: 14px;
}

.contact-page .about-badge-img {
  width: 24px;
}

.contact-page .about-badge-img img {
  width: 100%;
}

.contact-page .about-badge div:last-child {
  background: linear-gradient(263.25deg, #4188FF -16.37%, #F240FF 150.97%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.5px;
}

/* =========================
   VIRTUAL TOUR SECTION
========================= */

.virtual-tour-viewer {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 60px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.tour-main-container {
  position: relative;
}

.tour-preview-image {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.tour-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tour-3d-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.tour-preview-image:hover .tour-3d-overlay {
  opacity: 1;
}

.tour-3d-content {
  text-align: center;
  color: white;
  padding: 40px;
}

.tour-3d-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4188FF 0%, #F240FF 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.tour-3d-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}

.tour-3d-content p {
  font-size: 16px;
  margin-bottom: 24px;
  opacity: 0.9;
}

.tour-3d-btn {
  background: linear-gradient(135deg, #4188FF 0%, #F240FF 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tour-3d-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(65, 136, 255, 0.4);
}

.tour-navigation {
  padding: 30px;
  background: #f8fafc;
}

.tour-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.thumbnail-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.thumbnail-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.thumbnail-item.active {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(65, 136, 255, 0.3);
  border: 2px solid #4188FF;
}

.thumbnail-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.thumbnail-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 15px 10px 10px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.tour-info-panel {
  padding: 20px 30px;
  background: white;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tour-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 14px;
}

.tour-info-item i {
  color: #4188FF;
  font-size: 16px;
}

/* Tour Features */
.tour-features {
  margin-top: 40px;
}

.tour-feature {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.tour-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.tour-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4188FF 0%, #F240FF 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 24px;
}

.tour-feature h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.tour-feature p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}


.signup-text {
  /* letter-spacing: 1.5px; */
}

.signup-link {
  color: #4188FF;
}



/* ===============================
   BOOTSTRAP 5 SIGNUP PAGE - PROFESSIONAL DESIGN
   =============================== */

/* ========== LEFT PANEL STYLING ========== */
.signup-page .signup-left-panel {
  background-image: url('../../images/loginbg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  border-radius: 10px;
}

.signup-page .signup-left-panel .position-relative {
  padding: 40px 35px;
  width: 77%;
}

.signup-page .signup-title {
  font-size: 62px;
  letter-spacing: 1.5px;
}

.signup-page .signup-description {
  letter-spacing: 1.5px;
  line-height: 1.7;
}

/* ========== RIGHT PANEL STYLING ========== */
.signup-page .welcome-logo {
  width: 145px;
}

.signup-page .welcome-title {
  font-size: 30px;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.signup-page .welcome-subtitle {
  font-size: 16px;
  letter-spacing: 0.5px;
  margin-bottom: 32px;
}

.signup-page .signup-form-container {
  max-width: 530px;
  height: calc(100vh - 100px);
  overflow-y: scroll;
  scrollbar-width: none;
}

/* ========== FORM INPUT STYLING ========== */
.signup-page .signup-input {
  height: 50px;
}

.signup-page .signup-input:focus {
  border-color: #3B82F6 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}

.signup-page .signup-input:focus+i,
.signup-page .signup-input:not(:placeholder-shown)+i {
  color: #3B82F6 !important;
}

/* ========== CUSTOM DROPDOWN STYLING ========== */
.signup-page .custom-dropdown {
  position: relative;
  width: 100%;
}

.signup-page .dropdown-selected {
  position: relative;
  padding: 16px 15px 16px 15px;
  border: 1px solid #dee2e6;
  border-radius: 50px;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  font-size: 16px;
  color: #6c757d;
  height: 50px;
}

.signup-page .dropdown-selected:hover {
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.signup-page .dropdown-selected.active {
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.signup-page .selected-text {
  flex: 1;
  text-align: left;
  color: #6c757d;
  transition: color 0.3s ease;
}

.signup-page .selected-text.has-value {
  color: #212529;
}

.signup-page .dropdown-arrow {
  color: #6c757d;
  font-size: 12px;
  transition: all 0.3s ease;
  margin-left: 10px;
}

.signup-page .dropdown-selected:hover .dropdown-arrow,
.signup-page .dropdown-selected.active .dropdown-arrow {
  transform: rotate(180deg);
  color: #3B82F6;
}

.signup-page .dropdown-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 250px;
  overflow-y: auto;
}

.signup-page .dropdown-options.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.signup-page .dropdown-option {
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #495057;
  font-size: 16px;
  border-radius: 8px;
  margin: 4px 8px;
  display: flex;
  align-items: center;
}

.signup-page .dropdown-option:hover {
  background: #f8f9fa;
  color: #3B82F6;
}

.signup-page .dropdown-option.selected {
  background: #e3f2fd;
  color: #3B82F6;
  font-weight: 500;
}

.signup-page .dropdown-option:first-child {
  margin-top: 8px;
}

.signup-page .dropdown-option:last-child {
  margin-bottom: 8px;
}

.signup-page .dropdown-option i {
  color: inherit;
}





























