/* Home Page CSS Started */

/* Header Css */

/* ===== FULL WIDTH HEADER FIX ===== */
.header-sec .row-1 {
  max-width: 100% !important;
  width: 100%;
  padding: 0 60px; /* controls left-right spacing */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* REMOVE DIVI CONTAINER LIMIT */
.header-sec .et_pb_row {
  width: 100%;
}

/* ===== LOGO LEFT ===== */
.header-sec .et_pb_column_0_tb_header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* BIGGER LOGO */
.header-sec .et_pb_image img {
  max-height: 90px; /* increased size */
  width: auto;
}

/* ===== MENU RIGHT ===== */
.header-sec .et_pb_column_1_tb_header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* ===== MENU TEXT SIZE INCREASE ===== */
.header-sec .et-menu > li {
  margin: 0 22px;
}

.header-sec .et-menu > li > a {
  font-size: 15px;  /* increased */
  font-weight: 500;
  color: #000;
}

/* ===== CTA BUTTON (BIGGER) ===== */
.header-sec .et-menu > li:last-child a {
  font-size: 15px;
  margin-top:-10px;
  padding: 10px 26px;
  border-radius: 30px;
  background: #ffcc00;
  color: #000 !important;
  font-weight: 600;
}


/* Header Css */

/* Banner Section CSS */
/* ===== HERO SECTION BASE ===== */
.banner-sec {
  background: #0b2a63;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

/* ===== FULL WIDTH CONTROL ===== */
.banner-sec .row-1 {
  max-width: 1300px;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== LEFT COLUMN ===== */
.banner-sec .et_pb_column_0 {
  padding-right: 40px;
}

/* ===== TAG TEXT ===== */
.banner-sec .et_pb_text_0 {
  color: #ff7a2f;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

/* ===== MAIN HEADING ===== */
.banner-sec .et_pb_text_1 h1 {
  font-size: 64px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

/* ===== DESCRIPTION ===== */
.banner-sec .et_pb_text_2 {
  color: #cbd6ff;
  font-size: 18px;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 40px;
}

/* ===== STATS WRAPPER FIX ===== */
.banner-sec .et_pb_text_3,
.banner-sec .et_pb_text_4,
.banner-sec .et_pb_text_5 {
  display: inline-block;
  width: 30%;
  vertical-align: top;
}

/* ===== STATS TEXT ===== */
.banner-sec .et_pb_text_3 p:first-child,
.banner-sec .et_pb_text_4 p:first-child,
.banner-sec .et_pb_text_5 p:first-child {
  color: #9fb3ff;
  font-size: 14px;
  margin-bottom: 5px;
}

/* ===== STATS NUMBER ===== */
.banner-sec .et_pb_text_3 span,
.banner-sec .et_pb_text_4 span,
.banner-sec .et_pb_text_5 span {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
}

/* ===== RIGHT IMAGE ===== */
.banner-sec .et_pb_image img {
  max-width: 110%;
  transform: translateX(40px) scale(1.1);
}

/* ===== GLOW EFFECT (PREMIUM) ===== */
.banner-sec::after {
  content: "";
  position: absolute;
  right: -200px;
  top: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(120,80,255,0.4), transparent);
  transform: translateY(-50%);
  z-index: 0;
}

/* ===== SMALL FLOATING SHAPE ===== */
.banner-sec::before {
  content: "";
  position: absolute;
  right: 20%;
  bottom: 10%;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(255,255,255,0.1);
  transform: rotate(45deg);
}

/* ===== FIX Z-INDEX ===== */
.banner-sec .et_pb_row {
  position: relative;
  z-index: 2;
}
/* ===== BUTTON BASE ===== */
.banner-sec .et_pb_button_0 {
  background: transparent;
  color: #ffffff !important;
  border: 1.5px solid #ffcc00;
  border-radius: 50px;
  padding: 14px 22px 14px 26px;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
}

/* ===== REMOVE DIVI DEFAULT ICON ===== */
.banner-sec .et_pb_button_0:after {
  display: none;
}

/* ===== CUSTOM ARROW CIRCLE ===== */
.banner-sec .et_pb_button_0::before {
  content: "➜";
  font-size: 13px;
  color: #ffcc00;
  border: 1.5px solid #ffcc00;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* ===== HOVER (LIKE REFERENCE) ===== */
.banner-sec .et_pb_button_0:hover {
  border-color: #ffcc00;
  color: #ffffff !important;
}

/* CIRCLE FILLS ON HOVER */
.banner-sec .et_pb_button_0:hover::before {
  background: #ffcc00;
  color: #0b2a63;
  transform: translateX(6px);
}

/* Banner Section CSS */

/* Client Section CSS */
/* Wrapper */
.clients-sec .row-2 {
    overflow: hidden;
    position: relative;
}

/* Track */
.clients-sec .row-2 .et_pb_column {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    width: max-content;

    /* Infinite smooth scroll */
    animation: infiniteScroll 25s linear infinite;
}

/* Logos */
.clients-sec .row-2 .et_pb_image {
    flex: 0 0 auto;
    margin-right: 60px !important;
}

.clients-sec .row-2 .et_pb_image img {
    max-height: 55px;
    width: auto;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: 0.3s;
}

.clients-sec .row-2 .et_pb_image:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

/* KEY ANIMATION (MAIN MAGIC 🔥) */
@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* Client Section CSS */


/* Trust Section CSS  */

/* ===== Trust Section ===== */
.trust-sec {
    background: #f7f6f4;
    padding: 80px 0;
    overflow: hidden;
}

.trust-sec .row-1 {
    width: 90%;
    max-width: 1320px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

/* Left Content */
.trust-sec .row-1 .et_pb_column_4 {
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-sec .et_pb_text_7 {
    margin-bottom: 22px !important;
}

.trust-sec .et_pb_text_7 h2 {
    font-size: 72px;
    line-height: 1.02em;
    font-weight: 500;
    letter-spacing: -2px;
    color: #0e1a3a;
    margin: 0;
    max-width: 720px;
}

.trust-sec .et_pb_text_7 h2 span {
    background: linear-gradient(90deg, #f2a36b 0%, #d97d82 45%, #6c8ee8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Paragraph */
.trust-sec .et_pb_text_8 {
    margin-bottom: 28px !important;
}

.trust-sec .et_pb_text_8 p {
    font-size: 17px;
    line-height: 1.6em;
    color: #24304f;
    margin: 0;
    max-width: 760px;
}

/* Button */
.trust-sec .et_pb_button_1_wrapper {
    margin-top: 8px !important;
}

.trust-sec .et_pb_button_1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px !important;
    border: 1.5px solid #142246 !important;
    border-radius: 50px !important;
    background: transparent !important;
    color: #142246 !important;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    box-shadow: none !important;
}

.trust-sec .et_pb_button_1:hover {
    background: #142246 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Right Image */
.trust-sec .row-1 .et_pb_column_5 {
    width: 44%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trust-sec .et_pb_image_11 {
    margin: 0 !important;
    width: 100%;
    position: relative;
}

/* soft glow behind image */
.trust-sec .et_pb_image_11::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 88%;
    height: 88%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(244,176,140,0.35) 0%, rgba(108,142,232,0.12) 45%, rgba(255,255,255,0) 72%);
    filter: blur(34px);
    z-index: 0;
    pointer-events: none;
}

.trust-sec .et_pb_image_11 .et_pb_image_wrap {
    display: block;
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 18px 50px rgba(18, 33, 70, 0.10);
}

.trust-sec .et_pb_image_11 img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    border-radius: 34px;
}

/* Optional: subtle image hover */
.trust-sec .et_pb_image_11 img {
    transition: transform 0.5s ease;
}

.trust-sec .et_pb_image_11:hover img {
    transform: scale(1.03);
}

/* Trust Section CSS */
/* Home Page CSS Ended */

/* Header Css */