:root{
    --primary-bg: #10375C;
    --third-bg: #0D2C4A;
}

body {
    font-family: 'Poppins', sans-serif;
  }
.primary-color{
    color: #10375C;
}
.secondary-color{
    color: #919191;
}
.primary-bg{
    background-color: #10375C ;
}
.secondary-bg{
    background-color: #FF5722;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #0d2c4a inset !important; /* tumhara desired bg color */
  -webkit-text-fill-color: #fff !important; /* text color */
  background-color: #fff !important;
}

.third-bg{
    background-color: #0D2C4A;
}
.primary-btn{
    background-color: #FF5722;
    color: #fff;
    border-radius: 0px;
    width: 400px;
}
.primary-btn:hover{
    background-color: #FF5722 !important;
    color:#fff !important;
}
h1{
    font-size: 36px;
    line-height: 44px;
}
h3{
    font-size: 18px;
}
p{
    font-size: 16px;
}
.pt-7{
    padding-top: 80px;
}
/* ========header========= */
.header{
    display: flex;
    align-items: flex-end;
    justify-content: end;
}
.header img{
    width: 250px;
}

/* ==========2nd section=========== */
.second_sec_heading h3::after{
    content: "";
    display: inline-block;
    background-color: var(--primary-bg);
    margin-left: 5px;
    width: 50px;
    height: 1px;
    vertical-align: middle;    
}
.second_sec_desc{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* ------- box slider-------- */
.custom-slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
  }
  
  .custom-slider-track {
    display: flex;
    /* width: max-content; */
    transition: transform 0.5s ease;
    gap: 40px;
    box-sizing: border-box;
  }

  .second_sec_box_slider{
    width: 100%; /* Ensure parent container full width */
    max-width: 100%;
    padding: 0;
  }
  
  .flip-card {
    min-width: 293px;
    height: 300px;
    /* flex-shrink: 0;
    perspective: 1000px; */
    text-align: center;
  }
  
  .flip-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
  
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  .flip-card-front,
  .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    overflow: hidden;
    background-color: white;
  }
  
  .flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .flip-card-back {
    background-color: #f4511e;
    color: white;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-align: center;
    padding: 30px;
  }
  
  .card-heading {
    margin-top: 15px;
    font-weight: 600;
    font-size: 18px;
    color: #0b2545;
  }
  
  /* Arrows Below */
  .custom-slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .arrow-btn {
    border: none;
    background: transparent;
    font-size: 48px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    padding: 5px 15px;
    color: #ccc;
    transition: color 0.3s ease;
  }
  
  .arrow-btn:hover {
    color: #f4511e;
  }
  
  .arrow-btn.active {
    color: #f4511e;
    pointer-events: auto;
  }
  
  .arrow-btn.disabled {
    color: #ccc;
    pointer-events: none;
  }
  

/* ------box slider end------ */

/* ==========3rd section=========== */
#third_sec{
    background-image: url('../images/image_slider.jpg');
    background-size: cover;
    padding: 60px;
}
.third_sec_inner_form{
    background-color:var(--primary-bg); 
    padding:30px;
}
.third_sec_inner_form input{
    background-color: var(--third-bg);
    border: 0;
    border-radius: 0px;
    color: #fff;
}
.third_sec_inner_form select{
    background-color: var(--third-bg);
    border: 0;
    border-radius: 0px;
    color: #fff;
    height: 40px;
    min-height: 40px;
    font-size: 14px;
}
.form-select:focus{
    box-shadow: none;
}
.third_sec_inner_form .form-control:focus{
    background-color: var(--third-bg);
    color: #ffffff;
    box-shadow: none;
}
.third_sec_inner_form .form-floating>label{
    color: #ffffff;
    padding: 8px 10px;
    font-size: 14px;
    
}
.third_sec_inner_form .form-floating>.form-control, .form-floating>.form-control-plaintext {
    padding: 30px 10px 16px 10px;
    height: 45px;
    min-height: 45px;
}
/* ==========4th section=========== */
.fourth_sec_box{
    background-color: var(--primary-bg);
    padding: 60px;
}

/* =========5th section======= */

.fifth_sec_list ul {
    list-style: none;
    padding: 0;
    border-left: 2px solid #ccc;
    position: relative;
  }
  
  .fifth_sec_list ul li {
    padding: 12px 20px;
    margin: 10px 0;
    font-weight: 600;
    color: #0b2545;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .fifth_sec_list ul li.active {
    background-color: #f4511e;
    color: #fff;    
    margin-left: 10px;
  }
  
  .scroll-info {
    margin-top: 50px;
    font-weight: 500;
    color: #888;
    font-size: 14px;
    transform: rotate(-90deg);
    transform-origin: left;
  }
  
  .fifth_sec_details {
    position: relative;
    max-width: 100%;
  }
  
  .fifth_sec_details img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .overlay_text {
    background-color: #f4511e;
    color: white;
    padding: 32px 20px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    margin-top: -65px;
  }
  
/* =========6th section=========== */
.sixth_sec ul li{
    list-style-type: none;
    display: inline;
    padding: 0 12px;
}

/* ========8th section========= */
.accordion-button:not(.collapsed) {
    background-color: #f4511e;
    color: white;
  }
  
  .accordion-button:focus {
    box-shadow: none;
    border-color: #f4511e;
  }
  
  .accordion-button {
    font-weight: 600;
    color: #6c6c6c;
  }

  /* =========faq section========== */
  .custom-accordion{
    width: 83%;
    margin: 0px auto;
  }

  /* =========last sec========== */
  .last_sec{
    height: 407px;
    display: flex;
  }
  .last_sec_image{
    position: relative;
  }
  .last_sec_image img{
    position: absolute;
    top: -70px;
  }

  /* =========mobile responcive============ */
  @media only screen and (max-width: 768px) {
  .primary-btn {
      width: 100%;
  }
  #third_sec{
    padding: 0px;
  }
  .last_sec {
    height: 100%;
  }
  .header{
    justify-content: flex-start;
    padding-bottom: 30px;
  }
  .header img {
    width: 200px;
  }
  h1 {
    font-size: 26px;
    line-height: 37px;
  }
  .pt-7 {
    padding-top: 40px;
  }
  .sixth_sec ul{
    padding-left: 0rem;
  }
  .sixth_sec ul li {
    list-style-type: none;
    display: inline-grid;
    padding: 16px;
    border: 1px solid #ccc;
    width: 100%;
    height: 130px;
    margin-bottom: 18px;
    align-items: center;
    justify-content: center;
  }
  .fourth_sec_box {
    padding: 31px;
    margin-top: 30px;
}
.last_sec_desc{
  padding: 20px;
}
.last_sec_image img {
  top: 0px;
  position: relative;
}
.custom-accordion {
  width: 100%;
}
.flip-card {
    min-width: 100%;
    height: 300px;
}
  }