
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
/* search form css */
@import url(header.css);
@import url(banner-form.css);
@import url(loader.css);
@import url(toast.css);

@font-face {
  font-family: 'Sunsive';
  src:  url('../fonts/Sunsive-Regular.woff') format('woff'),
        url('../fonts/Sunsive-Regular.woff2') format('woff2'),
        url('../fonts/Sunsive-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
}


.breadcrumb-item+.breadcrumb-item::before {
  color: #ffffff !important;
}

/* innner page css for form */
.inner-banner .bg-white.p-3.rounded-4 {
  margin-top: 1rem;
}

/* header page css for form */
.bg-none {
  background: none !important;
}

.main-banner .owl-nav .owl-prev,
.main-banner .owl-nav .owl-next {
  width: 90px;
  height: 80px; 
  border-radius: 3rem 0 0 3rem;
  background-color: rgba(255, 255, 255, 0.8) !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -100px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .35s ease;
}
.main-banner .owl-nav .owl-prev:hover,
.main-banner .owl-nav .owl-next:hover {
  background-color: var(--falcon-primary) !important;
}
.main-banner .owl-nav .owl-prev:hover svg path,
.main-banner .owl-nav .owl-next:hover svg path {
  stroke: #fff;
}
.main-banner .owl-nav .owl-prev {
  left: -100px;
  right: auto;
  border-radius: 0 3rem 3rem 0
}
.banner-section:hover .main-banner .owl-nav .owl-next {
  right: 0
}
.banner-section:hover .main-banner .owl-nav .owl-prev {
  left: 0
}
.banner-section img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.banner-section .shadow-dark-left {
  position: absolute;
	left: 0;
	top: 0;
	content: "";
	height: 100%;
	width: 100%;
	background-color: #000;
	z-index: 1;
	opacity: 0.5;
}
.banner-section .text-content {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}
.banner-form {
  background: var(--falcon-primary);
  padding: 20px 0;
}
@media (max-width: 991px) {
  .main-banner .owl-nav .owl-prev, .main-banner .owl-nav .owl-next {
    display: none;
  }
  .banner-section img {
    height: 350px;
    object-fit: cover;
  }
}


/* .home_banner h1 {
  line-height: 1.2;
  font-family: "Playfair Display", serif;
  text-transform: capitalize;
}

.home_banner h4 {
  font-family: "Playfair Display", serif;
} */

.inner-banner {
  background: none;
  padding: 30px 0px !important;
  background: var(--falcon-primary) !important;

}

.inner-banner .bn_heading {
  padding-bottom: 0px !important;
  font-size: 30px;
}

.inner-banner .text-center {
  text-align: left !important;
}

.breadcrumb {
  justify-content: start !important;
}
.breadcrumb-item + .breadcrumb-item::before {
  font-family: "Font Awesome 6 Pro"; 
  font-weight: 900; 
  content: "\f105"; 
  color: #fff; 
  padding-right: 8px;
}
.inner-breadcrumb {
  background-image: linear-gradient(90.15deg, var(--falcon-secondary) 1.15%, var(--falcon-primary) 98.84%);
}

.bn_heading {
  font-size: 80px;
}

/* Trending destinations Css */
.trend-desti:before {
  position: absolute;
  content: "";
  background-image: url(../img/feature-bg.png );
  background-repeat: no-repeat;
  background-size: cover;
  opacity: .2;
  width: 100%;
  height: 735px;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
}


/* offer-card css */
.custom-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-hover:hover {
  transform: translateY(-8px);
}

/* footer css  */
/* payment_icons fooetr css */
.payment_icons {
  background-color: var(--falcon-primary);
}

.payment_icons img {
  height: 28px;
}

.assist-img {
  height: 6.125rem;
  width: 6.125rem;
  min-width: 6.125rem;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.assistance-btn {
  background: linear-gradient(to right,
      var(--falcon-primary),
      color-mix(in srgb, var(--falcon-primary) 70%, var(--falcon-secondary) 30%),
      var(--falcon-secondary));
  background-size: 200% auto;
  transition: all 0.5s ease;
  z-index: 1;
  position: relative;
}

.assistance-btn:hover {
  background-position: right center;
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.glass-effect {
  background: #fff;
  backdrop-filter: blur(14px);
  border-radius: 1rem;
  animation: zoomIn 0.5s ease-in-out;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 1s ease-in-out forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.animate-loading {
  animation: progressAnim 2s infinite linear;
}

@keyframes progressAnim {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

.bg-search {
  background-color: #f2f2f2;
}

.hover-lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.cta-gradient {
  background: linear-gradient(135deg, rgb(var(--falcon-primary-rgb), 0.5) 0%, rgb(var(--falcon-primary-rgb), 1) 100%);
}

.bg-pattern-dots {
  background-image: radial-gradient(currentColor 1px, transparent 1px);
  background-size: 15px 15px;
  color: rgba(255, 255, 255, 0.3);
}

.circle-blur {
  filter: blur(60px);
  opacity: 0.5;
  border-radius: 50%;
}

.shape-element {
  bottom: -1px;
  position: absolute;
  fill: #ffffff;

  z-index: 4;
  width: 100%;
}

.shape-element svg {
  height: 70px;
  line-height: 0px;
  width: 100%;
}

.bottom-to-up {
  transform: rotate(180deg);
}
.top-element {
 top: -1px !important;
 bottom: auto !important;
}
.form-control::placeholder{
  color: #000 !important;
}


.about-img{
  text-align: right;
  position: relative;
}
.about-img .img-1{
  width: 58%;
  border-radius: 200px;
}
.about-img .img-2{
  position: absolute;
  left: 50px;
  bottom: 0px;
  width: 50%;
  border-radius: 200px;
  border: 10px solid #fff;
}


.section-title span {
  color: var(--falcon-primary);
  font-family: cursive;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.section-title h3 {
  margin: 5px 0 0;
  font-weight: 600;
}


.why-us {
  position: relative;
  background-color: #EFEFEF;
  z-index: 1;
  overflow: hidden;
}
.why-us .shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.why-choose-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 20px;
}
.why-choose-point {
  position: relative;
  display: block;
  margin-bottom: 0;
  padding: 0;
}
.why-choose-point li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background-color: #fff;
  padding: 15px;
  border-radius: 15px;
}
.why-choose-point li+li {
  margin-top: 19px;
}
.why-choose-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  background-color: rgba(var(--falcon-primary-rgb), .70);
  border-radius: 50%;
  top: 4px;
  z-index: 1;
}
.why-choose-icon:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  background-color: var(--falcon-primary);
  border-radius: 50%;
  z-index: -1;
}
.why-choose-icon i {
  position: relative;
  display: inline-block;
  font-size: 40px;
  color: #fff;
  transition: all 500ms ease;
}
.why-choose-point li:hover .why-choose-icon i {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
@keyframes wobble-horizontal-hover {
  16.65% {
    transform: translateX(5px);
  }
  33.3% {
    transform: translateX(-3px);
  }
  49.95% {
    transform: translateX(4px);
  }
  66.6% {
    transform: translateX(-2px);
  }
  83.25% {
    transform: translateX(1px);
  }
  100% {
    transform: translateX(0);
  }
}
.why-choose-content {
  position: relative;
  display: block;
  max-width: 500px;
  flex: 1;
}
.why-choose-content h4 {
  color: var(--falcon-secondary);
  line-height: 1.5em;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 8px;
}
.why-choose-content p {
  color: rgba(10, 7, 7, .70);
  text-align: justify;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .why-us {
    padding: 50px 0;
  }
  .why-choose-box {
    flex-wrap: wrap;
  }
  .why-choose-point li {
    gap: 15px;
  }
  .why-choose-content h4 {
    font-size: 18px;
  }
}

.counter-content {
  position: relative;
  display: block;
  z-index: 1;
}
.counter-count {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.counter-count h3 {
  font-size: 60px;
  font-weight: 700;
  line-height: 60px !important;
  color: var(--falcon-primary);
  margin-bottom: 0;
}
.counter-count span {
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  color: var(--falcon-primary);
}
.counter-count-text {
  font-size: 18px;
  color: var(--falcon-secondary);
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 0;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px) {
  .counter-single {
    border-right: 1px solid #535b5f4d;
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 20px;
  }
  .noborder {
    border: 0;
  }
}
@media (max-width: 575px) {
  .counter-single {
    margin-bottom: 20px;
    padding-bottom: 20px;
    line-height: 1;
    border-bottom: 1px solid rgba(83, 91, 95, 0.3);
  }
}

.destination-box-items.style-float {
  position: relative;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s;
  overflow: hidden;
}
.destination-box-items.style-float:hover {
  transform: translateY(-5px);
}
.destination-box-items.style-float .destination-image {
  border-radius: 20px;
  overflow: hidden;
  height: 280px;
}
.destination-box-items.style-float .destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.destination-box-items.style-float .top-items {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--falcon-secondary);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  z-index: 2;
}
.destination-box-items.style-float .destination-content {
  padding: 25px;
  position: relative;
  background: #fff;
}
.destination-box-items.style-float .destination-content h3 {
  font-size: 22px;
  margin-bottom: 5px;
}
.destination-box-items.style-float .destination-content h3 a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s;
}
.destination-box-items.style-float .destination-content h3 a:hover {
  color: var(--falcon-primary);
}
.destination-box-items.style-float .destination-content ul {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 10px 0;
}
.destination-box-items.style-float .destination-content ul li {
  color: #666;
  font-size: 14px;
}
.destination-box-items.style-float .destination-content ul li span {
  color: var(--falcon-primary);
  font-weight: 800;
  font-size: 20px;
  margin-right: 4px;
}
.destination-box-items.style-float .destination-content ul li del {
  font-size: 14px;
  color: #999;
}
.destination-box-items.style-float .destination-rattiing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
.destination-box-items.style-float .destination-rattiing .first-items {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #333;
  font-weight: 600;
}
.destination-box-items.style-float .star svg {
  width: 14px;
  height: 14px;
}

.destination-box-items.style-float .destination-rattiing p {
  color: #888;
  margin: 0;
}


.deal-bg.modern-glass {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../img/deal.jpg');
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding: 100px 0;
  color: #fff;
}
.deal-bg.modern-glass .hero-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}
.deal-bg.modern-glass .highlight {
  color: var(--falcon-primary); 
  position: relative;
  display: inline-block;
}
.deal-bg.modern-glass .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.2);
  z-index: -1;
}
.deal-bg.modern-glass .hero-subtitle {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px auto;
  opacity: 0.9;
  line-height: 1.6;
  color: #fff;
}
.deal-bg.modern-glass .deal-cta-wrapper {
  display: flex;
  justify-content: center;
}
.deal-bg.modern-glass .deal-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 30px;
  border-radius: 50px;   display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  cursor: pointer;
}
.deal-bg.modern-glass .deal-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
}
.deal-bg.modern-glass .icon-box {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--falcon-secondary);
  font-size: 20px;
  flex-shrink: 0;
}
.deal-bg.modern-glass .label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--falcon-primary);
  font-weight: 700;
}
.deal-bg.modern-glass .phone-number a {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.deal-bg.modern-glass .phone-number a:hover {
  color: var(--falcon-primary);
}


.vacation-wrapper.style-modern {
  padding: 80px 0;
  font-family: sans-serif;
}
.vacation-wrapper.style-modern .section-title h2 {
  color: #1a1a1a;
}
.vacation-wrapper.style-modern .vacation-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.vacation-wrapper.style-modern .vacation-item {
  flex: 1 1 300px; 
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}
.vacation-wrapper.style-modern .vacation-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.vacation-wrapper.style-modern .vacation-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.vacation-wrapper.style-modern .vacation-item:hover .vacation-image img {
  transform: scale(1.1);
}
.vacation-wrapper.style-modern .overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0) 100%);
  z-index: 1;
}
.vacation-wrapper.style-modern .vacation-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  z-index: 2;
  color: #fff;
  transition: all 0.3s ease;
  transform: translateY(90px);
}
.vacation-wrapper.style-modern .vacation-content h3 {
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 700;
  transform: translateY(0);
  transition: transform 0.3s ease;
  color: #fff;
}
.vacation-wrapper.style-modern .vacation-content p {
  font-size: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease 0s; 
  line-height: 1.5;
  margin-bottom: 15px;
  color: #fff;
}
.vacation-wrapper.style-modern .btn-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease 0.1s;
  display: inline-block;
}
.vacation-wrapper.style-modern .btn-link:hover {
  text-decoration: underline;
}
.vacation-wrapper.style-modern .vacation-item:hover .vacation-content {
  transform: translateY(0px);
}
.vacation-wrapper.style-modern .vacation-item:hover .vacation-content h3 {
  transform: translateY(-5px);
}
.vacation-wrapper.style-modern .vacation-item:hover .vacation-content p,
.vacation-wrapper.style-modern .vacation-item:hover .btn-link {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .vacation-wrapper.style-modern .vacation-item-list {
    flex-direction: column;
  }
  .vacation-wrapper.style-modern .vacation-image img {
    height: 300px;
  }
}


.reasons-section.style-clean .reason-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}
.reasons-section.style-clean .reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}
.reasons-section.style-clean .icon-box {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: rgba(48, 123, 196, 0.1);
  color: var(--falcon-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease;
}
.reasons-section.style-clean .reason-card:hover .icon-box {
  background: var(--falcon-primary);
  color: #fff;
}
.reasons-section.style-clean .icon-box img {
  width: 40px;
  height: auto;
}
.reasons-section.style-clean .text-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #1a1a1a;
}
.reasons-section.style-clean .text-box p {
  font-size: 15px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 576px) {
  .reasons-section.style-clean .reason-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .reasons-section.style-clean .icon-box {
    width: 60px;
    height: 60px;
  }
}

.testimonial-card.style-bold {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid var(--falcon-primary);
  border-left: 5px solid var(--falcon-primary);
}
.testimonial-card.style-bold .card-wrapper {
  padding: 30px;
}
.testimonial-card.style-bold .quote-top {
  width: 50px;
  height: 50px;
  background: var(--falcon-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(48, 123, 196, 0.3);
}
.testimonial-card.style-bold .text-body p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 25px;
}
.testimonial-card.style-bold .client-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}
.testimonial-card.style-bold .info h5 {
  margin: 0;
  font-size: 18px;
  color: #222;
}
.testimonial-card.style-bold .info small {
  color: #888;
  font-size: 13px;
  text-transform: uppercase;
}
.testimonial-card.style-bold .stars i {
  color: #FFB700;
  font-size: 14px;
  margin-left: 2px;
}
.owl-nav-container {
  position: static;
}
.owl-nav-container .owl-next {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  color: var(--falcon-secondary);
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 40px 0px rgba(18, 14, 14, 0.08);
  font-size: 16px;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border: 1px solid var(--falcon-primary);
}
.owl-nav-container .owl-prev {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  color: var(--falcon-secondary);
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 40px 0px rgba(18, 14, 14, 0.08);
  font-size: 16px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border: 1px solid var(--falcon-primary);
}
.owl-nav-container .owl-next {
  margin-left: 10px;
}
.owl-nav-container .owl-prev {
  margin-right: 10px;
}
.owl-nav-container .owl-next span,
.owl-nav-container .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.owl-nav-container .owl-next:hover,
.owl-nav-container .owl-prev:hover {
  background-color: var(--falcon-primary);
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .testimonial-single-inner {
    padding: 40px 20px 20px;
  }
  .owl-nav-container {
    display: none;
  }
}


.blog-item {
  background: #f8f8f8;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
}
.blog-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.blog-thumb img {
  border-radius: 12px;
  transition: all 0.4s ease;
  width: 100%;
}
.blog-item:hover .blog-thumb img {
  transform: scale(1.1);
}
.blog-content {
  position: relative;
  padding: 32px 20px 20px;
}
.blog-tag {
  font-weight: 600;
  text-transform: capitalize;
  color: #fff;
  border-radius: 4px;
  background: var(--falcon-primary);
  padding: 4px 14px;
  top: 20px;
  z-index: 1;
  left: 20px;
}
.blog-title a {
  color: #000;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  text-transform: capitalize;
}
.blog-title a:hover {
  color: var(--falcon-primary);
}
@media (max-width: 575px) {
  .blog-item p {
    font-size: 14px;
  }
}


.accordion-item {
  border: none;
}
.accordion-button {
  font-size: 20px;
  color: #000 !important;
  box-shadow: none !important;
  text-transform: capitalize;
  padding: 25px 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
}
.accordion-button:not(.collapsed) {
  color: var(--falcon-primary) !important;
}
.accordion-button::after {
  background-image: inherit !important;
  border: 2px solid var(--falcon-primary);
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
}
.accordion-button .accordion-btn {
  position: absolute;
  top: 50%;
  right: 9px;
  transform: translateY(-50%);
  display: inline-block;
  width: 12px;
  height: 12px;
}
.accordion-button .accordion-btn::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  background-color: var(--falcon-primary);
  transform: translateX(-50%);
  border-radius: 2px;
  transition: all 0.4s ease;
}
.accordion-button .accordion-btn::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--falcon-primary);
  border-radius: 2px;
  transition: all 0.4s ease;
}
.accordion-button:not(.collapsed) .accordion-btn::before {
  transform: translateX(-50%) rotate(90deg);
  color: #000;
}
.accordion-button:not(.collapsed) .accordion-btn::after {
  color: #000;
}
.accordion-body {
  padding: 25px 0 0;
}
@media (max-width: 575px) {
  .accordion-button {
    font-size: 16px;
  }
  .accordion-button::after {
    width: 27px;
    height: 27px;
  }
  .accordion-button .accordion-btn {
    right: 8px;
  }
  .accordion-body {
    font-size: 14px;
  }
}

.touria-scrolltop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  transition: all .35s ease;
  z-index: 9999;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: .25rem;
  box-shadow: none;
  background-color: var(--falcon-primary);
  color: #fff;
  cursor: pointer;
  transform: translateY(100px);
  border-radius: 50%;
  border: 0 !important
}
.touria-scrolltop span {
  font-size: 1.75rem
}
.touria-scrolltop.scrolltop-show {
  transform: translateY(0)
}
.touria-scrolltop.scrolltop-hide {
  transform: translateY(100px)
}
@media only screen and (min-width:992px) {
  .touria-scrolltop {
    width: 3rem;
    height: 3rem;
    bottom: 2rem;
    right: 2rem
  }
}
.touria-scrolltop:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: conic-gradient(var(--falcon-primary) var(--scroll-progress), var(--falcon-secondary) 0);
  z-index: -1
}


.gradient-figure {
  position: absolute;
  overflow: hidden;
  display: block;
  width: 1220px;
  height: 1220px;
  right: -693px;
  top: -485px;
  transform: rotate(-38deg);
  pointer-events: none;
  user-select: none;
}
@media (max-width: 768px) {
  .gradient-figure {
    width: 600px;
    height: 600px;
    right: -321px;
    top: -237px;
  }
}
.gradient-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.filter-invert {
  filter: brightness(0) invert(1);
}


.sitemap-link {
  color: #444;
  font-weight: 500;
  transition: all 0.3s ease;
}
.sitemap-link:hover {
  color: var(--falcon-primary);
  background: #f8f9fa;
  padding-left: 10px;
}
.icon-box {
  width: 32px;
  height: 32px;
  background: var(--falcon-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  transition: all 0.3s ease;
}
.sitemap-link:hover .icon-box {
  background: var(--falcon-secondary);
  transform: scale(1.05);
}


.contact-info-wrapper.style-modern .info-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  height: 100%;
}

.contact-info-wrapper.style-modern .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-color: var(--falcon-primary);
}

.contact-info-wrapper.style-modern .icon-wrap {
  width: 50px;
  height: 50px;
  background: rgba(48, 123, 196, 0.1); /* Light primary color */
  color: var(--falcon-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-wrapper.style-modern .info-card:hover .icon-wrap {
  background: var(--falcon-primary);
  color: #fff;
}

.contact-info-wrapper.style-modern .text-content label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: #999;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.contact-info-wrapper.style-modern .text-content a,
.contact-info-wrapper.style-modern .text-content p {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  margin: 0;
  line-height: 1.4;
}

.contact-info-wrapper.style-modern .text-content a:hover {
  color: var(--falcon-primary);
}

.contact-page-inner .map {
  height: 630px;
}
@media (max-width: 991px) {
  .contact-page-inner .map {
    height: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-card {
    padding: 25px 20px 20px;
  }
}

.quick-links-section.style-clean .link-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
}
.quick-links-section.style-clean .link-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: #f8f9fa;
  border-radius: 8px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.quick-links-section.style-clean .link-item:hover {
  background: #fff;
  border-color: var(--falcon-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.quick-links-section.style-clean .item-icon {
  width: 36px;
  height: 36px;
  background: #fff;
  color: #999;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s ease;
}
.quick-links-section.style-clean .link-item:hover .item-icon {
  background: var(--falcon-primary);
  color: #fff;
}
.quick-links-section.style-clean .item-text {
  font-size: 15px;
}

.thank-you-section.style-card {
  padding: 60px 0;
  background-color: #f8f9fa;
}
.thank-you-section.style-card .success-card {
  background: #fff;
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-top: 5px solid var(--falcon-primary);
}
.thank-you-section.style-card .icon-circle {
  width: 70px;
  height: 70px;
  background: rgba(48, 123, 196, 0.1);
  color: var(--falcon-primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.thank-you-section.style-card .card-title {
  font-size: 26px;
  font-weight: 800;
  color: #222;
  margin-bottom: 15px;
}
.thank-you-section.style-card .card-text {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}
.thank-you-section.style-card .btn {
  border-radius: 50px;
  padding: 12px;
  font-weight: 600;
}