/* Hero section */
.hero {
  /* background: #3f06a3; */
  background-image: url("/web/b2b/images/school-images/school_background_img.svg");
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0px 15px 44px rgba(33, 0, 250, 0.01);
  /* color: white; */
  padding: 80px 20px;

}
.hero-header{
   padding-top: 70px;
   padding-bottom: 70px;
}

.hero h1 {
  margin-bottom: 10px;
}

.cta-buttons .btn {
  display: inline-block;
  background: #3f06a3;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.btn-outline {
  border: 2px solid white;
  background: transparent;
  color: white;
}

/* @keyframes floatUpDown {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
  }

  .float-image {
    animation: floatUpDown 3s ease-in-out infinite;
box-shadow: -10px -10px 12px 0px rgba(44, 2, 251, 0.2);

  } */

/* Design For Everyone */
.user-section {
  /* background-color: #0b1d3a; */
  background-color: #ffffff;
}

.user-divs {
  margin-top: 80px;
  text-align: left;
}

.user-title {
  font-size: 22px;
  margin-top: 10px;
  color: #000;
}

.tag {
  display: inline-block;
  font-size: 1.1rem;
  background-color: #3f06a3;
  color: white;
  padding: 6px 12px;
  border-radius: 5px;
  margin-bottom: 10px;
}

p {
  font-size: 1rem;
  color: #323131;
  margin-top: 10px;
}

.shadow-block {
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.01);
  border-radius: 20px;
}

.design-for-everyone {
  margin: 70px 0px 70px 0px;
}

/* school management */
.school-management {
  padding: 50px;
}

.school-management header {
  margin-top: 30px;
  text-align: center;
}
/* header {
  text-align: center;
  margin-bottom: 50px;
} */

header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header p {
  font-size: 22px;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 20px 30px;
  background: rgba(26, 42, 108, 0.08);
  border-radius: 15px;
  min-width: 180px;
  margin-bottom: 40px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #3f06a3;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
  font-size: 1.2rem;
  color: #555;
  font-weight: 600;
}

/* Core Feature Section */
.user-cards,
.features-grid,
.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.feature-card {
  width: 100%;
  background: white;
  border-radius: 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #eaeaea;
  z-index: 1;
  padding: 30px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  color: #333 !important;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(26, 42, 108, 0.15);
}

.feature-card::before {
  content: "";
  position: absolute;
  bottom: 0; /* changed from top: 0 */
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #3f06a3);
  z-index: 2;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #3f06a3);
  border-radius: 50%;
  font-size: 2.2rem;
  color: white;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 25px rgba(26, 42, 108, 0.2);
}

.feature-card h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #1a2a6c;
}

.feature-card p {
  font-size: 22px;
  line-height: 1.6;
  color: #555;
}

.features-section {
  /* background-color: #3f06a3; */
  background-color: white;
  padding: 50px 20px;
  color: white;
  text-align: center;
}

.features-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #252525;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #3f06a3;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.5;
}

/* Comprehensive Management Solutions Section */
.additional-info {
  /* background: linear-gradient(135deg, #3f06a3); */
  border-radius: 15px;
  padding: 40px;
  /* margin-top: 60px; */
  color: white;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
}

.additional-info h3 {
  margin-bottom: 25px;
  text-align: center;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.info-item {
  background-color: white;
   position: relative;
  color: #000;
  padding: 25px;
  border-radius: 12px;
  backdrop-filter: blur(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding-bottom: 15px;
  margin-top: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.info-item h4 {
  margin-top: 15px;
  color: #3f06a3;
  font-size: 22px;
}

.info-item p {
  line-height: 1.6;
  font-size: 1.05rem;
  opacity: 0.9;
}







/* Why Choose Us */
.benefits {
  /* max-width: 1200px; */
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: rotate(30deg);
  z-index: 0;
}

h2 {
  text-align: center;
  font-size: 3.5rem;
  color: #1a2a6c;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 2;
}

.benefit-highlights {
  text-align: left;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px dashed #ddd;
}

.benefit-highlights li {
  list-style: none;
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  font-size: 1.05rem;
  color: #444;
}

.benefit-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1a2a6c;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Individual card colors */
.benefit-card:nth-child(1) {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(240, 248, 255, 0.95)
  );
}

.benefit-card:nth-child(2) {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(240, 255, 250, 0.95)
  );
}

.benefit-card:nth-child(3) {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 248, 240, 0.95)
  );
}

.benefit-card:nth-child(4) {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(240, 245, 255, 0.95)
  );
}

.section-container {
  background: white;
  border-radius: 15px;
  /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
  margin-top: 30px;
}

.left-column {
  background: linear-gradient(135deg, var(--primary) 0%, #1a4a8a 100%);
  color: white;
  padding: 10px 30px;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.section-title {
  margin-bottom: 25px;
  /* margin-left: 80px; */
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
  color: #000;
  text-align: center;
}

/* .left-column .lead {
  text-align: left;
  margin-left: 80px;
} */

.highlight-box {
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--accent);
  padding: 20px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.highlight-title {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
}

.highlight-title i {
  margin-right: 10px;
  color: var(--accent);
}

.feature-image {
  width: 500px;
  height: auto;
  /* border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); */
  margin-top: 30px;
  /* margin-left: 70px; */
  transition: transform 0.3s ease;
}

.feature-image:hover {
  transform: scale(1.02);
}

.benefit-card {
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  background: white;
  border-radius: 15px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border-left: 5px solid #3f06a3;
  padding: 20px 10px 20px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  margin-left: 15px;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(44, 111, 187, 0.1);
  margin: 0 auto 20px;
  font-size: 28px;
  margin: 0 auto 25px;
  font-size: 2.2rem;
  color: white;
  transition: all 0.3s ease;
}

.benefit-title {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 22px;
  z-index: 1;
  color: #3f06a3;
  font-weight: 600;
}

.benefit-description {
  color: #6c757d;
  line-height: 1.6;
  font-size: 1.1rem;
}

.benefit-highlights {
  padding-left: 20px;
}

.benefit-highlights li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
  color: var(--dark);
}

.benefit-highlights li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #28a745;
}

.card-body {
  padding-bottom: 0px !important;
}

.divider {
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--accent),
    transparent
  );
  margin: 40px 0;
}

.benefit-icon {
  background-color: #f7961e;
  color: #fff;
  border-radius: 50%;
  padding: 10px;
  font-size: 22px;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-description {
  color: #333;
  font-size: 14px;
  margin-top: 5px;
}

/* terminologies section */

.testimonials blockquote {
  font-size: 1.3em;
  color: #444;
  margin: 20px auto;
  max-width: 600px;
}

/* footer section */
footer {
  background: #3f06a3;
  color: white;
  padding: 20px;
}

footer p {
  color: white;
}

@media (min-width: 768px) {
  
}

@media (max-width: 768px) {
  h2 {
    font-size: 2.8rem;
  }

  .hero-header{
   padding-top: 10px;
   padding-bottom: 0px;
}

  .benefits {
    padding: 40px 25px;
  }

  .benefit-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .stat-item {
    min-width: 140px;
    padding: 15px 20px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .section-title {
    margin-top: 50px;
  }

  .hero {
    padding-bottom: 0px;
    margin-top: 10px;
    text-align: center;
  }
  .container {
    padding: 0px;
  }

  .hero-2 {
    text-align: center;
  }

  .cta-buttons a {
    text-align: center;
  }

  header h1 {
    font-size: 2.8rem;
  }

  .features-section h2 {
    font-size: 2.3rem;
  }

  .stat-number {
    font-size: 2.8rem;
  }

  .additional-info h3 {
    margin-left: -10px;
  }

  .user-divs {
    text-align: center;
    margin-top: 30px !important;
  }

  .school-management header {
    margin-top: 10px;
    text-align: center;
  }

  .stat-item {
    margin-bottom: 10px;
  }

  .left-column {
    padding: 10px 20px;
  }

  .section-title {
    font-size: 3rem;
  }

  .feature-image {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  /* h1{
    font-size: 2rem !important;
  } */
  /* h2 {
    font-size: 2.3rem;
  } */

  .all-in-one{
    font-size: 1.9rem !important;
  }

  .sub-heading{
    font-size: 1.7rem !important;
  }
  .benefit-title {
    font-size: 1.5rem;
  }

  .benefit-description {
    font-size: 1rem;
  }

  .stat-item {
    min-width: 100%;
  }

  .left-column .lead {
    text-align: center;
    margin-left: 10px;
  }

  .hero {
    padding-bottom: 0px;
    margin-top: 10px;
    text-align: center;
  }
  .hero-2 {
    text-align: center;
  }

  .cta-buttons {
    text-align: center;
    width: 100%;
  }

  header h1 {
    font-size: 3rem;
  }

  header p {
    font-size: 1.1rem;
  }

  .features-section h2 {
    font-size: 1.9rem;
  }

  .feature-card {
    padding: 25px 20px;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .additional-info h3 {
    margin-left: -20px;
  }

  .user-divs {
    text-align: center;
  }
}
