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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #1f2937;
}

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

/* Navigation */
.nav {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.nav-brand a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a8a;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-brand img {
  max-height: 50px;
  width: auto;
}

.nav-brand span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a8a;
}

.nav-brand span a {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  display: none;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
}

.nav-menu a:hover {
  color: #1e3a8a;
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #1e3a8a;
}

/* Buttons */
.btn-primary {
  background: #1e3a8a;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: #1e40af;
}
.nav-menu-btn-primary {
  background: #1e3a8a;
  color: white !important;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.nav-menu-btn-primary:hover {
  background: #1e40af;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  margin: 0.25rem;
}
.btn-full {
  width: 100%;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  color: white;
  padding: 8rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

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

/* Section */
.section {
  padding: 4rem 0;
}

.section h2 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #1f2937;
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Cards */
.card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.card h1,
.card h2,
.card h3,
.card h4,
.card h5,
.card h6 {
  text-align: center;
}

.card .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.card .image {
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.card p {
  color: #6b7280;
}

/* Stats */
.stats {
  background: #1e3a8a;
  color: white;
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat h2,
.stat h3,
.stat h4,
.stat h5,
.stat h6 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.about-text ul {
  list-style: none;
  margin-top: 1.5rem;
}

.about-text li {
  margin-bottom: 0.5rem;
  color: #1e3a8a;
  font-weight: 500;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1e3a8a;
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 2rem 0;
}

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

.footer h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.footer p,.footer p a{
color: #fff;
  opacity: 0.8;
}

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

svg {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
}

/* Fixed Contact Buttons */
.fixed-contact {
  position: fixed;
  bottom: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.fixed-contact:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn {
  left: 20px;
  background: #085926;
}

.phone-btn {
  right: 20px;
  background: #4258ff;
}
.call-us-btn {
  color: #fff;
  background: #4258ff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.whatsapp-support-btn {
  color: #fff;
  background: #085926;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.responsive-img {
  width: 100%;
  margin-bottom: 1rem;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

/* Sidebar Layout */
.sidebar-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 2rem;
  min-height: calc(100vh - 200px);
}

.sidebar {
  background: #f8fafc;
  padding: 2rem 1rem;
  border-radius: 8px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.sidebar h3 {
  margin-bottom: 1rem;
  color: #1e3a8a;
  font-size: 1.2rem;
}

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

.sidebar li {
  margin-bottom: 0.5rem;
}

.sidebar a {
  color: #1f2937;
  text-decoration: none;
  padding: 0.5rem;
  display: block;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.sidebar a:hover {
  background: #1e3a8a;
  color: white;
}

.main-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

th,
td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

th {
  background: #1e3a8a;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

tbody tr:hover {
  background: #f8fafc;
}

tbody tr:last-child td {
  border-bottom: none;
}

.table-responsive {
  overflow-x: auto;
  margin: 1.5rem 0;
}

.table-responsive table {
  min-width: 600px;
  margin: 0;
}

/* Row and Column System */
.row {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 2rem;
  align-items: center;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.col-3 h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.col-1 {
  text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
  .row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content {
    text-align: center;
    order: 1;
  }

  .hero-image {
    order: 2;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section h2 {
    font-size: 1.6rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    color: #fff;
  }

  .footer a,
  .footer p a,
  .footer-content a,
  .footer-content p a {
    color: #fff;
    text-decoration: none;
  }
  .sidebar-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    margin-bottom: 2rem;
  }

  .table-responsive {
    overflow-x: auto;
  }

  th,
  td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }
}
