:root {
  --primary-color: #04ad83;
  --primary-hover: #028c68;
  --secondary-color: #1e3a8a;
  --accent-blue: #007bff;
  --light-gray: #f8f8f8;
  --text-dark: #333;
  --text-gray: #4a4a4a;
  --white: #fff;
  --shadow-light: 0px 4px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0px 8px 15px rgba(0, 0, 0, 0.15);
  --shadow-card: 0px 5px 15px rgba(0, 0, 0, 0.1);
}
/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}
/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal-content {
  animation: fadeInUp 0.5s ease-in-out;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}
/* Swiper Pagination */
/* .swiper-pagination {
  position: relative;
  margin-top: 20px;
  text-align: center;
}
*/
.swiper-pagination {
  text-align: center;
  position: relative !important;
  bottom: auto !important;
  margin-top: 1rem;
}
.swiper-pagination-bullet {
  background-color: #cbd5e1;
  opacity: 1;
  margin: 0 5px !important;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
/* Brand */
.brand-name {
  color: var(--secondary-color);
  letter-spacing: 1.2px;
}
/* Navbar */
.navbar-nav .nav-link {
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--secondary-color);
}
/* Buttons */
.btn-custom {
  font-size: 1rem;
  background-color: var(--primary-color) !important;
  color: white !important;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 6px;
  transition: background 0.3s ease-in-out;
}
.get-started {
  background-color: var(--primary-color) !important;
  color: white !important;
}
.get-started:hover {
  background-color: var(--primary-hover) !important;
}
.btn-primary {
  background-color: var(--primary-color);
  border: none;
  color: var(--white);
  font-weight: bold;
}
.btn-primary:hover {
  background-color: var(--primary-hover);
}
.btn-outline-success {
  color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: bold;
}
.btn-outline-success:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
/* Investment Cards */
.investment-card {
  background: var(--light-gray);
  color: var(--text-dark);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}
.investment-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  cursor: pointer;
}
.investment-card i {
  color: var(--primary-color);
}
/* Typography */
p {
  color: var(--text-gray);
}
/* Founder Section */
.founder-section {
  background-color: var(--light-gray);
  padding: 60px 0;
}
.subheading {
  color: var(--accent-blue);
  font-size: 18px;
  margin-bottom: 30px;
}
.founder-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease-in-out;
}
.founder-card:hover {
  transform: translateY(-5px);
}
.founder-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-blue);
  margin-bottom: 15px;
}
.founder-name {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 22px;
}
.founder-title {
  color: var(--primary-color);
  font-size: 16px;
  margin-bottom: 10px;
}
.founder-description {
  color: var(--text-gray);
  font-size: 16px;
  margin-bottom: 15px;
}
.social-icon {
  color: var(--text-gray);
  font-size: 20px;
  margin: 0 8px;
  transition: color 0.3s ease-in-out;
}
.social-icon:hover {
  color: var(--primary-color);
}
/* Footer */
.footer {
  background-color: var(--light-gray);
  color: var(--text-gray);
  padding: 50px 0;
}
.footer h5 {
  color: var(--secondary-color);
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
}
a {
  color: var(--accent-blue);
  text-decoration: none !important;
  font-size: 16px;
  transition: color 0.3s ease-in-out;
}
a:hover {
  color: var(--primary-color);
}
.i-understand {
  background-color: var(--primary-color) !important;
  color: white !important;
}
/* Hero Section */
.hero-section {
  background: var(--white);
  padding: 120px 0;
  /* margin-top: 40p;
  */
  text-align: center;
}
.hero-title {
  font-weight: 700;
  line-height: 1.3;
}
.hero-title .text-pro {
  color: var(--primary-color);
}
.hero-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
}
.hero-image {
  max-width: 100%;
  height: auto;
}
/* Fixed Telegram & WhatsApp Icons */
.telegram,
.whatsapp {
  position: fixed;
  left: 20px;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
}
.telegram {
  bottom: 80px;
}
.whatsapp {
  bottom: 20px;
}
.telegram img,
.whatsapp img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.telegram:hover,
.whatsapp:hover {
  transform: scale(1.1);
}
/* Feature Cards */
.feature-card {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  cursor: pointer;
}
.feature-card:hover {
  transform: translateY(-5px);
  background: color-mix(in srgb, var(--primary-color) 15%, white);
}
.feature-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
}
/* Responsive Design */
@media (max-width: 992px) {
  .navbar-nav {
    text-align: center;
  }
  .btn-custom {
    width: 100%;
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
    margin-top: 35px;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .investment-card {
    padding: 1rem;
  }
  .feature-card {
    margin-bottom: 15px;
  }
}
.table-section {
  padding: 60px 0;
}
.section-heading {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}
.table {
  background-color: var(--white);
  box-shadow: var(--shadow-card);
  border-radius: 12px;
  overflow: hidden;
}
.table th {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}
.table td {
  text-align: center;
  vertical-align: middle;
}
.know-more-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}
.know-more-link:hover {
  text-decoration: underline;
  color: var(--primary-hover);
}
/* last chnage */
.section-title {
  font-weight: 800;
  font-size: 2.5rem;
  color: #1f2937;
}
.swiper {
  padding-bottom: 50px;
}
/* .swiper-slide .card {
  text-decoration: none;
} */

.card {
  border: none;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease-in-out;
  padding: 24px;
  background: #fff;
  /* width: 100%;
  */
  /* max-width: 400px;
  */
}
.card:hover {
  /* transform: translateY(-4px);
  */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}
.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111827;
}
.card p {
  margin: 0;
  color: #4b5563;
  font-size: 0.95rem;
}
.card .profit {
  font-weight: 700;
  color: #10b981;
  margin-top: 10px;
}
.swiper-pagination-bullet {
  background: #9ca3af;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: var(--primary-color);
  transform: scale(1.2);
}
.owl-nav,
.owl-dots {
  display: none;
}
@media (min-width: 992px) {
  .swiper {
    max-width: 880px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .section-title {
    font-size: 1.8rem;
  }
}
.blog-header {
  padding: 60px 0 30px;
  text-align: center;
}
.blog-header h1 {
  font-size: 42px;
  color: #1b263b;
}
.blog-header p {
  font-size: 18px;
  color: #4d5b7c;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px 0 60px;
}
.blog-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.2s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
}
.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.blog-card h2 {
  font-size: 20px;
  margin: 15px;
  color: #1b263b;
}
.blog-card p {
  font-size: 16px;
  margin: 0 15px 15px;
  color: #4d5b7c;
}
.read-more {
  display: block;
  margin: 0 15px 20px;
  text-decoration: none;
  color: #00a6a6;
  font-weight: bold;
}
.read-more:hover {
  text-decoration: underline;
}

.swiper-slide h5 {
  text-decoration: none;
}

.footer-text {
  font-size: 16px;
}

/* ////////////// */
#loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Spinner */
.spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #04ad83;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 991.98px) {
  .custom-navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  }
}
