:root {
  --primary-color: #2563eb;
  --secondary-color: #10b981;
  --accent-color: #f59e0b;
  --dark-color: #1e293b;
  --light-color: #f8fafc;
  --text-color: #334155;
  --light-gray: #e2e8f0;
  --medium-gray: #94a3b8;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

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

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

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

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

.primary-btn:hover {
  background-color: rgb(29, 78, 216);
  transform: translateY(-2px);
}

.secondary-btn {
  background-color: var(--secondary-color);
  color: white;
  box-shadow: var(--box-shadow);
}

.secondary-btn:hover {
  background-color: rgb(13, 148, 136);
  transform: translateY(-2px);
}

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

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

.section-header h2::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 4px;
  background: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-header p {
  font-size: 18px;
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0px auto;
}

header {
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
  position: sticky;
  top: 0px;
  z-index: 1000;
  padding: 15px 0px;
}

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

.logo h1 {
  font-size: 24px;
  color: var(--dark-color);
}

.logo span {
  color: var(--primary-color);
}

.logo p {
  font-size: 12px;
  color: var(--medium-gray);
  margin-top: -5px;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  font-weight: 500;
  color: var(--dark-color);
  position: relative;
}

nav ul li a::after {
  content: "";
  position: absolute;
  width: 0px;
  height: 2px;
  background: var(--primary-color);
  bottom: -5px;
  left: 0px;
  transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

.mobile-nav-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.hero {
  padding: 80px 0px;
  background: linear-gradient(135deg, rgb(240, 249, 255) 0%, rgb(224, 242, 254) 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 42px;
  color: var(--dark-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-content h2 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--text-color);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.hero-image img {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}

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

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  font-size: 28px;
  border-radius: 50%;
  margin-bottom: 20px;
}

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

.service-card p {
  margin-bottom: 15px;
  color: var(--text-color);
}

.service-card ul {
  padding-left: 20px;
}

.service-card ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}

.service-card ul li::before {
  content: '✓';
  color: var(--secondary-color);
  position: absolute;
  left: -5px;
}

.why-choose-us {
  padding: 80px 0;
  background-color: #f1f5f9;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature {
  text-align: center;
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--secondary-color);
  font-size: 32px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--dark-color);
}

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

.testimonial-carousel {
  position: relative;
  max-width: 900px;
  margin: 0px auto;
  overflow: hidden;
  height: 400px;
}

.testimonial-slide {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  transition: 0.5s;
  transform: translateX(50px);
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
}

.testimonial-content {
  flex: 1 1 0%;
  padding: 30px;
  background-color: rgb(248, 250, 252);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.rating {
  color: var(--accent-color);
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-content p {
  font-size: 18px;
  margin-bottom: 20px;
  font-style: italic;
  color: var(--text-color);
}

.client-info h4 {
  font-size: 18px;
  color: var(--dark-color);
}

.client-info p {
  font-size: 14px;
  margin-bottom: 0px;
  color: var(--medium-gray);
  font-style: normal;
}

.testimonial-image {
  width: 300px;
  margin-left: 30px;
}

.testimonial-image img {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.prev-btn,
.next-btn {
  background-color: var(--primary-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: medium;
  transition: var(--transition);
}

.prev-btn:hover,
.next-btn:hover {
  background-color: rgb(29, 78, 216);
}

.carousel-dots {
  display: flex;
  margin: 0px 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--light-gray);
  margin: 0px 5px;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary-color);
}

.blog {
  padding: 80px 0px;
  background-color: rgb(241, 245, 249);
}

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

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

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

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

.blog-content {
  padding: 20px;
}

.blog-date {
  font-size: 14px;
  color: var(--medium-gray);
  margin-bottom: 10px;
}

.blog-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--dark-color);
  transition: var(--transition);
}

.blog-content h3:hover {
  color: var(--primary-color);
}

.blog-content p {
  margin-bottom: 15px;
  color: var(--text-color);
}

.read-more {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 14px;
}

.read-more i {
  margin-left: 5px;
  transition: var(--transition);
}

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

.blog-cta {
  text-align: center;
  margin-top: 40px;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

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

.cta-section .primary-btn:hover {
  background-color: #f8fafc;
}

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

.cta-section .secondary-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-card {
  background-color: rgb(248, 250, 252);
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  font-size: 20px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.contact-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.contact-card p {
  font-size: 14px;
  color: var(--text-color);
}

.contact-social {
  grid-column: span 2;
  background-color: rgb(248, 250, 252);
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

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

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

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 10px;
}

.contact-form-container {
  background-color: rgb(248, 250, 252);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

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

.contact-form 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 var(--light-gray);
  border-radius: 5px;
  font-family: inherit;
  font-size: 14px;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: rgba(37, 99, 235, 0.1) 0px 0px 0px 3px;
}

.contact-form button {
  width: 100%;
  padding: 14px;
}

.map-container {
  margin-top: 50px;
}

.map-container h3 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: var(--dark-color);
}

.map-container iframe {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

footer {
  background-color: var(--dark-color);
  color: white;
  padding: 80px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.footer-logo span {
  color: var(--primary-color);
}

.footer-logo p {
  opacity: 0.7;
  font-size: 14px;
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  bottom: 0px;
  left: 0px;
}

.footer-links ul li,
.footer-services ul li,
.footer-contact ul li {
  margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li a {
  opacity: 0.7;
  transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
  opacity: 1;
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact ul li {
  display: flex;
  align-items: center;
  opacity: 0.7;
}

.footer-contact ul li i {
  margin-right: 10px;
  color: var(--primary-color);
}

.footer-contact ul li a {
  transition: var(--transition);
}

.footer-contact ul li a:hover {
  color: var(--primary-color);
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social .social-icon {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

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

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

.footer-bottom p {
  opacity: 0.7;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  opacity: 0.7;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  opacity: 1;
  color: var(--primary-color);
}

.floating-buttons {
  position: fixed;
  bottom: 80px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

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

.floating-btn:hover {
  transform: scale(1.1);
}

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

.whatsapp-btn {
  background-color: #25d366;
}

@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content h2 {
    font-size: 20px;
  }

  .section-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
    margin-bottom: 30px;
  }

  .testimonial-slide {
    flex-direction: column;
  }

  .testimonial-image {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .mobile-nav-toggle {
    display: block;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: white;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }

  nav ul.show {
    display: flex;
  }

  nav ul li {
    margin: 10px 0;
  }

  .testimonial-carousel {
    height: 600px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .cta-section .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .contact-info {
    grid-template-columns: 1fr;
  }
}