body {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #222;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.top-bar {
  background-color: #2c3e8f;
  color: #fff;
  padding: 8px 0;
  font-size: 0.9rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
  margin-right: 20px;
}

.contact-info a:last-child {
  margin-right: 0;
}

.contact-info i {
  margin-right: 5px;
}

.social-links a {
  color: #fff;
  margin-left: 15px;
  text-decoration: none;
}

header {
  background: #fff;
  color: #333;
  position: sticky;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.logo-text {
  color: #2c3e8f;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.plus {
  color: #4ad991;
  font-weight: 700;
}

.logo-tagline {
  color: #666;
  font-size: 0.8rem;
  font-weight: 400;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s;
  padding: 0.5rem 0;
  display: block;
  font-size: 0.95rem;
}

.btn-contact {
  background-color: #4a9bd9;
  color: white !important;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-contact:hover {
  background-color: #2c3e8f;
  color: white !important;
}

nav ul li a:hover {
  color: #4a9bd9;
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 1000;
  border-radius: 4px;
  padding: 0.5rem 0;
  top: 100%;
  left: 0;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: #333;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  font-size: 0.9rem;
  transition: background-color 0.2s ease;
}

.dropdown-content a:hover {
  background-color: #f5f5f5;
  color: #4a9bd9;
}

.contact-button {
  margin-left: 20px;
}

.btn-contact {
  background-color: #4a9bd9;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-contact:hover {
  background-color: #2c3e8f;
  transform: translateY(-2px);
}
.hero {
  padding: 3rem 20px 2rem 20px;
  background: linear-gradient(135deg, #eaf6ff 0%, #f5faff 100%);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/pattern-bg.png');
  background-size: cover;
  opacity: 0.05;
  z-index: 0;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 3rem;
}

.hero-text {
  flex: 1;
  text-align: left;
  padding-right: 20px;
}

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

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-badge {
  position: absolute;
  bottom: -15px;
  left: 20px;
  background: #fff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.badge-icon {
  width: 50px;
  height: 50px;
}

.stats-bar {
  background-color: #eaf6ff;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.stats-bar .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 15px 20px;
  box-sizing: border-box;
}

.stats-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.stats-icon {
  color: #2c3e8f;
  font-size: 1.2rem;
}

.stats-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
}

.hero img:hover {
  transform: translateY(-5px);
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2c3e8f;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

.cta-button {
  display: inline-block;
  background: #4a9bd9;
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(74, 155, 217, 0.3);
  position: relative;
  z-index: 1;
}

.cta-button i {
  margin-left: 8px;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
  z-index: -1;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: #38c17e;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(74, 217, 145, 0.4);
}

.intro-text {
  text-align: center;
  padding: 3rem 20px;
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
}

.intro-text h2 {
  color: #0b3d91;
  margin-bottom: 1.5rem;
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.7;
}
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 20px;
  background: #f9fbfd;
  box-sizing: border-box;
  width: 100%;
}

.features h2 {
  width: 100%;
  text-align: center;
  color: #0b3d91;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.feature {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(11,61,145,0.08);
  padding: 1.5rem;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #4ad991;
  transition: width 0.3s ease;
}

.feature:hover::after {
  width: 100%;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(11,61,145,0.12);
}

.feature img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.feature h3 {
  color: #0b3d91;
  margin: 1rem 0;
}

.feature-link {
  display: inline-block;
  color: #4ad991;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  position: relative;
}

.feature-link:after {
  content: '→';
  margin-left: 5px;
  transition: transform 0.2s ease;
}

.feature-link:hover:after {
  transform: translateX(3px);
}
.about, .services, .contact, .service-detail, .blog-post {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(11,61,145,0.04);
}
.about img, .contact img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.service {
  background: #eaf6ff;
  border-radius: 10px;
  padding: 1rem;
  max-width: 250px;
  text-align: center;
}
.service img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}
/* Specialty Section */
.specialty-section {
  padding: 3rem 1rem;
  text-align: center;
  background: #eaf6ff;
}

.specialty-section h2 {
  color: #0b3d91;
  margin-bottom: 1rem;
}

.specialty-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.specialty-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(11,61,145,0.08);
  width: 250px;
  transition: transform 0.3s ease;
}

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

.specialty-item h3 {
  color: #0b3d91;
  margin-bottom: 0.5rem;
}

.specialty-item a {
  display: inline-block;
  color: #4ad991;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
}

/* Blog Preview Section */
.blog-preview {
  padding: 3rem 1rem;
  text-align: center;
}

.blog-preview h2 {
  color: #0b3d91;
  margin-bottom: 2rem;
}

.blog-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.blog-card-small {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(11,61,145,0.08);
  padding: 1.5rem;
  width: 300px;
  text-align: left;
}

.blog-card-small h3 {
  color: #0b3d91;
  margin-bottom: 0.5rem;
}

.blog-card-small a {
  color: #4ad991;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
}

.view-all {
  display: inline-block;
  color: #0b3d91;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #0b3d91;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.view-all:hover {
  background: #0b3d91;
  color: #fff;
}

/* Service and Specialty Detail Pages */
.service-detail {
  padding: 3rem 0;
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}

.service-detail h1 {
  color: #2c3e8f;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  text-align: center;
}

.service-detail img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-content {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-content h2 {
  color: #4a9bd9;
  margin: 1.5rem 0 1rem;
  font-size: 1.8rem;
}

.service-content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #444;
}

.service-content ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.service-content ul li {
  margin-bottom: 0.75rem;
  line-height: 1.5;
  position: relative;
}

.service-content .cta-button {
  display: inline-block;
  background-color: #4a9bd9;
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}

.service-content .cta-button:hover {
  background-color: #2c3e8f;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1000;
  position: relative;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #2c3e8f;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Responsive styles */
@media screen and (max-width: 1200px) {
  .container {
    width: 95%;
  }
  
  .hero-content {
    padding: 2rem 0;
  }
  
  .hero-image img {
    max-width: 90%;
  }
}

@media screen and (max-width: 900px) {
  .main-header .container {
    flex-direction: column;
    padding: 1rem 20px;
  }
  
  .logo {
    margin-bottom: 1rem;
  }
  
  nav ul {
    flex-direction: column;
    width: 100%;
    display: none;
  }
  
  nav ul.active {
    display: flex;
  }
  
  nav ul li {
    margin: 0;
    width: 100%;
    text-align: center;
  }
  
  nav ul li a {
    padding: 1rem;
    display: block;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .dropdown-content {
    position: static;
    display: none;
    box-shadow: none;
    width: 100%;
    padding: 0;
  }
  
  .dropdown.active .dropdown-content {
    display: block;
  }
  
  .dropdown-content a {
    padding: 0.75rem 1rem;
    background-color: #f9f9f9;
  }
  
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    top: 1.5rem;
    right: 1rem;
  }
  
  .hero {
    flex-direction: column;
  }
  
  .hero-content, .hero-image {
    width: 100%;
    text-align: center;
  }
  
  .features-grid, .specialties-grid, .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media screen and (max-width: 600px) {
  .top-bar .container {
    flex-direction: column;
    padding: 0.5rem 0;
  }
  
  .contact-info, .social-links {
    width: 100%;
    text-align: center;
    margin: 0.25rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .service-detail h1 {
    font-size: 1.8rem;
  }
  
  .service-content h2 {
    font-size: 1.5rem;
  }
  
  .cta-section {
    padding: 2rem 1rem;
  }
  
  .cta-section h2 {
    font-size: 1.8rem;
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #4a9bd9;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background-color: #2c3e8f;
  transform: translateY(-3px);
}

/* Blog Styles */
.blog-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.blog-intro {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(11,61,145,0.08);
  overflow: hidden;
}

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

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.read-more {
  display: inline-block;
  color: #4ad991;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
}

/* Blog Post */
.blog-post {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(11,61,145,0.04);
}

.blog-post img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0 2rem;
}

.blog-post h2 {
  color: #0b3d91;
  margin: 2rem 0 1rem;
}

/* Service Detail Page */
.service-detail {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
}

.service-detail img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.service-content h2 {
  color: #0b3d91;
  margin: 2rem 0 1rem;
}

.service-content ul {
  margin-left: 1.5rem;
  margin-bottom: 2rem;
}

.service-content ul li {
  margin-bottom: 0.5rem;
}

.cta-box {
  background: #eaf6ff;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
  text-align: center;
}

.cta-box h3 {
  color: #0b3d91;
  margin-bottom: 1rem;
}

footer {
  background: #0b3d91;
  color: #fff;
  margin-top: 3rem;
  padding: 3rem 0 1rem;
  position: relative;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 2rem;
}

.footer-column h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #4ad991;
}

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

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.9rem;
}

.footer-column ul li a:hover {
  color: #4ad991;
}

.footer-contact p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  color: #ccc;
}

.footer-contact i {
  margin-right: 10px;
  color: #4ad991;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #4ad991;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: #aaa;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 40px;
  margin-right: 10px;
}

.footer-logo-text {
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
}

.footer-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.footer-badge img {
  height: 60px;
  margin: 0 10px;
}
/* Services Page Styles */
.services-hero {
  text-align: center;
  padding: 3rem 1rem;
  background: #eaf6ff;
}

.services-hero h1 {
  color: #0b3d91;
  margin-bottom: 1rem;
}

.services-hero p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 1rem;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(11,61,145,0.08);
  padding: 1.5rem;
  width: 350px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(11,61,145,0.12);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.service-card h2 {
  color: #0b3d91;
  margin-bottom: 1rem;
}

.service-features {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.service-features li {
  margin-bottom: 0.5rem;
}

.service-button {
  display: inline-block;
  background: #4ad991;
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-button:hover {
  background: #38c17e;
  transform: translateY(-2px);
}

.specialty-billing {
  padding: 3rem 1rem;
  background: #eaf6ff;
  text-align: center;
}

.specialty-billing h2 {
  color: #0b3d91;
  margin-bottom: 1rem;
}

.specialty-billing p {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.specialty-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(11,61,145,0.08);
  padding: 1.5rem;
  max-width: 400px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

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

.specialty-card h3 {
  color: #0b3d91;
  margin-bottom: 1rem;
}

.specialty-card a {
  display: inline-block;
  color: #4ad991;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
}

.cta-section {
  text-align: center;
  padding: 4rem 1rem;
  background: #fff;
}

.cta-section h2 {
  color: #0b3d91;
  margin-bottom: 1rem;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* About Page Styles */
.about-hero {
  text-align: center;
  padding: 3rem 1rem;
  background: #eaf6ff;
}

.about-hero h1 {
  color: #0b3d91;
  margin-bottom: 1rem;
}

.about-hero p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  margin: 0 auto 2rem;
}

.about-text {
  flex: 1;
  min-width: 300px;
  padding: 0 1rem;
}

.about-text h2 {
  color: #0b3d91;
  margin: 1.5rem 0 1rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

/* Animation classes */
.pre-animation {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Add animation delay for grid items */
.features-grid .feature:nth-child(1) { transition-delay: 0.1s; }
.features-grid .feature:nth-child(2) { transition-delay: 0.2s; }
.features-grid .feature:nth-child(3) { transition-delay: 0.3s; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-item {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.value-item h3 {
  color: #0b3d91;
  margin-bottom: 0.8rem;
}

/* Contact Page Styles */
.contact-hero {
  text-align: center;
  padding: 3rem 1rem;
  background: #eaf6ff;
}

.contact-hero h1 {
  color: #0b3d91;
  margin-bottom: 1rem;
}

.contact-hero p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.contact-form-container {
  flex: 1;
  min-width: 300px;
}

.contact-form-container h2 {
  color: #0b3d91;
  margin-bottom: 1rem;
}

.contact-form {
  margin-top: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
}

.submit-button {
  background: #4ad991;
  color: #fff;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background: #38c17e;
  transform: translateY(-2px);
}

.form-disclaimer {
  font-size: 0.8rem;
  color: #777;
  margin-top: 1rem;
}

.contact-info-container {
  flex: 1;
  min-width: 300px;
}

.contact-info-container img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.contact-details h2 {
  color: #0b3d91;
  margin-bottom: 1.5rem;
}

.contact-method {
  margin-bottom: 1.5rem;
}

.contact-method h3 {
  color: #0b3d91;
  margin-bottom: 0.5rem;
}

.contact-method p {
  margin: 0.3rem 0;
}

/* Animation Styles */
.pre-animation {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Sticky Header Styles */
header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease-in-out;
}

header.sticky .top-bar {
  display: none;
}

header.sticky .main-header {
  padding: 10px 0;
  background-color: white;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* Scroll to top button */
.scroll-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0b3d91;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-to-top i {
  font-size: 18px;
}

.scroll-to-top.visible {
  display: flex;
  opacity: 0.9;
}

.scroll-to-top:hover {
  opacity: 1;
  background: #4ad991;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Form Validation Styles */
input.error,
textarea.error {
  border-color: #ff4d4d !important;
  box-shadow: 0 0 0 2px rgba(255, 77, 77, 0.2);
}

.form-message {
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 4px;
}

.form-message.success {
  background-color: rgba(74, 217, 145, 0.1);
  border: 1px solid #4ad991;
  color: #2a9d68;
}

.form-message.error {
  background-color: rgba(255, 77, 77, 0.1);
  border: 1px solid #ff4d4d;
  color: #e63939;
}

@media (max-width: 900px) {
  .logo {
    margin-right: 0;
  }
  
  nav {
    width: auto;
    display: flex;
    justify-content: flex-end;
  }
  
  .features, .service-list, .services-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .service-card {
    width: 100%;
    max-width: 400px;
  }
  
  .mobile-menu-toggle {
    display: flex;
    position: relative;
    z-index: 1002;
  }
  
  nav ul {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background-color: #0b3d91;
    padding: 80px 1rem 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
    overflow-y: auto;
  }
  
  nav ul.active {
    display: flex;
    animation: fadeIn 0.3s ease;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  nav ul li {
    margin: 10px 0;
    text-align: center;
  }
  
  .dropdown-content {
    position: static;
    box-shadow: none;
    background-color: rgba(255,255,255,0.1);
    padding: 10px 0;
    margin-top: 10px;
    border-radius: 5px;
    display: none;
  }
  
  .dropdown:hover .dropdown-content {
    display: none;
  }
  
  .dropdown.active .dropdown-content {
    display: block;
  }
  
  .dropdown > a::after {
    content: '+';
    margin-left: 5px;
  }
  
  .dropdown.active > a::after {
    content: '-';
  }
  
  .footer-container {
    flex-direction: column;
    text-align: center;
    padding: 0 1rem;
  }
  
  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .contact-content, .about-content {
    flex-direction: column;
  }
  
  .blog-post img {
    height: 200px;
  }
}
