@keyframes slideIn {
  from {
    width: 0;
    left: 50%;
  }
  to {
    width: 100%;
    left: 0;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
img[src*=".webp"] {
  aspect-ratio: attr(width) / attr(height);
}
img[src*=".png"] {
  aspect-ratio: attr(width) / attr(height);
}
img[src*=".jpg"] {
  aspect-ratio: attr(width) / attr(height);
}
img[src*=".jpeg"] {
  aspect-ratio: attr(width) / attr(height);
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}
.hero-image {
  transition: opacity 0.2s ease;
  aspect-ratio: attr(width) / attr(height);
  contain: layout style paint;
  will-change: opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
  fetchpriority: high;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center 30%;
  min-height: 100% !important;
  min-width: 100% !important;
  display: block;
  aspect-ratio: 16/9;
  flex-shrink: 0;
}
.carousel-image {
  transition: opacity 0.2s ease;
  aspect-ratio: attr(width) / attr(height);
  contain: layout style paint;
  will-change: opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
  fetchpriority: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-width: 100%;
  min-height: 100%;
  flex-shrink: 0;
}
.logo-image {
  transition: opacity 0.2s ease;
  aspect-ratio: attr(width) / attr(height);
  contain: layout style paint;
  will-change: opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
  fetchpriority: high;
}
img.loaded {
  opacity: 1;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
  box-sizing: border-box;
}
.header {
  background: #E3F2FD !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.nav {
  padding: 0.5rem 0;
  height: 70px;
  display: flex;
  align-items: center;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0 25px;
  gap: 0;
}
.nav-logo {
  flex-shrink: 0;
  width: 220px;
  height: 50px;
  display: flex;
  align-items: center;
  margin-left: 0;
}
.nav-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.nav-logo a:hover {
  opacity: 0.8;
}
.nav-logo .logo-image {
  width: 220px !important;
  max-width: 220px !important;
  height: 50px !important;
  object-fit: contain;
  margin-right: 0;
  min-width: 220px !important;
  min-height: 50px !important;
  display: block;
  flex-shrink: 0;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 1rem;
}
.nav-link {
  display: block;
  text-align: center;
  min-width: 80px;
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}
.nav-link:hover {
  color: #31aae1;
}
.nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #31aae1;
  animation: slideIn 0.3s ease forwards;
}
.nav-link.active {
  color: #31aae1;
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #31aae1;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1200;
  background: transparent;
  border: none;
  box-shadow: none;
  position: relative;
}
.bar {
  display: block;
  width: 28px;
  height: 4px;
  background: #007dc3;
  margin: 2px 0;
  border-radius: 2px;
  transition: 0.3s;
}
.hero {
  position: relative;
  color: white;
  padding: 160px 0 80px;
  text-align: center;
  overflow: hidden;
  min-height: 600px;
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 2;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 3;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 300;
}
.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  margin-top: 20px;
}
.btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn-primary {
  background: #007dc3;
  color: white;
}
.btn-primary:hover {
  background: #005a8b;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 125, 195, 0.3);
}
.btn-secondary {
  background: #007dc3;
  color: #fff;
  border: 2px solid #007dc3;
}
.btn-secondary:hover {
  background: #fff;
  color: #007dc3;
  border: 2px solid #007dc3;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 125, 195, 0.3);
}
.section-header {
  text-align: center;
  margin-bottom: 0;
}
.section-header h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 0;
}
.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}
.about-summary {
  padding: 40px 0 0px 0;
  margin-bottom: -35px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4fd 50%, #f0f8ff 100%);
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  margin-top: 0;
  padding: 120px 0 80px 0;
}
.about-text-section {
  order: 1;
  max-width: 700px;
  text-align: center;
}
.about-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  text-align: center;
  margin: 0;
  margin-top: -55px;
  margin-bottom: 25px;
}
.about-text h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 3rem;
}
.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}
.about-carousel-section {
  order: 2;
  display: flex;
  justify-content: center;
  width: 100%;
}
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin-bottom: -50px;
}
.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}
.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide.active {
  opacity: 1;
}
.carousel-slide.active .carousel-caption {
  transform: translateY(0);
}
.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}
.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 1.5rem 1.5rem 1rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
  z-index: 2;
}
.carousel-caption h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}
.carousel-caption p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
  color: white;
}
.carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
  z-index: 10;
}
.carousel-btn {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  z-index: 11;
}
.carousel-btn:hover {
  background: white;
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.carousel-btn i {
  color: #007dc3;
  font-size: 1.1rem;
  font-weight: bold;
}
.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  gap: 0.5rem;
  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;
  border: 2px solid transparent;
}
.dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}
.dot.active {
  background: white;
  transform: scale(1.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.services-grid {
  padding: 40px 0;
  margin-top: 30px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 320px;
  background: white;
  padding: 1.2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 125, 195, 0.2);
}
.service-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 0.1rem;
  font-weight: 600;
  margin-top: 0.5rem;
}
.service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: center;
  flex-grow: 0;
  margin-top: 0.8rem;
}
.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #007dc3, #005a8b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.1rem;
}
.service-icon i {
  font-size: 2rem;
  color: white;
}
.service-btn {
  display: block;
  margin: 0.1rem auto 0 auto;
  min-width: 140px;
  max-width: 90%;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1.5rem;
}
.cta-section {
  background: linear-gradient(135deg, #007dc3 0%, #005a8b 100%);
  color: white;
  padding: 50px 0;
  text-align: center;
}
.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.cta-content h2 i {
  font-size: 2.2rem;
  color: #ffd700;
}
.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.cta-price {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0rem;
  margin-top: 0.8rem;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #22c55e;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  border: 2px solid #22c55e;
  transition: all 0.3s ease;
  cursor: pointer;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}
.cta-price i {
  font-size: 1.6rem;
  color: inherit;
  transition: color 0.3s ease;
}
.why-choose-us {
  padding: 80px 0;
  background: #f8f9fa;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}
.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #f0f0f0;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 125, 195, 0.15);
  border-color: #007dc3;
}
.feature-card:hover .feature-icon {
  background: #005a8b;
  transform: scale(1.1);
}
.feature-card:hover h3 {
  color: #007dc3;
}
.feature-card:hover p {
  color: #555;
}
.feature-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: 600;
  transition: color 0.3s ease;
}
.feature-card p {
  color: #666;
  line-height: 1.6;
  transition: color 0.3s ease;
}
.feature-icon {
  width: 60px;
  height: 60px;
  background: #007dc3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}
.feature-icon i {
  font-size: 1.5rem;
  color: white;
}
.vision-mission {
  padding: 40px 0;
  display: flex;
  align-items: center;
  min-height: 400px;
  overflow: hidden;
  max-width: 100%;
}
.vm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  overflow: hidden;
}
.vm-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #007dc3;
  margin: 3rem 0;
}
.vm-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 0.8rem;
  font-weight: 600;
}
.vm-card h3 i {
  color: #007dc3;
  margin-right: 0.5rem;
}
.vm-card p {
  color: #666;
  line-height: 1.7;
  font-size: 1.1rem;
}
.contact-preview {
  padding: 30px 0;
  background: #f8f9fa;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}
.contact-info-grid a {
  text-decoration: none !important;
}
.contact-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}
.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 125, 195, 0.2);
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.contact-item:hover i {
  color: #005a8b;
  transform: scale(1.1);
}
.contact-item i {
  font-size: 2rem;
  color: #007dc3;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
.contact-item h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.contact-item p {
  color: #666;
  font-weight: 500;
}
.footer {
  background: #333;
  color: white;
  padding: 60px 0 20px;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-section h3 {
  color: #007dc3;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}
.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}
.footer-section p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #007dc3;
}
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #007dc3;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.3s ease;
}
.social-link:hover {
  background: #005a8b;
}
.contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: #ccc;
}
.contact-info i {
  margin-right: 0.5rem;
  color: #007dc3;
  width: 20px;
  flex-shrink: 0;
  margin-top: 0px;
}
.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 2rem;
  text-align: center;
  color: #ccc;
}
.page-header {
  background: linear-gradient(135deg, #007dc3 0%, #005a8b 100%);
  color: white;
  padding: 120px 0 60px;
  text-align: center;
}
.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-image {
  text-align: center;
}
.image-placeholder {
  background: #f8f9fa;
  border: 2px dashed #007dc3;
  border-radius: 10px;
  padding: 3rem 2rem;
  color: #007dc3;
}
.image-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
}
.image-placeholder p {
  font-size: 1.1rem;
  font-weight: 600;
}
.mission-vision-detailed {
  padding: 30px 0;
  background: #ffffff;
  overflow: hidden;
  max-width: 100%;
}
.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin: 2rem 0;
  max-width: 100%;
  overflow: hidden;
}
.mv-card {
  margin: 30px 15px;
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 125, 195, 0.2);
}
.mv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #007dc3, #005a8b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.mv-icon i {
  font-size: 2rem;
  color: white;
}
.objectives {
  padding: 80px 0;
  background: #f8f9fa;
}
.objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}
.objective-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  border-left: 5px solid #007dc3;
}
.objective-item h4 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}
.objective-item p {
  color: #666;
  line-height: 1.6;
}
.objective-number {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #007dc3;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}
.team-section {
  padding: 80px 0;
  background: #ffffff;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}
.team-member {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 125, 195, 0.2);
}
.team-member h4 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}
.team-member p {
  color: #666;
  line-height: 1.6;
}
.member-photo {
  width: 100px;
  height: 100px;
  background: #007dc3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.member-photo i {
  font-size: 2.5rem;
  color: white;
}
.services-detailed {
  padding: 80px 0;
}
.services-grid-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}
.service-card-detailed {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.service-card-detailed:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 125, 195, 0.2);
}
.service-card-detailed h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}
.service-card-detailed p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.service-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #007dc3, #005a8b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.service-icon-large i {
  font-size: 2rem;
  color: white;
}
.service-features {
  list-style: none;
  margin-bottom: 2rem;
}
.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: #555;
}
.service-features i {
  color: #007dc3;
  margin-right: 0.5rem;
  font-size: 0.9rem;
}
.service-price {
  background: #007dc3;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  text-align: center;
  margin-top: auto;
}
.service-price a {
  color: white;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.service-price:hover {
  background: #005a8b;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 125, 195, 0.3);
}
.contact-section {
  padding: 80px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}
.contact-form-container h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 2rem;
  font-weight: 700;
}
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 600;
}
.form-group input {
  width: 100%;
  padding: 12px;
  border: 2px solid #e1e5e9;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.form-group input:focus {
  outline: none;
  border-color: #007dc3;
}
.form-group select {
  width: 100%;
  padding: 12px;
  border: 2px solid #e1e5e9;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.form-group select:focus {
  outline: none;
  border-color: #007dc3;
}
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e1e5e9;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.form-group textarea:focus {
  outline: none;
  border-color: #007dc3;
}
.form-error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  min-height: 1.25rem;
  display: none;
}
.form-group.error input {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.form-group.error select {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.form-group.error textarea {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.form-group.error .form-error {
  display: block;
}
.form-success {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-top: 2rem;
  border-left: 4px solid #28a745;
}
.form-success h3 {
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.form-success p {
  color: #666;
  margin: 0;
}
.form-error-message {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-top: 2rem;
  border-left: 4px solid #dc3545;
}
.form-error-message h3 {
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.form-error-message p {
  color: #666;
  margin: 0;
}
.success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #28a745;
}
.error-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #dc3545;
}
.btn-loading {
  display: none;
}
.btn.loading {
  pointer-events: none;
  opacity: 0.8;
}
.btn.loading .btn-text {
  display: none;
}
.btn.loading .btn-loading {
  display: inline-block;
}
.contact-method {
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  min-height: 80px;
}
.contact-method:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}
.contact-method:hover .clickable {
  color: #0056b3;
}
.contact-method[data-action="phone"]:hover .contact-icon {
  background: #0056b3;
  transform: scale(1.1);
}
.contact-method[data-action="whatsapp"]:hover .contact-icon {
  background: #0056b3;
  transform: scale(1.1);
}
.contact-method[data-action="email"]:hover .contact-icon {
  background: #0056b3;
  transform: scale(1.1);
}
.contact-method[data-action="facebook"]:hover .contact-icon {
  background: #0056b3;
  transform: scale(1.1);
}
.contact-method[data-action="location"]:hover .contact-icon {
  background: #0056b3;
  transform: scale(1.1);
}
.clickable {
  color: #007dc3;
  font-weight: 600;
  transition: color 0.3s ease;
}
.map-container {
  max-width: 800px;
  margin: 0 auto;
}
.map-container iframe {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.map-container iframe:hover {
  transform: scale(1.02);
}
.contact-info-container h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 700;
}
.contact-info-container p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.contact-methods {
  margin-bottom: 2rem;
}
.contact-icon {
  width: 50px;
  height: 50px;
  background: #007dc3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
  align-self: flex-start;
}
.contact-icon i {
  font-size: 1.2rem;
  color: white;
}
.contact-details h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.1rem;
  font-weight: 600;
}
.contact-details p {
  color: #007dc3;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.contact-details small {
  color: #666;
  font-size: 0.9rem;
}
.business-hours {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}
.business-hours h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}
.business-hours h4 i {
  color: #007dc3;
  margin-right: 0.5rem;
}
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.hours-item:last-child {
  border-bottom: none;
}
.hours-item span:first-child {
  color: #333;
  font-weight: 500;
}
.hours-item span:last-child {
  color: #666;
}
.map-section {
  padding: 80px 0;
  background: #f8f9fa;
}
.map-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 2rem;
  font-weight: 700;
}
.map-placeholder {
  background: white;
  border: 2px dashed #007dc3;
  border-radius: 10px;
  padding: 4rem 2rem;
  text-align: center;
  color: #007dc3;
}
.map-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
}
.map-placeholder h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.map-placeholder p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.package-specifications {
  margin: 2rem 0;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  background: #f7fafc;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  padding: 1.5rem 2rem;
  border: 1px solid #e3e8ee;
}
.spec-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.1rem;
  padding: 0.7rem 0.5rem;
  border-radius: 8px;
  transition: background 0.2s;
}
.spec-item:last-child {
  margin-bottom: 0;
}
.spec-item:hover {
  background: #e6f7ec;
}
.spec-item i {
  color: #22bb55;
  font-size: 1.3rem;
  margin-right: 1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 2px rgba(34, 187, 85, 0.08));
}
.spec-item span {
  color: #222;
  font-size: 1.08rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.package-highlight {
  display: inline-block;
  width: auto;
  max-width: 100%;
  font-size: 1.13rem;
  font-weight: 600;
  color: #1769aa;
  background: linear-gradient(90deg, #e3f2fd 60%, #f7fafc 100%);
  border-left: 4px solid #007dc3;
  padding: 0.85rem 1.2rem;
  margin: 1.2rem 0 1.7rem 0;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 123, 195, 0.04);
  letter-spacing: 0.01em;
}
.services-overview {
  padding: 80px 0;
  background: #f8f9fa;
}
.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.service-overview-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.service-overview-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 125, 195, 0.2);
}
.service-overview-item h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}
.service-overview-item p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}
.service-overview-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #007dc3, #005a8b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.service-overview-icon i {
  font-size: 1.8rem;
  color: white;
}
.why-choose-detailed {
  padding: 80px 0 0 0;
  background: #f8f9fa;
}
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}
.why-choose-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border-left: 4px solid #007dc3;
}
.why-choose-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 125, 195, 0.2);
}
.why-choose-item h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}
.why-choose-item p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}
.why-choose-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #007dc3, #005a8b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.why-choose-icon i {
  font-size: 1.8rem;
  color: white;
}
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  transition: all 0.3s ease;
}
.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
}
.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}
.whatsapp-float i {
  font-size: 28px;
}
@media (max-width: 768px) {
  .nav-toggle {
    display: flex !important;
    display: block;
  }
  .service-btn {
    margin: 1.2rem auto 0 auto;
    font-size: 0.97rem;
    min-width: 120px;
  }
  .package-highlight {
    display: block;
    font-size: 1.01rem;
    padding: 0.7rem 0.7rem;
    margin: 1rem 0 1.2rem 0;
  }
  .nav-logo {
    margin-left: 0;
    width: 180px;
  }
  .nav-logo .logo-image {
    width: 180px !important;
    max-width: 180px !important;
    min-width: 180px !important;
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .hero {
    padding: 120px 0 60px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-image {
    height: 300px;
  }
  .section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
  }
  .section-header p {
    font-size: 0.9rem;
  }
  .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    gap: 1rem;
  }
  .service-card {
    padding: 1.5rem;
    min-height: 320px;
    margin-bottom: 2.5rem;
    padding: 1rem;
    min-height: 250px;
  }
  .service-card h3 {
    font-size: 1.3rem;
    margin-top: 0.3rem;
    font-size: 1.2rem;
  }
  .service-card p {
    font-size: 0.95rem;
    margin-top: 0.6rem;
    font-size: 0.9rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .vm-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    overflow: hidden;
    gap: 1rem;
  }
  .mv-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    overflow: hidden;
    gap: 1rem;
  }
  .mv-card {
    padding: 2rem;
    margin: 0 10px 2.5rem 10px;
    max-width: calc(100% - 20px);
    overflow: hidden;
    word-wrap: break-word;
    hyphens: auto;
  }
  .mv-card h3 {
    font-size: 1.4rem;
    word-wrap: break-word;
  }
  .mv-card p {
    font-size: 1rem;
    line-height: 1.6;
    word-wrap: break-word;
    hyphens: auto;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .services-grid-detailed {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .contact-section {
    padding: 60px 0;
  }
  .contact-form-container {
    margin-bottom: 2rem;
  }
  .contact-info-container {
    margin-bottom: 2rem;
  }
  .contact-methods {
    gap: 1rem;
  }
  .contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .contact-details h4 {
    margin-bottom: 0.05rem;
  }
  .contact-details p {
    margin-bottom: 0.2rem;
  }
  .contact-details small {
    opacity: 0.8;
  }
  .feature-card {
    margin-bottom: 2.5rem;
  }
  .feature-card h3 {
    font-size: 1.2rem;
  }
  .feature-card p {
    font-size: 0.9rem;
  }
  .vm-card {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    margin: 0 10px;
    max-width: calc(100% - 20px);
    overflow: hidden;
    word-wrap: break-word;
    hyphens: auto;
  }
  .vm-card h3 {
    font-size: 1.3rem;
    word-wrap: break-word;
    font-size: 1.2rem;
  }
  .vm-card p {
    font-size: 1rem;
    line-height: 1.6;
    word-wrap: break-word;
    hyphens: auto;
    font-size: 0.9rem;
  }
  .cta-section {
    padding: 40px 0;
  }
  .cta-content h2 {
    font-size: 1.5rem;
  }
  .cta-content h2 i {
    font-size: 1.2rem;
  }
  .cta-price {
    font-size: 1.8rem;
  }
  .cta-price i {
    font-size: 1.2rem;
  }
  .footer {
    padding: 30px 0 15px;
  }
  .footer-content {
    gap: 1.5rem;
  }
  .page-header {
    padding: 80px 0 30px;
  }
  .page-header h1 {
    font-size: 1.8rem;
  }
  .page-header p {
    font-size: 1rem;
  }
  .btn {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
  .contact-method {
    align-items: center;
    padding: 0.8rem;
    flex-direction: row;
  }
  .contact-icon {
    margin-right: 0.6rem;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }
  .contact-icon i {
    font-size: 1rem;
  }
  .service-icon {
    width: 50px;
    height: 50px;
  }
  .service-icon i {
    font-size: 1.2rem;
  }
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  .feature-icon i {
    font-size: 1.2rem;
  }
  .objectives-grid {
    gap: 1rem;
  }
  .team-grid {
    gap: 1rem;
  }
  .contact-item h4 {
    font-size: 1.1rem;
  }
  .contact-item p {
    font-size: 0.9rem;
  }
  .services-overview-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .service-overview-item {
    padding: 1.5rem;
  }
  .service-overview-item h3 {
    font-size: 1.2rem;
  }
  .service-overview-item p {
    font-size: 0.9rem;
  }
  .why-choose-item {
    padding: 1.5rem;
  }
  .why-choose-item h3 {
    font-size: 1.2rem;
  }
  .why-choose-item p {
    font-size: 0.9rem;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float a {
    width: 55px;
    height: 55px;
  }
  .whatsapp-float i {
    font-size: 24px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
  .about-summary {
    padding: 25px 0 0px 0;
    margin-bottom: -25px;
    padding: 60px 0;
  }
  .about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 100px 0 60px 0;
    padding: 60px 0;
  }
  .about-text-section {
    order: 1;
  }
  .about-carousel-section {
    order: 2;
    margin-top: 0;
    margin-bottom: 0;
  }
  .about-text {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 2rem;
  }
  .carousel-wrapper {
    height: 280px;
  }
  .carousel-caption {
    padding: 1.2rem 1.5rem 1rem;
  }
  .carousel-caption h3 {
    font-size: 1.15rem;
  }
  .carousel-caption p {
    font-size: 0.85rem;
  }
  .section-header h2 {
    font-size: 2.2rem;
  }
  .nav-logo {
    margin-left: 0 !important;
    width: 200px;
  }
  .nav-logo .logo-image {
    width: 200px !important;
    max-width: 200px !important;
    min-width: 200px !important;
    height: 48px !important;
    min-height: 48px !important;
  }
  .nav-menu {
    margin-right: 100px;
    gap: 2rem;
  }
  .hero {
    padding: 140px 0 70px;
    min-height: 550px;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 1.3rem;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .service-card {
    padding: 1.5rem;
    min-height: 290px;
  }
  .service-card h3 {
    font-size: 1.4rem;
    margin-top: 0.4rem;
  }
  .service-card p {
    font-size: 1rem;
    margin-top: 0.7rem;
  }
  .service-btn {
    margin: 1.3rem auto 0 auto;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .vm-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .contact-info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .services-grid {
    padding: 60px 0;
  }
  .why-choose-us {
    padding: 60px 0;
  }
  .vision-mission {
    padding: 60px 0;
  }
  .contact-preview {
    padding: 60px 0;
  }
  .mission-vision-detailed {
    padding: 60px 0;
  }
  .objectives {
    padding: 60px 0;
  }
  .team-section {
    padding: 60px 0;
  }
  .services-detailed {
    padding: 60px 0;
  }
  .contact-section {
    padding: 60px 0;
  }
  .map-section {
    padding: 60px 0;
  }
  .cta-section {
    padding: 60px 0;
  }
  .cta-content h2 {
    font-size: 2.2rem;
  }
  .cta-price {
    font-size: 1.6rem;
  }
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .contact-grid {
    gap: 3rem;
  }
  .contact-form {
    padding: 2rem;
  }
  .contact-form-container h2 {
    font-size: 1.8rem;
  }
  .contact-info-container h2 {
    font-size: 1.8rem;
  }
  .contact-method {
    padding: 1.2rem;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
  }
  .contact-icon {
    width: 50px;
    height: 50px;
    margin-right: 1rem;
  }
  .contact-icon i {
    font-size: 1.2rem;
  }
  .contact-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.05rem;
  }
  .contact-details p {
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }
  .contact-details small {
    font-size: 0.9rem;
  }
  .map-container iframe {
    height: 400px;
  }
  .services-overview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .whatsapp-float {
    bottom: 25px;
    right: 25px;
  }
  .whatsapp-float a {
    width: 58px;
    height: 58px;
  }
  .whatsapp-float i {
    font-size: 26px;
  }
}
@media (min-width: 1025px) and (max-width: 1280px) and (orientation: portrait) {
  .container {
    padding: 0 20px;
  }
  .nav-container {
    padding: 0 15px;
    justify-content: space-between;
    max-width: 100%;
    width: 100%;
  }
  .nav-logo {
    margin-left: 0;
    width: 180px;
    flex-shrink: 0;
  }
  .nav-logo .logo-image {
    width: 180px !important;
    max-width: 180px !important;
    min-width: 180px !important;
    height: 45px !important;
    min-height: 45px !important;
  }
  .nav-menu {
    margin-right: 0;
    gap: 0.8rem;
    display: flex;
    list-style: none;
    align-items: center;
    flex-shrink: 0;
    justify-content: flex-end;
  }
  .nav-link {
    font-size: 0.8rem;
    padding: 5px 8px;
    white-space: nowrap;
    text-decoration: none;
    color: #333333;
    transition: color 0.3s ease;
    flex-shrink: 0;
  }
  .nav-link:hover {
    color: #31aae1;
  }
  .nav-link.active {
    color: #31aae1;
  }
  .nav-toggle {
    display: none;
  }
  .hero {
    padding: 120px 0 60px;
    min-height: 500px;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .vm-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .about-summary {
    padding: 20px 0 0px 0;
    margin-bottom: -30px;
  }
  .about-content {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
  }
  .about-text-section {
    order: 1;
  }
  .about-carousel-section {
    order: 2;
    margin-top: 0;
    margin-bottom: 0;
  }
  .about-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 2.5rem;
  }
  .carousel-wrapper {
    height: 300px;
  }
  .carousel-caption {
    padding: 1.3rem 1.5rem 1rem;
  }
  .carousel-caption h3 {
    font-size: 1.2rem;
  }
  .carousel-caption p {
    font-size: 0.9rem;
  }
  .section-header h2 {
    font-size: 2.3rem;
  }
}
@media (min-width: 1100px) and (max-width: 1200px) and (orientation: portrait) {
  .nav-container {
    padding: 0 10px;
    justify-content: space-between;
    max-width: 100%;
    width: 100%;
  }
  .nav-logo {
    margin-left: 0;
    width: 160px;
    flex-shrink: 0;
  }
  .nav-logo .logo-image {
    width: 160px !important;
    max-width: 160px !important;
    min-width: 160px !important;
    height: 40px !important;
    min-height: 40px !important;
  }
  .nav-menu {
    margin-right: 0;
    gap: 0.6rem;
    display: flex;
    list-style: none;
    align-items: center;
    flex-shrink: 0;
    justify-content: flex-end;
  }
  .nav-link {
    font-size: 0.75rem;
    padding: 3px 6px;
    white-space: nowrap;
    font-weight: 500;
    text-decoration: none;
    color: #333333;
    transition: color 0.3s ease;
    flex-shrink: 0;
  }
  .nav-link:hover {
    color: #31aae1;
  }
  .nav-link.active {
    color: #31aae1;
  }
  .nav-toggle {
    display: none;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (orientation: portrait) {
  .nav-container {
    padding: 0 15px;
    justify-content: space-between;
    max-width: 100%;
    width: 100%;
  }
  .nav-logo {
    margin-left: 0;
    width: 170px;
    flex-shrink: 0;
  }
  .nav-logo .logo-image {
    width: 170px !important;
    max-width: 170px !important;
    min-width: 170px !important;
    height: 42px !important;
    min-height: 42px !important;
  }
  .nav-menu {
    margin-right: 0;
    gap: 0.7rem;
    display: flex;
    list-style: none;
    align-items: center;
    flex-shrink: 0;
    justify-content: flex-end;
  }
  .nav-link {
    font-size: 0.8rem;
    padding: 4px 7px;
    white-space: nowrap;
    font-weight: 500;
    text-decoration: none;
    color: #333333;
    transition: color 0.3s ease;
    flex-shrink: 0;
  }
  .nav-link:hover {
    color: #31aae1;
  }
  .nav-link.active {
    color: #31aae1;
  }
  .nav-toggle {
    display: none;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3rem;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3rem;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (aspect-ratio: 16/10) {
  .container {
    padding: 0 25px;
  }
  .nav-logo {
    margin-left: 30px;
    width: 180px;
  }
  .nav-logo .logo-image {
    width: 180px !important;
    max-width: 180px !important;
    min-width: 180px !important;
    height: 45px !important;
    min-height: 45px !important;
  }
  .nav-menu {
    margin-right: 30px;
    gap: 1.5rem;
  }
  .hero {
    padding: 100px 0 50px;
    min-height: 450px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .vm-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .contact-info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .btn {
    padding: 12px 30px;
    font-size: 1rem;
    min-height: 44px;
  }
  .nav-link {
    padding: 8px 12px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1281px) and (max-width: 1600px) and (aspect-ratio: 16/10) {
  .container {
    padding: 0 30px;
  }
  .nav-logo {
    margin-left: 40px;
    width: 200px;
  }
  .nav-logo .logo-image {
    width: 200px !important;
    max-width: 200px !important;
    min-width: 200px !important;
    height: 50px !important;
    min-height: 50px !important;
  }
  .nav-menu {
    margin-right: 40px;
    gap: 2rem;
  }
  .hero {
    padding: 120px 0 60px;
    min-height: 500px;
  }
  .hero-title {
    font-size: 3rem;
  }
  .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .vm-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .contact-info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1601px) and (max-width: 2000px) and (aspect-ratio: 16/10) {
  .container {
    max-width: 1400px;
    padding: 0 40px;
  }
  .nav-logo {
    margin-left: 60px;
    width: 220px;
  }
  .nav-logo .logo-image {
    width: 220px !important;
    max-width: 220px !important;
    min-width: 220px !important;
    height: 55px !important;
    min-height: 55px !important;
  }
  .nav-menu {
    margin-right: 60px;
    gap: 2.5rem;
  }
  .hero {
    padding: 140px 0 80px;
    min-height: 600px;
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
  .vm-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .contact-info-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
    overflow: hidden;
    box-sizing: border-box;
  }
  .nav-logo {
    width: 150px;
    margin-left: -40px;
  }
  .nav-logo .logo-image {
    width: 150px !important;
    max-width: 150px !important;
    min-width: 150px !important;
    height: 40px !important;
    min-height: 40px !important;
  }
  .nav {
    height: 60px;
  }
  .nav-toggle {
    margin-right: -10px;
  }
  .nav-menu {
    top: 60px;
    padding: 1.5rem 0;
  }
  .hero {
    padding: 100px 0 60px;
    min-height: 400px;
  }
  .hero-title {
    font-size: 2rem;
    margin-bottom: 0.6rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }
  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
  }
  .section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
  }
  .section-header p {
    font-size: 0.9rem;
  }
  .service-card {
    padding: 0.8rem;
  }
  .service-card h3 {
    font-size: 1.2rem;
  }
  .service-card p {
    font-size: 0.9rem;
  }
  .service-card-detailed {
    padding: 0.8rem;
  }
  .feature-card {
    padding: 0.8rem;
  }
  .feature-card h3 {
    font-size: 1.2rem;
  }
  .feature-card p {
    font-size: 0.9rem;
  }
  .contact-item {
    padding: 0.8rem;
  }
  .contact-item h4 {
    font-size: 1.1rem;
  }
  .contact-item p {
    font-size: 0.9rem;
  }
  .vm-card {
    padding: 1rem;
    margin: 0 5px 2rem 5px;
    max-width: calc(100% - 10px);
    overflow: hidden;
    word-wrap: break-word;
    hyphens: auto;
  }
  .vm-card h3 {
    font-size: 1.2rem;
  }
  .vm-card p {
    font-size: 0.9rem;
  }
  .mv-card {
    padding: 1.5rem;
    margin: 0 5px 2rem 5px;
    max-width: calc(100% - 10px);
    overflow: hidden;
    word-wrap: break-word;
    hyphens: auto;
  }
  .cta-section {
    padding: 30px 0;
  }
  .cta-content h2 {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 0.2rem;
  }
  .cta-content h2 i {
    font-size: 1.6rem;
  }
  .cta-content p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .cta-price {
    font-size: 1.3rem;
    padding: 0.4rem 0.6rem;
  }
  .cta-price i {
    font-size: 1.1rem;
  }
  .about-summary {
    padding: 30px 0;
  }
  .services-grid {
    padding: 30px 0;
  }
  .why-choose-us {
    padding: 30px 0;
  }
  .vision-mission {
    padding: 30px 0;
  }
  .contact-preview {
    padding: 30px 0;
  }
  .about-content {
    padding: 30px 0;
  }
  .mission-vision-detailed {
    padding: 30px 0;
  }
  .objectives {
    padding: 30px 0;
  }
  .team-section {
    padding: 30px 0;
  }
  .services-detailed {
    padding: 30px 0;
  }
  .contact-section {
    padding: 30px 0;
  }
  .map-section {
    padding: 30px 0;
  }
  .footer {
    padding: 30px 0 15px;
  }
  .footer-content {
    gap: 1.5rem;
  }
  .page-header {
    padding: 80px 0 30px;
  }
  .page-header h1 {
    font-size: 1.8rem;
  }
  .page-header p {
    font-size: 1rem;
  }
  .btn {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
  .contact-method {
    align-items: center;
    padding: 0.8rem;
    flex-direction: row;
  }
  .contact-icon {
    margin-right: 0.6rem;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }
  .contact-icon i {
    font-size: 1rem;
  }
  .service-icon {
    width: 50px;
    height: 50px;
  }
  .service-icon i {
    font-size: 1.2rem;
  }
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  .feature-icon i {
    font-size: 1.2rem;
  }
  .grid {
    gap: 1rem;
  }
  .features-grid {
    gap: 1rem;
    margin-bottom: 0;
  }
  .vm-grid {
    gap: 1rem;
  }
  .contact-info-grid {
    gap: 1rem;
  }
  .objectives-grid {
    gap: 1rem;
  }
  .team-grid {
    gap: 1rem;
  }
  .mv-grid {
    gap: 1rem;
  }
}
/*# sourceMappingURL=main.css.map */