@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0px;
    box-sizing: border-box;
}

:root {
    --primary: #FF6600;
    --secondary: #9A9A9A;
  }


body{
    overflow-x: hidden;
}

.checkflight {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}
.checkflight .navbar {
    background-color: white;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 25%);
    padding: 5px 20px;
}

.checkflight .navbar .container-fluid {
    flex-wrap: nowrap;
}

.checkflight .navbar .logo {
    width: 180px;
}

.checkflight .navbar .logo img {
    width: 100%;
}

.checkflight .navbar ul.menu_items {
    list-style: none;
    display: flex;
    align-items: center;
    margin-bottom: 0px;
}

.checkflight .navbar ul.menu_items li {
    padding: 10px 20px;
}

.checkflight .navbar ul.menu_items li a {
    text-decoration: none;
    color: #5B5B5B;
    font-size: 14px;
}

.checkflight .navbar ul.menu_items li a:hover {
    color: #ff6600;
}

.checkflight .navbar .active {
    color: #ff6600 !important;
    font-weight: 500;
}

.checkflight .navbar ul.menu_items li a.active {
    position: relative;
}

.checkflight .navbar ul.menu_items li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0px;
    width: 100%;
    height: 1px;
    background-color: #ff6600;
}

.checkflight .navbar .api-btn button {
    padding: 8px 14px;
    border-radius: 8px;
    background-color: #ff6600;
    color: white;
    font-size: 14px;
}

.checkflight .navbar button {
    border: none;
    background: transparent;
    color: black;
}

.checkflight .navbar button svg {
    color: black;
}

button.menu_btn {
    display: none;
}

.overlay_menu {
    z-index: 1;
    display: none;
}

button.close_menu_sidebar {
    display: none;
}

.menu_items .dropdown-item:active {
    background: white;
}

.menu_items .dropdown-item:hover {
    background: transparent;
}

/* -------------banner---------------- */

.banner .banner-content {
    padding: auto 100px;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
    top: 0px;
    position: absolute;
    right: 35% !important;
    left: 10% !important;
}

.banner .banner-content .banner-text{
  width: 80%;
}

.banner .banner-content h5 {
    font-size: 24px;
    color: #252525;
    font-weight: 600;
}

.banner .banner-content h5 span {
    color: #ff6600;
}


.banner .banner-content h1 {
    font-size: 48px;
    color: #252525;
    font-weight: 600;
    padding: 15px 0 10px;
}
.banner .banner-content h2 {
  font-size: 48px;
  color: #fff;
  font-weight: 600;
  padding: 15px 0 10px;
}
.text-bn-2{
  color: #fff !important;
}


.banner .banner-content p {
    font-size: 24px;
    color: #252525;
}

.banner .banner-content button {
    background-color: #ff6600;
    color: white;
    border-radius: 10px;
    border: none;
    padding: 12px 34px;
    font-size: 16px;
    font-weight: 500;
    margin-top: 40px;
    
}

/* Home page features slider */

.image-name-text {
    text-align: center;
}



/* ----------new-features---------- */
.new_features h4 {
    font-size: 34px;
    font-weight: 600;
    color: #000;
}

.new_features p {
    color: #5B5B5B;
    font-size: 14px;
}

.new_features_heading {
    max-width: 500px;
    margin-inline: auto;
}

.slider-card-wrap img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    border-radius: 6px;
    height: 300px;
    object-fit: cover;
    object-position: 0% 50%;

}

.slider-card-wrap {
    padding: 10px;
    border: 1px solid #BDBDBD;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 25%);
    border-radius: 6px;
    margin-inline: 5px;
}


/* ----------------------contact-------------- */


.main-content .card {
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 25%);
    border: 1px solid #eee;
    margin: 100px 0px;
}

.main-content .card form h4 {
    margin-bottom: 60px;
    font-size: 28px;
    color: #000;
    font-weight: 600;
}

.main-content .card form .input-field-wrap {
    margin-bottom: 25px;
}

.main-content .card form .input-field-wrap label {
    color: #252525;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 500;
}

.main-content .card form .input-field-wrap .input-field {
    background-color: #F0F0F0;
    border: 1px solid #E7E7E7;
    border-radius: 5px;
    padding: 10px 20px;
}

.main-content .card form .input-field-wrap .input-field input {
    border: none;
    outline: none;
    background-color: transparent;
}

.main-content .card form .input-field-wrap .input-field input::placeholder {
    font-size: 16px;
    color: #5B5B5B;
}

.main-content .card form .input-field-wrap .textarea-field textarea {
    border-radius: 10px;
    background: #E7E7E7;
    border: 1px solid #E7E7E7;
    width: 100%;
    height: 100px;
    padding: 15px;
}

.contact-form-container {
  padding-bottom: 0.5rem !important;
}

.input-icon svg {
    width: 20px;
}

.submit-btn {
    background-color: #ff6600;
    color: white;
    padding: 14px 30px;
    border-radius: 30px;
    border: none;
}


.contact-us-pop-up {
    background-color: #FF6600;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    width: 130px;
}

.card-margin {
  margin: 37px 0px !important;
}

.card-padding {
  padding-bottom: 50px !important;
}


/* --------------------video------------------- */
.main_content_video h4 {
    font-size: 28px;
    color: #000;
    font-weight: 600;
}

.main_content_video p {
    font-size: 16px;
    color: #5B5B5B;

}

.main_content_video video {
    height: 220px;
}

/* --------------footer-------------- */
footer {
    background-color: black;
    color: white;
    padding: 10px 0px;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

footer p {
    font-size: 14px;
    font-weight: 400;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    background-color: #E7E7E7 !important;
    color: #5B5B5B;
    border-radius: 100%;
    height: 2.5rem;
    width: 2.5rem;
}

.owl-prev,
.owl-next {
    transform: translate(0%, -50%);
    position: absolute;
    top: 50%;

}

.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
    background-color: #ff6600 !important;
    color: white;
}

.owl-prev {
    left: -50px;
}

.owl-next {
    right: -50px;
}

.owl-carousel .owl-stage-outer {
    padding: 10px 0px;
}


/* ---------------contact-popup----------- */
.cstm-popup-wrap {
    display:flex;
    width: 100%;
    height: 100vh;
    background-color: blue;
    align-items: center;
    justify-content: center;
}

.cstm-popup-wrap.active {
    display: flex;
}

.cstm-popup-wrap .cstm-popup {
    background-color: white;
    border-radius: 10px;
    width: 500px;
    position: relative;
    z-index: 2;
    padding: 24px;

}

.cstm-popup-wrap .close_popup_btn {
    position: absolute;
    top: 10px;
    right: 10px;
}

.cstm-popup-wrap .cstm-popup .popup_check_icon {
    width: 60px;
    margin-inline: auto;
}

.cstm-popup-wrap .cstm-popup .popup_check_icon img {
    width: 100%;
}

.cstm-popup-wrap .cstm-popup .popup_text h5 {
    color: #252525;
    font-size: 24px;
    font-weight: 500;
}

.cstm-popup-wrap .cstm-popup .popup_text p {
    font-size: 16px;
    color: #777777;
    line-height: 25px;
    font-weight: 500;
}
.modal-footer-btn > button.modal-close-btn {
    background-color: #FF6600;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    width: 130px;
}

.cstm-popup-wrap .cstm-popup .ok_btn button {
    background-color: #FF6600;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    width: 130px;
}

.cstm-popup-wrap .cstm-popup .popup_text {
    max-width: 300px;
    margin-inline: auto;
}

.cstm-popup_overlay.active_overlay {
    background-color: rgba(0, 0, 0, 25%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
}



/* Image Slider Styles */

.image-slider {

    position: relative;

    width:100%;

    height: 280px;

    overflow: hidden;

    background-color: #f0f0f0;

    border-radius: 8px;

    padding: 10px;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

}



.image-block img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    transition: transform 0.3s ease;

}


/* Hover Block for Enlarged Image */

.hover-block {

    display: none;

    position: fixed;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 960px;

    height: 560px;

    background-color: white;
    border: 1px solid #bdbdbd;
    border-radius: 10px;
    z-index: 1000;
    box-shadow: 4px 0px 20px rgba(0, 0, 0, 25%);
    overflow-x: scroll;

}



.hover-block img {

    position: absolute;
    /* Important for panning */

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    object-fit: contain;

    transition: transform 0.3s ease;

    cursor: grab;

}



/* Close Button */

.close-button {

    position: absolute;

    top: 0px;

    right: -5px;
    background: transparent;
    border: none;
    cursor: pointer;

    z-index: 1100;

}


.checkflight .navbar .api-button button{
    padding: 8px 14px;
    border-radius: 8px;
    background-color: #ff6600;
    color: white;
    font-size: 14px;
}

.api-button {
    display: flex;
    height: 100vh;
    align-items: end;
    justify-content: center;
}


.main_about_content{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* how it work */


.navbar-nav .nav-item .nav-link {
    color: var(--secondary)
  }

  .navbar-nav .nav-item>a.nav-link.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
  }




  /* banner-section */
  .home-banner-section {
    position: relative;
    top: 3px;
  }

  .home-banner-section .headings {

    position: absolute;
    top: 50%;
    left: 50% !important;
    transform: translate(-50%, -50%);
  }

  .home-banner-section .container-fluid {
    padding: 0px !important;
  }


  .heading-title {
    color: var(--secondary);
  }

  .headings>h1 {
    font-weight: 600;
    font-size: 2.5rem;
  }

  .headings>.btn {
    background-color: var(--primary);
    border-radius: 30px;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
  }

  .headings>.btn:hover {
    background-color: #e25a00;
  }

  .step-title .active {
    color: var(--primary);
  }

  .counter {
    padding: 15px;
    border-radius: 10px;
    background-color: var(--primary);
  }

  .api-btn {
    background-color: var(--primary);
    border-radius: 10px;
    color: #fff;
  }

  .login-section,
  .right-section {
    position: relative;
  }

  .counter-2 {
    padding: 0px 8px !important;
    border-radius: 50%;
    color: #fff;
  }

  .banner-count .counter {
    padding: 3px 8px !important;
    border-radius: 50%;
    color: #fff;
  }

  .profile {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: baseline;
    height: 100%;
    padding-left: 192px;
    margin-bottom: 20px;
  }

  .profile-two {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: baseline;
    height: 100%;
    padding-left: 125px;
  }

  .para-title {
    font-size: 14px;
  }

  .feature-title {
    padding: 50px;
  }

  .step-title>h3,
  .feature-title>h3 {
    font-size: 24px;
    font-weight: 600;
  }

  .feature-section {
    background-image: url(../Image/feature_bg.png);
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
    padding: 60px 0px;
    background-size: cover;
  }

  .feature-title .active {
    color: var(--primary);
  }

  .bg-card-feature {
    background-color: #fff;
    border-radius: 10px;
  }

  .border-style {
    border: 1.5px solid #7f7f7f;
    border-style: dashed;
    min-height: 235px;
    max-height: 100% !important;
  }

  .bg-card-feature>ul li p {
    color: #5a5a5a;
    font-size: 14px;
  }

  .footer {
    background-color: #000;
    padding: 15px;
    color: #fff;
  }

  .feature-text>img {
    height: 20px;
  }

  .feature-heading {
    font-weight: 600;
  }

  .text-title>h5 {
    font-weight: 600;
  }

  .line-through>img {
    position: relative;
    left: 117px;
  }

  .line-through {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .login-img {
    position: relative;
  }

  .arrow_ui {
    position: absolute;
    bottom: -129px;
    width: fit-content;
  }
  

  .home-section {
    background: url(../Image/hero.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .step-section .container .row .col-lg-12,
  .feature-section .container .row .col-lg-12 {
    width: 100%;
  }


/* Hero Section */
.hero {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa, #e0e0e0);
  color: #333;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
  color: #007bff;
  font-weight: bold;
}

.hero p {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 50px;
}

/* Video Grid */
.video-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.video-item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.video-item video {
    width: 350px;
    height: 200px;
   border-radius: 10px;
}

/* CTA Button */
.cta-button-container {
  margin-top: 50px;
}

.cta-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #007bff;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.1em;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

/* Code for errors templates */

.error-body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  color: #343a40;
  text-align: center;
  padding: 50px;
}
.error-h1 {
  font-size: 72px;
  margin-bottom: 10px;
  color: #dc3545;
}
.error-h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
.error-p {
  font-size: 18px;
}
.error-a {
  color: #007bff;
  text-decoration: none;
  font-size: 18px;
}
.error-a:hover {
  text-decoration: underline;
}
.error-container {
  max-width: 600px;
  margin: auto;
}
.error-code {
  font-size: 100px;
  font-weight: bold;
}
.container-error {
  margin-top: 30px;
  color: rgb(255, 81, 0);
  font-size: 15px;
  text-align: center;
}



/* Industry News CSS */


.home-section{
  background: url(../Image/news-banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-section .container .row .col-lg-12,
.feature-section .container .row .col-lg-12{
  width: 100%;
}
.news-section-heading h1{
  font-size: 29px;
  font-weight: 600;
  padding: 0px 0px 14px 0px;

}
.news-paragraph{
  font-size: 18px;
}
.news-text{
  padding: 14px 0px 14px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;

}
.news-date{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-date h6{
  color: #8E3F0A;
  font-size: 16px;
  font-weight: 600;
}
.news-date p{
  color: #5a5a5a;
  font-size: 16px;
}

.news-section img {
  width: 100%;
}

.news-content h4{
  font-size: 24px;
  font-weight: 600;
}
.news-content p{
  font-size: 16px;
  color: #5a5a5a;
}
.inner-content h5{
  font-size: 16px;
  font-weight: 600;

}
.inner-content p{
  font-size: 14px;
  color: #5a5a5a;

}
.inner-content h6{
  font-size: 14px;
  font-weight: 600;
  color:#8E3F0A;

}
.inner-content h5,.inner-content h6,.inner-content p{
  margin: 0px;
  margin-top: 10px;
}
.news-content h4,.news-content h6,.news-content p{
  margin: 0px;
  margin-top: 16px;
}
.read-more{
  color: #FF6600;
  text-decoration: underline;
}


.news-banner-img{
  background: url(../Image/news-banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
  position: relative;
}

.news-banner-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.news-atag {
  text-decoration: none;
}

/* Privacy Policy */

.policy-text-justify {
  text-align: justify;
}

.container.my-10 {
  padding: 12px;
}


.banner-image-privacy {
  padding: 20px;
  border-radius: 12px 12px 0px 0px;
  margin-top: 26px;
  height: 280px;
  gap: 10px;
  background: url(../Image/bg-image-policy.png);
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.banner-image-privacy h1 {
  font-size: 34px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.banner-image-privacy span {
  font-size: 14px;
  background: #8d8d8d75;
  border: 1px solid #ffffff8f;
  border-radius: 10px;
  padding: 6px 16px;
}

.content-box-privacy {
  background: #fbfbfb;
  padding: 18px;
  display: flex;
  gap: 24px;
  flex-direction: column;
}

.banner-image-privacy p {
  color: #ffffff;
  text-align: -webkit-center;
  font-size: 15px;
  margin-bottom: 0;
}

.contentarea-pro h4 {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 1px solid #e7e7e7;
}

.contentarea-pro h6{
  font-size: 18px;
}

.contentarea-pro p {
  font-size: 15px;
  color: #000000;
}

.list-of-eudataprocessingaddendum {
  display: flex;
  flex-direction: column;
  gap: 24px;
}


