/* Variables */
:root {
  --primary-blue: #1a365d;
  --secondary-blue: #2c5282;
  --accent-blue: #3182ce;
  --light-blue: #bee3f8;
  --orange-accent: #ff6b35;
  --gray-text: #4a5568;
  --light-gray: #f7fafc;
  --white: #ffffff;
  --gradient-1: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
  --gradient-2: linear-gradient(135deg, #3182ce 0%, #bee3f8 100%);
  --gradient-3: linear-gradient(135deg, #ff6b35 0%, #ffa500 100%);
  --gradient-4: linear-gradient(135deg, #2b6cb0 0%, #4299e1 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Nunito", sans-serif;
  overflow-x: hidden;
  background: #ffffff;
}

/* Hero Section - FIXED */
.hero-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-1);
  /* background: var(--gradient-4); */
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(49, 130, 206, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 107, 53, 0.2) 0%,
      transparent 50%
    );
  animation: pulseGlow 8s ease-in-out infinite;
  z-index: 0;
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(5px);
  animation: float 20s infinite ease-in-out;
  pointer-events: none;
}

.shape:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape:nth-child(2) {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape:nth-child(3) {
  width: 150px;
  height: 150px;
  bottom: 10%;
  left: 50%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.hero-content {
  position: relative;
  z-index: 100;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: slideInDown 1s ease-out;
  position: relative;
  z-index: 100;
}

.hero-title .highlight {
  background: var(--gradient-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.3s both;
  position: relative;
  z-index: 100;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*** Button ***/

.btn-fixx {
  position: fixed;
  bottom: 300px;
  right: -65px;
  /* left: ; */
  rotate: 270deg;
  z-index: 999;
  /* border: 1px solid black;"> */
}

.btn {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  transition: 0.5s;
}

.btn-primary,
.btn-secondary {
  color: #ffffff;
  box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
  box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
  box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 30px;
  height: 30px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

/* CTA Buttons - FIXED Z-INDEX */
.cta-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.9s both;
  position: relative;
  z-index: 100;
}

.btn-modern {
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  z-index: 100;
}

.btn-primary-modern {
  background: var(--gradient-3);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-primary-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-primary-modern:hover::before {
  left: 100%;
}

.btn-primary-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.btn-secondary-modern {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary-modern:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* Hero Stats - FIXED SCROLL ISSUE */
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 0;
  padding-top: 0;
  animation: fadeInUp 1s ease-out 0.6s both;
  position: relative;
  z-index: 100;
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 100;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange-accent);
  display: block;
  position: relative;
  z-index: 100;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  margin-top: 0.8rem;
  font-weight: 500;
  position: relative;
  z-index: 100;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-image-container {
  position: relative;
  animation: fadeInRight 1s ease-out 0.5s both;
  z-index: 100;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease;
  z-index: 100;
}

.hero-image:hover {
  transform: translateY(-10px) scale(1.02);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Section Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(49, 130, 206, 0.1);
  color: var(--accent-blue);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
  animation: bounce 2s infinite;
  border: 1px solid rgba(49, 130, 206, 0.2);
}

.section-badge i {
  font-size: 1.1rem;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Features Section */
.features-modern {
  padding: 100px 0;
  background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

/* Section Header - NO RED LINE */
.section-header {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeInUp 0.8s ease-out;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  position: relative;
}

/* Remove red line completely */
.section-title::after,
.section-title::before {
  display: none !important;
  content: none !important;
}

.section-description {
  font-size: 1.2rem;
  color: var(--gray-text);
  max-width: 700px;
  margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.bento-item {
  grid-column: span 1 !important;
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(26, 54, 93, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Remove red top border on hover */
.bento-item::before {
  display: none !important;
}

.bento-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(26, 54, 93, 0.15);
}

.bento-large {
  grid-column: span 6;
}

.bento-medium {
  grid-column: span 4;
}

.feature-icon-modern {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--gradient-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon-modern i {
  font-size: 2.5rem;
  color: var(--primary-blue);
}

.feature-title-modern {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.feature-desc-modern {
  color: var(--gray-text);
  line-height: 1.7;
  font-size: 1rem;
}

/* Why Choose Section */
.why-choose-modern {
  padding: 100px 0;
  background: var(--gradient-1);
  position: relative;
  overflow: hidden;
}

.why-choose-modern::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 107, 53, 0.15) 0%,
    transparent 70%
  );
  animation: float 15s infinite ease-in-out;
}

.section-header-light .section-badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.section-header-light .section-title {
  color: var(--white);
}

.section-header-light .section-description {
  color: rgba(255, 255, 255, 0.9);
}

.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.why-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-3);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.why-card:hover::before {
  opacity: 0.1;
}

.why-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.why-card-icon {
  font-size: 3.5rem;
  color: var(--orange-accent);
  margin-bottom: 1.5rem;
  display: block;
  position: relative;
  z-index: 1;
}

.why-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.why-card-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* Feature Circle Section */
.features-circle-section {
  padding: 100px 0;
  background: #ffffff;
}

/* .circle-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 600px;
  margin: 50px auto;
} */

.circle-container {
  position: relative;
  width: 100%;
  max-width: 1000px; /* increased from 900px */
  height: 650px; /* increased from 600px */
  margin: 70px auto; /* increased spacing */
}


/* .center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(26, 54, 93, 0.3);
  z-index: 10;
} */

.center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px; /* reduced from 180px */
  height: 150px; /* reduced from 180px */
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(26, 54, 93, 0.3);
  z-index: 10;
}


.center-circle i {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 10px;
}

.center-circle h6 {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0;
}

.orbit-item {
  position: absolute;
  width: 240px;
  background: white;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 15px 40px rgba(26, 54, 93, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
}

.orbit-item:hover {
  transform: scale(1.05);
  border-color: var(--accent-blue);
  box-shadow: 0 20px 60px rgba(49, 130, 206, 0.2);
}

.orbit-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: orbit1 5s ease-in-out infinite;
}

@keyframes orbit1 {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.orbit-2 {
  top: 50px;
  right: 0;
  animation: orbit2 6s ease-in-out infinite;
}

@keyframes orbit2 {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}

.orbit-3 {
  bottom: 50px;
  right: 0;
  animation: orbit3 5.5s ease-in-out infinite;
}

@keyframes orbit3 {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}

.orbit-4 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: orbit4 6s ease-in-out infinite;
}

@keyframes orbit4 {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

.orbit-5 {
  top: 50px;
  left: 0;
  animation: orbit5 5s ease-in-out infinite;
}

@keyframes orbit5 {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-10px);
  }
}

.orbit-icon {
  font-size: 2.2rem;
  color: var(--accent-blue);
  margin-bottom: 15px;
  display: block;
  transition: all 0.3s ease;
}

.orbit-item:hover .orbit-icon {
  color: var(--orange-accent);
  transform: scale(1.1);
}

.orbit-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.orbit-desc {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.5;
  margin: 0;
}

/* Benefits Section */
.benefits-modern {
  padding: 100px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #e6f3ff 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.benefit-card {
  background: white;
  border-radius: 24px;
  padding: 50px 35px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(26, 54, 93, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 70px rgba(26, 54, 93, 0.15);
}

.benefit-icon-wrap {
  position: relative;
  z-index: 1;
}

.benefit-icon {
  font-size: 4rem;
  background: var(--gradient-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.benefit-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.benefit-text {
  color: var(--gray-text);
  line-height: 1.7;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

/* CTA Section */
.cta-modern {
  background: var(--gradient-1);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-modern::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 107, 53, 0.2) 0%,
    transparent 70%
  );
  animation: float 20s infinite ease-in-out;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

.cta-buttons-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  padding: 16px 35px;
  background: var(--gradient-3);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
  color: var(--white);
}

.btn-cta-secondary {
  padding: 16px 35px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  color: var(--white);
}

/* Scroll Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Page Loader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--orange-accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .bento-large,
  .bento-medium {
    grid-column: span 12;
  }
  .circle-container {
    display: none;
  }
  .features-mobile-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
  }
  .mobile-feature-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
  }
  .mobile-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
  }
  .mobile-feature-icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 15px;
  }
  .mobile-feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
  }
  .mobile-feature-desc {
    font-size: 0.95rem;
    color: var(--gray-text);
    line-height: 1.6;
  }
}

@media (min-width: 993px) {
  .features-mobile-cards {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .stat-item {
    width: 100%;
    max-width: 300px;
  }
  .section-title {
    font-size: 2rem;
  }
  .cta-title {
    font-size: 1.8rem;
  }
}
