html,
body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  height: 100vh;
}


/* News Ticker */
.news-ticker {
  background: #3f2a8c;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 4px;
  height: 40px;
}

.news-scroll {
  background-color: #fff;
}

.ticker-label {
  font-weight: 600;
  margin-right: 12px;
  white-space: nowrap;
}

.news-ticker marquee a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.news-ticker .sep {
  margin: 0 12px;
  color: #f58220;
}


/* Phone */
.phone-box {
  font-weight: 600;
  white-space: nowrap;
  font-size: 18px;
}

.phone-box i {
  margin-right: 6px;
}


.trust-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    background: #fff;
    flex-wrap: wrap;
    gap: 15px;
}

@media (max-width: 768px) {
    .trust-header {
        flex-direction: column;
        text-align: center;
    }

    .trust-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}


/* LOGO */
.trust-logo img {
  height: 80px;
}

/* TITLE */
.trust-title {
  text-align: center;
  flex: 1;
  font-size: 34px;
  font-weight: bold;
  color: #f58220;
  line-height: 1.2;
}

.trust-title span {
  display: block;
}

/* ACTIONS */
.trust-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* BUTTONS */
.btn {
  border: none;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  white-space: nowrap;
}

.btn.purple {
  background: #4b2fa3;
}
.btn:hover {
  color: #f58220;
}

.btn.orange {
  background: #f58220;
}

/* LANGUAGE DROPDOWN */
.language {
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 14px;
}


.sansita-swashed-font {
  font-family: "Sansita Swashed", system-ui;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay text */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.overlay h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.overlay h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.overlay p {
  max-width: 800px;
  font-size: 18px;
}

.logo {
  width: 120px;
  margin-bottom: 15px;
}

/* Navigation */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0);
  color: #fff;
  border: none;
  font-size: 36px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.nav.prev {
  left: 25px;
}

.nav.next {
  right: 25px;
}

/* Dots */
.dots {
  position: absolute;
  bottom: 25px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.dots span {
  width: 12px;
  height: 12px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.dots span.active {
  background: #f58220;
}


.about-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.about-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

/* IMAGE – 30% */
.about-image {
  flex: 0 0 30%;
}

.about-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* CONTENT – 70% */
.about-text {
  flex: 0 0 70%;
}

.about-text h2 {
  font-size: 36px;
  color: #4b2fa3;
  margin-bottom: 20px;
  position: relative;
}

.about-text h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #f58220;
  display: block;
  margin-top: 10px;
}

.about-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 16px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-image,
  .about-text {
    flex: 100%;
  }

  .about-text h2 {
    font-size: 28px;
  }
}


.light-footer {
  background: #f7f7fb;
  color: #333;
  padding: 60px 20px 20px;
  border-top: 1px solid #e5e5e5;
}

.light-footer .container {
  /* max-width: 1200px; */
  margin: auto;
}

.footer-content {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-bottom: 30px;
}

/* ABOUT */
.footer-about {
  flex: 1 1 35%;
}

.footer-about h3 {
  color: #4b2fa3;
  margin-bottom: 12px;
}

/* LINKS */
.footer-links {
  flex: 1 1 25%;
}

.footer-links h4 {
  color: #4b2fa3;
  margin-bottom: 12px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #333;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: #f58220;
}

/* CONTACT */
.footer-contact {
  flex: 1 1 25%;
}

.footer-contact h4 {
  color: #4b2fa3;
  margin-bottom: 12px;
}

/* BOTTOM BAR */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #ddd;
  padding-top: 15px;
  font-size: 14px;
  color: #666;
}


/* ================= MOBILE RESPONSIVE HEADER ================= */
@media (max-width: 768px) {

    .trust-header {
        display: flex;
        flex-direction: row;
        align-items: center;
        height: auto;          /* keeps desktop untouched */
        padding: 10px 12px;
        gap: 10px;
    }

    .trust-logo img {
        height: 30px;          /* same visual size */
    }

    .trust-title {
        text-align: center;
        font-size: 14px;       /* reduced only for mobile */
        
    }

    .trust-actions {
        display: flex;
        justify-content: center;
        gap: 10px;
        width: 100%;
        flex-wrap: nowrap;
    }

    .trust-actions .btn {
        padding: 8px 14px;
        font-size: 14px;
        white-space: nowrap;
    }

    .footer-content{
      flex-direction: column;
      flex-wrap: nowrap;
    }
    .footer-trust-logo img{
      height: 100px !important;
    }
}
