:root {
  --primary-color: #0066cc;
  --secondary-color: #004d99;
  --accent-color: #ff6600;
  --light-color: #f5f8fd;
  --dark-color: #333333;
  --gray-color: #f0f0f0;
  --text-color: #444444;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --whatsapp-color: #25D366;
  --border-radius: 6px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #ffffff;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0px auto;
  padding: 0px 20px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

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

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.primary-btn {
  background-color: var(--primary-color);
  color: white;
}

.primary-btn:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 102, 204, 0.3);
}

.secondary-btn {
  background-color: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.whatsapp-btn {
  background-color: var(--whatsapp-color);
  color: white;
}

.whatsapp-btn:hover {
  background-color: #1da851;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

header {
  background-color: white;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo h1 {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin: 6px;
}

.tagline {
  font-size: 0.9rem;
  color: rgb(119, 119, 119);
  margin-top: 5px;
}

.contact-info {
  display: flex;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

nav {
  background-color: var(--primary-color);
  padding: 10px 0;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  padding: 80px 0 40px;
  position: relative;
  background-color: var(--light-color);
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero-content h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #666;
}

.hero-image {
  flex: 1 1 0%;
  animation: 3s ease-in-out infinite float;
}

@keyframes float {
  0%,
  100%
}

.hero-cta {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.trusted-brands {
  background-color: white;
  padding: 30px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.trusted-brands p {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #666;
}

.brand-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #555;
  padding: 10px 15px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.brand-logo i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.brand-logo:hover {
  background-color: #f8f8f8;
  transform: translateY(-3px);
}

.services {
  padding: 80px 0;
  background-color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.service-card p {
  margin-bottom: 20px;
  color: #666;
}

.service-image {
  margin: 20px 0;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.service-image img {
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.cta-banner {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0px;
  text-align: center;
}

.cta-banner.dark {
  background-color: var(--dark-color);
}

.cta-banner h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.cta-banner p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-banner .cta-buttons {
  justify-content: center;
  margin-top: 30px;
}

.about {
  padding: 80px 0;
  background-color: var(--light-color);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.feature-list {
  margin-bottom: 25px;
}

.feature-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feature-list i {
  color: var(--success-color);
  font-size: 1.2rem;
  margin-top: 3px;
}

.process {
  padding: 80px 0;
  background-color: white;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #eee;
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
  width: 18%;
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 0 auto 15px;
}

.step-icon {
  width: 80px;
  height: 80px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--box-shadow);
}

.step-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.process-step p {
  font-size: 0.9rem;
  color: #666;
}

.testimonials {
  padding: 80px 0;
  background-color: var(--light-color);
}

.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.testimonial-image {
  flex-shrink: 0;
}

.testimonial-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.testimonial-content {
  flex-grow: 1;
}

.rating {
  margin-bottom: 15px;
}

.rating i {
  color: var(--warning-color);
  font-size: 1rem;
}

.testimonial-content p {
  margin-bottom: 15px;
  color: #666;
  font-style: italic;
}

.testimonial-content h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.testimonial-meta {
  font-size: 0.9rem;
  color: #888;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.testimonial-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-controls button:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.blog {
  padding: 80px 0;
  background-color: white;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid #eee;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 20px;
}

.blog-date {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 10px;
}

.blog-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-color);
  line-height: 1.4;
}

.blog-content p {
  margin-bottom: 15px;
  color: #666;
}

.read-more {
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.read-more i {
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(5px);
}

.view-all-container {
  text-align: center;
  margin-top: 40px;
}

.contact {
  padding: 80px 0;
  background-color: var(--light-color);
}

.contact-content {
  display: flex;
  gap: 40px;
}

.contact-info-block,
.contact-form-block {
  flex: 1 1 0%;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-info-item .icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item .info h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--dark-color);
}

.contact-info-item .info p {
  color: rgb(102, 102, 102);
}

.subtitle {
  font-size: 0.9rem;
  color: #888;
  margin-top: 5px;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-weight: 500;
}

.map-link i {
  font-size: 0.8rem;
}

.social-media {
  margin-top: 40px;
}

.social-media h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  transform: translateY(-5px);
  color: white;
}

.contact-form-block {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-form-block h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-color);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.2);
}

.contact-form button {
  width: 100%;
  padding: 14px;
  font-size: 1.1rem;
}

.map-section {
  padding-bottom: 80px;
  background-color: var(--light-color);
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

footer {
  background-color: var(--dark-color);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-logo h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-contact {
  margin-top: 20px;
}

.footer-contact p {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact i {
  color: var(--primary-color);
  margin-top: 5px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
  color: white;
}

.footer-column h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.working-hours {
  margin-bottom: 20px;
}

.working-hours p {
  margin-bottom: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom .social-icons {
  gap: 10px;
}

.footer-bottom .social-icon {
  width: 35px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom .social-icon:hover {
  background-color: var(--primary-color);
}

.whatsapp-float,
.call-float {
  position: fixed;
  right: 20px;
  z-index: 999;
  animation: pulse 2s infinite;
}

.whatsapp-float {
  bottom: 90px;
}

.call-float {
  bottom: 30px;
}

.whatsapp-float-btn,
.call-float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.whatsapp-float-btn {
  background-color: var(--whatsapp-color);
}

.call-float-btn {
  background-color: var(--primary-color);
}

.whatsapp-float-btn:hover,
.call-float-btn:hover {
  transform: scale(1.1);
  color: white;
}

@keyframes pulse {
  0%
}

@media (max-width: 1024px) {
  .hero-content h2 {
    font-size: 2.2rem;
  }

  .process-steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .process-steps::before {
    display: none;
  }

  .process-step {
    width: 45%;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .contact-info {
    justify-content: center;
  }

  .cta-buttons {
    justify-content: center;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero .container {
    flex-direction: column;
  }

  .hero-content,
  .hero-image {
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .about-content {
    flex-direction: column;
  }

  .contact-content {
    flex-direction: column;
  }

  .testimonial-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .process-step {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}