/* Navbar start */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');



:root {
  --red: #c4161c;
  --blue: #1f4fb2;
  --yellow: #f5c400;
  --white: #ffffff;
}

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

.trust-navbar {
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1000;
  font-family: 'Montserrat';  
}

.trust-container {
  max-width: 1200px;
  margin: auto;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;height: 80px;
  font-family: 'Poppins', sans-serif;
}

/* Logo */
.trust-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-logo img {
     height: 76px;
    position: relative;
    top: 2px;
}

.trust-logo span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.2; font-family: 'Montserrat';
}

.trust-logo small {
  font-size: 0.8rem;
  color: var(--red);
}

/* Menu */
.trust-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.trust-menu li a {
  text-decoration: none;
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

/* Yellow underline hover */
.trust-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: #c4161c !important;
  transition: width 0.3s ease;
}

.trust-menu li a:hover::after,
.trust-menu li a.active::after {
  width: 100%;
}

/* Mobile Toggle */
.trust-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.trust-toggle span {
  width: 26px;
  height: 3px;
  background: var(--red);
}

/* Responsive */
@media (max-width: 768px) {
  .trust-menu {
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    gap: 22px;
    padding: 25px 0;
    text-align: center;
    display: none;
    border-top: 2px solid var(--yellow);
  }

  .trust-menu.show {
    display: flex;
  }

  .trust-toggle {
    display: flex;
  
  
  }


/* Mobile */
@media (max-width: 768px) {
  .trust-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    width: 100%;
  }

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

  .trust-toggle {
    display: block;
    cursor: pointer;
  }

  .trust-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #000;
    margin: 5px 0;
  }
}

}

/* Navbar ends */



/* about start */

/* ================= ANIMATIONS ================= */

@keyframes slideFromLeft {
    from {
        transform: translateX(-90px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideFromRight {
    from {
        transform: translateX(90px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        transform: translateY(25px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-features {
        justify-content: center;
    }

    .about-title {
        font-size: 30px;
    }
}

/* about ends */











/* footer start */
.footer {
  position: relative;
  background: url("img/slider-1.png") center/cover no-repeat;
  color: #ffffff;
  padding: 70px 20px 25px;
  overflow: hidden;
}

/* Dark overlay */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

/* Keep content above overlay */
.footer * {
  position: relative;
  z-index: 2;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-col h3 {
  color: #1F4FB2;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}

.footer-col p,
.footer-col a {
  color: #e0e0e0;
  font-size: 14px;
  line-height: 1.8;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  text-align: justify;
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col i {
  margin-right: 8px;
  color: #1F4FB2;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 14px;
  font-size: 18px;
  color: #1F4FB2;
  transition: 0.3s ease;
}

.social-icons a:hover {
  color: #fbb034;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #cccccc;
}

/* =========================
   Mobile View Adjustments
   ========================= */
@media (max-width: 768px) {
  .footer {
    padding: 50px 15px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-col h3 {
    font-size: 15px;
  }

  .footer-col p,
  .footer-col a {
    font-size: 13px;
  }

  .footer-col i {
    margin-right: 6px;
  }

  .social-icons {
    margin-top: 10px;
  }

  .social-icons a {
    margin-right: 12px;
    font-size: 17px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .footer {
    padding: 40px 12px 18px;
  }

  .footer-container {
    gap: 25px;
  }

  .footer-bottom {
    font-size: 12px;
    line-height: 1.6;
  }
}

/* footer ends */





