body {
    margin: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    background: #f9fafc;
    color: #222;
}

header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 5px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .logo {
    width: 15vh;
    height: auto;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

nav a:hover {
    color: #005bbb;
}
a{
    text-decoration: none;
        color: black;
    
}
.hero {
    background: linear-gradient(to right, rgba(0, 90, 187, 0.161), rgba(0, 69, 187, 0.136));
    color: #fff;
    text-align: center;
    padding: 80px 60px;
    position: relative;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transform: scale(1.0);
}

.hero h1 {
    margin: 0 0 15px;
    font-size: 2.5rem;
}

.hero p {
    max-width: 600px;
    margin: 0 auto 25px;
}

.btn {
    padding: 12px 24px;
    background: #fff;
    color: #005bbb;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #005bbb;
    color: #fff;
    transition: 0.3s;
    transform: translateY(-2px);
}

.section {
    max-width: 1100px;
    margin: 100px auto 60px auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #003f7d;
}

.product-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 570px) {
    .product-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        max-width: 100%;
        margin-bottom: 20px;
    }

}


.card {
    background: #fff;
    border-radius: 8px;
    padding: 30px 20px 40px 20px;
    box-shadow: 0 2px 8px rgba(0, 91, 187, 0.1);
    text-align: center;
    position: relative;
    flex: 1;
    max-width: 300px;
    cursor: pointer;
    transition: 0.5s ease;
    min-height: 40px;
    overflow: visible;

}

.card:hover {
    box-shadow: 0 6px 20px rgba(0, 91, 187, 0.3);
    transform: scale(1.2);

}

.product-cards:hover .card:not(:hover) {
    transform: scale(0.95);
    opacity: 0.7;
}

.card .icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: brightness(0) saturate(30%) invert(29%) sepia(30%) saturate(30%) brightness(30%) contrast(30%);
}

.card h3 {
    margin: 0 0 10px 0;
    font-weight: 700;
    color: #005bbb;
    font-size: 1.2rem;
}

.card p {
    font-size: 0.9rem;
    color: #000;
    line-height: 1.3;
    margin-bottom: 20px;
}

.card .arrow {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: #005bbb;
    font-weight: bold;
}


.detailed-product {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 40px 30px;
    margin-bottom: 60px;
    gap: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.detailed-product.reverse {
    flex-direction: row-reverse;
}

.detailed-product .text {
    flex: 1;
}

.detailed-product .text h2 {
    color: #000;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.detailed-product .text p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #222;
}

.detailed-product .btn {
    background-color: #005bbb;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.detailed-product .btn:hover {
    background-color: #003f7d;
}

.detailed-product .image {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.detailed-product .image img {
    width: 100%;
    border-radius: 8px;
}
@media (max-width: 620px) {
    .detailed-product .image img {
    width: 100% !important;
    height: auto !important;
}
}

.detailed-product .image-arrow {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 1.8rem;
    color: #005bbb;
    font-weight: bold;
    cursor: pointer;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.product {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    transition: max-height 1.0s;
    max-height: 330px;
    overflow: hidden;
}

.extra-text {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 1.0s, max-height 1.0s;
}

.product:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-height: 600px;
}

.product:hover .extra-text {
    opacity: 1;
    max-height: 200px;
}

.product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 8px;
}

.product p {
    font-size: large;
    font-weight: 450;
}

.product h3 {
    margin-top: 0;
    color: #005bbb;
}

.steps {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.step strong {
    display: block;
    margin-bottom: 10px;
    color: #005bbb;
}

footer {
    background: #003f7d;
    color: #fff;
    padding: 40px 20px 20px 20px;
    margin-top: 60px;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto 20px auto;
}

.footer-section {
    flex: 1 1 200px;
    margin: 10px 20px;
}

.footer-section h4 {
    margin-bottom: 15px;
    border-bottom: 2px solid #005bbb;
    padding-bottom: 5px;
}

.footer-section p,
.footer-section a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

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

.footer-bottom {
    text-align: center;
    border-top: 1px solid #005bbb;
    padding-top: 10px;
    font-size: 0.8rem;
    opacity: 0.8;
}

.sponsors {
    background: #fff;
    padding: 40px 0;
    text-align: center;
}

.sponsors h2 {
    margin-bottom: 20px;
    color: #003f7d;
}

.slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slide-track {
    display: flex;
    align-items: center;
    width: calc(250px * 18);
    animation: scroll 40s linear infinite;
    will-change: transform;
}

.slide-track img {
    max-width: 150px;
    max-height: 150px;
    width: auto;
    height: auto;
    margin: 0 25px;
    opacity: 1;
    transition: opacity 0.3s ease;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 9)); 
    }
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form button {
    display: block;
    margin: 20px auto 0;
    width: auto;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #005bbb;
    outline: none;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.detail {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: box-shadow 0.2s ease;
}

.detail:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.detail h3 {
    margin-top: 0;
    color: #005bbb;
}

.message-box {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

.fade-in {
    opacity: 1;
}

.testimonials-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.testimonials-section p {
  color: #666;
  margin-bottom: 40px;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.testimonial {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: left;
  position: relative;
  transition: transform 0.2s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial::before {
  content: "❝";
  font-size: 30px;
  color: #4a4de7;
  position: absolute;
  top: 15px;
  left: 15px;
}

.testimonial p {
  margin-top: 20px;
  line-height: 1.6;
  text-align: center;
}

.author {
  margin-top: 15px;
  font-weight: bold;
  font-size: 0.95rem;
  color: #222;
}

.author small {
  display: block;
  font-weight: normal;
  color: #777;
  font-size: 0.85rem;
}

.reports-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 40px;
    margin: 50px auto;
    max-width: 800px;
    text-align: center;
}

.reports-section h2 {
    color: #005bbb;
    margin-bottom: 20px;
}

.reports-section p {
    margin-bottom: 30px;
}
