@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&display=swap');


/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* BODY DEFAULT */
body {
font-family: "Arimo", sans-serif;
  line-height: 1.6;

  color: #222;
  height: 100%;

}

/* LINK STYLE */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* IMAGE RESPONSIVE */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* FORM ELEMENTS */
input,
button,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
}

/* LIST RESET */
ul,
ol {
  list-style: none;
}

p{
  font-size: 17px;
  color: hsl(201deg 42% 24%);
}

.all-section{

padding: 70px 0px 40px;}




/*=============================================
=            Root            =
=============================================*/

:root{
  --primary-color: hsl(358deg 88% 43%);
  --secondary-color:hsl(215deg 65% 37%);
}






/*=============================================
=            Header section            =
=============================================*/

.logo img{
margin: auto;
  width: 300px;
  height: 100%;
}


.first-letter{
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 900;
}

.full-word{
  color: var(--secondary-color);
  font-size: 22px;
  font-weight: 900;
}

footer .first-letter{
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 900;
}

footer .full-word{
  color: var(--secondary-color);
  font-size: 22px;
  font-weight: 900;
}

.first-content-main{
  display: flex;
  align-items: center;
  height: 100%;
}
.first-content p{
  font-size: 21px;
}


/*=============================================
=            KEY BENEFITS CSS            =
=============================================*/


.section-title h1 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.benefit-main {
  gap: 30px;
  /* spacing between boxes */
  margin-bottom: 40px;
}

.benefit-content {
  flex: 1 1 calc(20% - 30px);
  /* 5 in a row with space */
  max-width: calc(20% - 30px);
  /* background: white; */
  padding: 20px;
  border-radius: 12px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); */
  transition: all 0.3s ease;
}

.benefit-content:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1); */
}

.benefit-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefit-icon img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  margin-bottom: 15px;
}

.benefit-icon h6 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin: 0;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
  /* 🔥 force same line */
  overflow: hidden;
  /* in case it's too long */
  text-overflow: ellipsis;
  /* add ... if it overflows */
}

/* Responsive for tablets */
@media (max-width: 992px) {
  .benefit-content {
    flex: 1 1 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
  }
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .benefit-content {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .benefit-content {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.main-page{
  padding-top: 15px;
}

.salient-features img{
  width: 100vw;
  
}

.copy-right p{
  font-size: 22px;
  margin-bottom: 0px;
}
.banner-section{
  background-color: #fafafa;
}

footer{
  background-color: #dbdbdb44;
  padding: 10px 0px;
}


.timeline {
  position: relative;
  padding: 4px 0 0 0;
  margin-top: 22px;
  list-style: none;
}

.timeline>li:nth-child(even) {
  position: relative;
  margin-bottom: 50px;
  height: 0px;
  right: -70px;
  top: -60px;
}

.timeline>li:nth-child(odd) {
  position: relative;
  margin-bottom: 50px;
  height: 128px;
  left: -125px;
}

.timeline>li:before,
.timeline>li:after {
  content: " ";
  display: table;
}

.timeline>li:after {
  clear: both;
  min-height: 170px;
}

.timeline>li .timeline-panel {
  position: relative;
  float: left;
  width: 41%;
  padding: 56px 29px 0 26px;
  text-align: right;
}

.timeline>li .timeline-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}

.timeline>li .timeline-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}

.timeline>li .timeline-image {
  z-index: 100;
  position: absolute;
  left: 50%;
  border: 16px solid #026bbe;
  border-radius: 100%;
  /* background-color: #3b5998; */
  box-shadow: 0 0 5px #4582ec;
  width: 200px;
  height: 200px;
  margin-left: -100px;
}

.timeline>li .timeline-image h4 {
  margin-top: 12px;
  font-size: 10px;
  line-height: 14px;
}

.timeline>li.timeline-inverted>.timeline-panel {
  float: right;
  padding: 0 30px 20px 20px;
  text-align: left;
}

.timeline>li.timeline-inverted>.timeline-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}

.timeline>li.timeline-inverted>.timeline-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}

.timeline>li:last-child {
  margin-bottom: 0;
}

.timeline .timeline-heading h4 {
  margin-top: 22px;
  margin-bottom: 4px;
  padding: 0;
  font-size: 30px;
  font-weight: 800;
  background: linear-gradient(to right, #0d6bb0, #342984, #461b5a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timeline .timeline-heading h4.subheading {
  margin: 0;
  padding: 0;
  text-transform: none;
  font-size: 18px;
  color: #333333;
}
.timeline .timeline-body>p{
  font-size: 18px ;
  font-weight: 600;
}

.timeline .timeline-body>p,
.timeline .timeline-body>ul {
  margin-bottom: 0;
  color: #000;
}
.text-muted{
  color: #000 !important;
}

/*Style for even div.line*/
.timeline>li:nth-child(odd) .line:before {
  /* content: ""; */
  position: absolute;
  top: 60px;
  bottom: 0;
  left: 690px;
  width: 4px;
  height: 340px;
  background-color: #3b5998;
  -ms-transform: rotate(-44deg);
  /* IE 9 */
  -webkit-transform: rotate(-44deg);
  /* Safari */
  transform: rotate(-44deg);
  box-shadow: 0 0 5px #4582ec;
}

/*Style for odd div.line*/
.timeline>li:nth-child(even) .line:before {
  /* content: ""; */
  position: absolute;
  top: 60px;
  bottom: 0;
  left: 450px;
  width: 4px;
  height: 340px;
  background-color: #3b5998;
  -ms-transform: rotate(44deg);
  /* IE 9 */
  -webkit-transform: rotate(44deg);
  /* Safari */
  transform: rotate(44deg);
  box-shadow: 0 0 5px #4582ec;
}
/* Medium Devices, .visible-md-* */
@media (min-width: 992px) and (max-width: 1199px) {
  .timeline>li:nth-child(even) {
    margin-bottom: 0px;
    min-height: 0px;
    right: 0px;
  }

  .timeline>li:nth-child(odd) {
    margin-bottom: 0px;
    min-height: 0px;
    left: 0px;
  }

  .timeline>li:nth-child(even) .timeline-image {
    left: 0;
    margin-left: 0px;
  }

  .timeline>li:nth-child(odd) .timeline-image {
    left: 690px;
    margin-left: 0px;
  }

  .timeline>li:nth-child(even) .timeline-panel {
    width: 76%;
    padding: 0 0 20px 0px;
    text-align: left;
    margin-left: auto;
  }

  .timeline>li:nth-child(odd) .timeline-panel {
    width: 70%;
    padding: 0 0 20px 0px;
    text-align: right;
  }

  .timeline>li .line {
    display: none;
  }
}

/* Small Devices, Tablets */
@media (min-width: 768px) and (max-width: 991px) {
  .timeline>li:nth-child(even) {
    margin-bottom: 0px;
    min-height: 0px;
    right: 0px;
  }

  .timeline>li:nth-child(odd) {
    margin-bottom: 0px;
    min-height: 0px;
    left: 0px;
  }

  .timeline>li:nth-child(even) .timeline-image {
    left: 0;
    margin-left: 0px;
  }

  .timeline>li:nth-child(odd) .timeline-image {
    left: 520px;
    margin-left: 0px;
  }

  .timeline>li:nth-child(even) .timeline-panel {
    width: 70%;
    padding: 0 0 20px 0px;
    text-align: left;
    margin-left: auto;
  }

  .timeline>li:nth-child(odd) .timeline-panel {
    width: 70%;
    padding: 0 0 20px 0px;
    text-align: right;
  }

  .timeline>li .line {
    display: none;
  }
}

/* Custom, iPhone Retina */
@media only screen and (max-width: 767px) {
  .timeline>li:nth-child(even) {
    margin-bottom: 0px;
    min-height: 0px;
    right: 0px;
  }

  .timeline>li:nth-child(odd) {
    margin-bottom: 0px;
    min-height: 0px;
    left: 0px;
  }

  .timeline>li .timeline-image {
    position: static;
    width: 150px;
    height: 150px;
    margin-bottom: 0px;
  }

  .timeline>li:nth-child(even) .timeline-image {
    left: 0;
    margin-left: 0;
  }

  .timeline>li:nth-child(odd) .timeline-image {
    float: right;
    left: 0px;
    margin-left: 0;
  }

  .timeline>li:nth-child(even) .timeline-panel {
    width: 100%;
    padding: 0 0 20px 14px;
  }

  .timeline>li:nth-child(odd) .timeline-panel {
    width: 100%;
    padding: 0 14px 20px 0px;
  }

  .timeline>li .line {
    display: none;
  }
}
.timeline-image img{
      position: relative;
        top: 43px;
        left: 35px;
        width: 100px;
}

/* Mobile Timeline (320px - 767px) */
@media (max-width: 767px) {
  .timeline {
    padding: 15px 0;
    margin: 0;
  }
    .timeline .timeline-heading h4{
      margin-top: 10px;
    }
.timeline>li .timeline-panel{
  text-align: left;
  padding-left: 20px !important;
}
  /* Remove center line on mobile */
  .timeline:before {
    display: none;
  }
    .timeline>li{
      margin-bottom: 30px !important;
    }

  .timeline>li {
    display: flex;
    margin-bottom: 30px;
    position: relative;
    padding-left: 100px;
    /* Space for image */
    min-height: 80px;
    /* Minimum height for content */
  }

  /* Timeline image/circle */
  .timeline>li .timeline-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    margin-left: 0;
    border: 8px solid #026bbe;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .timeline>li .timeline-image img {
    max-width: 40px;
    max-height: 40px;
  }

  /* Timeline panel/content */
  .timeline>li .timeline-panel {
    width: 100%;
    padding: 10px 15px;
    float: none;
    margin-left: 0;
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
  }

  /* Content styling */
  .timeline-heading h4 {
    font-size: 18px !important;
    margin: 0 0 5px 0;
  }

  .timeline-body p {
    font-size: 14px;
  }

  /* Remove any lines/connectors */
  .timeline>li .line {
    display: none;
  }

    .timeline-image img {
      position: relative;
      top: 0px;
      left: 2px;
      width: 100px;
    }

  /* Smaller phones (320px - 479px) */
  @media (max-width: 479px) {
    .timeline>li {
      padding-left: 54px;
    }

    .timeline>li .timeline-image {
      width: 60px;
      height: 60px;
    }

    .timeline>li .timeline-image img {
      max-width: 30px;
      max-height: 30px;
    }

    .timeline-heading h4 {
      font-size: 14px !important;
    }

    .timeline-body p {
      font-size: 12px !important;
    }
  }
}




/* Medium Devices, Tablets (768px to 1023px) */

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .timeline {
    padding: 0;
    margin-top: 0;
  }

  .timeline>li {
    margin-bottom: 30px !important;
    height: 108px !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
  }

  .timeline>li .timeline-image {
    position: relative;
    float: none;
    left: 0;
    margin: 20px auto;
    width: 150px;
    height: 150px;
  }

  .timeline>li .timeline-panel {
    float: none;
    width: 100%;
    padding: 0 15px;
    text-align: right !important;
  }

  .timeline>li.timeline-inverted>.timeline-panel {
    float: none;
    text-align: left !important;
    padding: 0 15px;
  }

  .timeline>li .line {
    display: none;
  }

  .timeline-image img {
    position: relative;
    top: 25px;
    left: 25px;
    width: 80px;
  }

  .timeline .timeline-heading h4 {
    margin-top: 0;
    font-size: 24px;
  }

  .timeline .timeline-body>p {
    font-size: 16px;
  }

    .timeline>li .timeline-panel{
      top: -120px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .timeline {
    padding: 0;
    margin-top: 0;
  }

  .timeline>li {
    margin-bottom: 30px !important;
    height: 108px !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
  }

  .timeline>li .timeline-image {
    position: relative;
    float: none;
    left: 0;
    margin: 20px auto;
    width: 150px;
    height: 150px;
  }

  .timeline>li .timeline-panel {
    float: none;
    width: 100%;
    padding: 0 15px;
    text-align: right !important;
  }

  .timeline>li.timeline-inverted>.timeline-panel {
    float: none;
    text-align: left !important;
    padding: 0 15px;
  }

  .timeline>li .line {
    display: none;
  }

  .timeline-image img {
    position: relative;
    top: 25px;
    left: 25px;
    width: 80px;
  }

  .timeline .timeline-heading h4 {
    margin-top: 0;
    font-size: 24px;
  }

  .timeline .timeline-body>p {
    font-size: 16px;
  }

    .timeline>li .timeline-panel{
      top: -120px;
    }
}


/* Medium-Large Devices (1024px to 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
  .timeline {
    padding: 20px 0 0 0;
    margin-top: 15px;
  }

  /* General item adjustments */
  .timeline>li {
    margin-bottom: 40px;
    height: auto;
  }

  /* Even items (right side) - reduced offset */
  .timeline>li:nth-child(even) {
    right:0px;
    top: -50px;
    height: 95px;
  }

  /* Odd items (left side) - reduced offset */
  .timeline>li:nth-child(odd) {
    left: 0px;
    height: 145px;
  }

  /* Smaller circles */
  .timeline>li .timeline-image {
    width: 160px;
    height: 160px;
    margin-left: -80px;
    border-width: 12px;
  }

  /* Adjusted icon positioning */
  .timeline-image img {
    top: 35px;
    left: 30px;
    width: 80px;
  }

  /* Narrower text panels */
  .timeline>li .timeline-panel {
    width: 36%;
    padding: 40px 15px 0 15px;
  }

  .timeline>li.timeline-inverted>.timeline-panel {
    width: 80%;
    padding: 0 15px 20px 15px;
  }

  /* Adjusted connecting lines */
  .timeline>li:nth-child(odd) .line:before {
    left: 520px;
    height: 280px;
    transform: rotate(-40deg);
  }

  .timeline>li:nth-child(even) .line:before {
    left: 340px;
    height: 280px;
    transform: rotate(40deg);
  }

  /* Typography adjustments */
  .timeline .timeline-heading h4 {
    margin-top: 15px;
    font-size: 24px;
  }

  .timeline .timeline-body>p {
    font-size: 15px;
  }
    .timeline>li .timeline-panel{
      top: 30px;
    }
}


/*=============================================
=            FEATURES CSS            =
=============================================*/
/* Base card styling */
.feature-card {
  background: #e3f2fd;
  padding: 30px 20px 50px;
  position: relative;
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 420px;
  /* Keeps all cards same height */
  overflow: hidden;
}

/* Triangle down (top row) */
.feature-card.triangle-down {
  /* clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%); */
clip-path: polygon(0 0%, 100% 0%, 100% 85%, 50% 101%, 0 85%);

  background-color: #e4f2ff;
}

/* Triangle up (bottom row) */
.feature-card.triangle-up {
  clip-path: polygon(50% 0%, 100% 15%, 100% 100%, 0 100%, 0 15%);
  background-color: #feecec;
}

/* Circle number */
.circle-number {
  width: 60px;
  height: 60px;
  background: crimson;
  color: #fff;
  font-weight: bold;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  margin: 0 auto 10px;
  font-size: 20px;
  z-index: 2;
  position: relative;
}

/* Title */
.feature-title {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 18px;
  padding: 5px 10px;
  
}
.triangle-down .feature-title{
background-color: var(--secondary-color);
color: #fff;

}
.triangle-up .feature-title{
background-color: var(--primary-color);
color: #fff;

}
 .triangle-up{
  padding: 80px 20px 0px ;
}
 .triangle-down{
  padding: 20px 20px 60px ;
}
/* Content */
.feature-card ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
  margin-top: 10px;
  flex-grow: 1;
  /* Push footer down */
}

.feature-card ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
  font-weight: 600;
}

.feature-card ul li::before {
  content: "■";
  position: absolute;
  left: 0;
  color: crimson;
}

/* Footer */
.red-footer {
  margin-top: 20px;
  padding-top: 10px;
  font-weight: bold;
  color: #c10000;
  background-color: #ffeaea;
  border-radius: 8px;
  padding: 8px;
}

/* Columns */
.feature-col {
  padding: 15px;
  display: flex;
  flex-direction: column;
}

/* Rows flex equal height */
.row {
  display: flex;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 767px) {
  .feature-card {
    clip-path: none;
    min-height: unset;
    height: auto;
  }

  .feature-card.triangle-up,
  .feature-card.triangle-down {
    clip-path: none;
  }
}
.dowm-row{
  position: relative;
  top: -6rem;
}

.triangle-down .circle-number{
  background-color: #fff;
  color: var(--secondary-color);
  font-size: 40px;
}
.triangle-up .circle-number{
  background-color: #fff;
  color: var(--primary-color);
  font-size: 40px;
}


@media only screen and (min-width:320px) and (max-width:1023px){
  .circle-number{
    display: none;
  }
    .dowm-row{
      position: static;
    }
}


@media only screen and (min-width:767px) and (max-width:1023px){
  .feature-card.triangle-down, .feature-card.triangle-up{
    clip-path: none;
  }
    .feature-card{
      min-height: 0;
      margin-bottom: 20px;
    }
} 


/*=====  End of FEATURES CSS  ======*/


@media only screen and (min-width:320px) and (max-width:1023px){

  .section-title h1{
    font-size: 25px;
  }
    .all-section{
padding: 20px 0px;
    }
}

.justify-center {
  justify-content: center !important;
}


.footer-section h2{
color: var(--primary-color);
font-weight: 700;
}
.footer-section button{
background-color: var(--primary-color);
color: #fff;
}
.footer-section button:hover{
  background-color: var(--secondary-color);
}

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.my-float {
  margin-top: 16px;
}

.private-policy-div{
  color: var(--primary-color);
  font-weight: 600;
}

.private-policy-div a:hover{

  color: var(--secondary-color);
}




.breadcumb-area {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  margin-top: 0px;
  position: relative;
  height: 420px;
  width: 100%;
}

.breadcumb-content h4 {
  font-size: 50px;
  color: #fff;
  line-height: 65px;
}

.breadcumb-content ul {

  margin-top: 10px;
}

.breadcumb-content ul li {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  font-family: "Poppins", serif;
  margin: 0 4px;
}

.breadcumb-content ul li a {
  display: inline-block;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
}

.policy-section {
  padding: 60px 0px;
}

.policy-content p {
  margin-bottom: 0px;
  text-align: justify;

}

.policy-content {
  padding: 5px 0px;
}

.policy-content h5 {
  color: var(--primary-color);
  font-weight: 600;
}

.policy-content span {
  color: var(--secondary-color);
  font-weight: 500;
}

.policy-content ul li svg {
  padding-right: 8px;
  color: var(--secondary-color);

}

.policy-content h6 {
  color: var(--primary-color);
  font-weight: 500;
}

.policy-content ul li{
  line-height: 35px;
}

@media only screen and (min-width:768px){
  .private-policy-div {
    text-align: right !important;
  }
}