.breadcrumbWrap {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.breadcrumbWrap::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(25deg);
  animation: moveShine 6s linear infinite;
}

@keyframes moveShine {
  0% { transform: rotate(25deg) translateX(-100%); }
  100% { transform: rotate(25deg) translateX(100%); }
}

.about__title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  animation: fadeDown 1s ease forwards;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

.breadcrumb__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.breadcrumb__item {
  color: rgba(255, 255, 255, 0.85);
  position: relative;
}

.breadcrumb__item:not(:last-child)::after {
  content: "›";
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.breadcrumb__link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb__link:hover {
  color: #ffeb3b;
}

.breadcrumb__item--current {
  font-weight: 600;
  color: #ffe082;
}


/* Section Base */
.aboutus {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  padding: 80px 10%;
  background: linear-gradient(135deg, #f0faff 0%, #e6f7ff 100%);
}

/* Left Images */
.aboutusimg {
  flex: 1;
  min-width: 300px;
  position: relative;
}
.img-stack {
  position: relative;
}
.main-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.6s ease;
}
.overlay-img {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 70%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transform: rotate(6deg);
  transition: transform 0.6s ease;
}
.img-stack:hover .main-img {
  transform: scale(1.05);
}
.img-stack:hover .overlay-img {
  transform: rotate(-4deg) scale(1.05);
}

/* Right Content */
.aboutuscontent {
  flex: 1;
  min-width: 320px;
}
.about-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #003366;
  margin-bottom: 15px;
  animation: fadeSlideDown 1s ease forwards;
}
.about-text p {
  font-size: 17px;
  line-height: 1.6;
  color: #555;
  animation: fadeSlideDown 1.3s ease forwards;
}

/* Features */
.f_blocks {
  display: flex;
  gap: 20px;
  margin: 30px 0;
}
.f_block {
  flex: 1;
}
.inner_box {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}
.inner_box .icon {
  font-size: 32px;
  color: #00aaff;
  margin-bottom: 12px;
}
.inner_box h3 {
  font-size: 18px;
  color: #003366;
  font-weight: 600;
}
.inner_box:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 10px 28px rgba(0,170,255,0.25);
}

/* Quote Box */
.quote_box {
  border-left: 4px solid #00aaff;
  padding-left: 20px;
  margin-top: 30px;
  font-style: italic;
  color: #003366;
  animation: typing 6s steps(60, end) infinite;
  white-space: nowrap;
  overflow: hidden;
}
.quote_box cite {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  color: #666;
}

/* Animations */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes typing {
  0% { width: 0; }
  40% { width: 100%; }
  60% { width: 100%; }
  100% { width: 0; }
}

/* Responsive */
@media(max-width: 900px){
  .aboutus { flex-direction: column; }
  .overlay-img { position: static; transform: none; margin-top: 20px; }
  .f_blocks { flex-direction: column; }
  .quote_box { white-space: normal; animation: none; }
}

/* companyDetails  */
.aboutusWrap .companyDetails {
	 background-color: #000000b3;
	 background-blend-mode: multiply;
	 padding: 75px 0 0px;
	 margin: 0 0 150px;
	 height: 95vh;
}
.aboutusWrap .companyDetails i {
	 width: 85px;
	 height: 85px;
	 line-height: 85px;
	 text-align: center;
	 border-radius: 50%;
	 background-color: #fff;
	 font-size: 27px;
	 margin: 0 auto 50px;
	 display: block;
}
.aboutusWrap .companyDetails span {
	 position: relative;
	 font-size: 16px;
	 line-height: 36px;
	 text-transform: none;
	 font-family: 'Smoothread';
	 font-weight: 700;
	 color: #fff;
	 margin: 0 0 20px;
	 display: block;
	 text-align: center; 
}
.aboutusWrap .companyDetails h2 {
	 text-align: center;
	 font-size: 54px;
	 line-height: 1.2;
	 color: #fff;
	 overflow: hidden;
	 text-overflow: ellipsis;
	 display: -webkit-box;
	 -webkit-line-clamp: 2;
	 line-clamp: 2;
	 -webkit-box-orient: vertical;
	 margin: 0 0 15px;
	 font-weight: 700;
}
.aboutusWrap .companyDetails p {
	 font-size: 16px;
	 line-height: 1.7;
	 color: #fff;
	 text-transform: capitalize;
	 font-weight: 500;
	 text-align: center;
	 max-width: 800px;
}
.aboutusWrap .companyDetails ul {
	 flex-wrap: wrap;
	 justify-content: space-between;
	 background-color: #fff;
	 position: relative;
	 top: 120px;
	 padding: 15px;
	 border-radius: 8px;
	 box-shadow: -4px -4px 16px #000 0f, 8px 10px 20px #00000f;
}
.aboutusWrap .companyDetails ul li {
	 flex: 1;
	 text-align: center;
	 font-size: 14px;
	 line-height: 1.2;
	 text-transform: capitalize;
	 font-weight: 900;
}
.aboutusWrap .companyDetails ul li span {
	 width: 100%;
	 position: relative;
}
.aboutusWrap .companyDetails ul li i {
	 width: 100%;
	 font-size: 40px;
	 color: #000;
	 padding: 10px 0;
	 margin: 0 0 0;
}
.aboutusWrap .companyDetails ul li strong,
.aboutusWrap .companyDetails ul li b {
	 color: #f65c06;
	 width: 100%;
	 font-size: 32px;
	 line-height: 1em;
	 font-weight: 700;
	 display: block;
	 margin: 5px 0 15px;
}

/* whyBookus  */
.whyBookus {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #cbebff 100%);
  overflow: hidden;
}
.whyBookus .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.col-6 {
  flex: 1;
  min-width: 320px;
}

/* Left Text */
.text-block h2 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #003366;
  position: relative;
  animation: fadeSlideLeft 1s ease forwards;
}
.text-block p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  animation: fadeSlideLeft 1.5s ease forwards;
}

/* Right Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  animation: fadeSlideRight 1.5s ease forwards;
}

/* Cards */
.feature-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.feature-card i {
  font-size: 36px;
  color: #00aaff;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}
.feature-card h3 {
  font-size: 20px;
  color: #003366;
  margin-bottom: 8px;
  font-weight: 600;
}
.feature-card p {
  font-size: 15px;
  color: #666;
}

/* Hover Effect */
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 170, 255, 0.3);
}
.feature-card:hover i {
  transform: scale(1.2) rotate(8deg);
  color: #0077cc;
}

/* Keyframes Animations */
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 900px) {
  .whyBookus .container {
    flex-direction: column;
    text-align: center;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* Masonry Grid Destinations */
section.destinationGrid {
    padding: 15px 0;
}
.destinationGrid .masonryGridContainer {
	 grid-template-areas: "one one one three three three three four four four four four" "two two two three three three three five five six six six";
	 grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
	 grid-template-rows: 1fr 1fr;
	 grid-column-gap: 15px;
	 grid-row-gap: 15px;
	 display: grid;
}
.destinationGrid .masonryGridContainer .commGrid {
	 position: relative;
	 border-radius: 7px;
	 overflow: hidden;
}
 .destinationGrid .masonryGridContainer .commGrid img {
	 width: 100%;
	 height: 100%;
	 object-fit: cover;
}
 .destinationGrid .masonryGridContainer .commGrid .cardinfo {
	 position: absolute;
	 left: 0;
	 bottom: 0;
	 width: 100%;
	 padding: 15px;
	 z-index: 9;
}
 .destinationGrid .masonryGridContainer .commGrid .cardinfo h3 {
	 font-size: 27px;
	 line-height: 1.2;
	 color: #fff;
	 margin: 0;
	 font-weight: 700;
	 text-transform: capitalize;
}
 .destinationGrid .masonryGridContainer .commGrid .cardinfo p {
	 color: #f65c06;
	 font-size: 17px;
	 text-transform: capitalize;
	 font-weight: 700;
	 margin: 0 0 12px;
}
 .destinationGrid .masonryGridContainer .commGrid:after {
	 display: block;
	 content: "";
	 position: absolute;
	 width: 100%;
	 height: 50%;
	 bottom: 0;
	 left: 0;
   background: linear-gradient(180deg, rgba(9, 37, 59, 0) 0%, #09253b 100%);
	 /* background: linear-gradient(180deg, #09253b 0 0%, #09253b 100%); */
}
 .destinationGrid .masonryGridContainer .masonaryGridOne {
	 grid-area: one;
	 max-height: 300px;
}
 .destinationGrid .masonryGridContainer .masonaryGridTwo {
	 max-height: 300px;
	 grid-area: two;
}
 .destinationGrid .masonryGridContainer .masonaryGridThree {
	 grid-area: three;
	 max-height: 615px;
}
 .destinationGrid .masonryGridContainer .masonaryGridFour {
	 grid-area: four;
	 max-height: 300px;
}
 .destinationGrid .masonryGridContainer .masonaryGridFive {
	 grid-area: five;
	 max-height: 300px;
}
 .destinationGrid .masonryGridContainer .masonaryGridSix {
	 grid-area: six;
	 max-height: 300px;
}