/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Sora';
}
body {
  line-height: 1.6;
  color: #333;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
/* Header Styles */
header {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
.logo {
  font-weight: bold;
  letter-spacing: 5px;
  font-size: 20px;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-links {
  display: flex;
  list-style: none;
}
.nav-links li {
  margin-left: 30px;
}
.nav-links a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #6c63ff;
}
.nav-links a.active {
  color: #6c63ff;
  font-weight: bold;
  position: relative;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #6c63ff;
  transition: width 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #6c63ff;
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
header {
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
/* Add scroll class to header when scrolled */
header.scrolled {
  padding: 10px 0;
}
/* Smooth transition for hover and active states */
.nav-links a {
  position: relative;
}
/* Hero Section */
.hero {
  padding: 80px 0;
  position: relative;
}
.hero .container {
  display: flex;
  position: relative;
}
.hero-content {
  width: 50%;
  padding-right: 20px;
}
.hero-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
}
.hero-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 60px;
}
.section-title {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 30px;
  position: relative;
  font-weight: bold;
}
.section-title::before {
  content: "*";
  color: #333;
  position: absolute;
  left: -20px;
}
.hero-text {
  margin-bottom: 30px;
  color: #666;
  max-width: 80%;
}
/* Emergency Call Banner */
.emergency-banner {
  background-color: #222;
  color: white;
  padding: 20px;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0;
  position: relative;
  margin-top: 100px;
}
.emergency-banner h3 {
  font-size: 24px;
  font-weight: normal;
  margin-left: 20px;
}
.emergency-banner .phone {
  font-size: 24px;
  font-weight: bold;
  margin-right: 20px;
}
.logos {
  display: flex;
  gap: 15px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
/* Logo Section */
.logo-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid #eee;
}
.logo-item {
  text-align: center;
}
/* Why Choose Us Section */
.why-choose {
  padding: 80px 0;
  padding-top: 20px;
}
.why-choose-title {
  margin-bottom: 40px;
}
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-box {
  background-color: #f5f7ff;
  padding: 30px 20px;
  border-radius: 10px;
  transition: transform 0.3s;
}
.feature-box:hover {
  background-color: #c9c6ff;
}
.feature-box:hover {
  transform: translateY(-5px);
}
.feature-number {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.feature-icon {
  margin-bottom: 15px;
}
.feature-icon img {
  width: 50px;
}
.feature-title {
  font-size: 18px;
  margin-bottom: 15px;
}
/* About Section */
.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about > .container {
  display: flex;
}
.about-content {
  flex: 1;
  padding-right: 40px;
}
.about-image {
  flex: 1;
}
.about-image img {
  width: 100%;
  border-radius: 10px;
  height: 70%;
}
.btn2 {
  display: inline-block;
  padding: 12px 30px;
  background-color: #222;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.btn2:hover {
  background-color: #6c63ff;
}
/* Services Section */
.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.service-list {
  margin-bottom: 40px;
}
.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid #eee;
}
.service-icon {
  flex: 0 0 80px;
}
.service-details {
  flex: 1;
  padding: 0 20px;
}
.service-title {
  font-size: 24px;
  margin-bottom: 10px;
}
.service-description {
  color: #666;
}
.service-link {
  flex: 0 0 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #6c63ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c63ff;
  text-decoration: none;
}
/* Stats Section */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.stat-box {
  text-align: center;
  border: 1px solid #eee;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.stat-number {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}
.stat-text {
  color: #666;
}
/* Pricing Section */
.pricing {
  padding: 80px 0;
  background-color: #f9f9f9;
}
.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.pricing-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.plan {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
}
.plan.featured {
  background-color: #c9c6ff;
}
.plan-name {
  font-size: 24px;
  margin-bottom: 20px;
}
.plan-price {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
}
.plan-features {
  margin-bottom: 30px;
}
.plan-feature {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.check-icon {
  margin-right: 10px;
  color: #6c63ff;
}
/* Appointment Section */
.appointment {
  padding: 80px 0;
  text-align: center;
  background-color: #f5f7ff;
}
.appointment-form {
  max-width: 600px;
  margin: 40px auto 0;
  margin-top: 0px;
  margin-bottom: 40px;
}
.form-group {
  margin-bottom: 20px;
}
.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
/* Footer */
footer {
  background-color: #222;
  color: white;
  padding: 40px 0;
}
.footer-logo {
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
  letter-spacing: 5px;
}
.footer-links {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-bottom: 30px;
}
.footer-links li {
  margin: 0 15px;
}
.footer-links a {
  color: white;
  text-decoration: none;
}
.footer-contact {
  text-align: center;
}
.contact-item {
  margin-bottom: 15px;
}
/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 100px;
  background-color: #6c63ff;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 5px;
}
/* Video Section Styles */
.video-section {
  padding: 0;
  position: relative;
  margin: 80px 0;
  overflow: hidden;
}
.video-container {
  position: relative;
  height: 500px;
  width: 100%;
  background-color: hsl(0, 0%, 96%);
  /* Fallback background color */
  overflow: hidden;
  padding: 0 50px;
}
.video-thumbnail {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 12px;
}
.play-btn-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
}
.play-btn {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: rgba(108, 99, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  /* Make the play button more visible */
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}
.play-btn:hover {
  background-color: #6c63ff;
  transform: scale(1.1);
}
.video-embed {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 100px);
  height: 100%;
  z-index: 3;
  margin: 0 50px;
}
/* Ensure video container is visible on all screen sizes */
@media (max-width: 768px) {
  .video-container {
    height: 400px;
    padding: 0 30px;
  }
  .video-embed {
    width: calc(100% - 60px);
    margin: 0 30px;
  }
  .hero-image {
    display: none;
  }
  .logo-section {
    padding: 0px;
  }
}
@media (max-width: 576px) {
  .video-container {
    height: 300px;
  }
}
.scroll-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 14px;
}
/* Testimonial Section Styles */
.testimonials {
  background-color: #1a1a1a;
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.testimonials .section-title {
  color: white;
  margin-bottom: 60px;
  position: relative;
}
.testimonials .section-title::before {
  content: "*";
  color: white;
  position: absolute;
  left: -20px;
}
.testimonial-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.testimonial-slides {
  display: flex;
  overflow: hidden;
  position: relative;
}
.testimonial-slide {
  flex: 0 0 100%;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.5s ease;
}
.testimonial-slide.active {
  opacity: 1;
  position: relative;
}
.quote-icon {
  margin-bottom: 20px;
}
.testimonial-text {
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 30px;
}
.rating {
  margin-bottom: 20px;
}
.star {
  color: #FFD700;
  font-size: 20px;
  margin: 0 2px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}
.author-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.author-details {
  text-align: left;
}
.author-name {
  font-size: 18px;
  margin: 0;
  font-weight: bold;
}
.author-title {
  font-size: 14px;
  color: #aaa;
  margin: 5px 0 0;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.dot.active {
  background-color: white;
}
.decorative-circles {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
/* Join the Future Section Styles */
.join-future {
  background-color: #f9f9f9;
  position: relative;
}
.vision-step {
  display: flex;
  align-items: flex-start;
}
.step-number {
  flex: 0 0 80px;
  font-size: 36px;
  font-weight: bold;
  color: #1a1a1a;
  background-color: #f2f2f2;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
}
.step-content {
  flex: 1;
}
.step-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: bold;
}
.step-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  max-width: 80%;
}
.vision-cta {
  margin-top: 60px;
  text-align: center;
}
.vision-tagline {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: bold;
}
/* Media queries for responsive design */
@media (max-width: 768px) {
  .step-number {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    font-size: 28px;
    margin-right: 20px;
  }
  .step-content p {
    max-width: 100%;
  }
  .vision-tagline {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .vision-step {
    flex-direction: column;
  }
  .step-number {
    margin-bottom: 15px;
  }
}
/* Media queries for responsive design */
@media (max-width: 768px) {
  .testimonial-text {
    font-size: 16px;
  }
  .decorative-circles {
    right: -2%;
    transform: translateY(-50%) scale(0.8);
  }
}
@media (max-width: 576px) {
  .testimonial-slide {
    padding: 20px;
  }
  .testimonial-text {
    font-size: 15px;
  }
  .decorative-circles {
    display: none;
  }
  .author-image {
    width: 50px;
    height: 50px;
  }
}
/* Media Queries for Responsive Design */
@media (max-width: 992px) {
  .hero-content {
    width: 60%;
  }
  .hero-image {
    width: 40%;
  }
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .pricing-plans {
    grid-template-columns: repeat(2, 1fr);
  }
  .plan:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
  }
  .hero-content {
    width: 100%;
    margin-bottom: 40px;
  }
  .hero-image {
    position: static;
    width: 80%;
    margin: 0 auto;
    transform: none;
  }
  .emergency-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px 10px;
  }
  .emergency-banner h3,
  .emergency-banner .phone {
    margin: 5px 0;
  }
  .about {
    flex-direction: column;
  }
  .about-content {
    margin-bottom: 40px;
    padding-right: 0;
  }
  .pricing-plans {
    grid-template-columns: 1fr;
  }
  .plan:last-child {
    grid-column: span 1;
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .logo {
    margin-bottom: 20px;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-links li {
    margin: 5px 10px;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .service-item {
    flex-direction: column;
    text-align: center;
  }
  .service-icon {
    margin-bottom: 15px;
  }
  .service-details {
    padding: 0;
    margin-bottom: 15px;
  }
}
/* Add this to your CSS files */
/* Form validation styles */
.form-control.error {
  border-color: #ff3b30;
  animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}
@keyframes shake {
  10%,
  90% {
    transform: translateX(-1px);
  }
  20%,
  80% {
    transform: translateX(2px);
  }
  30%,
  50%,
  70% {
    transform: translateX(-4px);
  }
  40%,
  60% {
    transform: translateX(4px);
  }
}
/* Form loader */
.form-loader {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  width: 100%;
}
.loader-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(108, 99, 255, 0.2);
  border-radius: 50%;
  border-top-color: #6c63ff;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.form-loader p {
  color: #6c63ff;
  font-weight: 500;
  font-size: 16px;
}
/* Success message */
.form-success-message {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  width: 100%;
  animation: fadeIn 0.5s ease-out;
}
.form-success-message svg {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  animation: checkmark 0.5s ease-in-out forwards;
}
@keyframes checkmark {
  0% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.form-success-message p {
  color: #4CAF50;
  font-weight: 500;
  font-size: 16px;
}
/* Error message */
.form-error-message {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  width: 100%;
  animation: fadeIn 0.5s ease-out;
}
.form-error-message svg {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  animation: fadeIn 0.5s ease-in-out forwards;
}
.form-error-message p {
  color: #F44336;
  font-weight: 500;
  font-size: 16px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Textarea style fix */
.appointment-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

