/* School Consultancy Specific Styles */

/* Hero Section */
.school-hero {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.school-hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #2c3e50;
}

.hero-text h1 span {
  color: #3498db;
}

.hero-text .subtitle {
  font-size: 1.2rem;
  color: #5d6d7e;
  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);
}

/* 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;
}

.ai-benefits-box li:before {
  content: "•";
  color: #3498db;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -3px;
}

/* 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;
}

.service-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid #eaecee;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card.highlighted {
  border: 1px solid #3498db;
}

.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;
}

.highlight-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #e74c3c;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* 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: 2px solid #3498db;
}

.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;
}

.compliance-card li:before {
  content: "✓";
  color: #3498db;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* 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 {
  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;
}

.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);
  }
}

/* Contact Form */
.contact-form-section {
  margin: 80px 0;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
}

.form-group {
  flex: 1;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #3498db;
  outline: none;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-footer {
  margin-top: 30px;
  position: relative;
}

.loading-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.success-message {
  display: none;
  background: #2ecc71;
  color: white;
  padding: 15px;
  border-radius: 6px;
  margin-top: 20px;
  align-items: center;
  gap: 10px;
}

.success-message i {
  font-size: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
  }
  
  .hero-text {
    order: 2;
    text-align: center;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-image {
    order: 1;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .cta-section h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .testimonial {
    padding: 30px 20px;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
}