/* ====== Global Styles ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Quicksand", sans-serif;
  line-height: 1.6;
  /* background-color: #f8f9fa; */
  color: #333;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: #0077cc;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

/* ====== Header ====== */
header {
    background-color: #00000061;
    padding: 0;
    /* border-bottom: 1px solid #ddd; */
    text-align: center;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9999;
    background-color: #ffffff3b;
}

.logo {
  height: 60px;
}

/* ====== Footer ====== */
footer {
  background-color: #333;
  color: #fff;
  padding: 1.5rem;
  text-align: center;
}

footer nav a {
  color: #fff;
  margin: 0 1rem;
}

footer nav a:hover {
  text-decoration: underline;
}

/* ====== Main Content ====== */
main {
  padding: 2rem;
}

section {
  margin-bottom: 2.5rem;
}

h1, h2, h3 {
  color: #004080;
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1.2rem;
  color: #555;
}

/* ====== Buttons ====== */
.btn {
  display: inline-block;
  background-color: #0077cc;
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #005fa3;
}

/* ====== Product Items ====== */
.product-item {
  border: 1px solid #ccc;
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: #fff;
  border-radius: 4px;
}

/* ====== Contact Form ====== */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin-top: 1rem;
}

input[type="text"],
input[type="email"],
textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

button[type="submit"] {
  background-color: #0077cc;
  color: #fff;
  border: none;
  padding: 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

button[type="submit"]:hover {
  background-color: #005fa3;
}

/* ====== Job Listings ====== */
.job-listings ul {
  list-style: none;
}

.job-listings li {
  margin-bottom: 0.5rem;
}

.job-listings a {
  color: #0077cc;
  font-weight: bold;
}
/* Navigation */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  /* background: #fff; */
  /* border-bottom: 1px solid #ddd; */
  max-width: 1200px;
  margin: 0 auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
    color: #ffffff;
    font-weight: 600;
}
.nav-links li a.sltd {
    color: #00f1ff;
    background: transparent;
    border-radius: 35px;
    font-weight: 600;
}
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}


.who-we-are p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.who-we-are strong {
  color: #004080;
}
.vision-mission p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.vision-mission strong {
  color: #004080;
}
.product-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.product-item {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  text-align: center;
}

.product-item:hover {
  transform: translateY(-5px);
}

.product-item h3 {
  color: #004080;
  margin-bottom: 0;
}
.products-overview h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1e2d3a;
    text-align: center;
}
.product-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}
.product-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}
.testimonials {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.testimonial-card {
  display: none;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-card.active {
  display: block;
}

.icon-avatar {
  font-size: 3rem;
  color: #0077cc;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  margin: 15px 0 5px;
  font-size: 1.2rem;
}

.testimonial-card span {
  color: #666;
  font-size: 0.95rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #004080;
}

.testimonial-card p {
  font-style: italic;
  font-size: 1.1rem;
  color: #333;
  margin: 1rem 0;
}

.testimonial-card h4 {
  margin: 0;
  font-weight: 600;
  color: #004080;
}

.testimonial-card span {
  font-size: 0.9rem;
  color: #777;
}
.who-we-are {
  padding: 0rem 2rem;
  color: #0d2137;
  text-align: center;
}

.container.split-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}
.container {
  max-width: 1200px;
  margin: 0 auto;  
}
.image-side {
  position: relative;
  flex: 1 1 45%;
  min-width: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  animation: fadeInLeft 1.2s ease forwards;
  opacity: 0;
}

.image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.image-side:hover img {
  transform: scale(1.05);
}

.image-side .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(0,64,128,0.5), rgba(0,128,255,0.3));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.content-side {
  flex: 1 1 50%;
  min-width: 320px;
  animation: fadeInRight 1.2s ease forwards;
  opacity: 0;
}

.content-side h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 0.3rem;
  letter-spacing: 1.1px;
}

.content-side .subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: #007acc;
  margin-bottom: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.content-side p {
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 1.3rem;
  color: #1f3251;
}

.content-side p strong {
  color: #00509e;
}

.icon-grid {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.icon-box {
  background: #fff;
  flex: 1 1 30%;
  min-width: 220px;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
}

.icon-box:hover {
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
  transform: translateY(-8px);
}

.icon-box img {
  width: 60px;
  margin-bottom: 1rem;
}

.icon-box h3 {
  color: #004080;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.icon-box p {
  color: #555f77;
  font-size: 1rem;
  line-height: 1.5;
}

/* Animations */
@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: translateX(0); }
}
.who-we-are .image-side {
    display: none;
}
.header-top {
    padding: 5px 2rem;
    /* background: #283996; */
    color: #fff;
    text-align: right;
    font-weight: 600;
}


.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  padding: 4rem 1rem;
  background: #f9fafc;
  border-top: 1px solid #e1e5ee;
}

.contact-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
}

.contact-text {
  flex: 1 1 45%;
}

.contact-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #003366;
}

.contact-text p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: #555;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.detail-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.detail-box img {
  width: 30px;
  height: 30px;
}

.detail-box h4 {
  margin: 0;
  font-weight: 600;
  color: #003366;
}

.detail-box p, .detail-box a {
  margin: 0;
  color: #555;
  text-decoration: none;
}

.contact-form-box {
  flex: 1 1 50%;
  background: #fff;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form .form-row {
  display: flex;
  gap: 1rem;
}

.contact-form .form-row input {
  flex: 1;
}

.contact-form .btn {
  padding: 1rem 2rem;
  background-color: #003366;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form .btn:hover {
  background-color: #0055aa;
}
.detail-box i {
  font-size: 1.5rem;
  color: #003366;
  margin-right: 1rem;
  min-width: 30px;
}

.banner-slider {
    position: relative;
    overflow: hidden;
    height: 100vh;
    width: 100%;
    top: 0;
}
nav {
    display: flex;
    align-items: center;
}
.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-caption {
  position: absolute;
  bottom: 30%;
  left: 0;
  color: white;
  text-shadow: 0 3px 6px rgba(0,0,0,0.5);
  right: 0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  z-index: 9999;
}
.slide::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000045;
    top: 0;
}
.slide-caption h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 55px;
    color: #fff;
}

.slide-caption p {
  font-size: 1.5rem;
  font-weight: 400;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: white;
  font-size: 1.5rem;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 2;
}

.slider-arrow.prev {
  left: 10px;
}

.slider-arrow.next {
  right: 10px;
}
.vision-mission {
  background: #f9f9fb;
  padding: 60px 20px;
  text-align: center;
}

.vision-mission h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #1e2d3a;
}

.vision-mission .intro,
.vision-mission .conclusion {
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

.vm-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 30px;
}

.vm-box {
  flex: 1 1 320px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.vm-box h3 {
  font-size: 1.5rem;
  margin-top: 15px;
  margin-bottom: 10px;
  color: #2a3d4c;
}

.vm-box p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.vm-icon {
  font-size: 2.5rem;
  color: #0077cc;
}
 .clients-section {
    position: relative;
    background: url('https://your-image-url.com/background.jpg') center center/cover no-repeat;
    color: white;
    padding: 0 0;
    text-align: center;
  }

  .clients-section .overlay {
    background-color: #00a8b2; /* dark overlay for text readability */
    padding: 60px 20px;
  }

  .clients-section .container {
    max-width: 900px;
    margin: 0 auto;
  }

  .clients-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
  }

  .clients-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto;
  }

.products-banner {
  background: linear-gradient(rgb(40 57 150), rgb(121 142 252)), url(/static/web/images/banner-bg.jpg) no-repeat center center;
  background-size: cover;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  padding-bottom: 0;
}
.about-bnr {
  background-image: url(../images/about-banner.jpg);
}
.products-banner .content {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 0;
}
.about-bnr::before {
  content: '';
  position: absolute;
}

.products-banner .title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 1px;
  color: #fff;
}

.products-banner .breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  gap: 10px;
}

.products-banner .home,
.products-banner .current {
  transition: color 0.3s;
}

.products-banner .home:hover {
  color: #ffcc00;
  cursor: pointer;
}

.products-banner .dot img {
  height: 10px;
}
.product-categories {
  text-align: center;
  padding: 60px 20px;
  background-color: #f9fbff;
}

.product-categories h2 {
  font-size: 2.2rem;
  color: #003366;
  margin-bottom: 10px;
}

.product-categories p {
  color: #444;
  margin-bottom: 40px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.product-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-card i {
  font-size: 40px;
  color: #0056a3;
  margin-bottom: 15px;
}

.product-card h3 {
  color: #003366;
  font-size: 1.3rem;
  margin: 10px 0;
}

.product-card p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.download-btn {
  display: inline-block;
  padding: 10px 18px;
  background-color: #0056a3;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.download-btn:hover {
  background-color: #003d73;
}
/* About Page Styling */
.company-overview, .vision-mission, .contact-info {
  margin-bottom: 60px;
}

.company-overview h2, .vision-mission h2, .contact-info h2 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 20px;
}

.highlight {
  color: #007acc;
}

.lead {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

.vm-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-top: 30px;
}

.vm-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  flex: 1 1 45%;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-5px);
}

.vm-card i {
  font-size: 36px;
  color: #007acc;
  margin-bottom: 15px;
}

.vm-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #003366;
}

.vm-card p {
  color: #555;
  font-size: 0.95rem;
}

.quote {
  margin-top: 30px;
  font-style: italic;
  text-align: center;
  color: #333;
}

.btn-primary {
  display: inline-block;
  margin-top: 25px;
  background-color: #007acc;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #005f99;
}

/* Contact Info Section */
.contact-info ul.contact-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.contact-info ul li {
  margin: 10px 0;
  font-size: 1rem;
  color: #444;
}

.contact-info i {
  margin-right: 8px;
  color: #007acc;
}
.company-overview {
  padding: 60px 20px;
  background-color: #f9fbff;
}

.overview-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.text-content {
  flex: 1 1 500px;
}

.text-content h2 {
  font-size: 2.2rem;
  color: #003366;
  margin-bottom: 20px;
}

.lead {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 25px;
}

.image-content {
  flex: 1 1 400px;
}

.image-content img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.contact-section {
  padding: 70px 20px;
  background: #f5f8fc;
  font-family: 'Quicksand', sans-serif;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.form-panel, .info-panel {
  flex: 1 1 48%;
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.section-heading {
  font-size: 28px;
  margin-bottom: 10px;
  color: #0b3e75;
}

.subtext {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.form-box .input-row {
  margin-bottom: 20px;
}

.form-box input,
.form-box textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  font-size: 16px;
  background: #fefefe;
  transition: border 0.3s ease;
}

.form-box input:focus,
.form-box textarea:focus {
  border-color: #0b3e75;
  outline: none;
}

.form-box textarea {
  height: 130px;
  resize: vertical;
}

.btn-send {
  background: #0b3e75;
  color: #fff;
  padding: 12px 26px;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-send:hover {
  background: #072b50;
}

.info-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  font-size: 16px;
  color: #333;
}

.info-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.info-list i {
  margin-right: 10px;
  color: #0b3e75;
  font-size: 18px;
}

.social-block {
  margin-top: 30px;
}

.social-block p {
  margin-bottom: 10px;
  font-weight: 500;
  color: #333;
}

.social-icon {
  display: inline-block;
  margin-right: 15px;
  color: #0b3e75;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #0077b5;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }
}

/* Responsive fallback */
@media (max-width: 768px) {
  .overview-content {
    flex-direction: column;
    text-align: center;
  }

  .text-content, .image-content {
    flex: 1 1 100%;
  }
}


/* ====== Responsive Design ====== */
@media (max-width: 768px) {
  body {
    padding: 0;
  }

  header, footer {
    padding: 1rem;
  }

  main {
    padding: 1rem;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 1rem;
    position: absolute;
    right: 0;
    top: 70px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

        .nav-links.show {
        display: flex;
        z-index: 9999;
        width: 100%;
        top: 87px;
        background: #283996;
        padding: 0;
        gap: 0;
    }
  .menu-toggle {
    display: block;
    color: #fff;
  }
    .container.split-layout {
    flex-direction: column;
    gap: 1rem;
  }
  .icon-grid {
    justify-content: center;
  }
  .icon-box {
    flex: 1 1 80%;
  }
  /* .who-we-are .image-side {
    display: block;
} */
.product-list {
    grid-template-columns: 1fr;
}
.who-we-are {
    background: transparent;
    padding: 0;
}
.content-side {
    min-width: auto;
}
.banner-slider {
    position: relative;
    height: 625px;
    overflow: hidden;
    margin-bottom: 20px;
}
.product-categories {
  text-align: center;
  padding: 0 20px;
  background-color: #f9fbff;
}
.products-banner {
    background: linear-gradient(rgb(40 57 150), rgb(121 142 252)), url(/static/web/images/banner-bg.jpg) no-repeat center center;
    background-size: cover;
    padding: 40px 20px;
    padding-top: 120px;
}
.contact-section {
    padding: 10px 20px;
    background: #f5f8fc;
    font-family: 'Quicksand', sans-serif;
}
.company-overview {
  padding: 10px 20px;
  background-color: #f9fbff;
}
    .nav-container {
        padding: 10px 15px;
        border-bottom: none;
    }
    .products-grid {
      padding: 0;
    }
.nav-links li a {
    color: #ffffff;
    font-weight: bold;
}
.slide-caption {
  text-shadow: 0 5px 9px rgb(255 255 255 / 50%);
}
ul#navLinks li {
    border-bottom: 1px solid #fff;
    padding: 15px;
}
.contact-section {
    flex-direction: column;
  }
  .contact-content {
    flex-direction: column;
  }
  .contact-form .form-row {
    flex-direction: column;
  }
  .contact-form input, .contact-form textarea {
    margin-bottom: 0;
  }
  .detail-box i {
    margin-right: 0;
}
.contact-form-box {
    padding: 0px 15px;
}
.vm-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
.contact-text p {
  margin-bottom: 2rem;
  font-size: 15px;
  color: #555;
}
.testimonial-card p {
  font-style: italic;
  font-size: 15px;
  color: #333;
  margin: 1rem 0;
}
header {
    padding: 0;
}
.vision-mission .intro,
.vision-mission .conclusion {
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}
.content-side p {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 1.3rem;
  color: #1f3251;
}
    .header-top {
        padding: 5px 15px;
        font-size: 13px;
        display: none;
    }
.clients-section h2 {
      font-size: 29px;
      line-height: 35px;
    }

    .clients-section p {
      font-size: 1rem;
    }
    .nav-links li a.sltd {
    color: #00a7b1;
    background: transparent;
    font-weight: 600;
}
    .nav-links li a {
        color: #ffffff;
        font-weight: 400;
    }
    .content-side h2 {
    font-size: 29px;
}
.content-side .subtitle {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: inherit;
    color: #08d3de;
}
.vision-mission h2 {
    font-size: 29px;
}
.products-overview h2 {
    font-size: 29px;
}
.contact-text h2 {
  font-size: 29px;
  margin-bottom: 10px;
  color: #003366;
}
.slider-arrow {
  display: none;
}
.slide-caption h1 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: normal;
        padding: 0 15px;
        color: #fff;
        text-shadow: none;
    }
.products-banner .title {
  font-size: 39px;
  font-weight: bold;
  margin-bottom: 0;
  letter-spacing: 1px;
  color: #fff;
}
header {
   background-color: #ffffff30;
}
.slide-caption .btn {
  display: inline-block;
  background-color: #0daab3;
}
.vision-mission .btn {
background-color: #00a8b2;
}
.contact-form .btn {
  background-color: #00a8b2;
}
}
