
@font-face {
  font-family: 'roboto';
  src: url('../fonts/Roboto-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'RobotoLight';
  src: url('../fonts/Roboto-light.ttf') format('truetype');
}
@font-face {
  font-family: 'RobotoBold';
  src: url('../fonts/Roboto-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'RobotoMedium';
  src: url('../fonts/Roboto-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'cricoro';
  src: url('../fonts/cricoro.otf') format('opentype');
}
@font-face {
  font-family: 'raleway';
  src: url('../fonts/Raleway-Regular.woff') format('woff');
}
@font-face {
  font-family: 'poppins';
  src: url('../fonts/Poppins-Regular.ttf') format('truetype');
}
.spinner {
  display: inline-block;
  border: 6px solid #f3f3f3;
  border-top: 6px solid gold;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
#loader p{
  text-align: center;
}
body {
  font-family: 'roboto', sans-serif;
  color: #1B1B1B;
  font-size: 16px;
}
html {
  scroll-behavior: smooth;
}

/* p{
  text-align: justify;
} */
/* span{
  text-align: justify;
} */
.font-roboto-light{
  font-family: 'RobotoLight', sans-serif;
}
.font-roboto{
  font-family: 'roboto', sans-serif;
}
.font-cricoro{
  font-family: 'cricoro', sans-serif;
}
.hero-bg {
  height: 100vh;
  background: url('../images/home-banner.png') top/cover no-repeat;
  /* background-size: 100%; */
  position: relative;
}
.video-bg {
  position: relative;
  width: 100%;
  height: 100vh; /* full screen height */
  overflow: hidden;
}

.video-bg video {
  position: absolute;
  top: 0%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 100vw;
  height: auto;
  z-index: -1;
  transform: translate(-50%, 0%);
  object-fit: cover;
}
 .content {
  position: relative;
  z-index: 1;
  top: 40%;
}

.hero-general{
  background-color: #1A4F92;
  height: 80vh;
  position: relative;
}
.hero-image{
  position: absolute;
  right: 0;
  bottom: -10%;
  text-align: right;
}
/* When in RTL, float image to left and align text accordingly */
/* Flip image in RTL */
html[dir="rtl"] .hero-image {
  right: auto;
  left: 0;
  text-align: left;
  transform: scaleX(-1); /* flips horizontally */
}
html[dir="rtl"] p {
  text-align:right;
}
html[dir="rtl"] h3 {
  text-align:right;
}
html[dir="rtl"] .navbar-brand{
  margin-right: 0;
}
html[dir="rtl"] .me-2 {
    margin-left: 0;
}
.hero-image img{
  width: 35rem;
}
.whole-hero img{
  width: 30rem !important;
}
.hero{
  position: absolute;
  top: 35%;
}
.hero h1{
  font-family: 'cricoro', sans-serif;
}
/* .hero::after {
  content: "";
  position: absolute;
  inset: 0;
} */

.hero > .text-center {
  position: relative;
  z-index: 1;
}

.trust {
  color: #F9B90F;
}

.pure {
  color: #fff;
}

.gold {
  color: #F9B90F !important;
}
.gold-bg{
  background-color: #F9B90F;
}
.navbar{
  background-color: transparent !important;
}
.nav-link{
  color: white !important;
}
.nav-link:hover{
  color: #F9B90F !important;
}
.modal.fade .modal-dialog {
  transform: translateY(-100px);
  opacity: 0;
  /* transition: transform 0.3s ease, opacity 0.3s ease; */
  transition: transform 0.3s ease-out, opacity 0.3s ease-out !important;
}

.modal.fade.show .modal-dialog {
  transform: translateY(0);
  opacity: 1;
}

.modal.fade.closing .modal-dialog {
  transform: translateY(-100px);
  opacity: 0;
}
/* Make close button bigger, white and smooth */

.btn-close-white:hover {
  opacity: 1;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}
.search-btn{
  cursor: pointer;
}
.container-fluid{
  --bs-gutter-x: 7rem !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.hero-btn{
  color:white;
  font-family: 'RobotoMedium', sans-serif;
  padding: 1.5rem 4rem;
  text-decoration: none;
  display: inline-block;
}
.hero-btn:hover {
  background: #fcd34d;
}
.font-20{
  font-size: 20px;
}
.font-55{
  font-size: 55px;
}
.font-35{
  font-size: 35px;
}
.font-30{
  font-size: 30px;
}
.font-25{
  font-size: 25px;
}
.font-18{
  font-size: 18px;
}
.font-70{
  font-size: 70px;
}
.section-title{
  font-size: 35px;
  font-family: 'cricoro', sans-serif;
  color:#1A4F92;
}
.section-desc{
  color:#1B1B1B;
  font-family: 'RobotoLight', sans-serif;
  font-size: 25px;
}
.home-section-one{
  margin-bottom: 5rem;
  position: relative;
  /* margin-top: 3rem; */
  padding-top: 8rem;
}
.home-section-design{
  position: absolute;
  top:0;
  left: 0;
}
.arrow-span{
   display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: #1B1B1B; */
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  position: absolute;
    bottom: 8px;
    right: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease-out, transform 0.3s ease-out, opacity 0.3s ease-out;
}
.arrow-span:hover{
  /* background-color: #3166a9; */
}
.image-arrow{
  height: 19rem;
  position: relative;
}
.block-image{
  height: 100%;
  width:100%;
  object-fit: cover;
  border-radius: 2rem;
}
.width-100{
  width: 100%;
  height: 100%;
  object-fit: cover;

}
.home-section-two{
  position: relative;
  padding-bottom: 18rem;
}
.home-section2-design{
  position: absolute;
  bottom: 0;
  left: 40%;
  width: 18%;
  z-index: -1;
}
.home-section-three{
  /* margin-bottom: 2rem; */
  height: 30rem;
  background-color: #F5F3F4;

  position: relative;
  width: 100%;
  overflow: hidden;
}
.home-section-three video{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
/* Overlay */
.home-section-three .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1A4F92; /* you can change to any color */
  mix-blend-mode: color; /* makes it multiply with video */
  z-index: 0;
}
.title-card{
  font-weight: bold;
  color: #F9B90F;
  font-family: 'Roboto-Bold',sans-serif;
} 
.home-section4-design{
  position: absolute;
  top: -2%;
  right: 0;
}
.home-section-four{
  background-color: #1A4F92;
  padding-bottom: 1rem;
  position: relative;
  /* background-color: #F5F3F4; */
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.section4-cards{
  border-top: 1px solid white;
  min-height: 6rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.number{
  position: relative;
}
.number span{
  color: white;
  position: absolute;
  bottom: 0;
  font-family: 'poppins',sans-serif;
}
.section5-home{
  width: 70%;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
 .blocks-container {
    display: flex;
    width: 100%;
     gap: 30px;
     box-sizing: border-box;
  }

  .block {
    flex: 1;
    transition: flex 0.3s ease;
    cursor: pointer;
    border-radius: 20px;
  }
  .blocks-container:hover .block {
    flex: 1.2; /* default grow a little */
  }

  .block:hover {
    flex: 0.5; /* shrink hovered */
  }

  .blocks-container:hover .block:not(:hover) {
    flex: 2; /* grow others more */
  }

.white-bg{
  background-color: white;
  border-radius: 15px;
  padding: 20px;
}
.image3x4{
  height: 12rem;
}
.image3x4 img{
  border-radius: 15px;
}
.contactus{
  /* background-color: #1A4F92; */
  /* background-image: url(../images/GoldGoat.svg); */
  /* background-size: 100%; */
  /* text-align: center; */
    padding-top: 3rem;
    overflow: hidden;
  padding-bottom: 3rem;
}
.contactus_thankyou{
  background-color: #1A4F92;
  background-image: url(../images/GoldGoat.svg);
  background-size: 100%;
  text-align: center;
    padding-top: 3rem;
    overflow: hidden;
  padding-bottom: 3rem;
}

.form-control:focus {
    border: var(--bs-border-width) solid var(--bs-border-color);;
    box-shadow: none !important;
}
#inquiryForm{
  color: #fff;

  margin-left: auto;
  margin-right: auto;
}
form {
  display: flex;
  flex-direction: column;
}

.row input, .phone-field {
  flex: 1;
}

input, textarea {
  width: 100%;
  padding: 12px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.phone-field {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.phone-field .flag {
  padding: 0 8px;
}

.attachment {
  font-size: 12px;
  color: #ccc;
  cursor: pointer;
}

.attachment input {
  display: none;
}
.radio-label {
    display: inline-flex;
    align-items: center;
    color: #999999;
    cursor: pointer;
    gap: 0; /* removes any spacing between button and text */
}

.radio-label input[type="radio"] {
    margin: 6px; /* removes default margin before the radio button */
}


.submit-btn {
  background: #fbbf24;
  color: white;
  padding: 20px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'RobotoBold' , sans-serif ;
  width: 15rem;
}
textarea.form-control {
    min-height: 10rem !important;
}
.submit-btn:hover {
  background: #fcd34d;
}
.placeholder-white::placeholder {
  color: #fff !important;
  opacity: 1;
}
.form-control{
  /* background: #4E78AF !important; */
  /* border: 0 !important; */
  border-radius: 0 !important;
  font-family: 'RobotoLight', sans-serif;
  /* font-size: 14px !important; */
  padding: 1rem 1.5rem;
}
.footer{
  background-color: #B5CBEA;
  padding-left: 5rem;
  padding-right: 5rem;
  padding-top: 2rem;
  padding-bottom: 1rem;
  font-family: 'raleway' , sans-serif;
  color: #1E1E1E;
}
.blue{
  color: #1A4F92 !important;
}
.white{
  color: white !important;
}
.font-12{
  font-size: 11px;
}
/* Fixed height with scroll */
#flagList {
    max-height: 200px; /* adjust as needed */
    overflow-y: auto;
        border-radius: 0;
}

/* Make flag + name nicely aligned */
#flagList .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.dropdown-item{
  padding-left: 0.8rem !important;
  padding-right: 0.8rem !important;
}
.dropdown-item:hover, .dropdown-item:focus{
  background-color: #5d8bc7 !important;
}
.dropdown-menu{
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  width: 119% !important;
  --bs-dropdown-min-width:auto !important;
  padding: 0 !important;
  /* background-color: #4e77ab !important; */
}
.dropdown-menu li{
  width: auto !important;
}
/* WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #4e77ab; /* or any color you like */
  border-radius: 10px;
}

/* Firefox */
* {
  scrollbar-width: thin;
  /* scrollbar-color: rgba(255, 255, 255, 0.4) transparent; */
}
.popup-nav {
  direction: ltr; /* Always keep arrows in same order */
}

 .custom-file-upload {
        display: flex;
        align-items: center;
        cursor: pointer;
        color: white;
        /* font-size: 15px; */
        gap: 10px;
    }

    .custom-file-upload:hover {
        opacity: 0.9;
    }

    .custom-file-upload img {
        width: 20px;
        height: 20px;
    }

    .custom-file-upload input[type="file"] {
        display: none;
    }

    .file-text {
        display: flex;
        align-items: center;
    }
    #file-info{
      color: #1A4F92 !important;
      font-family: 'RobotoLight', sans-serif;
    }
    .file-text .sub-text {
        /* opacity: 0.5; */
        font-family: 'RobotoLight',sans-serif;
        margin-left: 5px;
    }
    label{
      margin-bottom: 0.5rem;
    }
.live-rate{
  background-color: #1E1E1E;
  border-radius: 20px;
  min-height: 35rem;
  height: auto;
  border-radius: 20px;
margin-top: 3rem;
padding: 40px 40px 5px;
}
.gallery {
  display: flex;
  gap: 20px;
  position: relative;
}

.gallery img {
  position: absolute;
  width: 55%;
  height: 350px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 24px;
  border: 7px solid white;
  transition: 0.3s;
}
/* Image 1 (base image) */
.gallery img:nth-child(1) {
  top: 5rem;
  left: 0;
  z-index: 1;
}

/* Image 2 (overlay image) */
.gallery img:nth-child(2) {
  top: 0;   /* push slightly down */
  right: 0;  /* push slightly right */
  z-index: 2;  /* show above image 1 */
}
.gallery img:hover {
  transform: scale(1.05);
}

/* Popup (lightbox) */
/* Popup background */
.popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Content box */
  .popup-content {
    background: #fff;
    /* border-radius: 16px; */
    padding: 60px 40px;
    max-width: 1000px;
    width: 90%;
    display: flex;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
  }

  /* Popup image */
  .popup-content img {
    width: 500px;
    height: 350px;
    border-radius: 12px;
    object-fit: cover;
  }

  /* Details section */
  .data-details {
    flex: 0.9;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* Title, Subtitle, Description styles */
  .detail-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
  }

  .detail-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    margin-bottom: 15px;
  }

  .detail-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
  }

  /* Navigation arrows */
  /* .popup-nav {
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
  } */

  .popup-nav {
    /* background: rgba(0,0,0,0.6); */
    border: none;
    color: #999999;
    font-size: 24px;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'RobotoLight';
    background: transparent;
  }

  .popup-nav:hover {
    color: #F9B90F;
  }

  /* Close button */
  .close {
    position: absolute;
    top: 8px;
    right: 30px;
    font-size: 45px;
    font-weight: lighter;
    color: #1A4F92;
    cursor: pointer;
    font-family: 'RobotoLight';
  }
  #popupPrev{
    position: absolute;
    bottom: 5px;
    left: 49%;
  }
  #popupNext{
      position: absolute;
    bottom: 5px;
    left: 54%;
  }

.tick-section{
  position: relative;
  min-height: 25rem;
  height: auto;
  background: url("../images/tick.png");
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
}
.tick-section span{
  /* position: absolute; */
  top: 30px;
  left: 40px;
  color: white;
  font-family: 'cricoro',sans-serif;
}
html[dir="rtl"] .tick-section span {
  right: 40px;
  left: auto;
  text-align: left;
}
html[dir="rtl"] .tick-section img {
  transform: scaleX(-1); /* flips horizontally */
  margin-right: 1.5rem;
}

html[dir="rtl"] .hero-bg {
  background: url('../images/home-banner-ar.png') top/cover no-repeat;
}

.tick-section p{
  color: white;
  font-family: 'cricoro',sans-serif;
  margin: 0 !important;
  /* direction: ltr; */
}
.testing-section{
  position: relative;
  min-height: 50rem;
  height: auto;
  background: url("../images/gold.png");
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 3rem;
  border-radius: 20px;

}
.testing-section span{
  /* position: absolute; */
  top: 25%;
  left: 40px;
  color: white;
  font-family: 'cricoro',sans-serif;
      margin-top: 25%;
}
.testing-section p{
  color: white;
  font-family: 'cricoro',sans-serif;
  margin: 0 !important;
}
html[dir="rtl"] .testing-section span {
  right: 40px;
  left: auto;
  text-align: left;
}
html[dir="rtl"] .testing-section img {
  transform: scaleX(-1); /* flips horizontally */
  margin-right: 1.5rem;
}
.plane-section:hover span {
    transform: translateY(-80px); /* Move title up when desc appears */
}
.plane-section{
  position: relative;
  min-height: 40rem;
  height: auto;
  background: url("../images/plan.png");
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;

}
.plane-section span{
  /* position: absolute; */
  margin-top: 70%;
  left: 40px;
  color: white;
  font-family: 'cricoro',sans-serif;
}
html[dir="rtl"] .plane-section span {
  right: 40px;
  left: auto;
  text-align: left;
}
html[dir="rtl"] .plane-section img {
  transform: scaleX(-1); /* flips horizontally */
  margin-right: 1.5rem;

}
.plane-section p{
  color: white;
  font-family: 'cricoro',sans-serif;
  margin: 0 !important;
  direction: ltr;
}
.two-color-bg{
  background-image: url('../images/two-colors-bg.svg');
  background-size: 100%;
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-position-y: bottom;
}

.timeline-container {
  position: relative;
  padding-left: 50px;
  
}

.timeline-line {
  position: absolute;
  top: 0;
  left: 25px;
  width: 2px;
  height: 80%;
  background: #ccc;
  transform: translateX(-50%);
    left: 50%;
}

.timeline-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #1A4F92;
  transition: height 0.2s ease-out;
}

.circle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  /* padding: 0.7rem; */
  width: 3.5rem;
  height: 3.5rem;
  background: white;
  border: 2px solid #ccc;
  color: #ccc;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  font-size: 30px;
  font-family: 'cricoro',sans-serif;
      align-content: center;
}

.circle.active {
  background: white;
  border-color: #1A4F92;
  color: #1A4F92;
}

.circle[data-step="1"] {
  top: 0;
}

.circle[data-step="2"] {
  top: 600px;
}

.circle[data-step="3"] {
  bottom: 0;
}


/* Content layout */
.timeline-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 95px 0;
  position: relative;
  z-index: 3;
}

.timeline-content {
  width: 45%;
}

.timeline-content img {
  max-width: 100%;
  height: auto;
}

.title {
  font-size: 35x;
  color: #1A4F92;
  text-transform: uppercase;
  font-family: 'cricoro',sans-serif;

  margin-bottom: 10px;
}

p {
  font-size: 15px;
  color: #333;
  font-family: 'roboto',sans-serif;

}

strong {
  font-weight: 600;
}
.strong {
  font-weight: 600;
}
.real-time-rate{
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.whole-section-one{
  margin-bottom: 5rem;
  position: relative;
  margin-top: 3rem;
  padding-top: 2rem;
}
html[dir="rtl"] .whole-section-two .col-md-8{
    padding-left: 0 !important;
}
html[dir="rtl"] .whole-section-two .col-md-4{
    padding-right: 0 !important;
}
html[dir="rtl"] .blue-bg {
    right: 2.5rem;
    left: 0;
}

.black-bg{
  background-color: #1E1E1E;
  padding-top: 5rem;
  height: 35rem;
}
.black{

}
.dark-blue{
  color: #283646 !important;
}
.blue-bg{
  background-color: #1A4F92;
  position: absolute;
  padding: 4rem 2rem;
  left: 2.5rem;
  bottom: 0%;
}
.blue-box{
  border-radius: 10px;
  padding: 2rem 4rem;
  text-align: center;
}
.privacy-section {
  display: flex;
  margin: auto;
  padding: 40px 20px;
  position: relative;
}

.sidebar {
  position: sticky;
  top: 20px; /* adjust based on header height */
  left: 0;
  width: 25%; /* or whatever width fits */
  height: calc(100vh - 100px); /* 100px same as top */
  overflow-y: auto;
  background: #fff; /* or your sidebar background */
  padding-left: 0;
  z-index: 1000;
}
html[dir="rtl"] .sidebar ul {
    padding-right: 0px;
    padding-left: auto;
}

.sidebar ul {
  list-style: none;
  padding-left: 0px;
  margin: 0;
}

.sidebar li {
  padding: 8px 10px;
  cursor: pointer;
  color: #333;
  font-size: 20px;
  font-family: 'roboto' , sans-serif;
  position: relative;
  border-left:2px solid #E2E2E2 ;
}

.sidebar li.active {
  font-weight: 600;
}

.indicator {
  position: absolute;
  width: 4px;
  background: #1A4F92;
  left: 0;
  top: 0;
  transition: top 0.3s ease;
  border-radius: 4px;
  z-index: 1;
}
html[dir="rtl"] .indicator {
    right: 0;
    left: auto;
}
html[dir="rtl"] .contactus_thankyou .pe-2 {
    padding-left: 0.5rem !important;
    padding-right: 0 !important;
}
html[dir="rtl"] .sidebar li
 {
    border-right: 2px solid #E2E2E2;
    border-left:0;
 }
.main-content {
  margin-left: 100px; /* sidebar width + spacing */
  font-family: 'roboto',sans-serif;
  width: 75%;
}

.content {
  flex: 1;
}

.content-block {
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
  border-bottom: 1px solid #E2E2E2;
  border-bottom: 1px solid #eee;
}
.privacy-policy-hero{
  background-image: url('../images/pp-banner.png');
  background-size: cover;
}
.width-60{
  width: 75%;
}
.container-nopadding{
  padding-left: 0;
}
.btn-close{
  float: right;
  z-index: 10;
  position: relative;
}
.fullscreen-mobile-menu {
  z-index: 9999;
  overflow-y: auto;
} 
#mobileMenu.collapse:not(.show) {
    display: none !important;
}
/* Animate custom full-screen mobile menu */
#mobileMenu {
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
}

#mobileMenu.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.hero-nav {
    background-color: #1A4F92;
    height: 100%;
    position: relative;
}
.footer a{
    text-decoration: none !important;
}
.wholesale-boat{
  background-image: url('../images/wholesale-boat.png');
  background-size: cover;
}
.whole-hero{
      bottom: -8% !important;
}
/* General section styling */
.tick-section, .testing-section, .plane-section {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    padding: 20px 40px;
    transition: transform 0.3s;
    display: flex;
    z-index: 4;
}

/* Overlay */
.tick-section::before, 
.testing-section::before, 
.plane-section::before {
    content: '';
    position: absolute;
    top: 2px; left: 1px;
    width: 100%; height: 100%;
    background: #7C7C7C;
    mix-blend-mode: multiply;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: -1;
}

/* Hover effect */
.tick-section:hover::before,
.testing-section:hover::before,
.plane-section:hover::before
{ 
    opacity: 1;
}

/* Animated text */
.hover-text {
    position: absolute;
    padding:  0 40px;
    left: 0;
    bottom: 20px;
    color: #fff;
    font-size: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-out;
    font-family: 'roboto',sans-serif;
}

/* Show text on hover */
.tick-section:hover .hover-text,
.testing-section:hover .hover-text,
.plane-section:hover .hover-text {
    opacity: 1;
    transform: translateY(0);
}
a{
    color: inherit;
    text-decoration: none;
    font-size: inherit;
}
.whole-section-one .col-md-1{
  margin-right: 1.5rem;
}
.section4-blocks{
  background-color: white;
  box-shadow: 10px 10px 10px rgba(255, 255, 255, 0.2);
  padding: 0 2rem;
  color: #1A4F92;
  text-align: center;
  min-height: 8rem;
   display: flex;
  justify-content: center; /* horizontal centering */
  align-items: center;   
}
.section4-blocks span{
  font-weight: bold;
  display: contents;
  font-family: 'Roboto',sans-serif;
}
  /* Default: Mobile (Swiper active) */
  .swiper {
    width: 100%;
    /* padding: 20px 0; */
  }

  .swiper-slide {
    text-align: center;
    border-radius: 20px;
    cursor: pointer;
    background: #fff;
    padding: 10px;
    box-sizing: border-box;
    margin: 0 !important;
  }

  /* Desktop: Flexbox hover effect */
  @media (min-width: 768px) {
    .swiper-wrapper {
        display: flex !important;
    width: 100%;
     /* gap: 30px; */
     box-sizing: border-box !important;
    }

    .swiper-slide {
      flex: 1;
        transition: flex 0.5s ease !important;
    cursor: pointer;
    border-radius: 20px;
    }

    .swiper:hover .swiper-slide {
      flex: 1.2; /* all grow a little */
    }

    .swiper-slide:hover {
      flex: 0.5; /* hovered shrinks */
    }

    .swiper:hover .swiper-slide:not(:hover) {
      flex: 2; /* others grow more */
    }

    /* Hide Swiper arrows/pagination on desktop */
    .swiper-pagination,
    .swiper-button-next,
    .swiper-button-prev {
      display: none !important;
    }
    .swiper-pagination{
      bottom: -6px !important;
    }

  }
    @media (max-width: 768px) {
      .swiper-horizontal {
          direction: ltr !important;
      }
      .swiper-slide {
        margin-right: 20px !important;
      }
      .swiper-pagination{
        bottom: -6px !important;
      }
      .swiper-button-next, .swiper-button-prev{
        display: none !important;
      }
      .swiper{
        padding-bottom: 1rem !important;
      }
  }
  .flip-card {
  perspective: 1000px;
   margin-bottom: 1rem; 
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 150px;                    /* adjust as needed */
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  min-height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  font-weight: 600;
  border-radius: 0;                  /* sharp edges */
  box-shadow: 10px 10px 10px rgba(254, 254, 255, 0.4); /* blue box shadow */
  cursor: pointer;
}

.flip-front {
  background: #ffffff;               /* white background */
  color: #1A4F92;                    /* blue text */
}

.flip-back {
  background: #F9B90F;               /* yellow background */
  color: #ffffff;                    /* white text */
  transform: rotateY(180deg);
}
.flip-back span{
  font-size: 16px;
  font-weight: normal;
}
.flip-front span{
  text-align: center !important;
}
/* Remove iOS default appearance and spacing */
/* iOS/Safari only */
.radio-label{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* remove iOS default margin/appearance as much as possible */
.radio-label input[type="radio"]{
  -webkit-appearance: none;
  appearance: none;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: 2px solid #0d6efd;
  margin: 0;
  position: relative;
      padding: 4px !important;
}

/* fallback inner dot using box-shadow trick (works on many browsers) */
.radio-label input[type="radio"]:checked{
  box-shadow: inset 0 0 0 6px #0d6efd;
  background-color: #0d6efd;
}

/* restore keyboard focus */
.radio-label input[type="radio"]:focus{
  outline: none;
  box-shadow: 0 0 0 4px rgba(13,110,253,0.15);
}


/* Responsive */
@media (max-width: 3000px) {
  body{
    font-size: 30px;
  }
  p{
    font-size: 30px;
  }
}
@media (max-width: 1800px) {
  body{
    font-size: 20px;
  }
  p{
    font-size: 20px;
  }
}
@media (min-width:1600px) {
   .blue-bg {
    padding: 2rem 2rem;
    height: 70%;
  }
  .black-bg {
    padding-top: 2rem;
    height: 50%;
  }
}
@media (max-width:1480px){
  .blue-bg {
    padding: 2rem 2rem;
  }
  .black-bg {
    padding-top: 2rem;
  }
}
@media (max-width:1300px) {
    .blue-bg {
    position: initial;
  }
  .black-bg {
    height: auto;
        padding-top: 2rem;    padding-bottom: 2rem;
  }
  .blue-bg {
    padding: 2rem 2rem 1rem;
  }
  .whole-hero img {
    width: 17rem !important;
  }
  .hero-image img{
    width: 17rem !important;
  }
  .font-55 {
    font-size: 40px;
}
}
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
      display: block;
      margin-top: 0;
    }
    
}
@media (max-width: 1000px) {
  .home-section-two {
    padding-bottom: 8rem;
  }
      .contactus .col-md-5 img {
        display: none;
    }
}
@media (max-width: 768px) {
  .video-bg .text-white p{
    width: 70%;
  }
  .hero-bg {
      background-position-x: -12rem;
    }
  .flip-card {
    margin-bottom: 1.5rem;
  }
      .image-arrow{
    height: auto;
  }
  .block{
    margin-bottom: 1.5rem;
    font-weight: bold;
    text-align: center;
  }
  .hero-bg {
    background-size: auto;
  }
  .timeline-block {
    flex-direction: column;
    text-align: center;
  }

  .timeline-content {
    width: 100%;
    margin-bottom: 20px;
  }

  .timeline-line {
    left: 20px;
    transform: none;
  }

  .circle {
    /*left: 20px;*/
    /*transform: translateY(-50%);*/
  }
  .blocks-container{
    display: block;
  }
  .home-section4-design
  {
    top: -7%;
  }
 
  .home-section-four .col-md-7{
    margin-top: 1rem;
  }
  p{
    font-size: 20px;
    text-align: left;
  }
  .footer , .contactus{
    padding-left: 0;
    padding-right: 0;
  }
  iframe {
    width: 100%;
  }
  .font-55 {
    font-size: 30px;
  }
  .hero-image img {
    width: 12rem !important;
  }
  body {
      font-size: 20px;
  }
  .two-color-bg {
    background-image: none;
    padding-top: 3rem;
  }
  .container-nopadding{
    --bs-gutter-x:7rem;
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
  .real-time-rate{
    padding-bottom: 0;
  }
  .font-35 {
    font-size: 23px;
  }
  .gallery img{
      position: static;
      width: 100%;
      height: 300px;
    }
  .gallery {
      display: block;
      position: static;
  }
  .mt-5 {
      margin-top: 1.5rem !important;
  }
  .section-title {
    font-size: 25px;
  }
  .section-desc {
    font-size: 20px;
  }
  .home-section-one {
    margin-bottom: 3rem;
  }
  .pt-5 {
      padding-top: 1rem !important;
  }
  .home-section-two {
    padding-bottom: 3rem;
  }
  .popup-content{
    display: block;
    padding: 20px 10px;
    height: auto;
    overflow: auto;
  }
  .popup-content img {
    width: 100%;
    height: 350px;
    margin-bottom: 0.5rem;
  }
  .close {
      top: -13px;
      right: 5px;
      font-size: 30px;
  }
  #popupPrev {
    left: 40%;
  }
  #popupNext {
      left: 52%;
  }
  .mt-4 {
      margin-top: 1rem !important;
  }
  .number span {
    position: initial;
  }
  .font-20 {
    font-size: 17px;
  }
  .section5-home {
    width: 80%;
    margin-top: 1rem;
    margin-bottom: 1rem;  
  }
  .font-30 {
    font-size: 20px;
  }
  .contactus{
    padding-top: 2rem;
  }
  .row{
    margin-top: 0.5rem !important;
  }
  .form-control
  {
    padding: 0.5rem 1rem;
  }
  .font-18 {
    font-size: 16px;
  }
  .contactus .col-md-5 img{
    display: none;
  }
  .hero-general {
    height: 75vh;
  }
  .hero-image {
    bottom: -4% !important;
  }
  .testing-section
  {
    min-height: 25rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .plane-section {
    min-height: 25rem;
  }
  .live-rate {
    min-height: 25rem;
    margin-top: 1rem;
  }
  .hover-text {
    padding: 0 20px;
    font-size: 16px !important;
  }
  .plane-section:hover span {
    transform: translateY(-140px);
  }
  .plane-section span ,.testing-section span ,.tick-section span {
    left: 20px;
  }
  .testing-section:hover span {
    transform: translateY(-30px);
  }
  .timeline-content.right{
    text-align: left;
  }
  .timeline-content.left{
    text-align: left;
  }
  .timeline-block {
    margin: 15px 0;
  }
  .timeline-block.logistics-block {
      display: flex;
      flex-direction: column-reverse; /* image above text */
      align-items: center;
  }

  .timeline-block.logistics-block .timeline-content {
      width: 100%;
      text-align: center; /* optional */
      margin-bottom: 1rem;
  }
  .hero-trading{
    bottom: -4%;
  }
  .timeline-container{
    padding-top: 2rem;
    margin-top: 3rem;
  }
  .whole-section-one {
    padding-top: 0rem;
    margin-bottom: 2rem;
  }
  .whole-section-one .ps-4 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .blue-bg {
    position: initial;
  }
  .black-bg {
    height: auto;
        padding-top: 2rem;    padding-bottom: 2rem;
  }
  .blue-bg {
    padding: 2rem 2rem 1rem;
  }
  .pb-5
  {
    padding-bottom: 1rem !important;
  }
  .width-100{
    height: 20rem;
  }
  .video-bg {
    height: 85vh;
  }
  .content {
    bottom: 0;
  }
  .hero-btn {
    padding: 0.5rem 2rem;
  }
  .submit-btn {
    padding: 10px;
    font-size: 13px;
  }
  .file-text {
    display: block;
  }
  .custom-file-upload img {
    width: 18px;
    height: 18px;
    margin-top: 2px;
  }
  .custom-file-upload {
    align-items: normal;
  }
  .navbar-nav {
    /* transform: translateX(32%); */
    position: inherit;
    left: 32%;
    font-size: 20px;
  }
  .font-25 {
    font-size: 16px;
  }
  #goldChart {
        height: 200px !important; /* override default */
  }
}
@media (max-width: 470px){
  .popup-content img {
    height: 300px;
  }
  html[dir="rtl"] .hero-bg {
    background-position-x: -5rem;
}
  .section4-blocks{
    margin-bottom: 1rem;
    min-height: 7rem;
  }
  .home-section-four {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .hero-bg {
    background-position-x: -21rem;
  }
  .font-70 {
    font-size: 50px;
  }
  .hero-bg {
      height: 100%;
  }
  .font-55 {
    font-size: 30px;
  }
  .section-title {
    font-size: 25px;
  }
  .section-desc
  {
    font-size: 20px;
  }
  body {
      font-size: 15px;
  }
  p {
      font-size: 15px;
  }
  .font-20 {
    font-size: 15px;
  }
  .title-card {
    height: auto;
  }
  .home-section-four .col-md-8{
    padding-top: 1rem;
  }
  .home-section-two .col-md-5{
    padding-top: 1rem;
  }
  .sidebar {
    display: none;
  }
  .main-content {
    margin-left: 0;
    width: 100%;
  }
  .privacy-section {
    padding: 0;
  }
  .width-60 {
    width: 85%;
  }
}
@media (max-width: 350px){
  .p {
    text-align: left;
  }
  .font-55 {
    font-size: 25px;
  }
  .section-title {
    font-size: 20px;
  }
  .section-desc
  {
    font-size: 18px;
  }
  body {
      font-size: 15px;
  }
  .font-35 {
    font-size: 20px;
  }
  p {
      font-size: 15px;
  }
  .font-20 {
    font-size: 13px;
  } 
  .font-25 {
    font-size: 20px;
  } 
}
