/* ==============
   GLOBAL STYLES
   ============== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Poppins", sans-serif;
}

body {
  color: #1a1a1a;
  background-color: #fff;
  line-height: 1.6;
}
.text-gradient {
  background: linear-gradient(135deg, #3588f3 0%, #12a0e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Primary Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn.primary {
  background-color: #007bff;
  color: #fff;
}

.btn.primary:hover {
  background-color: #0056d2;
}

.btn.secondary {
  border: 2px solid #007bff;
  color: #007bff;
  background: transparent;
}

.btn.secondary:hover {
  background-color: #007bff;
  color: #fff;
}

/* ==================
   HEADER
   ================== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 5%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  height: 45px;
}

.phone {
  color: #007bff;
  font-weight: 600;
  text-decoration: none;
}

/* ==================
   HERO SECTION
   ================== */
.hero {
  padding: 100px 0 80px;
  text-align: left;
  background: linear-gradient(to right, #ffffff, #6dd5fa, #2980b9);

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.hero h1 span {
  color: #007bff;
}

.hero p {
  font-size: 1.1rem;
  color: #555;
  max-width: 480px;
  margin-bottom: 30px;
}

.hero .buttons a {
  margin-right: 15px;
}

.transform {
  background: #f8fbff;
  padding: 80px 0;
}

.transform h2 {
  font-size: 3rem;
  color: #101f46;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}



.transform-image img {
  width: 100%;
  max-width: auto;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.transform-image img:hover {
  transform: scale(1.03);
}

.transform-points {
  flex: 1;
  max-width: 550px;
}

.transform-points ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.transform-points li {
  background: #fff;
  padding: 20px 25px;
  border-radius: 16px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transform-points li:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.transform-points strong {
  color: #101f46;
  font-weight: 600;
}

/* ✅ Responsive */
@media (max-width: 992px) {
  .transform-content {
    flex-direction: column;
    text-align: center;
  }

  .transform-points ul {
    align-items: center;
  }

  .transform-points li {
    width: 90%;
  }
}

/* ==================
   FEATURES SECTION
   ================== */
.features {
  text-align: center;
  padding: 80px 0;
  background: #fff;
}

.features h2 {
  font-size: 3.5rem;
  color: #101f46;
  font-weight: 700;
  margin-bottom: 30px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.features span {
  color: #555;
  font-weight: 600;
}

.feature-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Tablet */
@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: #f9fbff;
  padding: 30px 25px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-card img {
  height: 45px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.feature-card p {
  color: #555;
  font-size: 0.95rem;
}

/* ==================
   STEPS SECTION
   ================== */
.steps {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.steps h2 {
  font-size: 3rem;
  color: #101f46;
  font-weight: 700;
  margin-bottom: 30px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.step-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.step {
  width: 250px;
  background: #f8fbff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.step .number {
  background: #007bff;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* ==================
   TESTIMONIALS SECTION
   ================== */
.testimonials {
  background: #f8fbff;
  padding: 80px 0;
  text-align: center;
}

.testimonials h2 {
  font-size: 3rem;
  color: #101f46;
  font-weight: 700;
  margin-bottom: 30px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.testimonial img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.testimonial p {
  color: #555;
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial h4 {
  color: #007bff;
  font-size: 1rem;
  font-weight: 600;
}

/* ==================
   PRICING SECTION
   ================== */
.pricing {
  padding: 90px 0;
  text-align: center;
}

.pricing h2 {
  font-size: 3rem;
  color: #101f46;
  font-weight: 700;
  margin-bottom: 30px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.pricing p {
  color: #101f46;
  margin-bottom: 50px;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.pricing-card {
  background: linear-gradient(180deg, #007bff, #0056d2);
  color: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  width: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: start;
}

.pricing-card h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #f0f4fa;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 25px;
}

.pricing-card ul li {
  margin: 8px 0;
  font-size: 0.95rem;
  font-size: 1rem;
  color: #fff;
}

.pricing-card .btn {
  background: #fff;
  color: #007bff;
  font-weight: 600;
}

.pricing-card ul li i {
  color: #ffffff;
  margin-right: 8px;
}

/* ==================
   FOOTER
   ================== */
.footer {
  background: #f0f4fa;
  text-align: center;
  padding: 40px 0;
  font-size: 0.95rem;
  color: #555;
}

.footer p {
  margin-bottom: 8px;
}

/* ==================
   RESPONSIVE DESIGN
   ================== */
@media (max-width: 768px) {
  .hero {
    padding: 70px 0;
    text-align: center;
  }

  .hero .container {
    flex-direction: column;
  }

  .hero img {
    margin-top: 30px;
    width: 100%;
  }

  .feature-grid,
  .testimonial-slider {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    flex-direction: column;
  }

  .steps .step-list {
    flex-direction: column;
    align-items: center;
  }
}


/* dashboard  */

.admin-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 250px;
}

.admin-nav li {
  border-bottom: 1px solid #e0e0e0;
}

.admin-nav li:last-child {
  border-bottom: none;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  font-weight: 500;
  padding: 14px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.admin-nav a:hover {
  background-color: #303F9F;
  color: #fff;
  padding-left: 25px;
}

.admin-nav i {
  color: #303F9F;
  transition: color 0.3s ease;
}

.admin-nav a:hover i {
  color: #fff;
}





