/* School Consultancy Specific Styles */

/* Hero Section */
@media(max-width:768px){
  .hero-image{
    height: auto;
    width: 100%;
    border-radius: 10px;
  }
  section.school-hero{
   padding-top: 100px;
    padding-bottom: 40px;
   height: 100%;
  }
  .hero-cta{
    display: block;
    flex-direction: column;
  }
}

.school-hero {
  background: linear-gradient(135deg, #007bff, #d9f5ff);
  padding-top: 200px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.school-hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
}

.hero-text {
  flex: 1;
}
.btn-primary{
  background: white;
  color: #007bff;
}
.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #2c3e50;
}

.hero-text h1 span {
  color: white;
}

.hero-text .subtitle {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px 15px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-item i {
  color: #3498db;
  font-size: 1.1rem;
}

.feature-item span {
  font-weight: 500;
  color: #34495e;
}

.hero-cta {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.btn-secondary{
  height: 50px;
  width: 100px;
  background-color: #3699da;
  color: white;
  border-radius: 20px;
  font-size: 15px;
  padding: 10px 0px 0px 5px;
}

.btn-secondary:hover {
  background-color: white;
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Intro Section */
.intro-section {
  margin: 80px 0;
}

.section-title {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-title .icon {
  color: #3498db;
  font-size: 1.8rem;
}

.ai-benefits-box {
  background: #f8f9fa;
  border-left: 4px solid #3498db;
  padding: 25px;
  border-radius: 0 8px 8px 0;
  margin: 30px 0;
}

.ai-benefits-box h3 {
  color: #3498db;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-benefits-box ul {
  padding-left: 20px;
  margin-top: 15px;
}

.ai-benefits-box li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}


/* Services Tabs */
.services-tabs-section {
  margin: 80px 0;
}

.tabs-nav {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 25px;
  background: #ecf0f1;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  color: #7f8c8d;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  background: #d6eaf8;
  color: #3498db;
}

.tab-btn.active {
  background: #3498db;
  color: white;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

/* Highlighted service card */
.service-card.highlighted {
  position: relative;
  overflow: hidden;
  border-color: #3699da;
}

/* Most Requested badge */
.highlight-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  top: auto;
  width: 100%;
  height: 32px;

  background: linear-gradient(135deg, #62cff4, #2c67f2);
  color: #fff;

  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 0 0 8px 8px;
}


.service-icon {
  width: 60px;
  height: 60px;
  background: #e3f2fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #3498db;
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.service-card p {
  color: #5d6d7e;
  line-height: 1.6;
  margin-bottom: 20px;
}

.ai-tag {
  display: inline-block;
  background: #e3f2fd;
  color: #3498db;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .ai-tag {
    position: absolute;
    top: 30px;
    left: 10px; 
    right: 130px;  /* ← this is forcing it */
  }
}

/* Compliance Section */
.compliance-section {
  margin: 80px 0;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.compliance-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.compliance-card:hover {
  transform: translateY(-5px);
}

.compliance-card.highlighted {
  border: 1px solid #3699da;
  position: relative;
  overflow: hidden;
}

.compliance-card.highlighted .highlight-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  top: auto;
  width: 100%;
  height: 32px;

  background: linear-gradient(135deg, #62cff4, #2c67f2);
  color: #fff;

  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 0 0 8px 8px;
}
.compliance-card img {
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.compliance-card h3 {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.compliance-card p {
  color: #5d6d7e;
  margin-bottom: 20px;
}

.compliance-card ul {
  text-align: left;
  padding-left: 20px;
}

.compliance-card li {
  margin-bottom: 8px;
  color: #5d6d7e;
  position: relative;
  padding-left: 25px;
}


/* AI Tools Section */
.ai-tools-section {
  margin: 80px 0;
}

.ai-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.ai-tool-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.ai-tool-card:hover {
  transform: translateY(-5px);
}

.ai-tool-card.highlighted {
  position:relative;
  border: 2px solid #3498db;
}


.ai-tool-icon {
  width: 60px;
  height: 60px;
  background: #e3f2fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #3498db;
  font-size: 1.5rem;
}

.ai-tool-card h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.ai-tool-card p {
  color: #5d6d7e;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .ai-tool-card.highlighted .highlight-badge{
    height: 25px;}
  }
.btn-text {
  color: #3498db;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.btn-text:hover {
  color: #2874a6;
}

/* Testimonials */
.testimonials-section {
  margin: 80px 0;
  position: relative;
}

.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial {
  display: none;
  padding: 40px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial.active {
  display: block;
}

.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #5d6d7e;
  font-style: italic;
  margin-bottom: 30px;
  position: relative;
}

.testimonial p:before,
.testimonial p:after {
  content: '"';
  color: #3498db;
  font-size: 2rem;
  opacity: 0.3;
}

.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.client-info img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.client-info h4 {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 5px;
}

.client-info p {
  font-size: 0.9rem;
  color: #7f8c8d;
  margin: 0;
  font-style: normal;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #bdc3c7;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease;
}

.testimonial-dot.active {
  background: #3498db;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #3498db 0%, #2874a6 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  margin: 80px 0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-large {
  padding: 15px 30px;
  font-size: 1.1rem;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}


/* FOOTER BASE */
.footer {
  background: linear-gradient(180deg, #0b1628 0%, #0a1222 100%);
  color: #cfd6e4;
  padding: 70px 0 25px;
  font-size: 14px;
}

/* CONTAINER */
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 50px;
}

/* LOGO + ABOUT */
.footer-about {
  margin-top: 18px;
  line-height: 1.6;
  color: #aeb7c6;
}

/* HEADINGS */
.footer h3 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

/* LISTS */
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #8fa3c8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer ul li a:hover {
  color: #4da3ff;
}

/* NEWSLETTER */
.newsletter {
  margin-top: 25px;
}

.newsletter-form {
  display: flex;
  margin-top: 10px;
  margin-right: 10px;
}
.footer-email {
  flex: 1;
  padding: 8px 10px;
  border-radius: 4px 0 0 4px;
  border: none;
  outline: none;
  font-size: 15px;
  height: 30px;
}

.footer-button {
  background: #ffffff;
  border: none;
  padding: 0 12px;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  height: 30px;
}

.footer-button i {
  color: #0b1628;
}

/* SOCIAL ICONS */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social-links a {
  width: 34px;
  height: 34px;
  background: #007bff;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: #4aa84a;
}

/* DIVIDER */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #8fa3c8;
}

/* BOTTOM LINKS */
.footer-links a {
  color: #8fa3c8;
  margin-left: 15px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-links a {
    margin-left: 0;
    margin-right: 10px;
  }
}
/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info {
    align-items: center;
    text-align: center;
  }

}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .step-card {
    padding: var(--space-lg);
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info {
    margin: 0 auto;            /* 🔥 horizontal centering */
    max-width: 400px;
    text-align: left;
  }
}
