/* Global Styles */
:root {
  --primary: #0077b6;
  --primary-light: #46b5d1;
  --secondary: #e0f3f8;
  --accent: #d9f99d;
  --text-dark: #2d3748;
  --text-light: #718096;
  --white: #ffffff;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f8fafc;
  color: var(--text-dark);
  }
  
/* Top Bar */
  .top-bar {
  background: var(--secondary);
    text-align: center;
  padding: 8px;
    font-size: 14px;
  }
  
  .top-bar a {
  color: var(--primary);
    text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.top-bar a:hover {
  color: var(--primary-light);
  text-decoration: underline;
  }
  
/* Main Navigation */
  .main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  background: var(--white);
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  
  .logo {
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo-text {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  }
  
.logo-highlight {
  color: var(--primary-light);
  font-weight: 600;
  }
  
.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-item {
    text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-item::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-item:hover::after {
  width: 100%;
}

.actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  }
  
  .care-btn {
  background: var(--accent);
    border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  color: var(--text-dark);
    cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.care-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.action-link, .phone-link {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.action-link:hover, .phone-link:hover {
  color: var(--primary);
  }
  
/* Search Bar */
  .search-bar {
  background: var(--primary);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-container {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 25px;
  padding: 6px 12px;
  width: 400px;
}

.search-container input {
  border: none;
  outline: none;
  width: 100%;
  padding: 8px;
  font-size: 14px;
  background: transparent;
}

.search-btn {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.search-btn:hover {
  color: var(--primary);
}

.quick-links {
  display: flex;
  gap: 1.5rem;
}

.quick-link {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.quick-link:hover {
  transform: translateY(-2px);
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Hero Section and Slider */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease-in-out;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 2rem;
}

.next-btn {
  right: 2rem;
}

.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.dot.active {
  background: white;
  transform: scale(1.2);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-content {
    color: white;
  max-width: 800px;
  }
  
.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
  font-size: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
  background: var(--white);
  }
  
.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  }
  
.feature-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.feature-link {
  color: var(--primary);
    text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  }
  
.feature-link:hover {
  color: var(--primary-light);
}

/* Animations */
.animate-text {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

.animate-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

.animate-up:nth-child(1) { animation-delay: 0.2s; }
.animate-up:nth-child(2) { animation-delay: 0.4s; }
.animate-up:nth-child(3) { animation-delay: 0.6s; }
.animate-up:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .main-nav {
    padding: 1rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .search-container {
    width: 300px;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .btn {
    padding: 0.9rem 1.8rem;
  }
}

@media (max-width: 768px) {
  .actions {
    display: none;
  }
  
  .search-bar {
    flex-direction: column;
    gap: 1rem;
  }
  
  .quick-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .slider-btn {
    padding: 0.8rem;
    font-size: 1rem;
  }
  
  .prev-btn {
    left: 1rem;
  }
  
  .next-btn {
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 300px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* New Sections Styling */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.section-header p {
  color: #666;
  font-size: 1.1rem;
}

/* Services Section */
.services {
  padding: 5rem 2rem;
  background-color: #f8f9fa;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item i {
  font-size: 2.5rem;
  color: #0077b6;
  margin-bottom: 1rem;
}

.service-item h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.service-item p {
  color: #666;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 5rem 2rem;
  background: linear-gradient(rgba(0, 119, 182, 0.9), rgba(0, 119, 182, 0.9)), url('https://via.placeholder.com/1920x1080') center/cover;
  color: white;
}

.why-choose-us .section-header h2,
.why-choose-us .section-header p {
  color: white;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 2rem;
  background-color: white;
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  margin: 1rem;
}

.testimonial-content {
  position: relative;
  padding: 1rem;
}

.testimonial-content i {
  color: #0077b6;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
}

.author-info h4 {
  margin: 0;
  color: #2c3e50;
}

.author-info p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

/* Latest News Section */
.latest-news {
  padding: 5rem 2rem;
  background-color: #f8f9fa;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.news-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 1.5rem;
}

.news-date {
  color: #666;
  font-size: 0.9rem;
}

.news-content h3 {
  margin: 0.5rem 0;
  color: #2c3e50;
}

.read-more {
  color: #0077b6;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin-top: 1rem;
}

.read-more:hover {
  text-decoration: underline;
}

/* CTA Section */
.cta-section {
  padding: 5rem 2rem;
  background: linear-gradient(rgba(0, 119, 182, 0.9), rgba(0, 119, 182, 0.9)), url('https://via.placeholder.com/1920x1080') center/cover fixed;
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-buttons {
  margin-top: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  margin: 0.5rem;
  transition: all 0.3s ease;
}

.cta-button.primary {
  background-color: white;
  color: #0077b6;
}

.cta-button.secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  background-color: #2c3e50;
  color: white;
  padding: 4rem 2rem 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h3 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-section p {
  margin: 0.5rem 0;
}

.footer-section i {
  margin-right: 0.5rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul a {
  color: white;
    text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul a:hover {
  color: #0077b6;
}

.social-links a {
    color: white;
  font-size: 1.5rem;
  margin-right: 1rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #0077b6;
  }
  
.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
/* Responsive Design */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
    display: flex;
  }
}

@media (max-width: 480px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 300px;
    margin: 0.5rem 0;
  }
  }
  