/* Powered By Stats */
.powered-by {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.stat-box h2 {
  font-size: 32px;
  font-weight: bold;
}

.stat-box p {
  font-size: 16px;
  color: #555;
}

/* Scaling Section */
.scaling-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  background: #eef6ff;
}

.scaling-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.scaling-text {
  flex: 1 1 50%;
}

.scaling-text h3 {
  font-size: 40px;
  margin-bottom: 20px;
}

.scaling-text ul {
  padding-left: 20px;
}

.scaling-img {
  flex: 1 1 45%;
}

.scaling-img img {
  max-width: 100%;
  border-radius: 10px;
}

/* Benefits */
.benefits {
  background: #fff;
  padding: 60px 20px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.benefit-card img {
  width: 50px;
  margin-bottom: 15px;
}

/* FAQs */
.faq-section {
  padding: 60px 20px;
  background: #fcfcfc;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item h4 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}
.benefits-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.benefits-section .section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: #f9f9f9;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

.benefit-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
}

.benefit-card p {
  font-size: 14px;
  color: #555;
}
.scaling-section {
  padding: 80px 20px;
  background-color: #fefefe;
}

.scaling-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.scaling-text {
  flex: 1 1 50%;
}

.scaling-text h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}

.scaling-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.scaling-text ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.scaling-text ul li {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.btn-free-access {
  display: inline-block;
  padding: 12px 24px;
  background-color: #FFC300;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-free-access:hover {
  background-color: #e6ac00;
}

.scaling-img {
  flex: 1 1 45%;
  text-align: center;
}

.scaling-img img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
/* Highlight styles */
.highlight {
  color: #7ab800;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.highlight-box {
  background-color: #FFC300;
  padding: 4px 10px;
  font-weight: bold;
  border-radius: 3px;
  margin-right: 5px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Service Tabs */
.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.service-tabs button {
  background-color: #e9f7db;
  color: #2d4a22;
  font-weight: bold;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.service-tabs button:hover {
  background-color: #FFC300;
}

/* Description boxes */
.service-description {
  display: none;
  margin-top: 30px;
  padding: 30px;
  background-color: #f7fdf3;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.service-description.active {
  display: block;
}

/* Grid of feature boxes */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.feature-box {
  flex: 1 1 calc(50% - 20px);
  background-color: #fff;
  border-left: 4px solid #FFC300;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.feature-box h4 {
  color: #2d4a22;
  margin-bottom: 10px;
}

/* Benefit section (Why Choose Us) */
.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.benefit-item {
  flex: 1 1 calc(50% - 15px);
}
/* Responsive Fixes */
@media (max-width: 768px) {
  .hero-grid,
  .split,
  .contact {
    flex-direction: column;
    align-items: center;
  }

  .search-box {
    margin-top: 10px;
  }
}

/* Custom Loader (Main Preloader) */
.custom-loader {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: white;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Mulish', sans-serif;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.custom-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Logo Container for Animated Fill Effect */
.logo-container {
  position: relative;
  width: 120px;
  height: 120px;
  overflow: hidden;
}

/* Base Logo (Image or SVG) */
.logo-base {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Fill Animation Using Mask */
.logo-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: #FFC300;
  z-index: 1;
  mask-image: url('../images/color_remove.png');
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url('../images/color_remove.png');
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  transition: height 0.1s linear;
}

/* Percentage Text Under Loader */
.loader-percentage {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

/* Alternative Spinner (Optional Fallback) */
.loader-spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #ccc;
  border-top: 6px solid #FFC300;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

/* Spinner Animation Keyframes */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* Modal Styles */
.modal {
  display: none; 
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.modal-content h2 {
  margin-bottom: 1rem;
}

.modal-content p {
  margin-bottom: 2rem;
}

.modal .close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #999;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.modal .close:hover {
  color: #000;
}
/* Modal Base */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}

/* Modal Content */
.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 30px 40px;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: slideDown 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Close Button */
.modal-content .close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-content .close:hover {
  color: #000;
}

/* Headings */
.modal-content h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #333;
}

/* Paragraphs */
.modal-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

/* Form Elements */
.modal-content form input,
.modal-content form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.modal-content form input:focus,
.modal-content form textarea:focus {
  border-color: #f3c623;
  outline: none;
}

/* Button Style */
.modal-content .btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background-color: #f3c623;
  color: #222;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.modal-content .btn-primary:hover {
  background-color: #e5b800;
}

/* Animation */
@keyframes slideDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.features {
  padding: 80px 20px;
  background-color: #fdfdfd;
  text-align: center;
}

.features .section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.stat-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.stat-box h2 {
  font-size: 20px;
  color: #f3c623;
  margin-bottom: 15px;
}

.stat-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
