@charset "utf-8";
/* CSS Document */

/* CSS Document © 2024 ProWebPrism */

::-moz-selection {
  background: #7b7d7f;
  color: #000;
  text-shadow: none;
}
::selection {
  background: #7b7d7f;
  color: #000;
  text-shadow: none;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
textarea,
input {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  outline: none;
    font-family: "Poppins", sans-serif;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  color: #464444;
  background: #ffffff;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow: hidden;
  overflow-y: scroll;
}
:root {
  --primary-color: #B32323;
  --secondary-color: #DE2223;
  --global-color: #fefcfc;
}
a {
  text-decoration: none;
  transition: all 0.25s ease-out 0s;
  outline: none;
  box-shadow: none;
}
a:hover {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
           font-family: "Poppins", sans-serif;
}
p,
p span {
  font-family: "open", sans-serif;
}
img {
  border: 0px;
}
ol,
ul,
li {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* * {
  -webkit-appearance: none;
} */
::-webkit-input-placeholder {
  color: var(--primary-color);
}
::-moz-placeholder {
  color: var(--primary-color);
}
:-ms-input-placeholder {
  color: var(--primary-color);
}
:-moz-placeholder {
  color: var(--primary-color);
}

section,
header,
footer {
  width: 100%;
  float: left;

}

img {
  max-width: 100%;
  display: block;
}

strong {
  font-weight: bold;
}
button {
  border: none;
}

.burger-btn{display: none;}
.overlay{display: none;}



/* ------------header-wrap------------------- */



.header-wrap {background-color: #fff;  overflow: hidden;}
.header-row { display: flex;  justify-content:space-between; align-items: center; padding: 10px 0;}
.header-logo { width: 90px;}
.header-logo img{object-fit: cover;width: 100%;height: 100%;}
.header-wrap.sticky .color-logo{opacity: 1;}
.header-menu ul{display: flex;align-items: center; gap: 40px;}
.header-menu ul li a{color:#000; font-size: 14px; font-weight: 600;text-transform:capitalize;}
.header-wrap.sticky{position: fixed;top: 0;z-index: 999; background-color:#fff; padding: 10px 0;animation: 0.7s slide-down;}
@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}
.header-wrap.sticky .header-row {border-bottom:unset; padding: 0;}
.header-menu ul li a.active {color: var(--primary-color);}
.header-menu ul li a:hover{color:var(--primary-color)}


.primary-btn a{ display: inline-block; transition: all 0.2s ease-in; position: relative; overflow: hidden; z-index: 1;color: #000;  padding:8px 20px; cursor: pointer;font-size: 16px;border-radius:4px;background: #ffffff;border: 1px solid #e8e8e8;}
.primary-btn a:active {color: #fff;}
.primary-btn a:before { content: "";  position: absolute;  left: 50%;  transform: translateX(-50%) scaleY(1) scaleX(1.25);  top: 100%;  width: 140%;  height: 180%;background-color: rgba(0, 0, 0, 0.05);border-radius: 50%;display: block;transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);z-index: -1;}
.primary-btn a:after {content: "";  position: absolute;  left: 55%;  transform: translateX(-50%) scaleY(1) scaleX(1.45);  top: 180%; width: 160%;  height: 190%;  background-color:var(--primary-color); border-radius: 50%;display: block; transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);z-index: -1;}
.primary-btn a:hover {color: #ffffff;border: 1px solid var(--primary-color);}
.primary-btn a:hover:before {top: -35%; background-color: var(--primary-color); transform: translateX(-50%) scaleY(1.3) scaleX(0.8);}
.primary-btn a:hover:after {top: -45%;background-color:var(--primary-color);transform: translateX(-50%) scaleY(1.3) scaleX(0.8);}



.banner-wrap{position: relative;height: 90vh;  overflow: hidden;}
.banner-img{width: 100%; height: 100%;}
.banner-img img{object-fit: cover;width: 100%; height: 100%;}
.banner-wrap::after{content: "";top: 0;left: 0;position: absolute;background: linear-gradient(to bottom, #ffffff 0%, #000000 100%);width: 100%; height:100%;opacity: 0.6;}
.banner-content{position:absolute;z-index: 3;top: 0;left: 0;width: 100%; height: 100%;display: flex;justify-content: center;align-items: center;}
.banner-content h1{font-size:42px; color: #fff; font-weight:600; margin: 0 0 20px;line-height: 1.26;text-transform: capitalize;}
.banner-content .banner-row{display: flex;justify-content: center;align-items: center;width: 100%;height: 100%;text-align: center;flex-direction: column;}
.button-row{display: flex; gap: 20px;align-items: center;justify-content: center;}
.button-row .primary-btn a{box-shadow: none;}


/* .banner-bottom-wrap {
  background: transparent;
  position: relative;
  transform: translateY(-80px); 
  left: 0;
  z-index: 10;
  width: 100%;
  padding-bottom: 20px;
} */
.banner-bottom-wrap { margin-top: -80px; padding-bottom: 60px;  overflow: hidden;}
.bottom-content{ display: flex;justify-content: center;cursor: pointer;flex-wrap: wrap;}
.bottom-col1{background-color: #fff;padding:20px 10px;border-radius: 6px;width: 21%;display: flex;flex-direction: column;justify-content: center;align-items: center;box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;position: relative;margin: 0 2% 0 0;}
.bottom-col1:nth-child(4n){margin-right: 0;}
.bottom-col1:last-child{margin-right: 0;}
.anchor-link{position: absolute;top: 0; left: 0; width: 100%; height: 100%;z-index: 10;}
.bottom-col1 h6{font-weight: 600;color: #000;font-size:18px;text-align: center;text-transform: capitalize;}
.bottom-col1 h6 a{color:#000;}
.bottom-col1 h6 a:hover{color: var(--primary-color);}
.bottom-col1 .icon{width: 50px;margin: 0 0 10px;}
.bottom-col1 .icon img{object-fit:contain;width: 100%;height: 100%;}


.sv-card .divider { display: block; width: 100%; position: relative; text-align: center;}
.sv-card .divider:after {content: ""; position: absolute; width: 100%; height: 1px; background: #b5b5b5; left: 0; top: 50%; transform: translateY(-50%);}
.sv-card .divider span { display: inline-block;background: var(--primary); position: relative; z-index: 1; padding: 0 20px; font-size: 20px; color: #b5b5b5;background: #fff;}
.vehicle-book{
  color: #fff;
  background-color: var(--primary-color);
  padding: 10px;
  border-radius: 10px;
  margin: 8px 0px;
  display: block;
  text-align: center;
  border: 1px solid var(--primary-color);
}
.vehicle-book:hover{
  color: var(--primary-color);
  background-color: #fff;
}

.everest-forms input,
.everest-forms textarea,
.everest-forms select {
  width: 100% !important;
  padding: 12px !important;
  border: 1px solid #ccc !important;
  font-size: 15px !important;
  font-family: inherit !important;
  color: #000 !important;
  background: #fff !important;
  border-radius: 4px !important;
  box-sizing: border-box !important;
}
.everest-forms input::placeholder,
.everest-forms textarea::placeholder {
  color: #000000 !important;
}
.everest-forms select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23000' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px !important; /* space for arrow */
}
.everest-forms .everest-forms-submit-button {
  display: inline-block;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #000 !important;
  padding: 8px 20px !important;
  cursor: pointer !important;
  font-size: 16px !important;
  border-radius: 4px !important;
  background: #ffffff !important;
  border: 1px solid #e8e8e8 !important;
}

.everest-forms .everest-forms-submit-button:active {
  color: #fff !important;
}

.everest-forms .everest-forms-submit-button:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.everest-forms .everest-forms-submit-button:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.everest-forms .everest-forms-submit-button:hover {
  color: #ffffff !important;
  border: 1px solid var(--primary-color) !important;
}

.everest-forms .everest-forms-submit-button:hover:before {
  top: -35%;
  background-color: var(--primary-color);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.everest-forms .everest-forms-submit-button:hover:after {
  top: -45%;
  background-color: var(--primary-color);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.contact-col1 .everest-forms .everest-forms-submit-button:hover{
   border: 1px solid #fff !important;
}


.student-visa-wrap.sv-theme-alt.single-visa h6.sv-step-title {margin-bottom: 22px;color: #b32323;}
.student-visa-wrap.sv-theme-alt.single-visa h3 {font-size: 24px;color: #000000;font-weight: 700;margin: 0 0 10px;}
.student-visa-wrap.sv-theme-alt.single-visa h4 {font-size: 20px;color: #000000;font-weight: 700;margin: 0 0 10px;}
.student-visa-wrap.sv-theme-alt.single-visa ul {width: 100%;margin: 0 0 20px;}
.student-visa-wrap.sv-theme-alt.single-visa ul li {font-size: 16px;line-height: 1.56;padding-left: 10px;position: relative;color: #000;}
.student-visa-wrap.sv-theme-alt.single-visa ul li:before {content: "\2022";position: absolute;left: 0;top: 0;}
.student-visa-wrap.sv-theme-alt.single-visa ol {width: 100%;float: none;counter-reset: my-awesome-counter;margin: 0 auto 28px;position: relative;}
.student-visa-wrap.sv-theme-alt.single-visa ol li {font-size: 16px;line-height: 1.56;padding-left: 20px;position: relative;counter-increment: step-counter;color: #000;}
.student-visa-wrap.sv-theme-alt.single-visa ol li:before {content: counter(step-counter) '.';margin-right: 0px;position: absolute;left: -4px;top: 0;}
.student-visa-wrap.sv-theme-alt.single-visa p a, .student-visa-wrap.sv-theme-alt.single-visa ul li a, .student-visa-wrap.sv-theme-alt.single-visa ol li a {color: var(--primary-color);}
.student-visa-wrap.sv-theme-alt.single-visa p a:hover, .student-visa-wrap.sv-theme-alt.single-visa ul li a:hover, .student-visa-wrap.sv-theme-alt.single-visa ol li a:hover {color: #000000;}
.student-visa-wrap.sv-theme-alt.single-visa img {width: auto;height: auto;}



.bast-places-wrap{padding:60px 0 ;position: relative; background-color: #fefcfc;overflow: hidden;}
.bast-places-wrap::after{content: "";background-image: url(../images/bg-best-place.png);position: absolute;background-size:contain;top:80px;left: 100px;width: 100%;height:400px;background-repeat: no-repeat;}
.bast-places-wrap h2{font-size: 36px; color: var(--primary-color); font-weight: 600; margin: 0 0 20px;text-transform: capitalize;position: relative;z-index: 5;text-align: center;}
.bast-places-wrap h3{font-size: 30px; color:#000 ;font-weight: 700; margin: 0 0 20px;line-height: 1.26;text-transform: capitalize;position: relative;z-index: 5;}
.destination-col1{width: 23.5%; margin: 0 2% 20px 0;border-radius:10px;overflow: hidden;height: 300px;position: relative;padding: 20px;cursor: pointer;z-index: 10;}
.destination-img{height: 100%;width: 100%;position: absolute;top: 0;left: 0;z-index: -1;}
.destination-img img{height: 100%;width: 100%;object-fit: cover;}
.destination-col1:last-child{margin-right: 0;}
.destination-col1:nth-child(4n){margin-right: 0;}
.city-row{position: relative;z-index: 3;}
.city-row{display: flex; flex-wrap: wrap;}
.city-row.best-places-slider{display: unset;}
.best-places-slider .slick-slide{margin: 0 10px;}
.best-places-slider .destination-col1{margin: 0 0 0 0 !important;}
.place-name{position: absolute;border-radius:10px; background-color: #fff;z-index: 1;padding: 10px 20px;left:50%;right: 50%;bottom: 20px;transform: translateX(-50%);display: flex;width:90%;justify-content: space-between;align-items:center ;gap: 10px;}
.place-name h6{font-size:18px;color: #000; font-weight: 600;}
.place-name .icon{width: 35px;height: 35px;border-radius: 50px; background-color: #ddd6d6;display: flex;justify-content: center;align-items: center;position: relative;flex-shrink: 0;}
.place-name .icon img{left: 50%;top: 50%;transform: translate(-50%,-50%);left: 50%;right: 50%;width:20px;position: absolute;}
.place-name .icon .white-icon{opacity: 0;}
.place-name:hover .white-icon{opacity: 1;}
.place-name:hover .black-icon{opacity: 0;}
.place-name:hover .icon{background-color: var(--secondary-color);}
.place-name:hover.place-name h6{color: var(--secondary-color);} 


.safari-wrap{padding: 60px 0;  overflow: hidden;}
.safari-wrap h3{font-size: 30px; color:#000 ;font-weight: 700; margin: 0 0 20px;line-height: 1.26;text-transform: capitalize;}
.safari-row{display: flex; flex-wrap: wrap;}
.safari-row.best-places-slider{display: unset;}
.safari-col1{width: 23.5%;border-radius: 10px;overflow: hidden;height: 300px;margin: 0 2% 20px 0;position: relative;cursor: pointer;transition: all 0.3s;}
.safari-col1 .image{height: 100%;width: 100%;overflow: hidden;}
.safari-col1 .image img{width: 100%; height: 100%;object-fit: cover;transition: all 0.3s;}
.safari-col1:nth-child(4n){margin-right: 0;}
.safari-col1 .content{position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index:4;padding: 20px;display: flex;flex-direction: column;justify-content: end;align-items: end;text-align:right;}
.safari-col1 .content h3{font-weight: 600;color: #fff;font-size:28px;margin: 0 0 10px;}
.safari-col1 .content p{color: #fff;}
.safari-col1 .content .old-price{color: #fff;font-size: 18px;text-decoration: line-through;font-weight: normal;}
.safari-col1 .content .new-price{font-size: 26px; color: #FFFF00;}
.safari-col1::after{content: "";position: absolute;left: 0;top: 0;width: 100%; height: 100%;  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));z-index: 1;}
.safari-col1:hover .image img{transform: scale(1.2);}

.cruise-wrap{padding: 60px 0;  overflow: hidden;}
.cruise-row.best-places-slider{display: unset;}
.cruise-wrap h3{font-size: 30px; color:#000 ;font-weight: 700; margin: 0 0 20px;line-height: 1.26;text-transform: capitalize;}
.cruise-row{display: flex;flex-wrap: wrap;}
.cruise-col1{width: 23.5%;border-radius: 10px;overflow: hidden;height: 300px;margin: 0 2% 0 0;position: relative;cursor: pointer;}
.cruise-col1:nth-child(4n){margin-right: 0;}
.cruise-col1 .image{width: 100%; height: 100%;}
.cruise-col1 .image img{width: 100%; height: 100%; object-fit: cover;}


.oman-wrap{padding: 60px 0;  overflow: hidden;}
.oman-wrap h2{font-size: 36px; color:var(--primary-color) ;font-weight: 700; margin: 0 0 20px;line-height: 1.26;text-transform: capitalize;text-align: center;}



.package-wrap{padding: 60px 0;background-color: #fefcfc;  overflow: hidden;}
/* .package-wrap h6{font-size: 16px; color: var(--primary-color); background-color: #f9cfcf;padding: 5px 10px;border-radius: 10px;font-weight: 600; margin: 0 0 20px;text-transform: capitalize;text-align: center;display:inline-block;} */
.package-wrap h2{font-size: 36px; color:var(--primary-color) ;font-weight: 700; margin: 0 0 20px;line-height: 1.26;text-transform: capitalize;text-align: center;}
.package-row{display: flex;flex-wrap: wrap;justify-content: center;}
.package-row.best-places-slider{display: unset;}
.package-col1{width:23.5%;border-radius: 10px;overflow: hidden;border: 1px solid #ccc;margin: 0 2% 20px 0; background-color: #fff;}
.best-places-slider .package-col1{margin: 0 0 0 0 !important;}
.package-col1:nth-child(4n){margin-right: 0;}
.package-img{height: 200px;}
.package-img img{width: 100%; height: 100%;object-fit: cover;}
.package-content{background-color: #fff;padding: 20px;}
.package-content h6{font-size:18px; color: #000; font-weight: 600;margin: 0 0 10px;}
.package-content h6 a{color: #000;}
.package-content h6 a:hover{color: var(--primary-color);}
.top-col{display: flex;flex-wrap: wrap;gap:5px;align-items: center;margin: 0 0 20px;}
.top-col .icon{width: 15px;}
.top-col p{font-size: 14px; color:#000;}
.top-row-content{display: flex;flex-wrap: wrap;justify-content: space-between;}
.price p{color: #000;text-transform:capitalize;font-size: 16px;}
.price p span{font-weight: 600;font-size: 18px; color: var(--primary-color);}
.view-btn a{font-size: 16px;color: var(--primary-color);font-weight: 600;text-transform: capitalize;text-decoration:underline;text-align: center;}
.view-btn {margin: 0 0 20px;text-align: center;}




.about-wrap{padding: 60px 0;position: relative;  overflow: hidden;}
.about-wrap::after{content: "";background-image: url(../images/bg-png-1.png);position: absolute;background-size:contain;top:0px;width: 100%;height:400px;z-index: 2;background-repeat: no-repeat;background-position: right; }
.about-row{display: flex;flex-wrap: wrap;justify-content: space-between;align-items: center;}
.about-col1{width: 48%;display: flex;justify-content: center;align-items:center ;}
.about-img{position: relative;}
@keyframes upDown {
  0%, 100% {
    transform: translateY(0); /* start at normal position */
  }
  50% {
    transform: translateY(-20px); /* move up */
  }
}
.about-img::after{content: ""; background-image: url(../images/camera.png);background-size:contain;background-position: left;width:60px; height:60px;background-repeat: no-repeat;position: absolute;top:70px; left:80px;}
.about-col2{width: 48%;}
.about-col2 h6{font-size: 16px; color: var(--primary-color); background-color: #f9cfcf;padding: 5px 10px; display: inline-block;border-radius: 10px;font-weight: 600; margin: 0 0 20px;text-transform: capitalize;}
.about-col2 h3{font-size: 30px; color:#000 ;font-weight: 700; margin: 0 0 20px;line-height: 1.26;text-transform: capitalize;}
.about-col2 h2{font-size: 36px; color:#000 ;font-weight: 700; margin: 0 0 20px;line-height: 1.26;text-transform: capitalize;}
.description p{color: #000; font-size: 16px; line-height: 1.56;margin: 0 0 20px;}
.counter-row{display: flex;flex-wrap: wrap;margin:  30px 0;}
.counter-col .icon{width: 70px;margin: 0 0 20px;}
.counter-col .icon img{width:100%; height: 100%; object-fit: contain;}
.counter-col{margin:0 5% 0 0 ;width: 30%;}
.counter-col:last-child{margin: 0 0 0 0;}
.counter-col p{color: #000; font-weight: 600;font-size: 16px; text-transform: capitalize;line-height: 1.56;}
.counter-col h2{margin: 0 0 10px;}
.about-wrap .primary-btn{position: relative;z-index: 10;}



.testimonial-wrap{padding: 60px 0;background-color:#fefcfc;  overflow: hidden;}
.testimonial-wrap h3{font-size: 30px; color:#000 ;font-weight: 700; margin: 0 0 20px;line-height: 1.26;text-transform: capitalize;}
.testimonial-slider .slick-slide{margin: 0 10px;padding: 10px 0;}
.testi-col1{width: 23.5%;background-color: #fff; border-radius: 10px;padding: 20px;box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;}
.profile{width: 40px;height: 40px;border-radius: 50px;overflow: hidden;}
.profile img{width: 100%; height: 100%; object-fit: cover;}
.top-row{display: flex;flex-wrap: wrap;align-items: center;margin: 0 0 20px;justify-content: space-between;}
.top-row h6{font-size: 20px; color: var(--primary-color);font-weight: 600;}
.testi-col1 .description p{font-size: 14px;margin: 0 0 0;}
.rating {margin: 0 0 10px;}
.rating img{width: 100px;}



.contact-wrap{padding: 60px 0; background-color: var(--primary-color);  overflow: hidden;}
.contact-row{display: flex;flex-wrap: wrap;justify-content: space-between;background-color: #fff;border-radius: 10px;align-items: center;}
.contact-col1{width: 50%;padding: 30px;border-right: 1px solid #ccc;}
.contact-col1 input{border: 1px solid #ccc; padding: 10px;width: 100%; border-radius:4px;margin: 0 0 20px;color: #000;}
.contact-col1 input::placeholder{font-size: 14px;text-transform: uppercase;color: #000;}
.contact-col1 input[type="date"]{text-transform: uppercase;font-size: 14px;}
.contact-col1 select{border: 1px solid #ccc; padding: 10px;width: 100%; border-radius:4px;margin: 0 0 20px;color: #000;}
.contact-row h3{font-size: 30px; color:#000 ;font-weight: 600; margin: 0 0 20px;text-transform: capitalize;}
.contact-col2{width: 50%;padding: 30px;}
.contact-col2 .content-col1{display: flex;margin: 0 0 20px;gap: 20px;align-items:flex-start;}
.contact-col2 .content-col1 p{color: #000;line-height: 1.56;}
.contact-col2 .content-col1 p a{color: #000;}
.contact-col2 .content-col1 p a:hover{color: var(--primary-color);}
.contact-col2 .content-col1 .icon{border: 1px solid #ccc; border-radius: 5px;box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;width:40px;height:40px;display: flex;justify-content: center;align-items: center;flex-shrink: 0;}
.contact-col2 .content-col1 .icon img{width:30px;}
.contact-col2 .content-col1 h6{color: #000;font-size: 20px;margin: 0 0 8px;font-weight: 600;margin-bottom: 10px;}
.content-col1 .content p span.highlighted{font-weight: 600;color: #fff;font-size: 18px;}
.content-col1 .content p{margin-bottom: 8px;}


.example-2 {display: flex;flex-wrap: wrap; gap: 20px;}
.example-2 .icon-content { position: relative;}
.example-2 .icon-content a {position: relative;overflow: hidden;display: flex; justify-content: center; align-items: center; width: 50px; height: 50px; border-radius: 5px; color:#000;background-color:transparent; border: 1px solid #000; transition: all 0.3s ease-in-out;}
.example-2 .icon-content a:hover {box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);}
.example-2 .icon-content a svg { position: relative; z-index: 1; width: 30px; height: 30px;}
.example-2 .icon-content a:hover { color: white;}
.example-2 .icon-content a .filled { position: absolute;  top: auto;bottom: 0; left: 0; width: 100%; height: 0; background-color: var(--primary-color);transition: all 0.3s ease-in-out;}
.example-2 .icon-content a:hover .filled {height: 100%;}




.whychoose-wrap{padding: 60px 0;  overflow: hidden;}
.why-choose-row{display: flex;flex-wrap: wrap;justify-content: center;align-items: baseline;}
.why-choose-col1{width: 23.5%; display: flex; justify-content: center;align-items: center;flex-direction: column;margin: 0 2% 20px 0;}
.why-choose-col1 h6{color: var(--primary-color);font-weight: 600;font-size: 18px;text-transform: uppercase;text-align: center;}
.why-choose-col1:nth-child(4n){margin-right: 0;}
.why-choose-col1 .icon{width: 100px; height: 100px; border-radius: 50px; background-color:#f9cfcf;display: flex;justify-content: center;align-items: center;margin: 0 0 20px;}
.why-choose-col1 .icon img{width: 60px;}

.footer-wrap{background-color:#fff;padding:60px 0 30px;  overflow: hidden;}
.footer-row{display: flex;flex-wrap: wrap;padding-bottom:20px ;border-bottom: 1px solid #ccc;margin: 0 0 20px;}
.footer-col1{width: 18%;margin: 0 2% 0 0 ;}
.footer-col1 h3{font-size: 22px; color:#000; font-weight: bold; margin: 0 0 20px;}
.footer-logo{width: 180px;}
.footer-logo img{object-fit: contain;width: 100%;height: 100%;}
.footer-col1 li{color: #fff;font-size: 14px;margin: 0 0 8px;}
.footer-col1 li a{color:#000;}
.footer-col1 li a:hover{color:var(--secondary-color);}
.footer-col1 .contact-info .image{width: 20px;}
.footer-col1 .contact-info{margin: 0 0 8px; display: flex;align-items:center;flex-shrink: 0; gap:10px;}
.footer-col1 .contact-info  .icon{width: 20px;flex-shrink: 0;}
.footer-col1 .contact-info p{font-size: 14px;color: #000;}
.footer-col1 .contact-details a{color: #000;}
.footer-col1 .contact-details a:hover{color: var(--primary-color);}

.footer-row1{display: flex;justify-content: space-between;}
.footer-row1 p{font-size: 14px;color: #000000;}
.footer-row1 p a{color: var(--primary-color);}
.footer-row1 p a:hover{color:#000;}



/* ----------------about-page---------------- */

.default-banner-wrap{height: 50vh; position: relative;  overflow: hidden;}
.default-banner-wrap::after{content: "";top: 0;left: 0;position: absolute;background: linear-gradient(to bottom, #000000 0%, rgba(0, 0, 0, 0) 100%);width: 100%; height:100%;opacity: 0.6;z-index: 2;}
.default-banner-wrap .default-bg{width: 100%; height: 100%;}
.default-banner-wrap .default-bg img{object-fit: cover;width: 100%; height: 100%;}
.default-banner-row{position: absolute;top: 0;left: 50%;transform: translateX(-50%); width: 94%; height: 100%;display: flex;justify-content: center;align-items: center;flex-direction: column;text-align: center;z-index: 3;}
.default-banner-row h1{font-size: 42px; color: #fff; font-weight: 600;line-height: 1.26;text-transform: capitalize;margin: 0 0 20px;}
.default-banner-row .icon img{width: 20px;}
.default-banner-row .icon{width: 40px; height: 40px; border-radius: 50px; background-color: #fff; display: flex;justify-content: center;align-items: center;}



.about-col3{width: 48%;display: flex;justify-content: space-between;width:45%;height: 450px;}
.about-col3 .image-row1{width: 48%;}
.about-col3 .image-row2{width: 48%;} 
.about-col3 .image-row1{display: flex;flex-direction: column;justify-content: space-between;}
.about-col3 .image-row1 .image1{width: 100%; height: 200px; margin: 0 0 20px;overflow: hidden;border-radius: 10px;}
.about-col3 .image-row1 .image2{width: 100%; height: 300px; overflow: hidden;border-radius: 10px;}
.about-col3 .image-row1  img{width: 100%; height: 100%; object-fit: cover;transition: all 0.3s;}
.about-col3 .image-row2{display: flex;justify-content: end;align-items:center;flex-direction: column;}
.about-col3 .image-row2 .image4{width: 100%;height: 150px;display: flex;justify-content: center;align-items: center;}
.about-col3 .image-row2 .image4 img{object-fit: contain;}
.about-col3 .image-row2 .image3{width: 100%; height: 330px; overflow: hidden;border-radius: 10px;}
.about-col3 .image-row2 img{width: 100%; height: 100%;object-fit: cover;}


.mission-wrap{ background-color: #fefcfc;position: relative;}
.mission-wrap .description p{margin: 0 0 0;text-align: justify;}
.mission-wrap::after{content: "";background-image: url(../images/shape.png);position: absolute;background-size:contain;top:40%;left:0;width:200px;height: 200px;z-index: 2;background-repeat: no-repeat;background-position: left; }
.mission-row{display: flex;flex-wrap: wrap;justify-content: space-between;padding: 60px 0 30px 0;align-items: center;}
.mission-col1{width: 48%;padding:30px;position: relative;}
.mission-col1::after{content: "";width: 5px;height: 100%;background-color: var(--primary-color);border-radius: 50px;position: absolute;top: 0;left:0;}
.mission-col2{width: 48%;}
.mission-col1 h6{font-size: 16px; color: var(--primary-color); background-color: #f9cfcf;padding: 5px 10px; display: inline-block;border-radius: 10px;font-weight: 600; margin: 0 0 20px;text-transform: capitalize;}
.mission-col1 h2{font-size: 30px; color:#000 ;font-weight: 700;line-height: 1.26;text-transform: capitalize;}

.vision-row{display: flex;flex-wrap: wrap;justify-content: space-between;padding: 30px 0 60px 0;align-items: center;}
.vision-col1{width: 48%;}
.vision-col2{width: 48%;padding:30px;position: relative;}
.vision-col2::after{content: "";width: 5px;height: 100%;background-color: var(--primary-color);border-radius: 50px;position: absolute;top: 0;left:0;}
.vision-col2 h6{font-size: 16px; color: var(--primary-color); background-color: #f9cfcf;padding: 5px 10px; display: inline-block;border-radius: 10px;font-weight: 600; margin: 0 0 20px;text-transform: capitalize;}
.vision-col2 h2{font-size: 30px; color:#000 ;font-weight: 700;line-height: 1.26;text-transform: capitalize;}
 

.what-we-wrap{padding: 60px 0; display: flex;justify-content: center;flex-direction: column;align-items: center; background-color: #fff;position: relative;}
.what-we-wrap::after{content: "";background-image: url(../images/shape-24.png);position: absolute;background-size:contain;bottom:0;right:0;width:200px;height: 200px;z-index: 2;background-repeat: no-repeat;background-position:right; }
.what-we-wrap h6{font-size: 16px; color: var(--primary-color); background-color: #f9cfcf;padding: 5px 10px; display: inline-block;border-radius: 10px;font-weight: 600; margin: 0 0 20px;text-transform: capitalize;text-align: center;}
.what-we-wrap h2{font-size: 30px; color:#000 ;font-weight: 700; margin: 0 0 20px;line-height: 1.26;text-transform: capitalize;text-align: center;}
.what-we-row{display: flex;flex-wrap: wrap;}
.what-we-wrap .description{width: 60%;text-align: center;}
.what-we-row{display: flex;flex-wrap: wrap;justify-content: center;}
.what-we-row .what-we-col1{width: 23.5%;background-color: #fff;padding:20px; margin: 0 2% 20px 0;border-radius: 4px;border: 1px solid #ccc; text-align: center;cursor: pointer;box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 5px 0px, rgba(255, 255, 255, 0.05) 0px 1px 1px 0px;}
.what-we-row .what-we-col1:nth-child(3n){margin-right: 0;}
.what-we-row .what-we-col1 .icon{width: 50px;height: 50px;border-radius: 4px;display: flex;justify-content: center;align-items: center; background-color: #f9cfcf;margin: 0 0 10px;}
.what-we-row .what-we-col1 .icon img{width: 30px;} 
.what-we-row .what-we-col1 h3{font-size: 20px;color: var(--primary-color);text-transform: capitalize;font-weight: 600;margin:0 0 10px;text-align:left;}
.what-we-row .what-we-col1 p{color: #000;font-size: 14px; line-height: 1.26;text-align:left;}



.team-wrap{padding: 60px 0; background-color:#fefcfc;}
.team-row{display: flex;flex-wrap: wrap;}
.team-wrap h2{font-size: 30px; color:#000 ;font-weight: 700; margin: 0 0 20px;line-height: 1.26;text-transform: capitalize;text-align: center;}
.team-col1{width: 23.5%; margin: 0 2% 20px 0; border: 1px solid #ccc; transition: all 0.5s; border-radius:10px;position: relative;height: 400px;overflow: hidden; transition: all 0.3s;}
.team-col1:nth-child(4n){margin-right: 0;}
.team-member-image{width: 100%; height: 100%; transition: all 0.5s; overflow: hidden;}
.team-member-image img{width: 100%; height: 100%; object-fit: cover; transition: all 0.5s;}
.team-col1 .team-member-info{content: "";position: absolute; bottom: 0;left: 0; background-color: transparent;width: 100%;padding: 10px;opacity: 0;z-index: 5;}
.team-col1:hover .team-member-info{opacity: 1; transition: all 0.5s;}
.team-col1 .team-member-info h4{color: #fff; font-size: 20px; font-weight: 600; margin: 0 0 10px;}
.team-col1 .team-member-info .position{color:#fff; font-size: 14px; margin:0 0 10px;}
.team-col1 .team-member-info .about-content{font-size: 14px; color: #f7f2f2;line-height: 1.26;text-align: justify;}
.team-col1::after {content: ""; position: absolute;  bottom: 0;  left: 0;  width: 100%;  height: 200px; /* shadow height */ background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);}
.team-col1:hover .team-member-image{transform: scale(1.2);}

/* ----------contact-page------------------  */

.contact-wrap-2{background-color: white;padding: 60px 0;}
.contact-wrap-2 .contact-row{background-color: var(--primary-color);}
.contact-wrap-2 .contact-row h3{color: #fff;}
.contact-wrap-2 .example-2 .icon-content a{color:#fff; border-color: #fff;}
.contact-wrap-2 .example-2 .icon-content a .filled{background-color: #fff;}
.contact-wrap-2 .example-2 .icon-content a:hover{color: var(--primary-color);}
.contact-wrap-2 .contact-col2 .content-col1 p a{color: #fff;}
.contact-wrap-2 .contact-col2 .content-col1 p a:hover{color:#000;}
.contact-wrap-2 .contact-col2 .content-col1 h6{color: #fff;}
.contact-wrap-2 .contact-col2 .content-col1 .icon{border-color: #ccc;box-shadow: none;flex-shrink: 0;}
.contact-wrap-2  .primary-btn a:hover{border: 1px solid #ccc;color: #fff;}
.contact-wrap-2 .primary-btn a:hover:after{background-color:var(--primary-color);}

.contact-wrap .contact-row{background-color: var(--primary-color);}
.contact-wrap .contact-row h3{color: #fff;}
.contact-wrap .example-2 .icon-content a{color:#fff; border-color: #fff;}
.contact-wrap .example-2 .icon-content a .filled{background-color: #fff;}
.contact-wrap .example-2 .icon-content a:hover{color: var(--primary-color);}
.contact-wrap .contact-col2 .content-col1 p a{color: #fff;}
.contact-wrap .contact-col2 .content-col1 p a:hover{color:#000;}
.contact-wrap .contact-col2 .content-col1 h6{color: #fff;}
.contact-wrap .contact-col2 .content-col1 .icon{border-color: #ccc;box-shadow: none;flex-shrink: 0;}
.contact-wrap  .primary-btn a:hover{border: 1px solid #ccc;color: #fff;}
.contact-wrap .primary-btn a:hover:after{background-color:var(--primary-color);}



.location-wrap{height: 300px;}
.location-wrap iframe{width: 100%; height: 100%; border: 0;}



/* ----------visa-service-page------------------- */




    
.visa-service-wrap{padding: 60px 0;}
.visa-service-wrap h6{font-size: 16px; color: var(--primary-color); background-color: #f9cfcf;padding: 5px 10px;border-radius: 10px;font-weight: 600; margin: 0 0 20px;text-transform: capitalize;text-align: center;display:inline-block;}
.visa-service-wrap h2{font-size: 30px; color:#000;font-weight: 700; margin: 0 0 20px;line-height: 1.26;text-transform: capitalize;}
.visa-service-wrap .top-row{display: flex;justify-content: space-between;align-items: flex-end;}
.visa-row{display: flex;flex-wrap: wrap;}
.visa-col1{width: 23.5%;background-color: #fff;padding: 30px; margin: 0 2% 20px 0;border-radius: 4px;border: 1px solid #ccc;}
.visa-col1:nth-child(4n){margin-right: 0;}
.visa-col1:last-child{margin-right: 0;}
.visa-col1 .icon .black-icon{opacity: 0;}
.visa-col1:hover .icon .white-icon{opacity: 0;}
.visa-col1:hover .icon .black-icon{opacity: 1;}
.visa-col1:hover .icon{background-color: #fff;}
.visa-col1 .icon{width: 70px;height: 70px; border-radius: 50px; background-color:var(--primary-color);position: relative;margin: 0 0 20px;display: flex;justify-content: center;}
.visa-col1 .icon img{left: 50%;top: 50%;transform: translate(-50%,-50%);left: 50%;right: 50%;width:50px;position: absolute;}
.visa-col1 h3{font-size: 22px;color: var(--primary-color);text-transform: capitalize;font-weight: 600;margin: 0 0 20px;}
.visa-col1 p{color: #000;font-size: 16px; line-height: 1.56;margin: 0 0 20px;}
.learn-more-btn{width: 100%;padding: 20px 0 0 0;border-top: 1px solid #ccc;}
.learn-more-btn a{color: #000;font-size: 16px;font-weight: 600;position: relative;}
.learn-more-btn a::after{content: "";position: absolute;bottom: 0;left: 0;width: 100%; height: 1px;background-color: var(--primary-color);transform: scaleX(0);transform-origin: right;transition: transform 0.3s ease-in-out;}
.learn-more-btn a:hover::after{transform: scaleX(1);transform-origin: left;background-color: #fff;}
.visa-col1:hover {background-color: var(--primary-color); border: 1px solid #fff;}
.visa-col1:hover h3{color: #fff;}
.visa-col1:hover p{color: #fff;}
.visa-col1:hover .learn-more-btn a{color: #fff;}

 /* .visa-col1 {
      display: none;
    } */
    #all:checked ~ .visa-row .visa-col1,
    #tourist:checked ~ .visa-row .tourist,
    #business:checked ~ .visa-row .business,
    #student:checked ~ .visa-row .student,
    #work:checked ~ .visa-row .work,
    #family:checked ~ .visa-row .family {
      display: block;
    }

        .filter-bar {
      display: flex;
      gap: 10px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .filter-bar input {
      display: none;
    }

    .filter-bar label {
      background: #fff;
      padding: 8px 20px;
      border-radius: 20px;
      cursor: pointer;
      transition:all 0.3s;
      border: 1px solid var(--primary-color);
    }

    .filter-bar input:checked + label {
      background: var(--primary-color);
      color: #fff;
    }












/* -----------trip-packages-wrap-------------- */

.trip-packages-wrap{padding: 60px 0;}
.button-col{width: 100%; display: flex;  justify-content: center; align-items: center;position: sticky;top:82px;background-color: #ffffff;padding: 10px 0;z-index: 99;}
.nav-links{display: flex;width: 70%;justify-content: center;}
.nav-links .filter-btn{border: none;padding: 10px;background: transparent;text-transform: uppercase;font-weight:600;transition: all 0.5s;color:#000;padding: 10px 20px;border-radius:4px;box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;margin: 0 2% 0  0;font-size: 16px;}
.nav-links .filter-btn:nth-child(3n){margin-right: 0;}
.nav-links .filter-btn:hover{background:var(--secondary-color);color: #fff;border-color: var(--primary-color);}
.filter-btn.active {background-color: var(--secondary-color); color: #fff;border-color: var(--primary-color);}
.filter-col { transform: translateY(20px);  transition: opacity 0.5s ease, transform 0.5s ease;  display: none;  flex-wrap: wrap;  padding: 30px 0 0;}
.filter-col.show { display: flex;  opacity: 1; transform: translateY(0);}
.filter-col{width: 100%;display:none;flex-wrap: wrap;padding: 30px 0 0;}

.safari-col1 .anchor-link{top: 0; left: 0; position: absolute; width: 100%; height: 100%;z-index: 10;}






/* ---------------- package-inner-sections ---------------- */


.package-details-wrap{padding:60px 0;}
.package-details-row{display: flex;justify-content: space-between;flex-wrap: wrap;}

.package-details-col2{width: 38%;}
.package-details-col2 h2{font-size:30px;color:#000;font-weight:700;margin:0 0 10px;}
.package-details-col2 .place-img{width: 100%;height: 300px;border-radius: 10px; overflow: hidden;margin: 0 0 20px;}
.package-details-col2 .place-img img{object-fit: cover; width: 100%; height: 100%;}
.package-details-col2 .description p{text-align: justify;}


.package-details-col1{width: 58%;}
.package-details-col1 h6{font-size: 16px; color: var(--primary-color); background-color: #f9cfcf;padding: 5px 10px;border-radius: 10px;font-weight: 600; margin: 0 0 20px;text-transform: capitalize;display: inline-block;}
.package-header .meta{display:flex; flex-wrap: wrap;margin:0 0 20px;}
.package-header .meta .meta-item{ width: 32%; margin: 0 2% 20px 0;font-size:14px;color:#000;background:#fff;border:1px solid #e8e8e8;border-radius:4px;padding:8px 12px;box-shadow:0 6px 18px rgba(0,0,0,0.06);}
.package-header{display:flex;flex-direction:column;gap:10px;margin-bottom:20px;}
.package-header .meta .meta-item:nth-child(3n) {margin-right: 0;}

.itinerary h3,.inclusions-exclusions h3{font-size:22px;color:var(--primary-color);font-weight:600;margin: 0 0 20px;}
.itinerary-list{list-style:decimal inside;color:#000;}
.itinerary{margin: 0 0 20px;}
.itinerary-list{list-style:none; counter-reset: step; padding-left:0; position:relative;}
.itinerary-list li{position:relative;  margin:0 0 16px; line-height:1.56;font-size: 16px;} 
.itinerary-list > li{counter-increment: step;}
.itinerary-list li .itinerary-title {background: #fff; border: 1px solid rgba(0, 0, 0, 0.06); border-radius: 10px; padding: 14px 16px 14px 56px; box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05); display: block; position: relative; margin: 0 0 5px; z-index: 1;}
.itinerary-list > li:before{content: counter(step); position:absolute; left:16px; top:13px; width:28px; height:28px; border-radius:50%; background:var(--primary-color); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:14px; box-shadow:0 4px 10px rgba(179,35,35,0.35); z-index: 2;} 
.itinerary-list > li:after{content:""; position:absolute; left:30px; top:54px; width:2px; height:73%; background:linear-gradient(180deg, var(--primary-color), rgba(179,35,35,0));}
.itinerary-list li:last-child:after{display:none;}
.itinerary-list li:last-child{margin: 0 0 0;}
.itinerary-list strong{color:#000}
.itinerary-list ul { width: 100%; padding-left: 10%;}
.itinerary-list ul li { margin: 0 0 0; padding-left: 10px; font-size: 14px;}
.itinerary-list ul li:before { content: "\2022"; position: absolute; left: 0;}


.inclusions-exclusions .col-row{display:flex;justify-content: space-between;width: 100%;flex-wrap: wrap;}
.inclusions-exclusions .col-row .common-col{width:48%;background:#fff;border:1px solid #e8e8e8;border-radius:6px;padding:20px;margin: 0 0 20px; box-shadow:0 10px 24px rgba(0,0,0,0.06);}
.inclusions-exclusions ul{list-style:disc inside;list-style:none; padding-left:0;}
.inclusions-exclusions li{position:relative; padding-left:28px;color:#000;margin:0 0 8px;font-size: 16px;}
.inclusions-exclusions li:last-child{margin: 0 0 0;}
.inclusions-exclusions .inclusions li:before{content:"✔"; position:absolute; left:0; top:0; color:#16a34a; font-weight:700;}
.inclusions-exclusions .exclusions li:before{content:"✘"; position:absolute; left:0; top:0; color:#dc2626; font-weight:700;}


.booking-inquiry-wrap{padding:60px 0;background-color:var(--primary-color);}
.booking-row{display:flex;flex-wrap:wrap;justify-content:space-between;}
.booking-cta{width:28%;background:#fff;border:1px solid #e8e8e8;border-radius:6px;padding:20px;}
.booking-cta h3{font-size:22px;color:#000;font-weight:700;margin:0 0 10px;}
.booking-cta p{color:#000;margin:0 0 10px;font-size:16px;line-height: 1.56;}
.booking-cta .btn-row{display:flex;width: 100%;flex-wrap: wrap;gap: 10px;}
.booking-cta .primary-btn,.booking-cta .secondary-btn{display:inline-block;padding:10px 18px;border-radius:4px;font-weight:600;font-size:14px;}
.booking-cta .primary-btn{background:var(--primary-color);color:#fff;border:1px solid var(--primary-color);}
.booking-cta .primary-btn:hover{background:var(--secondary-color);border-color:var(--secondary-color);}
.booking-cta .secondary-btn{background:#fff;color:#000;border:1px solid #e8e8e8;}
.booking-cta .secondary-btn:hover{border-color:var(--primary-color);color:var(--primary-color);} 
.booking-row{align-items:flex-start;}
.booking-cta{position:sticky; top:100px; box-shadow:0 16px 32px rgba(0,0,0,0.08);} 
.booking-cta .primary-btn{background:linear-gradient(90deg, var(--primary-color), var(--secondary-color)); border-color:transparent;}
.booking-cta .primary-btn:hover{filter:brightness(1.05);} 



.inquiry-form{width:68%;background:#fff;border:1px solid #e8e8e8;border-radius:6px;padding:20px;}
.inquiry-form h3{font-size:22px;color:#000;font-weight:700;margin:0 0 15px;}
.inquiry-form .form-row{display:flex;gap:12px;flex-wrap:wrap;margin:0 0 12px;}
.inquiry-form input,.inquiry-form textarea{border:1px solid #ccc;padding:10px;border-radius:4px;color:#000;}
.inquiry-form input{flex:1 1 48%;}
.inquiry-form textarea{flex:1 1 100%;resize:vertical;}
.inquiry-form .form-actions{display:flex;gap:10px;}
.inquiry-form .primary-btn,.inquiry-form .secondary-btn{display:inline-block;padding:10px 18px;border-radius:4px;font-weight:600;font-size:14px;cursor:pointer;}
.inquiry-form .primary-btn{background:var(--primary-color);color:#fff;border:1px solid var(--primary-color);} 
.inquiry-form .primary-btn:hover{background:var(--secondary-color);border-color:var(--secondary-color);} 
.inquiry-form .secondary-btn{background:#fff;color:#000;border:1px solid #e8e8e8;}
.inquiry-form .secondary-btn:hover{border-color:var(--primary-color);color:var(--primary-color);}  */
.inquiry-form{box-shadow:0 16px 32px rgba(0,0,0,0.06);} 
.inquiry-form input,.inquiry-form textarea{transition:border-color .2s ease, box-shadow .2s ease, background-color .2s ease; background:#fafafa;}
.inquiry-form input:focus,.inquiry-form textarea:focus{border-color:var(--primary-color); box-shadow:0 0 0 3px rgba(179,35,35,0.15); background:#fff;}





.gallery-wrap{ background-color:#fff;}
.gallery-wrap h2{font-size:30px;color:#000;font-weight:700;margin:0 0 10px;text-transform: capitalize;text-align: center;}
.gallery-slider .slick-slide{margin:0 10px;}
.gallery-slider .images{height: 130px;}
.gallery-slider .images img{object-fit: cover;height: 100%; width: 100%;}
.gallery-row{  height: 300px;  width: 100%; overflow: hidden;}
.palette {display: flex; width: 100%;height: 100%;}
.color {height: 100%;flex: 1; display: flex; align-items: center;justify-content: center;color: white;font-weight: 600;letter-spacing: 1px; transition: flex 0.1s linear;}
.color img{object-fit: cover;width: 100%;height: 100%;}
.color:nth-child(1) { background: #264653;}
.color:nth-child(2) { background: #2a9d8f;}
.color:nth-child(3) { background: #e9c46a;}
.color:nth-child(4) {  background: #f4a261;}
.color:nth-child(5) { background: #e76f51;}
.color:hover {flex: 4;/* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */}
.color:hover span { opacity: 1;}




/* -------- Student-Visa-section -------- */


.student-visa-wrap{padding:60px 0 ;} 
.sv-theme-alt .sv-hero{display:flex;flex-wrap: wrap; justify-content: space-between;align-items: flex-start;}
.sv-theme-alt .sv-hero .sv-header{width: 48%;}
.hero-img{width: 48%;position: sticky;top: 100px;}
.hero-img .image{width:100%;border-radius: 10px; overflow: hidden;min-height: 300px;}
.hero-img .image img{width: 100%; height: 100%;object-fit: cover;}
.sv-theme-alt .sv-hero .sv-hero-img{flex:0 0 320px; height:220px; display:flex; align-items:center; justify-content:center; border-radius:16px; background:rgba(255,255,255,0.4); backdrop-filter: blur(8px); border:1px solid rgba(0,0,0,0.06); box-shadow:0 12px 24px rgba(0,0,0,0.06);} 
.sv-theme-alt .sv-hero .sv-hero-img img{max-width:80%; height:auto; object-fit:contain;}
.sv-header h2{font-size:30px;color:#000;font-weight:700;margin:0 0 10px;}
.sv-header p{color:#000;margin:0 0 20px;line-height: 1.56;text-align: justify;font-size: 16px;}
.sv-badges{display:flex;flex-wrap:wrap;}
.sv-badge {background:#fff;border:1px solid rgba(0,0,0,0.06);border-radius:30px;padding:10px 20px;box-shadow:0 6px 18px rgba(0,0,0,0.06);font-size:14px;color:#000;margin: 0 2% 20px 0;}
.sv-badge strong{color: var(--primary-color);}
/* .sv-badge:nth-child(2n){margin-right: 0;} */
.sv-badge:last-child{margin: 0;}


.visa-documentation-wrap{padding: 60px 0;background-color: var(--global-color);}
.sv-row{display:flex;flex-wrap:wrap;justify-content: space-between;}
.sv-col{ width: 48%;}
.sv-col h3{font-size:22px;color:#000;font-weight:700;margin:0 0 20px;}
.sv-col2{width: 48%;}
.sv-col2 h3{font-size:22px;color:#000;font-weight:700;margin:0 0 20px;}

/* Documents grid */
.sv-docs-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px; margin: 0 0 20px;}
.sv-doc{border:1px solid #eee;border-radius:12px;padding:16px;background:linear-gradient(180deg,#ffffff 0%, #fbfbfb 100%);transition:transform .2s ease, box-shadow .2s ease; position:relative;}
.sv-doc:after{content:""; position:absolute; inset:0; border-radius:12px; pointer-events:none; box-shadow:inset 0 1px 0 rgba(255,255,255,0.9);} 
.sv-doc h4{font-size:16px;color:var(--primary-color);font-weight:700;margin:0 0 6px;}
.sv-doc p{color:#000;font-size:14px;line-height: 1.56;}
.sv-doc:hover{transform:translateY(-2px);box-shadow:0 10px 24px rgba(0,0,0,0.08);} 

/* Steps timeline */
.sv-process{margin: 0 0 20px;}
.sv-steps{list-style:none;counter-reset: step;padding:0;margin:0;}
.sv-steps li{counter-increment: step;position:relative;border:1px solid #eee;border-radius:12px;padding:14px 14px 14px 56px;background:#fff;margin:0 0 12px;box-shadow:0 8px 18px rgba(0,0,0,0.05);} 
.sv-steps-vertical{position:relative;}
.sv-steps-vertical li{padding-left:64px;}
.sv-steps-vertical li:after{content:""; position:absolute; left:30px; top:100%; width:2px; height:18px; background:linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0));}
.sv-steps-vertical li:last-child:after{display:none;}
.sv-steps li:before{content: counter(step);position:absolute;left:16px;top:50%;transform:translateY(-50%);width:28px;height:28px;border-radius:50%;background:linear-gradient(90deg,var(--primary-color),var(--secondary-color));color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;box-shadow:0 4px 10px rgba(179,35,35,0.35);} 
h6.sv-step-title{font-weight:700;color:#000;margin:0 0 4px;}
.sv-step-text{color:#000;font-size:14px;line-height: 1.56;}
.sv-note {background:#fef6f6;border:1px solid #fde2e2;border-radius:10px;padding:12px;margin-top:8px;}
.sv-notep{line-height: 1.56;color:#000;font-size: 14px;}


/* Inquiry card */
.sv-card{background:#fff;border:1px solid rgba(0,0,0,0.06);border-radius:12px;box-shadow:0 12px 24px rgba(0,0,0,0.06);padding:20px; position:relative;}
.sv-theme-alt .sv-inquiry .sv-card{position:sticky; top:100px;}
.sv-card h3{font-size:22px;color:#000;font-weight:700;margin:0 0 14px;}
.sv-form-row{display:flex;gap:12px;flex-wrap:wrap;margin:0 0 12px;}
.sv-form-row input,.sv-form-row textarea{border:1px solid #ccc;padding:10px;border-radius:6px;color:#000;background:#fafafa;font-size: 14px;}
.sv-form-row input{flex:1 1 48%;}
.sv-form-row textarea{flex:1 1 100%;}
.sv-form-row input:focus,.sv-form-row textarea:focus{border-color:var(--primary-color);box-shadow:0 0 0 3px rgba(179,35,35,0.15);background:#fff;}
.sv-actions{display:flex;gap:10px;}
.sv-actions .primary-btn{background:linear-gradient(90deg,var(--primary-color),var(--secondary-color));color:#fff;border:1px solid transparent;border-radius:6px;padding:10px 18px;font-weight:600;font-size: 14px;}
.sv-actions .primary-btn:hover{filter:brightness(1.05);} 
.sv-actions .secondary-btn{background:#fff;color:#000;border:1px solid #e8e8e8;border-radius:6px;padding:10px 18px;font-weight:600;}
.sv-actions .secondary-btn:hover{border-color:var(--primary-color);color:var(--primary-color);} 



/* ----------------exploretrip-wrap------------- */
.Explore-trip-wrap h2{font-size:30px;color:#000;font-weight:700;margin:0 0 10px;text-transform: capitalize;text-align:left;}
.explore-package-row{display: flex; flex-wrap: wrap;}
.row-one{background-color:#e1fbff;padding: 60px 0;}
.row-two{padding:60px 0;background-color: #f3fafb;}
.row-three{padding: 60px 0;background-color:#ebfff7;}



/* ------------ Transportation (flex) ------------- */
.transportation-wrap{padding: 60px 0;background-color: var(--global-color);}
.transport-head h2{font-size:30px;color:#000;font-weight:700;margin:0 0 10px;}
.transport-head p{color:#000;margin:0 0 20px;line-height: 1.56;font-size: 16px;}
.vehicle-row{display:flex;flex-wrap:wrap;}
.vehicle-card{background:#fff;border:1px solid #e8e8e8;border-radius:12px;overflow:hidden;box-shadow:0 10px 24px rgba(0,0,0,0.06);transition:transform .2s ease, box-shadow .2s ease; width:23.5%;margin:0 2% 20px 0;}
.vehicle-card:nth-child(4n){margin-right:0;}
.vehicle-card:hover{transform:translateY(-3px);box-shadow:0 16px 32px rgba(0,0,0,0.08);} 
.vehicle-img{height:170px;background:#f7f7f7;}
.vehicle-img img{width:100%;height:100%;object-fit:cover;display:block;}
.vehicle-content{padding:14px;}
.vehicle-content h3{font-size:18px;color:#000;font-weight:700;margin:0 0 8px;}
.vehicle-content p{color: #302b2b; line-height: 1.56; font-size: 14px;margin: 0 0 10px;}
.vehicle-card .vehicle-meta{display:flex;gap:8px;flex-wrap:wrap;margin:0 0 10px;}
.meta-pill{background:#f5f5f5;border:1px solid #eee;border-radius:20px;padding:6px 10px;font-size:12px;color:#000;}
.vehicle-price{font-size:18px;color:var(--primary-color);font-weight:700;}
.bottom-row{display: flex;justify-content: space-between;align-items: center;}
.book-btn a{color: #fff;padding:8px 15px; font-size: 14px; background-color: var(--primary-color);border-radius: 50px;border: 1px solid var(--primary-color);display: inline-block;}
.book-btn a:hover{background: transparent;color: var(--primary-color); }




.country-visa-wrap{padding: 60px 0; background-color: var(--global-color);}
.country-visa-row{display: flex; flex-wrap: wrap;}
.country-visa-col1{width: 18%; margin: 0 2% 20px 0;box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;display: flex;justify-content: center;align-items: center;flex-direction: column;margin-top: 70px;padding: 20px;border-radius: 5px;}
.country-visa-col1:last-child{margin-right: 0;}
.country-img{width: 150px; height:120px;border-radius: 5px;overflow: hidden;margin-top: -70px;margin-bottom: 10px;}
.country-img img{object-fit: cover;width: 100%; height: 100%;}
.country-visa-col1 h6{font-weight: 700; color:#000; font-size:18px;margin: 0 0 10px;text-transform: uppercase;border-bottom: 1px solid #ccc;padding-bottom: 10px;}
.country-visa-col1 .price{display: flex;align-items: center;}
.country-visa-col1 .price p{color: #000;font-size: 16px;margin-right: 10px;}
.country-visa-col1 .price h3{color: var(--primary-color); font-weight: 700; font-size: 23px;}







/* ---------------------Cursor------------------ */

/* .cursor-outer,
    .cursor-inner {
      position: fixed;
      pointer-events:none;
      z-index: 1000;
      transition: transform 0.2s ease;

    }

    .cursor-outer {
      width: 40px;
      height: 40px;
      border: 2px double var(--primary-color);
      border-radius: 50%;
      transform: translate(-50%, -50%);
    }

    .cursor-inner {
      width: 8px;
      height: 8px;
      background: var(--secondary-color);
      border-radius: 50%;
      transform: translate(-50%, -50%);
    }  */






/* -------------------------Whatsapp------------------ */

.whatsapp-icon {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #25d366;
  overflow: hidden;
}
.whatsapp-image {
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
}
.whatsapp-icon .whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.whatsapp-icon:hover .whatsapp-image {
  transform: scale(1.1);
}

/* -------------Error-page-------------------- */

.error-page-section {
  padding: 60px 0;
  text-align: center;
}
.error-page-section h1 {
  font-size: 60px;
  color: #000;
  margin: 0 0 20px;
  font-weight: 500;
}
.error-page-section h2 {
  font-size: 28px;
  margin: 0 0 20px;
  color: var(--primary-color);
}
.error-page-section p {
  font-size: 16px;
  line-height: 1.56;
  margin: 0 0 20px;
  color: #000;
}
.error-page-section .search-form {
  width: auto;
  max-width: 420px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
.error-page-section .search-form input {
  width: 100%;
  height: 50px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--secondary-color);
  border-image: initial;
  border-radius: 8px;
  padding: 0px 20px;
  background: no-repeat;
  margin: 0 10px 0 0;
  flex: 1 0 0;
}
.error-page-section .search-form .search-submit {
  display: inline-block;
  font-size: 14px;
  display: inline-block;
  background: var(--primary-color);
  padding:10px 20px;
  font-size: 14px;
  border: 1px solid var(--primary-color);
  border-radius:5px;
  color: #fff;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}

.error-page-section .search-form .search-submit:hover {
  background-color:transparent;
  transform: scale(1.05);
  color: var(--primary-color);
}

.error-page-section .search-form .search-submit .screen-reader-text {
  font-size: 16px;
  clip: inherit;
  clip-path: inherit;
  position: relative !important;
  transition: all 0.5s ease-in-out;
  color: #fff;
}


/* ---------------Privacy-wrap-------------- */

.defualt-page-section {
  padding: 80px 0 0;
}
.defualt-page-section h2 {
  font-size: 28px;
  margin: 0 0 20px;
  color: var(--primary-color);
  font-weight: 600;
}
.defualt-page-section p {
  font-size: 16px;
  line-height: 1.56;
  margin: 0 0 20px;
  word-break: break-all;
  color: #000;
}

/*----------------search-page-wrap-------------- */

.search-page-section {
  padding: 60px 0 0;
}
.search-page-section h1 {
  font-size: 32px;
  margin: 0 0 20px;
  color: var(--global-color);
  font-weight: 600;
}
.search-page-section .search-page-card {
  width: 100%;
  margin: 0 0 50px;
}
.search-page-section h3 {
  font-size: 28px;
  margin: 0 0 20px;
  color: var(--primary-color);
  font-weight: 600;
}
.search-page-section p {
  font-size: 16px;
  line-height: 1.56;
  margin: 0 0 20px;
}
.search-page-section .search-btn1 {
  display: inline-block;
  background: var(--primary-color);
  padding:10px 20px;
  font-size: 14px;
  border: 1px solid var(--primary-color);
  border-radius:5px;
  color: #fff;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}
.search-page-section .search-btn1:hover {
  background-color:transparent;
  transform: scale(1.05);
  color: var(--primary-color);
}


.defualt-page-section {padding: 60px 0; background: #fff;}
.content-wrapp.defualt-wrap h2 { font-size: 2rem; font-weight: 500; color: var(--primary-color); margin: 0 0 20px;}
.content-wrapp.defualt-wrap h3 {font-size: 1.5rem; font-weight: 500; color: var(--secondary-color); margin: 0 0 20px;}
.content-wrapp.defualt-wrap h4 { font-size: 2rem; font-weight: 500; color: var(--secondary-color); margin: 0 0 20px;}
.content-wrapp.defualt-wrap p { font-size: 16px; color:var(--global); line-height: 1.56; margin: 0 0 20px;}
.content-wrapp.defualt-wrap ul {width: 100%; margin: 0 0 20px;}
.content-wrapp.defualt-wrap ul li { font-size: 16px; line-height: 1.56; color: var(--global); padding-left: 10px; position: relative;}
.content-wrapp.defualt-wrap ul li:before { content: "\2022"; position: absolute; left: 0; top: 0;}
.content-wrapp.defualt-wrap ol { width: 100%;float: none; counter-reset: my-awesome-counter; margin: 0 auto 28px;position: relative;}
.content-wrapp.defualt-wrap ol li {font-size: 16px; line-height: 1.56; color: var(--global); padding-left: 20px;position: relative;counter-increment: step-counter;}
.content-wrapp.defualt-wrap ol li:before { content: counter(step-counter) '.'; margin-right: 0px; position: absolute; left: -4px; top: 0;}
.content-wrapp.defualt-wrap p a, .content-wrapp.defualt-wrap ul li a, .content-wrapp.defualt-wrap ol li a{color:var(--primary-color);}
.content-wrapp.defualt-wrap p a:hover, .content-wrapp.defualt-wrap ul li a:hover, .content-wrapp.defualt-wrap ol li a:hover{color: #000000;}


.animated-element { transform-origin: center;}
.slick-dotted.slick-slider{margin-bottom: 0;}
.city-tours-row.best-places-slider{
  z-index:22;
}
.bast-places-wrap::after{
  z-index: 1;
}




@media screen and (max-width: 1400px) {

.container{max-width: 94%;}

/* ---bast-places-wrap---------- */
.safari-col1 .content h3{font-size: 26px;}

.country-visa-col1{width: 18.4%;}
.country-visa-col1:nth-child(5n){margin-right: 0;}
}

@media screen and (max-width: 1200px) {

.default-banner-row h1{font-size: 38px;}
.banner-content h1{font-size: 38px;}
.header-menu ul{gap: 30px;}

/* ---bast-places-wrap---------- */
.safari-col1 .content h3{font-size: 24px;}


.country-visa-col1{width: 23.5%;}
.country-visa-col1:nth-child(4n){margin-right: 0;}
.country-visa-col1:nth-child(5n){margin-right: 2%;}
}

@media screen and (max-width:1024px){

.header-logo{width: 80px;}



.bast-places-wrap h2{font-size: 33px;}
.oman-wrap h2{font-size: 33px;}
.package-wrap h2{font-size: 33px;}


/* --bast-places-wrap--------- */
.bast-places-wrap h3{font-size: 28px;}
.safari-col1{width: 32%;}
.safari-col1:nth-child(3n){margin-right: 0;}
.safari-col1:nth-child(4n){margin-right:2%;}
.safari-col1:nth-child(12n){margin-right:0;}


.destination-col1{width: 32%;}
.destination-col1:nth-child(3n){margin-right: 0;}
.destination-col1:nth-child(4n){margin-right: 2%;}


.package-col1{width: 32%;}
.package-col1:nth-child(3n){margin-right: 0;}
.package-col1:nth-child(4n){margin-right: 2%;}


/* -about-wrap-- */
.about-col2 h3{font-size: 28px;}
.about-col2 h2{font-size: 33px;}

.contact-wrap h3{font-size: 28px;}

.button-col{top: 77px;}
.nav-links{width: 90%;}

/* --testimonial--- */
.testimonial-wrap h3{font-size: 28px;}


/* --visa-service-page--- */
.visa-col1{width: 32%;padding: 20px;}
.visa-col1:nth-child(3n){margin-right: 0;}
.visa-col1:nth-child(4n){margin-right: 2%;}


/* ---transportaion-page--- */
.vehicle-card{width: 32%;}
.vehicle-card:nth-child(3n){margin-right: 0;}
.vehicle-card:nth-child(4n){margin-right: 2%;}



/* --visa-inner-page-- */
/* .hero-img .image{height: 400px;} */
.hero-img .image{min-height:auto;}
}


@media screen and (max-width:991px){

.default-banner-row h1{font-size: 35px;}
.banner-content h1{font-size: 35px;}

.header-wrap .primary-btn{display: none;}

.burger-btn {display: block;position: fixed; width: 50px; height: 30px; right: 5%;top: 32px; z-index:1000;overflow: hidden;cursor: pointer;}
.burger-btn span { display: block; width: 100%; height: 3px; background: var(--primary-color); background-size: 300% 100%;border-radius: 5px; transition: all 0.4s cubic-bezier(0.7, 0, 0.2, 1);}
.burger-btn .burger-toggle { display: flex; flex-wrap: wrap; justify-content: right;}
.header-menu {  display: none;}
.burger-btn span:nth-child(2n) {margin: 9px 0;transition: all 0.5s cubic-bezier(0.22, 0.68, 0, 1.71);}
.burger-btn span:first-child {width: 70%;}
.burger-btn span:last-child { width: 70%;}
.overlay { display: block;position: fixed;  right: 0;  top: 0;width: 350px; height: 100%;  background-color: #fff; background-size: 300% 100%; z-index: 999; padding: 110px 5% 50px; transform: translateX(100%); opacity: 0;  visibility: hidden;  transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);}
.overlay ul li a { color:#000; display: block; padding: 20px 0;}
.overlay ul li a:hover{color: var(--primary-color);font-weight: 600;}
.overlay ul li { font-size: 18px;border-bottom: 1px solid #000;font-weight: 500;}
.overlay.show { transform: translateX(0); opacity: 1; visibility: visible;}
.burger-btn .active span:first-child {  transform: translateY(13px) rotate(-45deg);}
.burger-btn .active span:last-child { transform: translateY(-11px) rotate(45deg);}
.burger-btn .active span:nth-child(2n) {transform: translateX(-100%);}


.bottom-col1 h6{font-size: 16px;}

/* -------bast-places-wrap---- */

.bast-places-wrap h3{font-size: 26px;}
.safari-col1 .content h3{font-size: 22px;}

.safari-col1 .content .new-price{font-size: 24px;}
.place-name h6{font-size: 16px;}


.bast-places-wrap h2{font-size: 30px;}
.oman-wrap h2{font-size: 30px;}
.place-name h6{font-size: 16px;}

.package-wrap h2{font-size: 30px;}
.package-content h6{font-size: 16px;}


/* --about---- */
.about-wrap::after{height: 330px;}
.about-col2 h3{font-size: 26px;}
.counter-col .icon{width: 50px;}
.about-col2 h2{font-size: 28px;}
.about-row{flex-direction: column-reverse;}
.about-col1{width: 100%;}
.about-col2{width: 100%;margin: 0 0 20px;}
.about-img {width: 400px;}
.about-img::after{top: 45px;left: 70px;}

/* ---contact-wrap--- */
.contact-wrap h3{font-size: 26px;}
.contact-col1{padding: 30px;}
.contact-col2{padding: 30px;}


/* ---why-choose-------- */
.why-choose-col1 .icon{width: 80px;height: 80px;}
.why-choose-col1 .icon img{width: 40px;}
.why-choose-col1 h6{font-size: 16px;}


/* --testimonial--- */
.testimonial-wrap h3{font-size: 26px;}

/* --footer-wrap--- */
.footer-col1{width: 32%;margin: 0 2% 20px 0;}
.footer-col1:nth-child(3n){margin-right: 0;}
.footer-col1:last-child{margin-right: 0;}

/* ---visa-page--- */
.country-visa-col1{width: 32%;}
.country-visa-col1:nth-child(3n){margin-right: 0;}
.country-visa-col1:nth-child(4n){margin-right: 2%;}
.country-visa-col1 .price h3{font-size: 20px;}


/* --transportaion-page--- */

.transport-head h2{font-size: 28px;}

/* --package-page--- */

.package-details-col2 h2{font-size: 28px;}
.gallery-wrap h2{font-size: 28px;}

.package-details-col1{width: 100%;}
.package-details-col2{width: 100%;margin: 0 0 20px;}


/* --visa-inner-page-- */
.sv-header h2{font-size: 28px;}
.sv-theme-alt .sv-hero .sv-header{width: 100%;margin: 0 0 20px;}
.hero-img{width: 100%;}
.sv-row{flex-direction: column-reverse;}
.sv-col{width: 100%;margin: 0 0 20px;}
.sv-col2{width: 100%;}


.default-banner h1{font-size:36px}
}

@media screen and (max-width: 767px) {
.default-banner-wrap{height: 45vh;}
.overlay ul li{font-size: 16px;}


.bottom-col1 .icon{width: 40px;}
.bottom-col1{width: 23.5%;}

.default-banner-row h1{font-size: 30px;margin: 0 0 10px;}
.banner-content h1{font-size: 30px;}

.bast-places-wrap h2{font-size: 28px;}
.oman-wrap h2{font-size: 28px;}
.package-wrap h2{font-size: 28px;}
.Explore-trip-wrap h2{font-size: 28px;text-align: center;}
.visa-service-wrap h2{font-size: 28px;}


.bast-places-wrap h3{font-size: 24px;}

.destination-col1{width: 49%;}
.destination-col1:nth-child(2n){margin-right: 0;}
.destination-col1:nth-child(3n){margin-right: 2%;}
.destination-col1:nth-child(6n){margin-right: 0;}



.bast-places-wrap{padding: 30px 0;}
.oman-wrap{padding: 30px 0;}
.package-wrap{padding: 30px 0;}
.about-wrap{padding: 30px 0;}
.testimonial-wrap{padding: 30px 0;}
.whychoose-wrap{padding: 30px 0;}
.contact-wrap{padding: 30px 0;}
.contact-wrap-2{padding:30px 0;}
.banner-bottom-wrap{padding-bottom: 30px;}
.row-one{padding: 30px 0;}
.row-three{padding: 30px 0;}
.row-two{padding: 30px 0;}
.visa-service-wrap{padding: 30px 0;}
.transportation-wrap{padding: 30px 0;}
.trip-packages-wrap{padding: 30px 0;}
.country-visa-wrap{padding: 30px 0;}
.package-details-wrap{padding: 30px 0;}
.booking-inquiry-wrap{padding: 30px 0;}
.student-visa-wrap{padding: 30px 0;}
.visa-documentation-wrap{padding: 30px 0;}
.visa-documentation-wrap{padding: 30px 0;}


.nav-links{width: 80%;}
.nav-links .filter-btn{font-size: 14px;}

/* --about---- */
.about-wrap::after{height: 230px;}
.about-col2 h3{font-size: 22px;}
.counter-col .icon{width: 40px;}
.about-col2 h2{font-size: 24px;}
.about-col1{width: 100%;margin: 0 0 20px;}
.about-col2{width: 100%;}
.about-img {width: 300px;}
.about-img::after{top: 25px;left: 70px;width: 45px;height: 45px;}
.counter-col p{font-size: 14px;}


/* ----contact-wrap----- */

.contact-row h3{font-size: 24px;}
.example-2 .icon-content a{width: 45px; height: 45px;}
.example-2 .icon-content a svg{width: 25px; height: 25px;}


/* ---why-choose-------- */
.why-choose-col1 .icon{width: 70px;height: 70px;}
.why-choose-col1 .icon img{width: 35px;}
.why-choose-col1 h6{font-size: 14px;}


/* --testimonial--- */
.testimonial-wrap h3{font-size: 24px;}


/* --footer-wrap--- */
.footer-wrap{padding: 30px 0 0;}
.footer-row1{flex-direction: column;justify-content: center;align-items: center;}
.footer-row1 p{margin: 0 0 10px;text-align: center;}


/* --visa-service--page--- */
.visa-col1{width: 49%;}
.visa-col1:nth-child(2n){margin-right: 0;}
.visa-col1:nth-child(3n){margin-right: 2%;}

/* ---transportaion-page--- */

.transport-head h2{font-size: 26px;}
.vehicle-card{width: 49%;}
.vehicle-card:nth-child(2n){margin-right: 0;}
.vehicle-card:nth-child(3n){margin-right: 2%;}
.vehicle-card:nth-child(6n){margin-right: 0;}



/* --visai-page--- */
.country-visa-col1 .price h3{font-size: 18px;}
.country-img{width: 140px; height: 110px;}
.country-visa-col1 h6{font-size: 16px;}


/* ---package-inner-page-- */
.package-details-col2 h2{font-size: 26px;}
.gallery-wrap h2{font-size: 26px;}

.gallery-row{height: 200px;}
.booking-cta{width: 100%;position:unset;margin: 0 0 20px;display: flex;justify-content: center;flex-direction: column;align-items: center;}
.inquiry-form{width: 100%;}
.booking-cta .btn-row{justify-content: center;align-items: center;}



/* ---visa-inner-page--- */
.sv-header h2{font-size: 26px;}
/* .hero-img .image{height: 350px;} */
.hero-img .image{min-height:auto;}
.sv-col2 h3{font-size: 22px;}
.sv-col h3{font-size: 22px;}


.everest-forms-submit-button.button.evf-submit{padding: 10px 20px !important;}


.default-banner h1{font-size:34px}
.search-page-section{padding: 30px 0;}
.defualt-page-section{padding: 30px 0;}
.error-page-section{padding: 30px 0;}
.search-page-section .search-btn1{padding: 10px 30px;}
}

@media screen and (max-width: 709px) {

/* --package-page--- */
.safari-col1{width:49%}
.safari-col1:nth-child(2n){margin-right:0;}
.safari-col1:nth-child(3n){margin-right: 2%;}
.safari-col1:nth-child(6n){margin-right: 0;}


.package-col1{width: 49%;}
.package-col1:nth-child(2n){margin-right:0;}
.package-col1:nth-child(3n){margin-right: 2%;}
.package-col1:nth-child(6n){margin-right: 0;}

}





@media screen and (max-width: 600px) {

.banner-wrap{height: 70vh;}
.bottom-col1{width: 32%;margin-bottom: 20px;}
.bottom-col1:nth-child(3n){margin-right: 0;}


.bast-places-wrap h3{font-size: 22px;}
.safari-col1 .content h3{font-size: 20px;}
.safari-col1 .content .new-price{font-size: 22px;}

.place-name h6{font-size: 14px;}

/* ---contact-wrap--- */
.contact-col1{width: 100%; border-right: none; border-bottom: 1px solid #ccc;}
.contact-col2{width: 100%;}
.example-2 .icon-content a{width: 40px; height: 40px;}
.example-2 .icon-content a svg{width: 20px; height: 20px;}


/* --footer-wrap--- */
.footer-col1{width:49%;}
.footer-col1:nth-child(3n){margin-right:2%;}
.footer-col1:nth-child(2n){margin-right:0;}
.footer-col1:last-child{margin-right: 0;}

/* ---visa-page-- */
.country-visa-col1{width: 49%;}
.country-visa-col1:nth-child(2n){margin-right: 0;}
.country-visa-col1:nth-child(3n){margin-right: 2%;}
.country-visa-col1:nth-child(6n){margin-right: 0;}


.default-banner h1{font-size:32px}
.defualt-page-section h2{font-size: 26px;}
.search-page-section h3{font-size:26px ;}
.contact-col2 .content-col1{flex-wrap: wrap;}
}


@media screen and (max-width: 480px) {

.default-banner-wrap{height: 45vh;}

.header-logo{width: 70px;}
.footer-logo img{width: 100px;}

.overlay { width: 100%;}
.burger-btn { width: 40px; top:30px;}
.burger-btn span{height:2px}
.burger-btn .active span:first-child { transform: translateY(12px) rotate(-45deg); }
.burger-btn .active span:last-child { transform: translateY(-10px) rotate(45deg);}
.overlay ul li{font-size: 14px;}

.bottom-col1 h6{font-size: 14px;}
.bottom-col1{width: 45%;}
.bottom-col1:nth-child(2n){margin-right: 0;}
.bottom-col1:nth-child(3n){margin-right: 2%;}
.bottom-col1 .icon{width: 35px;}


.default-banner-row h1{font-size: 28px;}
.banner-content h1{font-size: 28px;}

.bast-places-wrap h3{font-size: 20px;}
.about-col2 h3{font-size: 20px;}


.bast-places-wrap h2{font-size: 26px;}
.oman-wrap h2{font-size: 26px;}
.package-wrap h2{font-size: 26px;}
.Explore-trip-wrap h2{font-size: 26px;}
.visa-service-wrap h2{font-size: 26px;}






.transport-head p{text-align: center;}
.transport-head p{font-size: 14px;}

.nav-links{width: 100%;}
.button-col{top: 69px;}
.nav-links .filter-btn{padding: 10px; font-size: 12px;}
.place-name h6{font-size: 14px;}
.package-content h6{font-size: 14px;} 

.safari-col1 .content h3{font-size: 16px;}
.safari-col1 .content .new-price{font-size: 20px;}
.price p{font-size: 14px;}
.safari-col1 .content .old-price{font-size: 14px;}
.safari-col1{height: 250px;}
.safari-col1 .content{padding: 10px;}


.place-name h3{font-size: 14px}
.package-content h3{font-size: 14px;}
.package-content{padding: 10px;}
.best-places-slider .slick-slide{margin: 0 5px;}


.why-choose-col1{width: 48%;}
.why-choose-col1:nth-child(2n){margin-right: 0;}


.destination-col1{height: 250px;}
.place-name{padding: 10px;bottom: 10px;gap: 5px;}
.description p{font-size: 14px;}
.primary-btn a{font-size: 14px;}
.place-name h6{font-size: 12px;}
.place-name .icon{width: 25px; height: 25px;}
.place-name .icon img{width: 15px;}



.top-col p{font-size: 12px;}
.package-content h6{font-size: 12px;}
.package-img{height: 150px;}
.top-col{margin: 0 0 10px;}
.price p span{font-size: 16px;}



/* ---contact-wrap--- */

.contact-row h3{font-size: 22px;margin: 0 0 12px;}
.contact-col2 .content-col1 .icon{width: 35px;height: 35px;}
.contact-col2 .content-col1 .icon img{width: 25px;}
.contact-col2 .content-col1 h6{font-size: 16px;line-height: 1;}
.contact-col1{padding: 20px;}
.contact-col2{padding: 20px;}
.contact-col1 input{margin: 0 0 15px;font-size: 14px;}
.contact-col2 .content-col1{gap: 10px;}

/* --testimonial--- */

.testimonial-wrap h3{font-size: 22px;text-align: center;}
.top-row h6{font-size: 18px;}
.rating img{width: 70px;}


/* --footer-wrap--- */
.footer-col1{width:100%;}
.footer-col1:nth-child(n){margin-right:0;}
.footer-logo{width: 130px;}
.footer-col1 h3{font-size: 18px;margin: 0 0 12px;}
.footer-col1:last-child{margin: 0;}


/* --visa-page--- */
.visa-col1{width: 100%;}
.visa-col1:nth-child(n){margin-right: 0;}
.visa-col1:last-child{margin:0}


/* ---visa-page--- */
.country-img {width: 130px; height: 100px;}
.country-visa-col1{padding: 10px;box-shadow: rgba(0, 0, 0, 0.25) 0px 5px 15px;}
.country-visa-col1 .price p{font-size: 14px;}
.country-visa-col1 .price h3{font-size: 16px;}
.country-visa-col1 h6{font-size: 14px;}
.country-img{margin-top: -60px;}


/* --transportaion-page-- */

.transport-head h2{font-size: 24px;text-align: center;}
.vehicle-card{width: 100%;}
.vehicle-card:nth-child(n){margin-right: 0;}
.vehicle-card:last-child{margin: 0;}



/* ---package-inner-page--- */
.package-details-col2 h2{font-size: 24px; text-align: center;}
.gallery-wrap h2{font-size: 24px;}

.booking-cta h3{font-size: 20px;}
.inquiry-form h3{font-size: 20px;}
.itinerary h3, .inclusions-exclusions h3{font-size: 20px;}

.itinerary-list li{font-size: 14px;}
.inclusions-exclusions .col-row .common-col{width: 100%;padding: 12px;}
.inclusions-exclusions .col-row .common-col:nth-child(2n){margin: 0;}
.gallery-row{height: 150px;}
.booking-cta{padding: 10px;display: flex;flex-direction: column;justify-content: center;align-items: center;text-align: center;}
.inquiry-form{padding: 10px;}
.inquiry-form input,.inquiry-form textarea{font-size: 14px;}
.booking-cta .primary-btn,.booking-cta .secondary-btn{padding: 8px 10px; font-size: 12px;}
.booking-cta p{font-size: 14px;}
.inquiry-form .primary-btn, .inquiry-form .secondary-btn{padding: 8px 10px;font-size: 12px;}
.inclusions-exclusions li{font-size: 14px;}

.package-header .meta .meta-item { width: 48%; margin: 0 4% 20px 0;}
.package-header .meta .meta-item:nth-child(3n) { margin-right: 4%;}
.package-header .meta .meta-item:nth-child(2n) { margin-right: 0;}


/* ---visa--inner-page-- */
.sv-header h2{font-size: 24px;text-align: center;}

.package-details-col1 h6{font-size: 14px}
.sv-docs-grid{display: flex;flex-direction: column;width: 100%;gap: unset;}
.sv-doc{margin: 0 0 20px;}
.sv-doc:last-child{margin:0 0 0 ;}
.sv-col2 h3{text-align: center;font-size: 20px;}
.sv-col h3{text-align: center;font-size: 20px;}
.sv-badge{width:100%;text-align: center;padding: 8px 10px;}
.sv-header p{font-size: 14px;}
.sv-actions .secondary-btn{padding: 8px 10px; font-size: 12px;}


.default-banner{height: 60vh;}
.default-banner h1{font-size:30px}
.defualt-page-section p{font-size: 14px;}
.defualt-page-section h2{font-size: 24px;}
.search-page-section h1{font-size: 30px;}
.search-page-section h3{font-size: 24px;}
.search-page-section .search-btn1 {padding: 8px 20px;font-size: 12px;}

.itinerary-list > li:after { left: 20px;}
.itinerary-list li .itinerary-title { padding: 14px 16px 14px 40px;}
.itinerary-list > li:before { left: 7px;}

}


@media screen and (max-width: 380px){

.default-banner-wrap{height: 40vh;}
.default-banner-row h1{font-size: 26px}
.default-banner-row .icon{width: 35px; height: 35px; }
.default-banner-row .icon img{width: 18px;}
.bottom-col1{width: 49%;}

.bast-places-wrap h2{font-size: 24px;}
.oman-wrap h2{font-size: 24px;}
.package-wrap h2{font-size: 24px;}
.about-col2 h2{font-size: 22px;}
.Explore-trip-wrap h2{font-size: 24px;}
.visa-service-wrap h2{font-size: 24px;}





.safari-col1 .content h3{font-size: 22px;}
.safari-col1 .content .new-price{font-size: 22px;}
.bast-places-wrap h3{margin-top: 20px;}

.place-name h6{font-size: 14px;}
.package-content h6{font-size: 14px}


.safari-col1{width: 100%;}
.safari-col1:nth-child(n){margin-right: 0;}
.safari-col1:last-child{margin: 0 ;}

.destination-col1{width: 100%;}
.destination-col1:nth-child(n){margin-right: 0;}
.destination-col1:last-child{margin: 0 ;}

.package-col1{width: 100%;}
.package-col1:nth-child(n){margin-right:0;}
.package-col1:last-child{margin: 0 ;}

.country-img {width: 100px; height: 80px;}
.country-visa-col1{margin-top: 50px;}


/* ----transportation-page---- */
.transport-head h2{font-size: 22px;}
.vehicle-content p{font-size: 12px;}

/* --package-inner-page---- */
.package-details-col2 h2{font-size: 22px;}
.gallery-wrap h2{font-size: 22px;}


.booking-cta h3{font-size: 18px;}
.inquiry-form h3{font-size: 18px;}
.itinerary h3, .inclusions-exclusions h3{font-size: 18px;}


/* --visa-inner-page--- */
.itinerary h3, .inclusions-exclusions h3{font-size: 18px}
.sv-header h2{font-size: 22px;}
.sv-col2 h3{font-size: 18px;}
.sv-col h3{font-size: 18px;}



.default-banner h1{font-size:28px}
.defualt-page-section h2{font-size: 22px;}
.search-page-section h1{font-size: 26px;}
.search-page-section h3{font-size: 22px;}
}

@media screen and (max-width: 320px) {

.banner-content h1{font-size: 24px;}

.bast-places-wrap h2{font-size: 22px;}
.oman-wrap h2{font-size: 22px;}
.package-wrap h2{font-size: 22px;}
.Explore-trip-wrap h2{font-size: 22px;}
.visa-service-wrap h2{font-size: 22px;}

.gallery-wrap h2{font-size: 22px;}

.contact-col2 .content-col1 h6{font-size: 14px;margin: 0 0 8px;}



.search-page-section h1{font-size: 24px;}
.search-page-section h3{font-size: 20px;}
}

