/* Custom CSS for Synvo Template */

.loader-wrap {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: loaderFadeOut 0.6s ease 2.5s forwards;
}

.loader-graph-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.loader-wrap-heading {
  z-index: 10;
  position: relative;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

@keyframes loaderFadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.side-info .logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.header-logo .logo-text {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
}

.site-logo-img {
  display: inline-block;
  width: 104px;
  height: 104px;
  object-fit: contain;
  object-position: center;
}

.header-logo .site-logo-img {
  width: 104px;
  height: 104px;
}

.footer-logo .site-logo-img {
  width: 40px;
  height: 40px;
}

.offset-logo .site-logo-img {
  width: 32px;
  height: 32px;
}

/* Header visual tweaks */
.header-area {
  z-index: 1000;
}

.header-area .header-top {
  background: linear-gradient(135deg, #1a2c7b 0%, #3b6cb7 50%, #1a2c7b 100%);
}

.header-area .header-top-inner {
  padding: 6px 0;
}

.header-area .header-main {
  margin-top: 10px;
}

.header-area .header-main,
.header-area .header-main.rr-bg-gray {
  background-color: transparent;
}

.header-area,
.header-area .header-main,
.header-area .header-main-inner,
.header-area .header-nav,
.header-area .main-menu {
  overflow: visible;
}

/* Ensure dropdown stays above hero */
.header-area .header-main-inner {
  z-index: 1001;
}

.main-menu ul.dp-menu,
.main-menu ul.dp-menu ul {
  z-index: 2000;
}

.main-menu ul.dp-menu {
  top: 100%;
}

/* Inline dropdown arrow alignment */
.main-menu li.menu-item-has-children > a {
  align-items: center;
  gap: 8px;
}

.main-menu li.menu-item-has-children > a:after {
  margin-inline-start: 4px;
  line-height: 1;
}

.hero-area {
  position: relative;
  z-index: 1;
}

/* Home page: subtle button lift */
.home-page .rr-btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-page .rr-btn:hover,
.home-page .rr-btn:focus {
  transform: translateY(-2px);
}

/* Fix package card hover flicker on home page */
.home-page .package-name-card {
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

.home-page .package-name-card::before {
  animation: none !important;
  transition: none !important;
  opacity: 0 !important;
}

/* Disable flip-up animation on buttons */
.rr-btn::before {
  display: none;
}

.rr-btn:hover .btn-wrap .text-one,
.rr-btn:focus .btn-wrap .text-one {
  transform: none;
}

/* Home page expert popup */
.home-expert-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 100000;
}
.home-expert-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.home-expert-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
}
.home-expert-card {
  position: relative;
  z-index: 1;
  width: min(520px, 92vw);
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.25);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s ease;
}
.home-expert-modal.is-open .home-expert-card {
  transform: translateY(0) scale(1);
}
.home-expert-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f3f4f6;
  color: #1f2937;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.home-expert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(100, 33, 255, 0.1);
  color: #6421ff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
}
.home-expert-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: #1c1c25;
  margin-bottom: 6px;
}
.home-expert-header p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 18px;
}
.home-expert-field {
  margin-bottom: 14px;
}
.home-expert-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1c1c25;
  margin-bottom: 6px;
}
.home-expert-field input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 14px;
  color: #1c1c25;
  background: #ffffff;
}
.home-expert-submit {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #1a1f3a 0%, #2d3560 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(26, 31, 58, 0.25);
}
.home-expert-note {
  margin-top: 10px;
  font-size: 12px;
  color: #6b7280;
  text-align: center;
}
.home-expert-modal-open {
  overflow: hidden;
}

.rr-btn .btn-wrap .text-two {
  display: none;
}

/* Packages page styling */
.packages-page .packages-hero {
  position: relative;
  padding: 150px 0 60px;
  background: linear-gradient(135deg, #f3f9ff 0%, #fff8e6 100%);
  overflow: hidden;
}

.packages-page .packages-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.packages-page .floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
  animation: floatPackages 22s ease-in-out infinite;
}

.packages-page .floating-shape.shape-blue {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.5), transparent 70%);
  top: 10%;
  left: 8%;
}

.packages-page .floating-shape.shape-yellow {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.4), transparent 70%);
  bottom: 12%;
  right: 12%;
  animation-delay: 4s;
}

.packages-page .floating-shape.small {
  width: 180px;
  height: 180px;
  opacity: 0.25;
}

.packages-page .floating-shape.shape-blue.small {
  top: 55%;
  left: 20%;
  animation-delay: 8s;
}

.packages-page .floating-shape.shape-yellow.small {
  top: 35%;
  right: 30%;
  animation-delay: 12s;
}

.packages-page .floating-ring {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 2px dashed rgba(74, 144, 226, 0.2);
  border-radius: 50%;
  top: 18%;
  right: 20%;
  animation: spinPackages 40s linear infinite;
}

.packages-page .packages-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.packages-page .packages-hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.packages-page .packages-hero-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.packages-page .packages-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(74, 144, 226, 0.15);
  color: #1e3a8a;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
}

.packages-page .packages-title {
  font-size: 48px;
  font-weight: 800;
  color: #0f172a;
  margin: 20px 0 16px;
}

.packages-page .packages-lead {
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 24px;
}

.packages-page .packages-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.packages-page .highlight-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(74, 144, 226, 0.15);
  padding: 12px 18px;
  border-radius: 12px;
  color: #1f2937;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  text-align: right;
}

.packages-page .packages-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.packages-page .packages-section {
  padding: 70px 0 90px;
  background: #f8fafc;
}

.packages-page .packages-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.packages-page .package-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.packages-page .package-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.08), rgba(255, 215, 0, 0.08));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.packages-page .package-card:hover::after {
  opacity: 0.35;
}

.packages-page .package-card:hover {
  background: #ffffff;
}

.packages-page .package-card > * {
  position: relative;
  z-index: 1;
}

.packages-page .package-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.packages-page .package-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
}

.packages-page .package-price .amount {
  font-size: 28px;
  font-weight: 800;
  color: #1e3a8a;
}

.packages-page .package-price .gst,
.packages-page .package-price .period {
  font-size: 14px;
  color: #475569;
  font-weight: 600;
}

.packages-page .package-list {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #475569;
  flex: 1;
}

.packages-page .package-list-item {
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
}

.packages-page .package-list-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4a90e2;
  position: absolute;
  left: 0;
  top: 8px;
}

.packages-page .package-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.packages-page .package-actions .rr-btn,
.packages-page .package-actions .rr-btn-2 {
  min-height: 44px;
}

.packages-page .package-actions .rr-btn:hover,
.packages-page .package-actions .rr-btn-2:hover {
  color: #0f172a;
  background: #ffffff;
}

.packages-page .packages-hero-actions .rr-btn-2:hover {
  color: #0f172a;
  background: #ffffff;
}

@media (max-width: 991px) {
  .packages-page .packages-hero .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .packages-page .packages-hero-side {
    align-items: flex-start;
    width: 100%;
  }

  .packages-page .highlight-card {
    text-align: left;
    width: 100%;
  }
}

.packages-page .package-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
  color: #1c1c25;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(255, 183, 77, 0.35);
}

.packages-page .package-card.featured {
  border: 2px solid rgba(255, 215, 0, 0.5);
  transform: translateY(-8px);
}

.packages-page .risk-disclosure {
  margin-top: 40px;
  background: rgba(15, 23, 42, 0.04);
  border-left: 4px solid #f59e0b;
  padding: 18px 20px;
  border-radius: 12px;
  color: #374151;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.packages-page .risk-icon {
  font-size: 20px;
  line-height: 1;
}

.packages-page .risk-disclosure p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.packages-page .footer-area {
  position: relative;
  overflow: hidden;
}

.packages-page .footer-stock-chart-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.packages-page .footer-stock-chart-bg svg {
  width: 100%;
  height: 100%;
}

.packages-cta {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

@keyframes floatPackages {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -20px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 30px) scale(1.03); }
}

@keyframes spinPackages {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 991px) {
  .packages-page .packages-hero {
    padding: 130px 0 50px;
  }
  .packages-page .packages-grid {
    grid-template-columns: 1fr;
  }
  .packages-page .package-card.featured {
    transform: none;
  }
}

@media (max-width: 575px) {
  .packages-page .packages-title {
    font-size: 34px;
  }
  .packages-page .packages-hero {
    padding: 120px 0 40px;
  }
  .packages-page .package-card {
    padding: 22px;
  }
}

.stock-ticker-wrapper {
  background: linear-gradient(135deg, #1a1a3e 0%, #2d2d5e 100%);
  padding: 15px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stock-ticker {
  display: flex;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  margin-right: 60px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.ticker-item span {
  margin-right: 8px;
}

.ticker-item span.up {
  color: #4ade80;
}

.ticker-item span.down {
  color: #ef4444;
}

.ticker-item span.value {
  color: #4ade80;
}

.ticker-item span.percentage {
  color: #4ade80;
  margin-left: 8px;
}
.hero-subtitle{
  color: #4A90E2;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 16px;
}
.hero-title{
  color: #FFFFFF;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  margin: 20px 0;
}
.hero-title span{
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  background-clip: text;
}
.text{
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  line-height: 1.8;
  max-width: 700px;
}
.rr-btn{
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  border: none;
  color: #1C1C25;
  font-weight: 600;
}
.hero-subtitle-2{
  color: #FFD700;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 16px;
}
.hero-title-2{
  color: #FFFFFF;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  margin: 20px 0;
}
.hero-title-2 span{
  background: linear-gradient(135deg, #4A90E2 0%, #1E3A8A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-2{
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  line-height: 1.8;
  max-width: 700px;
}
.rr-btn-2{
  background: linear-gradient(135deg, #4A90E2 0%, #1E3A8A 100%);
  border: none;
  color: #FFFFFF;
  font-weight: 600;
}
.hero-nav-btn{
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}
.stock-ticker-wrapper-before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(to right, rgba(26, 26, 62, 1), rgba(26, 26, 62, 0));
  z-index: 2;
  pointer-events: none;
}
.stock-ticker-wrapper-after{
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(to left, rgba(26, 26, 62, 1), rgba(26, 26, 62, 0));
  z-index: 2;
  pointer-events: none;
}
.reasons-choose-area{
  margin-top: -120px;
  position: relative;
  z-index: 6;
}
.reasons-choose-inner{
  padding-top: 0;
  padding-bottom: 20px;
}
.text-wrapper{
  margin-top: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.text-wrapper .text{
  font-size: 18px;
  line-height: 1.8;
  color: #4f5259;
}
.packages-minimal-inner{
  padding-top: 0;
}
.title-wrapper{
  margin-top: 15px;
}
.text-wrapper-2{
  margin-top: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.text-wrapper-2 .text{
  font-size: 18px;
  line-height: 1.8;
  color: #4f5259;
}
.contact-form{
  padding-top: 0;
  padding-bottom: 0;
}
.info-card{
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  padding: 50px 40px;
  border-radius: 25px;
  height: 100%;
}
.form-card{
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.copyright-area{
  background: #0F172A;
}
.copyright-area-inner{
  padding: 25px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-area,
.footer-widget-wrapper-box,
.copyright-area-inner {
  border-top: none !important;
}

.copyright-area-inner {
  justify-content: center !important;
}

.copyright-text {
  width: 100% !important;
  text-align: center !important;
}

.copyright-text .text {
  width: 100% !important;
  text-align: center !important;
}
.copyright-text .text{
  color: #94A3B8;
  margin-bottom: 0;
}
.copyright-menu ul{
  display: flex;
  gap: 30px;
  margin-bottom: 0;
  padding-left: 0;
}
.copyright-menu ul li a{
  color: #94A3B8;
  font-size: 14px;
}
.footer-area{
  background-image: url(../imgs/bg/footer-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.footer-area-inner{
  position: relative;
  z-index: 2;
}
.footer-stock-chart-bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.1;
  pointer-events: none;
}
.footer-widget-wrapper{
  display: grid;
  /* grid-template-columns: 2fr 1fr 1fr 1fr; */
  gap: 50px 40px;
  padding-top: 100px;
  padding-bottom: 80px;
  position: relative;
}
.about-text .text{
  font-size: 20px;
  margin-bottom: 0;
  max-width: 60ch;
  line-height: 1.6;
}
.section-title-wrapper-2{
  margin-top: 60px;
  margin-bottom: 40px;
}
.text-2{
  font-size: 16px;
  color: #4f5259;
}
.section-title-3{
  font-size: 42px;
  font-weight: 800;
  color: #1C1C25;
  letter-spacing: -0.5px;
}
.section-title-3 span{
  color: #6421FF;
}
.complaint-board-table{
  margin-top: 30px;
  background: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.table{
  width: 100%;
  border-collapse: collapse;
  color: #4f5259;
}
.table th{
  background: #6421FF;
  color: #FFFFFF;
  font-weight: 600;
  padding: 18px 25px;
  text-align: left;
  border-bottom: 1px solid #E5E7EB;
}
.table td{
  padding: 18px 25px;
  border-bottom: 1px solid #F0F0F0;
  font-size: 15px;
}
.table tbody tr{
  transition: all 0.3s ease;
}
.table tbody tr:hover{
  background-color: #F8F9FA;
}
.table tbody tr:last-child td{
  border-bottom: none;
}
.table .text-center{
  text-align: center;
}
.table .fw-bold{
  font-weight: 600;
}
.table .total-row{
  background-color: #F0F0F0;
  font-weight: 700;
}
.complaint-board-header{
  margin-bottom: 40px;
}
.breadcrumb-area{
  padding: 60px 0;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  position: relative;
  overflow: hidden;
}
.investor-charter-area .section-title-wrapper{
  margin-bottom: 25px;
}
.charter-card{
  background: #FFFFFF;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}
.charter-card ol{
  padding-left: 20px;
  margin-bottom: 0;
}
.charter-card ol li{
  color: #4f5259;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}
.section-spacing{
  padding: 80px 0;
}

/* Tighter vertical spacing for home page sections */
.home-page section,
.home-page .section-spacing {
  padding-top: 30px;
  padding-bottom: 30px;
}

.home-page .premium-features-area,
.home-page .reasons-choose-area,
.home-page .packages-minimal-area,
.home-page .expert-guidance-area {
  padding-top: 10px !important;
  padding-bottom: 20px !important;
}

.home-page .section-title-wrapper {
  margin-top: 12px;
  margin-bottom: 12px;
}

/* Reduce hero top spacing on home page */
.home-page .hero-area {
  margin-top: 0 !important;
  padding-top: 20px !important;
}

@media (max-width: 575px) {
  .home-page .hero-area {
    margin-top: 0 !important;
    padding-top: 15px !important;
  }
}

@media (max-width: 767px) {
  .home-page section,
  .home-page .section-spacing {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .home-page .premium-features-area,
  .home-page .reasons-choose-area,
  .home-page .packages-minimal-area,
  .home-page .expert-guidance-area {
    padding-top: 8px !important;
    padding-bottom: 16px !important;
  }

  .home-page .section-title-wrapper {
    margin-top: 8px;
    margin-bottom: 10px;
  }
}
.vision-mission-area{
  padding-bottom: 0;
}
.mission-card{
  padding: 35px;
  border-radius: 20px;
  height: 100%;
  border: 1px solid transparent;
  transition: all 0.4s ease;
}
.mission-card-1{
  background: linear-gradient(135deg, rgba(100, 33, 255, 0.05) 0%, rgba(100, 33, 255, 0.1) 100%);
}
.mission-card-2{
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0.1) 100%);
}
.mission-card:hover{
  border-color: #6421FF;
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(100, 33, 255, 0.1);
}
.mission-card-2:hover{
  border-color: #FFD700;
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.1);
}
.mission-icon{
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 25px;
}
.mission-icon-1{
  background-color: rgba(100, 33, 255, 0.15);
  color: #6421FF;
}
.mission-icon-2{
  background-color: rgba(255, 215, 0, 0.15);
  color: #FFD700;
}
.mission-icon i{
  font-size: 32px;
}
.mission-title{
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1C1C25;
}
.mission-description{
  font-size: 16px;
  line-height: 1.7;
  color: #4f5259;
}
.user-consent-form-wrapper{
  background: #FFFFFF;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}
.form-check-label{
  font-size: 14px;
  color: #4f5259;
}
.form-check-input:checked{
  background-color: #6421FF;
  border-color: #6421FF;
}
.btn-primary{
  background-color: #6421FF;
  border-color: #6421FF;
  padding: 14px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-primary:hover{
  background-color: #5A1EDC;
  border-color: #5A1EDC;
}
.contact-details-card{
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  padding: 40px;
  border-radius: 15px;
  color: #FFFFFF;
  height: 100%;
}
.contact-details-card .contact-item{
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.contact-details-card .contact-item:last-child{
  margin-bottom: 0;
}
.contact-details-card .contact-icon{
  font-size: 24px;
  color: #FFD700;
  margin-right: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
}
.contact-details-card .contact-text a{
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1.6;
}
.contact-details-card .contact-text span{
  font-size: 16px;
  line-height: 1.6;
}
.contact-form-wrapper{
  background: #FFFFFF;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}
.contact-form-title{
  font-size: 28px;
  font-weight: 700;
  color: #1C1C25;
  margin-bottom: 25px;
}
.g-4{
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}
.map-responsive{
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
  border-radius: 15px;
}
.map-responsive iframe{
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  border: 0;
}
.about-page-area .about-text .text{
  max-width: 100%;
}

.about-page-area .section-title-wrapper-2{
  margin-top: 40px;
  margin-bottom: 30px;
}
.t-params-table{
  margin-top: 20px;
}