/* ===== GLOBAL ===== */
body {
  margin: 0;
  font-family: Quicksand ;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.header {
  background: #000;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 70px;
}

/* ===== LOGO ===== */
.logo img {
  height: 48px;
}

/* ===== NAV ===== */
.nav {
  display: flex;
  justify-content: right;
  padding-right: 25px;
}

.menu {
  display: flex;
  gap: 60px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {
  position: relative;
}

.menu a {
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.menu a:hover {
  color: #fff;
}

/* ===== DROPDOWN (DESKTOP) ===== */
.menu-item-has-children .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #000;
  min-width: 240px;
  padding: 15px 0;
  list-style: none;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s ease;
}

.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li a {
  display: block;
  padding: 10px 20px;
  color: #ccc;
  font-size: 14px;
}

.sub-menu li a:hover {
  color: #a82022;
}

/* Active */
.current-menu-item > a {
  color: #a82022;
}

/* ===== RIGHT SIDE ===== */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lang-switch {
  background: #111;
  color: #fff;
  border: 1px solid #333;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
}

.btn-signin {
  background: #a82022;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  text-decoration: none;
}

/* ===== MOBILE ===== */
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {

  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .menu-toggle {
    display: block;
    font-size: 24px;
    color: #fff;
  }

  /* NAV PANEL */
  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #000;
    display: none;
    flex-direction: column;
    z-index: 999;
  }

  .nav.active {
    display: block;
  }

  /* MAIN MENU */
  .menu {
    display: block;
    width: 100%;
  }

  .menu > li {
    width: 100%;
    border-top: 1px solid #111;
  }

  .menu > li > a {
    display: block;
    padding: 15px 20px;
  }

  /* 🔥 IMPORTANT FIX */
  .menu-item-has-children .sub-menu {
    display: none;
    position: relative;
    background: #111;
    padding-left: 15px;
  }

  .menu-item-has-children .sub-menu.active {
    display: block;
  }

  .sub-menu li {
    border-top: 1px solid #222;
  }

  .sub-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 13px;
  }

  /* Hide right side */
  .nav-actions {
    display: none;
  }
}

/* ===== HERO ===== */

.hero-slider {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Desktop */
@media (min-width: 1024px) {
  .hero-slide {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }

  .hero-content h1 {
    font-size: 42px;
  }
}


/* ===== SOLUTIONS ===== */

.solutions {
  width: 100%;
  background: #f5f5f5;
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 32px;
  color: #a82022;
  font-weight: 600;
}

.section-header p {
  max-width: 700px;
  margin: 15px auto 0;
  color: #555;
  font-size: 18px;
  line-height: 1.6;
}

/* GRID */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.solution-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
}

/* CONTENT */
.card-content {
  flex: 1;
}

.card-content h3 {
  font-size: 17px;
  color: #a82022;
  font-weight: 600;
}

.card-content p {
  font-size: 14px;
  color: #333;
  margin: 10px 0 15px;
}

/* LIST */
.card-content ul {
  list-style: none;
  padding: 0;
}

.card-content li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 13px;
  color: #333;
}

.card-content li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #a82022;
  font-size: 12px;
}

/* IMAGE */
.card-image img {
  max-width: 200px;
  height: auto;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 600px) {

  .solution-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-image img {
    max-width: 100%;
  }

  .section-header h2 {
    font-size: 26px;
  }

}






/* ===== MONETIZATION (FINAL DESIGN) ===== */

.monetization {
  background-image: url('assets/component background.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 100px 0;
  color: #ffffff;
}

/* HEADER */
.mono-header {
  text-align: center;
  margin-bottom: 60px;
}

.mono-header h2 {
  font-size: 32px;
  font-weight: 600;
}

.mono-header p {
  font-size: 18px;
  opacity: 0.8;
  margin-top: 8px;
}

/* CONTENT LAYOUT */
.mono-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT SIDE */
.mono-left {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* ITEM */
.mono-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* NUMBER BOX (IMPORTANT DESIGN ELEMENT) */
.num {
  background: #fff;
  color: #a82022;
  font-weight: 600;
  width: 80px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 40px;
}

/* TEXT */
.mono-item p {
  font-size: 18px;
}

/* RIGHT IMAGE */
.mono-right img {
  max-width: 620px;
  width: 100%;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .mono-content {
    flex-direction: column;
    text-align: center;
    /* display:flex;
    justify-content: start; */
  }

  .mono-left {
    display: flex;
    justify-content: start;
    /* align-items: center; */
  }

  .mono-item {
    justify-content: start;
  }
}

@media (max-width: 600px) {
  .mono-header h2 {
    font-size: 24px;
  }
}




/* ===== TRUST SECTION ===== */

.trust {
  background: #f5f5f5;
  padding: 80px 0;
  text-align: center;
}

.trust-title {
  font-size: 22px;
  color: #a82022;
  margin-bottom: 25px;
}

/* LOGO BOX */
.trust-box {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  margin-bottom: 50px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.trust-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 80px;
}

.trust-logos img {
  max-height: 50px;
  opacity: 0.8;
}

/* TESTIMONIALS */
/* ===== SWIPER CORE FIX ===== */
.testimonial-slider {
  width: 100%;
  overflow: hidden;
  padding: 30px 10px 50px;
}

.swiper {
  width: 100%;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

/* ===== CARD ===== */
.testimonial-card {
  max-width: 350px;
  width: 100%;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  height: 100%;
}

/* ===== TEXT ===== */
.testimonial-card p {
  font-size: 14px;
  color: #333;
  margin: 10px 0;
  line-height: 1.6;
}

/* ===== STARS ===== */
.stars {
  color: #eed94b;
  font-size: 16px;
}

/* ===== USER ===== */
.user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.user strong {
  display: block;
  font-size: 14px;
}

.user span {
  font-size: 12px;
  color: #777;
}

/* ===== DOTS ===== */
.swiper-pagination {
  margin-top: 15px;
}

.swiper-pagination-bullet {
  background: #a82022;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #a82022;
}


/* ===== BLOG SECTION FINAL ===== */

.blogs {
  background: #f5f5f5;
  padding: 100px 0;
}

/* HEADER */
.blogs-header {
  text-align: center;
  margin-bottom: 60px;
}

.blogs-header h2 {
  font-size: 36px;
  color: #a82022;
  font-weight: 600;
}

.blogs-header p {
  font-size: 14px;
  color: #555;
  max-width: 650px;
  margin: 12px auto 0;
  line-height: 1.6;
}

/* ===== GRID ===== */

.blogs-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 30px;
}

/* RIGHT SIDE */
.blogs-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* SMALL GRID */
.blogs-small {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* ===== CARD ===== */

.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: 0.3s ease;
}
/* .blog-card.big{
  padding-top: 160px;
} */


.blog-card:hover {
  transform: translateY(-6px);
}

/* BIG CARD */
.blog-card.big img {
  height: 320px;
}

/* IMAGE */
.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

/* HORIZONTAL CARD */
.blog-card.horizontal {
  flex-direction: row;
  height: 100%;
}

.blog-card.horizontal img {
  width: 48%;
  height: 100%;
}

.blog-card.horizontal .blog-content {
  width: 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* CONTENT */
.blog-content {
  padding: 22px;
  text-align: left;
}

.blog-content h3 {
  font-size: 17px;
  color: #a82022;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-content p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* LIST */
.blog-content ul {
  padding-left: 18px;
  margin: 12px 0;
}

.blog-content li {
  font-size: 13px;
  margin-bottom: 6px;
}

/* LINK */
.read-link {
  margin-top: auto;
  font-size: 13px;
  color: #a82022;
  text-decoration: none;
  font-weight: 500;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {

  .blogs-grid {
    grid-template-columns: 1fr;
  }

  .blogs-small {
    grid-template-columns: 1fr;
  }

  .blog-card.horizontal {
    flex-direction: column;
  }

  .blog-card.horizontal img,
  .blog-card.horizontal .blog-content {
    width: 100%;
  }

}

@media (max-width: 600px) {

  .blogs {
    padding: 70px 0;
  }

  .blogs-header h2 {
    font-size: 26px;
  }

}

/* ===== CTA SECTION ===== */

.cta {
  position: relative;
  width: 100vw;              /* FULL SCREEN WIDTH */
  left: 50%;
  right: 50%;
  margin-left: -50vw;        /* BREAK OUT OF CONTAINER */
  margin-right: -50vw;
  padding: 100px 0;
  overflow: hidden;
}

/* GLOW BACKGROUND EFFECT */
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/background.png') center/cover no-repeat;
  z-index: 0;
}
.container {
  width: auto;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* BOX */
.cta-box {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;

  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.5);
}

/* .site-content {
  overflow-x: hidden;
} */
/* TEXT */
.cta-box h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 10px;
}

.cta-box p {
  font-size: 18px;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* PRIMARY */
.btn-primary {
  background: #a82022;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #8e1b1d;
}

/* SECONDARY */
.btn-secondary {
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #fff;
  color: #000;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {

  .cta-box {
    padding: 40px 20px;
  }

  .cta-box h2 {
    font-size: 22px;
  }

  .cta-buttons {
    flex-direction: column;
  }

}


/* ===== FOOTER BASE ===== */
.footer {
  background: #000;
  color: #fff;
  padding: 80px 0 30px;
  width: 100%;
}

/* ===== CONTAINER ===== */
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== GRID ===== */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}

/* FIX GRID OVERFLOW */
.footer-grid > * {
  min-width: 0;
}

/* ===== BRAND ===== */
.footer-brand img {
  max-width: 140px;
  margin-bottom: 20px;
}

/* ===== CONTACT ===== */
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-contact img {
  width: 16px;
  height: 16px;
  margin-top: 4px;
}

/* ===== HEADINGS ===== */
.footer-col h4 {
  font-size: 20px;
  margin-bottom: 18px;
  font-weight: 600;
}

/* ===== MENU RESET (VERY IMPORTANT) ===== */
.footer-col ul {
  display: block !important;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  display: block !important;
  margin-bottom: 10px;
}

.footer-col ul li a {
  display: inline-block;
  color: #ccc;
  font-size: 16px;
  text-decoration: none;
  white-space: normal;
  word-break: normal;
  transition: 0.2s ease;
}

.footer-col ul li a:hover {
  color: #a82022;
}

/* ===== BOTTOM ===== */
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #222;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: #aaa;
  font-size: 16px;
}

.footer-links a {
  color: #aaa;
  margin-left: 15px;
  font-size: 16px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

/* ===== TABLET ===== */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer {
    padding: 50px 0 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a {
    margin-left: 0;
    margin-right: 15px;
  }
}
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-boxes {
    display: flex;
    gap: 20px;
}

.contact-boxes .box {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .contact-hero-wrapper,
    .contact-boxes {
        flex-direction: column;
    }
}


.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

.contact-form input[type="submit"] {
    background: #a82022;
    color: #fff;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form input[type="submit"]:hover {
    background: #8e1b1d;
}