/* Variables Import */
@import "./variables.css";

/* Header */
/* .navbar {
  position: fixed;
  top: 0;
  z-index: 111;
  padding: 15px 0;
  width: 100%;
  transition: 0.5s all ease;
} */
.navbar .collapse .navbar-nav {
  flex: 2;
  justify-content: center;
  background: var(--background);
  max-width: 40%;
  margin: auto;
  padding: 3px;
  border-radius: 25px;
}

.nav-link {
  font-size: 12px;
  font-weight: 500;
  padding: 10px 14px 8px 14px !important;
  font-family: var(--sans-serif);
  letter-spacing: 0.4px;
  color: var(--dark) !important;
  text-transform: uppercase;
  font-weight: 600;
}

.navbar-nav .nav-item {
  position: relative;
  margin: 0px 5px;
}

.navbar .navbar-brand .logo {
  width: 64px;
}

.social-links i {
  color: var(--dark-alt);
  height: 34px;
  width: 34px;
  border: 1.5px solid var(--dark-alt);
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  margin-left: 6px;
}

/* banner */
.banner {
  padding: 0px 15px;
}

.banner .carousel-caption {
  left: 5%;
  right: unset;
  bottom: 3.25rem;
  z-index: 99;
}

.banner .carousel-item {
  border-radius: 5px;
}

.banner .carousel-item {
  position: relative;
  width: 100%;
  height: auto;
  clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 0% 350%);
  overflow: hidden;
}

.banner .carousel-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: block;
  z-index: 9;
  border-radius: 5px;
}

.banner .carousel-item img {
  border-radius: 8px;
  object-fit: cover;
  height: 87vh;
}

.object-position-top {
  object-position: top;
}

.object-position-btm {
  object-position: bottom;
}

.arrow-icon {
  height: 50px;
  width: 50px;
  background: var(--icon);
  position: absolute;
  right: 30px;
  bottom: 20px;
  z-index: 999;
  text-align: center;
  border-radius: 50%;
  transition: 0.5s ease-in-out;
  -webkit-animation: MoveUpDown 1s linear infinite;
}

.arrow-icon:hover {
  background: var(--blue);
}

@-webkit-keyframes MoveUpDown {

  0%,
  100% {
    bottom: 10px;
  }

  50% {
    bottom: 20px;
  }
}

.arrow-icon img {
  width: 25px;
  text-align: center;
  margin: auto;
  margin-top: -25px;
}

/* who-are-we */
.who-are-we .content img {
  border-radius: 5px;
}

.who-are-we .content-details span {
  color: var(--primary);
  font-weight: 600;
}

.border-row {
  border-top: 1px solid #d8d1c8;
}

.who-are-we .content-details {
  padding-left: 30px;
  padding-top: 50px;
}

.who-are-we .content-details p {
  width: 85%;
}

.who-are-we .content-details img {
  border-radius: 7px;
  height: 320px;
  object-fit: cover;
}

.who-are-we .content-count {
  position: relative;
  border-right: 1px solid #d8d1c8;
  height: 100%;
  margin-right: 30px;
  padding-top: 50px;
}

.who-are-we h1 {
  position: absolute;
  right: 25%;
  top: 72px;
  font-size: 10rem;
  letter-spacing: -3px;
}

.who-are-we h1 span {
  font-size: 90px;
}

.who-are-we .text-rotate {
  transform: rotate(-89.6deg);
  position: absolute;
  right: 6%;
  top: 89px;
  text-align: right;
  line-height: 16px;
}

.who-are-we span {
  width: 30px;
  height: 30px;
}

.client-img {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  margin-left: 95px;
}

.client-img img {
  width: 40px;
  border-radius: 50%;
  height: 40px;
  display: inline-block;
}

.content-heading {
  height: 230px;
}

.c-img1 {
  margin-right: -15px;
  width: 42px !important;
}

.c-img2 {
  margin-right: -15px;
  border-left: 3px solid var(--white);
  width: 42px !important;
}

.c-img3 {
  border-left: 3px solid var(--white);
  width: 42px;
}

.client-img h6 {
  text-transform: uppercase;
  font-size: 11px;
}

/* legacy */
.legacy img {
  border-radius: 7px;
  height: 310px;
  object-fit: cover;
}

.legacy h3 {
  font-size: 30px;
  text-transform: none;
}

.legacy .content-details span {
  color: var(--primary);
  font-weight: 600;
}

/* timeline */
.timeline-div {
  transition: 0.5s ease-in-out;
  overflow: hidden;
  height: 362px;
}

.timeline-div h2 {
  padding-left: 20px;
  margin-top: 25px;
}

.timeline-div h6 {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.2px;
  margin-top: 50px;
  line-height: 20px;
  transition: 0.5s ease-in-out;
  padding-left: 20px;
  font-weight: 600;
}

.timeline-div p {
  width: 78%;
  font-size: 13px;
  padding-left: 20px;
  transition: 0.5s ease-in-out;
  line-height: 18px;
}

.timeline-div img {
  /* display: none; */
  opacity: 0;
  transition: 0.5s ease-in-out;
  filter: grayscale(100%);
}

.timeline-div:hover img {
  /* display: block; */
  opacity: 1;
  border-radius: 7px;
}

.timeline-div:hover h6 {
  margin-top: 20px;
}

.timeline-div:hover p {
  display: none;
}

.timeline-div:hover {
  border-top: 1px solid #d8d1c8;
}

/* services */
.services {
  background: var(--secondary);
  color: var(--white);
  position: relative;
}

.services p {
  color: var(--white);
  font-weight: 200;
  font-size: 15px;
  letter-spacing: 0.2px;
  opacity: 0.9;
}

.services h4 {
  color: var(--white);
}

.services-row {
  border-bottom: 1px solid #5e8e9d;
}

.services-content h3 {
  padding-top: 35px;
}

.services-text {
  /* border-left: 2px solid #fff; */
  border-left: 1px solid #5e8e9d;
  padding-left: 25px;
  padding-bottom: 35px;
}

.services img {
  position: absolute;
  width: 480px;
  top: 22%;
  left: 0;
}

/* new services section */
.services-box {
  padding: 60px;
  background: #efefef;
  height: 345px;
}

.services-box h6 {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1px;
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 22px;
}

.services-box p {
  font-size: 13px;
  line-height: 22px;
}

.new-services-img img {
  height: 345px;
  object-fit: cover;
}

.new-services-big img {
  height: 690px;
  object-fit: cover;
}

.services-blue-box {
  background: var(--blue);
}

.services-blue-box h6 {
  color: var(--white);
}

.services-blue-box ul li {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.2px;
  font-weight: 300;
  margin-bottom: 12px;
  list-style: disc;
  margin-left: 20px;
}

.services-blue-box button {
  background: var(--primary);
  padding: 12px 30px;
  border: 0;
  border-radius: 30px;
  color: var(--white);
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.yacht {
  padding-top: 70px;
}

/* testimonials */
.testimonials .carousel-item {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonials .carousel-item.active {
  opacity: 1;
  transform: scale(1);
}

.testimonials .carousel {
  padding: 50px 100px;
}

.testimonial-image img {
  width: 100%;
  height: 320px !important;
  object-fit: cover;
  border-radius: 7px;
}

.testimonial-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonials .divider {
  width: 170px;
  height: 1px;
  background-color: #ccc;
  margin: 10px 0;
  position: absolute;
  right: 130px;
}

.testimonials .carousel-control-prev-icon,
.testimonials .carousel-control-next-icon {
  background-size: 20px;
  background-color: #033b62;
  width: 3.5rem;
  height: 3.5rem;
}

.testimonials .carousel-control-prev-icon {
  border-bottom-left-radius: 10px;
}

.testimonials .carousel-control-next-icon {
  border-top-right-radius: 10px;
}

.testimonials .carousel-control-prev {
  opacity: 0.8 !important;
}

.testimonials .carousel-control-prev,
.testimonials .carousel-control-next {
  width: auto;
  opacity: 1;
}

.testimonials .carousel-control-prev {
  left: 8.5% !important;
  top: 62% !important;
}

.testimonials .carousel-control-next {
  right: 82% !important;
  top: 62% !important;
}

.testimonial-content .double-quote {
  width: 50px;
  position: absolute;
  right: 25px;
  top: 30px;
}

.testimonial-content h5 {
  font-size: 13px;
}

.testimonial-content p {
  font-weight: 400;
  font-size: 13px;
  margin-top: 40px;
}

/* contact us */
.contactus {
  background: #efefef;
}

.contactus p {
  font-size: 18px;
  font-weight: 600;
}

.contact-btn {
  background: #033b62;
  color: var(--white);
  font-weight: 400;
  font-size: 11px;
  padding: 12px 44px;
  text-transform: uppercase;
  border: 1px solid #033b62;
  transition: 0.5s ease-in-out;
}

.contact-btn i {
  transform: rotate(45deg);
  margin-left: 10px;
}

.contactus .contact-btn-border {
  border: 1px solid #033b62;
  color: #033b62;
  font-weight: 600;
  background: unset;
}

/* footer */
footer {
  background: var(--blue);
  padding: 50px 60px 20px;
}

.footer-logo img {
  background: var(--white);
  border-radius: 50%;
  padding: 6px;
  width: 78px;
}

footer .social-icon i {
  display: block;
  margin-bottom: 20px;
  color: var(--white);
}

footer .divider {
  width: 1px;
  height: 50px;
  background-color: var(--primary);
  text-align: center;
  margin: 45px auto;
}

footer p,
footer h6,
footer li {
  color: var(--white);
}

footer li {
  color: var(--white);
  margin-right: 30px;
  display: inline-block;
}

.footer-row {
  margin-left: 70px;
}

.footer-nav {
  padding: 30px 0px 70px;
}

footer h6 {
  font-weight: 300;
  font-size: 10px;
  color: #d4d5d9;
  text-transform: uppercase;
  font-family: var(--sans-serif);
}

footer p {
  font-size: 16px;
  margin-top: 8px;
}

footer .footer-text {
  margin-bottom: 25px;
}

footer .copyright-text {
  font-size: 12px;
  color: #d4d5d9;
  font-weight: 300;
}

.footer-img {
  width: 320px;
  position: absolute;
  right: 20px;
  bottom: 75px;
}

.fade-top-left-down {
  transform: translate(-300px, -300px);
  opacity: 0;
  transition: transform 5s ease-out, opacity 5s ease-out;
}

.fade-top-left-down.aos-animate {
  transform: translate(0, 0);
  opacity: 1;
}

/* Added by Sanket on 11-09-2025 for About Us Page - Starts */
.aboutBanner .carousel-item img {
  height: 62vh;
}

.aboutWho .content-count {
  border-left: 1px solid #d8d1c8;
  border-right: unset;
  margin-right: 0;
}

.aboutWho .content-details p {
  width: 93%;
}

.aboutWho h2 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0;
}

.trustedEmp {
  background: var(--primary);
}

.trustedEmp h2 {
  color: var(--white);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 52px;
}

.aboutWho .content-heading::before {
  content: "";
  position: absolute;
  background-color: var(--black);
  left: -1px;
  top: 10px;
  width: 1px;
  height: 200px;
}

/* services code added by ankita 11-09-2025 */

/* services */
.our-services .heading {
  margin-bottom: 30px;
}

.our-services .content span {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.our-services .ourservices-img {
  position: relative;
}

.our-services .ourservices-img img {
  width: 590px;
  position: absolute;
  left: -32px;
}

.common_border .border-row {
  padding-top: 70px;
}

.panel {
  /* height: 90vh; */
  /* position: sticky; */
  top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px;
  /* border-radius: 105px 105px 0 0; */
  box-shadow: 0 -5px 10px rgba(202, 202, 202, 0.15);
  z-index: 1;
  /* border-top: 1px solid #ddd; */
}


.red-panel {
  background: var(--red);
}

.gray-panel {
  background: var(--gray);
  /* height: 85vh; */
}

.gray-panel p {
  color: var(--black);

}

.blue-panel {
  background: var(--blue);
  /* height: 85vh; */
}



.allservices .red-panel h2 span {
  -webkit-text-stroke: 1px white;
  -webkit-text-fill-color: var(--red);
  font-size: 32px;
}

.allservices .gray-panel h2 span {
  -webkit-text-stroke: 1px var(--black);
  -webkit-text-fill-color: var(--gray);
  font-size: 32px;
}

.allservices .gray-panel h2 {
  color: var(--black);
}

.allservices .gray-panel p {
  color: var(--black);
  font-weight: 300;
}

.allservices h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 30px;
  color: var(--white);
}

.allservices p {
  color: var(--white);
  font-weight: 200;
  letter-spacing: 0.3px;
  /* padding: 70px 50px 00px 50px; */
}

.allservices-img {
  padding-right: 20px;
  margin: 15px 0;
}

.allservices img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;

}

.services9 {
  height: 80vh;
  padding-bottom: 50px;
}

/* Contact Us Page - Starts */
.contactHero h3 {
  color: #1c2437;
  font-weight: 700;
  letter-spacing: 0%;
  text-transform: unset;
}

.contactHero .contactForm .formLabel {
  color: var(--text);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2px;
}

.contactHero .contactForm .formPlaceholder {
  font-weight: 400;
  font-size: 14px;
  color: #b2becc !important;
  line-height: 22px;
}

.contactHero .form-floating>label {
  left: 5px;
}

.contactHero .form-floating label {
  padding: 0.75rem 0.75rem !important;
}

.contactHero .form-floating input {
  min-height: calc(2.5rem + calc(var(--bs-border-width) * 2)) !important;
  height: calc(3rem + calc(var(--bs-border-width) * 2)) !important;
}

.contactHero .form-floating>.form-control,
.form-floating>.form-control-plaintext {
  padding: 1rem 1rem 0 1rem;
  box-shadow: none;
  outline: none;
  color: var(--text);
  border-color: #e0e0e0 !important;
  -webkit-appearance: none;
}

.contactHero textarea {
  padding: 1.5rem 1rem 0 1rem !important;
  min-height: 100px !important;
}

.contactHero select {
  padding: 1rem !important;
}

.contactHero .selectForm .form-control {
  color: #b2becc !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.contactHero .contact-btn {
  background: #033b62;
  color: var(--white);
  font-weight: 400;
  font-size: 11px;
  padding: 12px 44px;
  text-transform: uppercase;
  border: 1px solid #033b62;
}

.contactHero .contact-btn i {
  transform: rotate(45deg);
  margin-left: 10px;
}

.contactHero h6 {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contactHero p,
.contactHero p a {
  color: #546274;
}

.contactHero p,
.contactHero p a,
.contactHero .gDirection {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0;
  opacity: 0.8;
}

.contactHero .gDirection {
  color: #1e85ff;
}

.contactHero .socialLink {
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contactHero .contactDetails {
  border-left: 1px solid #d8d1c8;
  padding-bottom: 6rem;
}

.contactHero .contactDetails:before {
  content: "";
  position: absolute;
  background-color: var(--black);
  left: 0;
  top: 0;
  width: 1px;
  height: 480px;
}

.mapSec .mapWrap iframe {
  border-radius: 8px;
  height: 500px;
  width: 100%;
}

/* Contact Us Page - Ends */
/* Testimonials Page - Starts */
.testimonialHero h2 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0;
}

.testimonialHero .testimoinalImg {
  position: relative;
  height: 360px;
  transition: 0.55s ease-in-out;
}

.testimonialHero .testimoinalImg img {
  height: 350px;
  transition: 0.55s ease-in-out;
}

.testimonialHero .testimoinalImg:hover::before {
  content: "";
  background-color: #033b62;
  position: absolute;
  left: -10px;
  bottom: -10px;
  width: 100%;
  height: 350px;
  z-index: -1;
  transition: 0.55s ease-in-out;
}

.testimonialHero .owl-carousel .owl-nav button {
  border: 1px solid #707070;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonialHero .owl-carousel .owl-nav button span {
  font-size: 25px;
  color: #707070;
}

.testimonialHero .owl-carousel .owl-nav {
  float: right;
  margin-right: 20px;
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

/* Testimonials Page - Ends */
/* yacht page */
.yacht-services .nav-item {
  display: inline-block;
}

.yacht-services .nav-pills .nav-link {
  color: #9d9d9d !important;
  font-size: 15px;
  letter-spacing: 0.3px;
  font-weight: 600;
}

.yacht-services .nav-pills .nav-link.active,
.yacht-services .nav-pills .show>.nav-link {
  background: unset !important;
  color: var(--heading-color) !important;
  font-weight: 700;
}

.yacht-services .nav-pills .nav-link.active::before {
  content: "";
  height: 12px;
  width: 12px;
  display: inline-block;
  background: var(--primary);
  border-radius: 50%;
  margin-right: 10px;
}

.yacht-services ul {
  justify-content: space-between;
}

.yacht-services .aboutservices-img img {
  transform: scaleX(-1);
  width: 730px;
  position: absolute;
  right: -180px;
}

.yacht-row {
  padding-top: 40px;
  padding-bottom: 60px;
}

.aboutservices h3 {
  font-size: 34px;
  text-transform: none;
}

.aboutservices p {
  width: 90%;
}

.red-row {
  background: var(--primary);
  padding: 50px 0px;
}

.red-row p {
  color: var(--white);
  font-weight: 300;
}

.port-row {
  padding-top: 70px;
}

.yachtServices {
  padding: 20px;
  border-bottom: 1px solid var(--black);
  margin-bottom: 15px;
  transition: 0.5s ease-in-out;
  height: 160px;
}

.yachtServices h4 {
  color: var(--black);
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 12px;
}

.yachtServices p {
  color: var(--black);
}

.yachtServices:hover {
  background: #f3f7f9;
  border-bottom: 1px solid var(--primary);
  border-radius: 10px;
}

.yachtService-img {
  width: 450px;
  right: -80px;
  position: absolute;
}

.yacht-services .new-services-img img {
  margin-bottom: 12px;
}

.yacht-services .new-services-big img {
  height: 700px;
}

.allservices .blue-panel h2 span {
  -webkit-text-stroke: 1px var(--white);
  -webkit-text-fill-color: var(--blue);
  font-size: 32px;
}

.testimoinalCar .owl-carousel .owl-item {
  padding-left: 15px !important;
}

/* Added by Sanket on 11-09-2025 for About Us Page - Ends */
/* mobile responsive */
@media (min-width: 1024px) and (max-width: 1180px) {
  .services-box {
    padding: 30px;
  }

  .who-are-we h1 {
    top: 75px;
    font-size: 11rem;
  }

  .services img {
    position: absolute;
    width: 380px;
  }

  .testimonials .carousel {
    padding: 50px 85px;
  }

  .panel {
    height: unset;
    /* border-radius: 50px 50px 0 0; */
    padding-top: 40px;
  }

  .yacht-services .aboutservices-img img {
    width: 100%;
    position: static;
  }

  .red-row {
    padding: 50px 20px !important;
  }
}

@media (min-width: 992px) and (max-width: 1023px) {

  /* Added by Sanket on 11-09-2025 for About Us Page - Starts */
  .aboutBanner .carousel-item img {
    height: 32vh;
  }

  .aboutWho .client-img {
    margin-left: 58px;
  }

  /* Added by Sanket on 11-09-2025 for About Us Page - Ends */
}

@media (min-width: 768px) and (max-width: 991px) {
  .banner .carousel-item img {
    border-radius: 8px;
    object-fit: cover;
    height: 45vh;
  }

  .arrow-icon {
    right: 0;
  }

  .banner .carousel-caption {
    left: 3%;
  }

  .banner .carousel-caption h2 {
    font-size: 32px;
    font-weight: 600;
  }

  .who-are-we h1 {
    top: 67px;
    font-size: 10rem !important;
  }

  .client-img {
    margin-left: 295px;
  }

  .new-services-big img {
    height: 500px;
  }

  .testimonials .carousel-control-prev {
    left: 2.5% !important;
  }

  .testimonials .carousel {
    padding: 50px 15px;
  }

  footer {
    padding: 50px 20px 20px;
  }

  .footer-row {
    margin-left: 0px;
  }

  /* Added by Sanket on 11-09-2025 for About Us Page - Starts */
  .aboutBanner .carousel-item img {
    height: 30vh;
  }

  .aboutWho .content-count {
    border-left: none;
  }

  .aboutWho .content-heading::before {
    all: unset;
  }

  .aboutWho .content-count {
    float: left;
  }

  .aboutWho .client-img {
    margin-right: 52px;
  }

  .trustedEmp img {
    width: 60%;
    margin: auto;
    display: flex;
  }

  .trustedEmp h2 {
    font-size: 31px;
    line-height: 45px;
  }

  /* Contact Us Page - Starts */
  .contactHero {
    padding-top: 5rem;
  }

  .contactHero .contactDetails {
    border-top: 1px solid #d8d1c8;
    border-left: unset;
    padding-bottom: 0;
    margin-top: 3rem;
  }

  .contactHero .contactDetails::before {
    all: unset;
  }

  .contactHero .addBoxWrap .addBox {
    width: fit-content;
  }

  .mapSec .mapWrap iframe {
    height: 400px;
  }

  /* Contact Us Page - Ends */
  /* Testimonials Page - Starts */
  .testimonialHero {
    padding-top: 5rem;
  }

  /* Testimonials Page - Ends */
  /* Added by Sanket on 11-09-2025 for About Us Page - Ends */
  .panel {
    height: unset;
  }
}

@media (max-width: 991px) {
  .who-are-we .content-count {
    border-right: unset;
    margin-right: 0px;
  }

  .who-are-we .content-details {
    padding-left: 15px;
  }

  .who-are-we .content-details p {
    width: 100%;
  }

  .timeline-div h2 {
    padding-left: 0px;
    font-size: 40px;
  }

  .timeline-div h6 {
    padding-left: 0px;
    margin-top: 5px !important;
    font-size: 15px;
    margin-bottom: 5px;
  }

  .timeline-div h6 br {
    display: none;
  }

  .timeline-div p {
    padding-left: 0px;
    margin-bottom: 20px;
  }

  .services img {
    width: 180px;
    bottom: 0;
    top: unset;
  }

  header {
    background: #f7f7f7;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
    box-shadow: 0px 2px 4px #e5e5e5;
  }

  .banner {
    padding-top: 105px !important;
  }

  header .navbar-toggler {
    font-size: 28px;
    border: 0;
  }

  header .navbar-toggler:focus {
    border: 0;
    box-shadow: none;
  }

  header .navbar-nav {
    background: unset !important;
    padding: 0 !important;
    margin: unset !important;
  }

  header .nav-link {
    padding: 7px 0px !important;
  }

  header .social-links {
    margin: 10px 0px;
  }

  .our-services {
    padding-top: 70px !important;
  }

  .our-services .ourservices-img img {
    position: static;
    width: 100%;
  }

  .allservices {
    padding-top: 0px !important;
  }

  .allservices .red-panel h2 span {
    font-size: 28px;
  }

  .allservices h2 {
    font-size: 26px;
    margin-top: 20px;
  }

  .panel {
    padding: 35px 10px 60px;
    /* border-radius: 40px 40px 0 0; */
  }

  /* .allservices img {
    width: 300px;
  } */

  .allservices p {
    padding: 0px 0px !important;
  }

  /* .allservices-img img {
    display: none;
  } */

  .yacht-services ul {
    justify-content: start;
  }

  .yacht-services {
    padding-top: 70px !important;
  }

  .yacht-services .aboutservices-img img {
    transform: scaleX(-1);
    width: 100%;
    position: static;
  }

  .red-row {
    padding: 50px 20px !important;
  }

  .yachtServices {
    height: unset;
  }
}

@media (max-width: 767px) {
  .banner {
    padding: 0px 7px;
  }

  .who-are-we h1 {
    right: unset;
    font-size: 10rem;
    top: 140px;
  }

  .client-img {
    margin-left: 0px !important;
    justify-content: left;
  }

  .who-are-we .text-rotate {
    top: 166px;
    left: 60%;
    right: unset;
  }

  .timeline-div p {
    opacity: 1;
  }

  .timeline-div img {
    opacity: 1;
    border-radius: 10px;
  }

  .services {
    padding-bottom: 130px;
  }

  .services-text {
    padding-left: 15px;
    padding-bottom: 20px;
  }

  .services-content {
    margin-top: 20px;
  }

  .services-content h3 {
    padding-top: 25px;
    font-size: 18px;
  }

  .order_1 {
    order: 2;
  }

  .order_2 {
    order: 1;
  }

  .new-services-big img {
    height: 400px;
  }

  .new-services-img img {
    height: 400px;
  }

  .testimonial-content {
    padding: 20px 0;
  }

  .testimonials .carousel {
    padding: 20px 0px;
  }

  .testimonials .carousel-control-next {
    right: -60px !important;
    top: unset;
    bottom: -40%;
    margin: auto;
    text-align: center;
    position: absolute;
    left: 0;
  }

  .testimonials .carousel-control-prev {
    right: 0;
    top: unset;
    bottom: -40%;
    margin: auto;
    text-align: center;
    position: absolute;
    left: -60px !important;
  }

  .testimonial-content p {
    margin-top: 25px;
    text-align: center;
  }

  .testimonial-content h5 {
    text-align: center;
  }

  .testimonials .divider {
    display: none;
  }

  .testimonial-content .double-quote {
    display: none;
  }

  .footer-row {
    margin-left: 0px;
  }

  footer {
    padding: 50px 0px 20px;
  }

  .footer-nav {
    padding: 30px 0px 30px !important;
  }

  .footer-logo {
    text-align: left !important;
  }

  footer .divider {
    display: none;
  }

  .footer-row div {
    padding: 0px 0px;
  }

  .social-icon {
    padding-left: 30px;
    display: inline-flex;
    justify-content: end;
    float: right;
    align-items: center;
    margin-top: 30px;
  }

  footer .social-icon i {
    margin-right: 10px;
  }

  /* Added by Sanket on 11-09-2025 for About Us Page - Starts */
  .aboutWho .content-count {
    border: unset;
  }

  .aboutWho h1 {
    top: 82px;
  }

  .aboutWho .text-rotate {
    top: 106px;
  }

  .aboutWho .content-heading {
    height: 170px;
  }

  .trustedEmp h2 {
    line-height: 36px;
    font-size: 26px;
  }

  .aboutWho .content-heading::before {
    all: unset;
  }

  /* Contact Us Page - Starts */
  .contactHero {
    padding-top: 5rem;
  }

  .contactHero .contactDetails {
    border-top: 1px solid #d8d1c8;
    border-left: unset;
    padding-bottom: 0;
    margin-top: 3rem;
  }

  .contactHero .contactDetails::before {
    all: unset;
  }

  .mapSec .mapWrap iframe {
    height: 400px;
  }

  /* Contact Us Page - Ends */
  /* Testimonials Page - Starts */
  .testimonialHero {
    padding-top: 5rem;
  }

  /* Testimonials Page - Ends */
  /* Added by Sanket on 11-09-2025 for About Us Page - Ends */
  .panel {
    height: unset;
  }

  .yachtService-img {
    display: none;
  }

  .timeline-div:hover p {
    display: block !important;
  }

  .timeline-div {
    height: unset !important;
  }

  .testimonialHero .testimoinalImg:hover::before {
    display: none;
  }

  .testimonialHero h2 {
    font-size: 27px;
  }

  .yacht-services .aboutservices h3 {
    font-size: 27px;
  }

  .testimoinalCar .owl-carousel .owl-item {
    padding-left: 0px !important;
  }

  .yacht-services .new-services-big img {
    margin-bottom: 12px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .arrow-icon {
    right: 0;
  }
}

@media (max-width: 575px) {
  .banner .carousel-item img {
    height: 30vh;
  }

  .arrow-icon img {
    width: 13px;
  }

  .arrow-icon {
    height: 30px;
    width: 30px;
    right: 0;
  }

  .who-are-we {
    padding-top: 40px;
  }

  .who-are-we .content-details img {
    height: 230px;
  }

  .aboutWho h2 {
    font-size: 26px;
  }
}

/* testimonials code added by ankita 08-10-2025 */
.testimonial-modal.modal.show .modal-dialog {
  max-width: 600px;
}

.testimonial-modal .modal-header {
  padding: 15px !important;
}

.testimonial-modal .modal-header h5 {
  font-size: 16px !important;
  color: var(--secondary);
}

.testimonial-modal .modal-header button {
  font-size: 12px !important;
}

.testimonial-modal .modal-header button:focus {
  box-shadow: none;
}

.testimonials_box {
  border: 1px solid #f2f2f2;
  padding: 25px;
  border-radius: 10px;
  height: 250px;
}

.testimonials_box h6 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  width: 85%;
  height: 30px;
}

.testimonials_box p {
  padding: 10px 0px;
  font-weight: 400;
  font-size: 13px;
}

.testimonials_box a {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.4px;
  padding-left: 0px;
  text-decoration: underline;
}

.testimonials_box a:hover {
  background: none;
  color: var(--secondary);
}

.testimonials_box a:focus {
  background: none !important;
  color: var(--secondary);
}

.testimonials_box a i {
  transform: rotate(45deg);
}

.testimonials_box .double-quote {
  width: 30px !important;
  position: absolute;
  right: 25px;
  top: 25px;
}

/* thank you code  */
.thankyou {
  padding: 120px 0;
}

.thankyou img {
  width: 90px;
}

.thankyou h2 {
  color: #033b62;
  padding-top: 30px;
  font-weight: 700;
  text-transform: uppercase;
}