body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
  color: #222;
  line-height: 1.7;
  min-height: 100vh;
}

/* Modern Navbar Styles */
.navbar {
  background: white;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(2,48,71,0.2);
}
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  width: 100%;
  max-width: 1300px;
  padding: 0 24px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffb703;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 2px;
  transition: color 0.3s;
}
.navbar-logo:hover {
  color: blue;
}


.navbar-logo-img {
  height: 40px;        /* Adjust as needed */
  width: 40px;         /* Adjust as needed */
  margin-right: 0.7em; /* Space between logo and text */
  border-radius: 50%;  /* Optional: makes the logo round */
  border: 2px solid #023047; /* Optional: subtle border */
  background: #fff;    /* Optional: white background for logo */
  object-fit: contain;
}

.navbar-company-name {
  color: blue;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 2px;
  vertical-align: middle;
}

.navbar-logo:hover .navbar-company-name {
  color: #ffd166;
}


.navbar-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar-menu li {
  height: 60px;
}
.navbar-menu li a {
  color: black;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0 1rem;
  height: 100%;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.3s, border-bottom 0.3s;
  border-bottom: 3px solid transparent;
}
.navbar-menu li a:hover,
.navbar-menu li a.active {
  color: blue;
  border-bottom: 3px solid blue;
}
.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.bar {
  height: 3px;
  width: 25px;
  background-color: #000;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

.navbar-toggle.active .bar {
  background-color: #000; /* or any color you prefer */
}
/* Responsive Navbar */
@media screen and (max-width: 960px) {
  .navbar-menu {
    flex-direction: column;
    width: 100%;
    height: 0;
    position: absolute;
    top: 60px;
    left: 0;
    opacity: 0;
    transition: all 0.5s;
    background: #023047;
    overflow: hidden;
    z-index: 998;
  }
  .navbar-menu.active {
    height: calc(100vh - 60px);
    opacity: 1;
  }
  .navbar-menu li {
    width: 100%;
  }
  .navbar-menu li a {
    border-bottom: none !important;
    border-left: 4px solid transparent;
    padding: 1rem 0 1rem 1.5rem;
    transition: color 0.3s, border-left 0.3s, background 0.3s;
    background: none;
  }
  .navbar-menu li a:hover,
  .navbar-menu li a.active {
    border-left: 4px solid #ffb703 !important;
    color: #ffb703;
    background: rgba(255, 183, 3, 0.08);
  }
  .navbar-toggle {
    display: flex;
    align-items: center;
  }
}

/* About Hero */
.about-hero {
  background: linear-gradient(120deg, #2196f3 60%, #ffb703 100%);
  color: #fff;
  text-align: center;
  padding: 4rem 1rem 2rem 1rem;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 24px rgba(2,48,71,0.12);
}
.about-hero h1 {
  font-size: 2.7rem;
  margin-bottom: 0.7rem;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(2,48,71,0.2);
}
.about-hero p {
  font-size: 1.18rem;
  opacity: 0.97;
  font-weight: 500;
}

/* About Content */
.about-content {
  max-width: 900px;
  margin: 3rem auto 2.5rem auto;
  background: rgba(255,255,255,0.98);
  border-radius: 22px;
  box-shadow: 0 4px 32px rgba(2,48,71,0.09);
  padding: 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.about-content::before {
  content: "";
  position: absolute;
  left: -60px;
  top: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at center, #2196f322 70%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.about-section {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.about-section {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.about-section h2 {
  color: #023047;
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.about-section h2::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: linear-gradient(120deg, #2196f3 70%, #ffb703 100%);
  border-radius: 50%;
  margin-right: 0.5em;
  box-shadow: 0 2px 8px rgba(33,150,243,0.13);
}
.about-section p {
  margin-bottom: 1.1rem;
  font-size: 1.13rem;
  color: #333;
  line-height: 1.7;
  flex: 2;
}

.about-image {
  max-width: 350px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(33,150,243,0.13);
  border: 5px solid #2196f3;
  background: #e0eafc;
  transition: border 0.2s, box-shadow 0.2s;
  flex: 1;
  margin-left: 1rem;
}
.about-image:hover {
  border-color: #ffb703;
  box-shadow: 0 12px 40px rgba(255,183,3,0.16);
}

/* Add spacing between stacked images */
.about-image + .about-image {
  margin-top: 1.5rem;
}

/* Responsive: stack text and images vertically on smaller screens */
@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .about-image {
    margin-left: 0;
    max-width: 100%;
  }
}

/* About Text */
.about-text {
  flex: 2;
  z-index: 1;
}
.about-text h2 {
  color: #023047;
  font-size: 1.5rem;
  margin-top: 1.3rem;
  margin-bottom: 0.7rem;
  letter-spacing: 1px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.about-text h2::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: linear-gradient(120deg, #2196f3 70%, #ffb703 100%);
  border-radius: 50%;
  margin-right: 0.5em;
  box-shadow: 0 2px 8px rgba(33,150,243,0.13);
}
.about-text p {
  margin-bottom: 1.1rem;
  font-size: 1.13rem;
  color: #333;
  line-height: 1.7;
}

/* About Image */
.about-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.about-image img {
  max-width: 350px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(33,150,243,0.13);
  border: 5px solid #2196f3;
  background: #e0eafc;
  transition: border 0.2s, box-shadow 0.2s;
}
.about-image img:hover {
  border-color: #ffb703;
  box-shadow: 0 12px 40px rgba(255,183,3,0.16);
}

.about-image + .about-image {
  margin-top: 1.5rem;
}


/* Footer */
footer {
  background: #023047;
  color: #fff;
  text-align: center;
  padding: 1.2rem 0;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-top: 2rem;
  border-radius: 0 0 12px 12px;
}

/* Responsive Design */
@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    gap: 1.7rem;
    padding: 1.3rem 0.7rem;
  }
  .about-image img {
    max-width: 100%;
  }
  .about-content::before {
    display: none;
  }
}
