* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
  color: #1f2937;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

:root {
  --primary-color: #2563eb;
  --primary-hover: #1d4ed8;
  --text-color: #1f2937;
  --text-light: #6b7280;
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: var(--transition);
  height: 120px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  position: relative;
}

.logo {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: var(--text-color);
}

.logo img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 50%;
  transition: var(--transition);
}

.logo h1 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.logo p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
}

.desktop-nav {
  display: flex;
  gap: 5px;
}

.desktop-nav button {
  background: none;
  border: none;
  padding: 10px 18px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-color);
  border-radius: 8px;
  transition: var(--transition);
}

.desktop-nav button:hover {
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.1);
}

.actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.actions .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.actions .btn i {
  font-size: 16px;
  flex-shrink: 0;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
  padding: 8px;
  border-radius: 6px;
  transition: var(--transition);
}

.menu-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* Mobile Menu */
#mobile-menu {
  display: none;
  background: white;
  padding: 20px 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 999;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

#mobile-menu.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#mobile-menu button {
  display: block;
  width: 90%;
  margin: 0 auto 10px;
  padding: 12px;
  border: none;
  background: #f3f4f6;
  border-radius: 8px;
  text-align: left;
  font-size: 1rem;
  color: var(--text-color);
  cursor: pointer;
  transition: var(--transition);
}

#mobile-menu button:last-child {
  margin-bottom: 0;
}

#mobile-menu button:hover {
  background: #e5e7eb;
  color: var(--primary-color);
}



.hero {
  padding: 180px 0 80px;
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
  border-radius: 30% 0 0 30%;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #1e40af;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}



.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn.primary {
  background: #2563eb;
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn.primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn.outline {
  background: white;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn.outline:hover {
  background: rgba(37, 99, 235, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border-left: 4px solid #2563eb;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.feature-content h4 {
  font-size: 1.2rem;
  color: #1e40af;
  margin: 0 0 8px 0;
  font-weight: 700;
}

.feature-content p {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
}

.hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.hero-image:hover {
  transform: translateY(-10px);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s ease;
}



section {
  padding: 80px 20px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  background: white;
}

.btn {
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}

.primary {
  background: #2563eb;
  color: white;
}

.outline {
  border: 2px solid #2563eb;
  color: #2563eb;
  background: transparent;
}

.whatsapp {
  background: #16a34a;
  color: white;
}

.contact {
  background: #1e3a8a;
  color: white;
}

.footer {
  background: #14285c;
  color: #e6edff;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-about {
  max-width: 380px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.footer-brand h3 {
  margin: 0;
  font-size: 20px;
  color: #ffffff;
}

.footer-brand span {
  font-size: 14px;
  color: #a9b8ff;
}

.footer-about p {
  font-size: 15px;
  line-height: 1.6;
  color: #dbe3ff;
}

.footer-links h4,
.footer-services h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-links ul,
.footer-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-services li {
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-links a {
  color: #dbe3ff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #2f4b9b;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #c7d2ff;
}




.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}


/* SERVICES SECTION */
.services {
  padding: 100px 0;
  background: #ffffff;
}

.services-header {
  text-align: center;
  margin-bottom: 70px;
}

.services-header h2 {
  font-size: 44px;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 12px;
}

.services-header p {
  font-size: 18px;
  color: #4b5563;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* CARD */
.service-card {
  background: #ffffff;
  border: 2px solid #dbeafe;
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
  border-color: #93c5fd;
}

/* ICON */
.icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: #e0ecff;
  color: #2563eb;
  font-size: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TEXT */
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #111827;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

/* WHY CHOOSE US */
.why-choose-us {
  padding: 100px 0;
  background: #f1f7ff;
}

.why-header {
  text-align: center;
  margin-bottom: 70px;
}

.why-header h2 {
  font-size: 46px;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 12px;
}

.why-header p {
  font-size: 18px;
  color: #475569;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.why-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* ICON */
.check-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #16a34a;
  color: #16a34a;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* TEXT */
.why-card p {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

/* TESTIMONIALS SECTION */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 0;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 70px;
}

.testimonials-header h2 {
  font-size: 46px;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 12px;
}

.testimonials-header p {
  font-size: 18px;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid #f1f5f9;
  text-align: left;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -15px;
  left: 24px;
  font-size: 80px;
  font-weight: 800;
  color: #3b82f6;
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
  border-color: #3b82f6;
}

.stars {
  font-size: 18px;
  color: #fbbf24;
  margin-bottom: 16px;
  letter-spacing: 2px;
  display: inline-block;
}

.quote {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 6px 0;
}

.testimonial-card span {
  font-size: 14px;
  color: #64748b;
  display: block;
}

/* CONTACT SECTION */
.contact-section {
  background: #1e3a8a;
  color: #ffffff;
  padding: 100px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-header p {
  font-size: 18px;
  color: #c7d2fe;
}

/* CONTENT */
.contact-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT INFO */
.contact-info {
  flex: 1;
  text-align: left;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.icon {
  font-size: 22px;
  color: #93c5fd;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(147, 197, 253, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Phone icon specific styling */
.icon .fas.fa-phone,
.btn .fas.fa-phone,
.btn-icon .fas.fa-phone {
  font-size: inherit;
  color: inherit;
}

.btn-icon .fas.fa-phone {
  margin-right: 4px;
}

.info-item h4 {
  margin: 0;
  font-size: 18px;
}

.info-item p {
  margin: 5px 0 0;
  color: #e0e7ff;
  line-height: 1.6;
}

/* RIGHT BOX */
.contact-box {
  flex: 1;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 40px;
}

.contact-box h3 {
  font-size: 26px;
  margin-bottom: 30px;
}

/* BUTTONS */
.btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
  text-decoration: none;
  width: 100%;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.btn-white {
  background: #ffffff;
  color: #1e3a8a;
}

.btn-green {
  background: #16a34a;
  color: #ffffff;
}

.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
}

/* HOVER */
.btn:hover {
  opacity: 0.9;
}




/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
   .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
   .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .hero::before {
    width: 100%;
    border-radius: 0 0 30% 30%;
  }

  .desktop-nav {
    display: none;
  }
  
  .actions {
    margin-left: auto;
    margin-right: 15px;
  }
  
  .menu-btn {
    display: block;
  }
  
  #mobile-menu {
    display: block;
  }

  /* Hide action buttons in mobile view */
  .actions {
    display: none;
  }
}
@media (max-width: 768px) {

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-section {
    padding: 60px 0;
  }

  .contact-section .container {
    width: 100%;
    padding: 0 20px;
  }

  .contact-content {
    flex-direction: column;
    gap: 30px;
  }

  .contact-info,
  .contact-box {
    max-width: 100%;
    width: 100%;
  }

  .contact-box {
    padding: 30px 20px;
  }

  .contact-box .btn {
    max-width: none;
    width: 100%;
  }
}



@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
   .why-grid {
    grid-template-columns: 1fr;
  }

  .why-header h2 {
    font-size: 36px;
  }

  .contact-box .btn {
    max-width: none;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 120px 0 60px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn {
    width: 100%;
    padding: 12px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}



@media (max-width: 480px) {
  header {
    height: 80px;
  }

  .logo h1 {
    font-size: 1.1rem;
  }
  
  .logo p {
    font-size: 0.7rem;
  }
  
  .logo img {
    width: 60px;
    height: 60px;
  }
  
  .btn {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}