body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}
header {
    background: #005f73;
    color: #fff;
    padding: 2rem;
    text-align: center;
}
.site-header {
    background-color: #0D1117;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-container {
    max-width: 300px;
}
.logo {
    width: 100%;
    height: auto;
}
section {
    padding: 2rem;
    background: #fff;
    margin: 1rem auto;
    max-width: 800px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.services {
    list-style: none;
    padding: 0;
}
.services li {
    margin: 0.5rem 0;
    font-size: 1.2rem;
}
.services li i {
    margin-right: 0.5rem;
    color: #0077b6;
}
blockquote {
    font-style: italic;
    color: #0077b6;
    margin-top: 2rem;
}
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}
input, textarea, button {
    padding: 0.5rem;
    font-size: 1rem;
}
button {
    background-color: #0077b6;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
button:hover {
    background-color: #005f73;
}


/* Navigation Menu Styles */
.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    background-color: #004d7a;
    margin: 0;
    padding: 0.75rem 0;
}

.nav-menu li {
    margin: 0 1rem;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-menu li a:hover {
    background-color: #007bb5;
}

.nav-menu li a.active {
    background-color: #007bb5;
}



footer {
    background-color: #004d7a;
    color: white;
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.9rem;
}

.footer-content {
    margin-bottom: 0.5rem;
}

.footer-content a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 0.5rem;
    font-weight: 500;
}

.footer-content a:hover {
    text-decoration: underline;
}

.footer-bottom {
    font-size: 0.8rem;
    color: #ccc;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    border-left: 5px solid #004d7a;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.service-card i {
    font-size: 2rem;
    color: #004d7a;
    margin-bottom: 1rem;
}


.section-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    display: block;
    margin: 2rem auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateZ(0);
    will-change: transform;
}

.hero-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}


.parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 300px;
}


.about-edata {
    max-width: 800px;
    margin: 3rem auto;
    text-align: center;
    padding: 2rem;
    background-color: #f4f8fb;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.about-edata h2 {
    color: #004d7a;
    margin-bottom: 1rem;
}

.about-edata p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-edata blockquote {
    font-style: italic;
    color: #555;
    margin-top: 2rem;
    padding-left: 1rem;
    border-left: 4px solid #004d7a;
}


.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.why-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border-left: 5px solid #007bb5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.why-card i {
    font-size: 2rem;
    color: #007bb5;
    margin-bottom: 1rem;
}

.why-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.why-card p {
    font-size: 1rem;
    color: #444;
}


.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: #fff;
    border-left: 5px solid #00a7e1;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.benefit-card i {
    font-size: 2rem;
    color: #00a7e1;
    margin-bottom: 1rem;
}


.about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.about-card {
    background: #ffffff;
    padding: 1.5rem;
    border-left: 5px solid #007bb5;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.about-card i {
    font-size: 2rem;
    color: #007bb5;
    margin-bottom: 1rem;
}



.footer-logo {
    width: 80px !important;
    height: auto !important;
    margin-top: 1rem;
    opacity: 0.9;
    display: block;
}



.animated-logo {
    position: relative;
    animation: shine 3s infinite linear;
    max-width: 300px;
}

@keyframes shine {
  0% {
    filter: brightness(.5);
  }
  20% {
    filter: brightness(2.3);
  }
  50% {
    filter: brightness(4.7);
  }
  80% {
    filter: brightness(1.3);
  }
  100% {
    filter: brightness(1);
  }
}

  50% {
    filter: brightness(1.4);
  }
  100% {
    filter: brightness(1);
  }
}


.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 2rem;
}



.form-box {
  flex: 1 1 300px;
  max-width: 600px;
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-box input,
.form-box textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.form-box button {
  padding: 0.75rem;
  background-color: #007bb5;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}


.form-wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
}



.form-container {
  flex: 1 1 300px;
  max-width: 400px;
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-container form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-container input,
.form-container textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.form-container button {
  padding: 0.75rem;
  font-size: 1rem;
  background-color: #007bb5;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.top-spaced-text {
  margin-top: 250px;
}

.form-text {
  flex: 1 1 400px;
  max-width: 800px;
}