/* General Section Styles */.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.image-container {
  text-align: center;
}

.image-container img {
  width: 100%;

  border-radius: 10px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

.content {
  max-width: 600px;
  padding: 20px;
}

h1 {
  font-size: 2.1rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

h1 span {
  color: #3498db;
}

p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #7f8c8d;
  margin-bottom: 20px;
}

.highlight-box {
  background-color: #ecf0f1;
  padding: 15px;
  border-left: 5px solid #3498db;
  margin-bottom: 30px;
}

.highlight-box h3 {
  font-size: 1.5rem;
  color: #34495e;
  margin-bottom: 10px;
}

.highlight-box p {
  font-size: 1rem;
  color: #7f8c8d;
}

.cta {
  background-color: #3498db;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta:hover {
  background-color: #2980b9;
}

.cta svg {
  margin-left: 10px;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  .content {
    text-align: center;
  }

  .cta {
    margin-top: 20px;
  }

  h1 {
    font-size: 1.8rem;
  }

  p {
    font-size: 1rem;
  }
}


/* Mission & Vision Section */
.mission-vision-section {
  background-color: #1f3d71;
  padding: 50px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.line-container {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.line {
  height: 2px;
  background-color: white;
  position: relative;
  top: 50%;
}

.left-line, .right-line {
  width: 0; /* Initially 0 */
}

.circle {
  width: 15px;
  height: 15px;
  background-color: white;
  border: 2px solid white;
  border-radius: 50%;
  margin: 0 10px;
  z-index: 1; /* Ensure the circles appear above the lines */
}

.left-tip-circle, .right-tip-circle {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0; /* Initially hidden, will fade in with animation */
}

.center-circle {
  z-index: 2;
}

.section-title {
  font-size: 32px;
  color: white;
  font-weight: bold;
  margin-bottom: 40px;
  margin-top: 30px;
}

.content-container {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.mission-card, .vision-card {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  width: 300px;
}

.mission-card h3, .vision-card h3 {
  font-size: 22px;
  color: #1f3d71;
}

.mission-card p, .vision-card p {
  font-size: 16px;
  color: #555;
}

/* Responsive styles for mission & vision */
@media (max-width: 768px) {
  .content-container {
    flex-direction: column;
  }

  .mission-card, .vision-card {
    width: 100%;
  }
}

/* Services Container */
h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}

.services-section {
  padding: 50px;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* Service Card Styling */
.service-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 350px;
  height: 350px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 4rem;
  color: #2a9df4;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.service-card:hover .service-icon {
  color: #ff6f61;
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}

.read-more {
  display: inline-block;
  margin-top: auto;
  padding: 12px 20px;
  border-radius: 5px;
  background-color: #2a9df4;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.read-more:hover {
  background-color: #ff6f61;
}

/* Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  animation: fadeInUp 0.6s ease both;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 480px) {
  .services-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }

  .service-card {
    padding: 15px;
    height: 300px;
  }

  .service-icon {
    font-size: 3rem;
  }

  .service-card h3 {
    font-size: 1.4rem;
  }

  .read-more {
    padding: 10px 15px;
  }
}
/* Call Us Section */
.call-us-section {
  background-color: #4aa3bb;
  padding: 50px 20px;
  text-align: center;
  margin-bottom: 50px;
  border-radius: 10px;
}

.call-us-section h2 {
  font-size: 28px;
  color: white;
  margin-bottom: 20px;
}

.contact-info {
  font-size: 20px;
  color: white;
  margin-bottom: 20px;
}

.call-us-section .btn {
  padding: 12px 25px;
  background-color: #1a73e8;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.call-us-section .btn:hover {
  background-color: #135abc;
}

/* Footer Styles */
.footer {
  background-color: #1f3d71;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

.footer h3 {
  margin-bottom: 15px;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Responsive styles for footer */
@media (max-width: 768px) {
  .footer {
    padding: 20px;
  }

  .footer h3 {
    font-size: 20px;
  }
}


/* slider */



  /* Slider Styling */
.slider {
  width: 100%;
  height: 96vh;
  position: relative;
  overflow: hidden;
}

.slides {
  width: 300%;
  height: 100%;
  display: flex;
  transition: 2s;
}

.slides input {
  display: none;
}

.slide {
  width: 33.33%;
  transition: 0.6s ease;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Manual Navigation */
.nav-manual {
  position: absolute;
  width: 100%;
  margin-top: -40px;
  display: flex;
  justify-content: center;
}

.manual-btn {
  border: 2px solid #1a3965;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.4s;
  margin: 0 5px;
}

.manual-btn:hover {
  background: #1a3965;
}

/* Automatic Navigation */
.nav-auto {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: -40px;
}

.nav-auto div {
  width: 10px;
  height: 10px;
  border: 2px solid #1a3965;
  border-radius: 50%;
  margin: 10px 5px;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .slider {
      height: 40vh;
  }
}
/* contact us section */
/* Contact Section */
/* Ensure the contact section stays at the bottom */
/* Contact Bar Styling */
.contact-bar {
  background-color: #2f4f4f; /* Darker teal color */
  padding: 15px 20px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 20px 0; /* Ensure it doesn't overlap other sections */
  position: relative;
  z-index: 1; /* Ensure it's on the default layer */
}

.contact-content {
  width: 100%; /* Makes sure it fits the screen */
  max-width: 1200px;
  margin: 0 auto;
}

.contact-text {
  color: #FFA500; /* Orange text color */
}

.contact-text span {
  color: white;
  font-weight: bold;
}

/* Button Styling */
/* Contact Section */
.contact-section {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1a3965;
  padding: 10px 20px;
  color: white;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Moving Text Styling */
.moving-text {
  font-size: 18px;
  font-weight: bold;
  flex: 1;
}

.marquee {
  width: 100%;
  overflow: hidden;
}

/* Contact Button */
.contact-button .btn {
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.contact-button .btn:hover {
  background-color: #45a049;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .contact-section {
      flex-direction: column;
      text-align: center;
  }

  .moving-text {
      margin-bottom: 10px;
  }

  .contact-button .btn {
      width: 100%;
      padding: 15px;
  }
}
/* WHy choose us */

/* Why Choose Us Section */
.why-choose-us {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.why-choose-us .container {
  max-width: 800px;
  padding: 20px;
}

.why-choose-us h2 {
  font-size: 2.5rem;
  color: #002f6c;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
}

.why-choose-us h2::after {
  content: '';
  width: 80px;
  height: 3px;
  background-color: #2a9df4;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}

.why-choose-us p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  padding: 0 10px;
  margin-top: 15px;
}

/* Add subtle hover animation on section */
.why-choose-us:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .why-choose-us h2 {
    font-size: 2rem;
  }

  .why-choose-us p {
    font-size: 1rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .why-choose-us h2 {
    font-size: 1.8rem;
  }

  .why-choose-us p {
    font-size: 0.95rem;
  }
}

/* aoihsdiohdaoi */

.stats-section {
  background: linear-gradient(135deg, #1a365d, #2c5282);
  color: white;
  padding: 4rem 2rem;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-item {
  text-align: center;
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.4s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }
.stat-item:nth-child(4) { animation-delay: 0.8s; }

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature-item {
  margin-bottom: 1.5rem;
  animation: slideIn 0.8s ease-out forwards;
  opacity: 0;
}

.feature-item:nth-child(odd) { animation-delay: 1s; }
.feature-item:nth-child(even) { animation-delay: 1.2s; }

.feature-label {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.progress-bar {
  background: rgba(255, 255, 255, 0.2);
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.progress {
  background: #3182ce;
  height: 100%;
  width: 0;
  animation: progressFill 1.5s ease-out forwards;
  animation-delay: 1.5s;
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
      opacity: 0;
      transform: translateX(-20px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes progressFill {
  from { width: 0; }
  to { width: 100%; }
}

@media (max-width: 1024px) {
  .stats-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stats-grid {
      grid-template-columns: 1fr;
  }

  .stat-number {
      font-size: 2rem;
  }

  .stats-section {
      padding: 2rem 1rem;
  }
}

/*Testimonial's */

.testimonials-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f6f9fc 0%, #e9f1f9 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeIn 1s ease-out;
}

.section-title {
  font-size: 2.5rem;
  color: #1a365d;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 3px;
  background: linear-gradient(90deg, #3182ce, #63b3ed);
}

.section-subtitle {
  color: #4a5568;
  font-size: 1.1rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  animation: slideUp 0.8s ease-out forwards;
  opacity: 0;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-card:nth-child(1) { animation-delay: 0.2s; }
.testimonial-card:nth-child(2) { animation-delay: 0.4s; }
.testimonial-card:nth-child(3) { animation-delay: 0.6s; }

.quote-icon {
  color: #3182ce;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.1rem;
  color: #2d3748;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  background: linear-gradient(135deg, #3182ce, #63b3ed);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.author-info h4 {
  color: #1a365d;
  margin-bottom: 0.25rem;
}

.author-info p {
  color: #4a5568;
  font-size: 0.9rem;
}

.rating {
  color: #f6ad55;
  margin-top: 0.5rem;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .testimonials-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-title {
      font-size: 2rem;
  }

  .testimonials-grid {
      grid-template-columns: 1fr;
  }

  .testimonial-card {
      padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
      padding: 3rem 1rem;
  }

  .section-title {
      font-size: 1.8rem;
  }

  .author-image {
      width: 50px;
      height: 50px;
      font-size: 1rem;
  }
}

/* Banner */

