@import url('https://fonts.googleapis.com/css2?family=Anton&family=Cinzel:wght@400..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style-type: none
}

/* :root {
  --main-color: #1898fd;
  --bg-color: #c23537;
} */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.head h1,
.head h2,
.head h3,
.head h4,
.head h5 {
  font-weight: 600;
  letter-spacing: 2px;
}

p {
  font-family: "Montserrat", sans-serif;
}

.main-para p {
  text-align: justify;
}

header.sticky-top {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1020;
  padding: 15px 0;

}

header {
  margin: 0 50px;
  border-radius: 25px;
  background-color: #fff;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  /* background-color: transparent;
    background-image: radial-gradient(at center center, #FFFFFFA6 0%, #FFFFFFA6 99.36%); */
  /* margin: 15px 50px;
    border-radius: 60px; */
}

header.scrolled {
  backdrop-filter: blur(10px);
  background-color: #ffffffbb !important;
  /* or any color you want */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  top: 0px !important;
  margin: 0 !important;
}

.top-text {
  font-size: 16px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}

.top-menu {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  /* display: inline-block; */
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
}

.icons-top {
  gap: 12px;
}

.fa-square-phone {
  font-size: 20px;
}

.icon a {
  /* display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(204 51 0 / 16%);
  border-radius: 50%;
  width: 40px;
  height: 40px; */
  color: #ffffff;
  font-size: 18px;
  /* text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6px); */
}

.icon a:hover {
  /* background-color: #cc3300; */
  color: #dbdbdb;
  /* transform: translateY(-4px) scale(1.1); */
}

header nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between
}

.logo {
  flex: 2;
  display: flex;
  align-items: center
}

.logo a {
  text-decoration: none;
  font-size: 26px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 800
}

.logo img {
  width: 330px;

}

.bartoggle,
#menubrop {
  display: none
}

.NavMenu {
  height: 65px;
  flex: 10;
  list-style: none;
  position: relative;
  display: flex;
  justify-content: end;
  align-items: center;
  margin-bottom: 0
}

.NavMenu li {
  display: inline-block
}

.NavMenu li input {
  display: none
}

.NavMenu li a {
  display: block;
  padding: 20px 13px;
  font-size: 16px;
  text-decoration: none;
  text-transform: capitalize;
  color: #575656;
  position: relative;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.dropdown-toggle::after {
  display: none;
}

.NavMenu li a:hover {
  color: #E84C0A;
  /* Change to your hover color */
}

.NavMenu li a:hover::after {
  width: calc(100% - 28px);
  /* Adjust based on padding */
}

.NavMenu li a label {
  cursor: pointer;
  appearance: none;
  display: block;
  position: relative
}

.NavMenu>li>a label::after {
  right: -15px;
  top: -4px
}

.NavMenu li ul {
  position: absolute;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  width: max-content !important;
  border-bottom: 2px solid #E84C0A;
  top: 100%;
  box-shadow: 0 3px 5px rgb(0 0 0/20%);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  visibility: hidden;
  opacity: 0;
  padding-left: 0
}

.NavMenu li ul li {
  position: relative
}

.NavMenu li ul li a {
  color: #E84C0A;
  padding: 8px 10px;
  display: block;
  border-left: 2px solid rgba(0, 75, 214, 0);
  border-bottom: 1px solid rgb(0 0 0 / .1);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px
}

.NavMenu li ul li ul {
  position: absolute;
  left: 100%;
  top: 0
}

@media(min-width:992px) {
  .NavMenu li ul li a:hover {
    border-left: 2px solid #E84C0A;
  }

  .NavMenu li:hover>ul,
  .NavMenu li ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0)
  }
}

@media(max-width:1024px) {
  header {
    padding: 6px 5%
  }

  .logo {
    flex: 6
  }

  .bartoggle {
    display: flex;
    justify-content: center;
    font-size: 30px;
    align-items: center;
    background-color: #fff;
    padding: 0 10px 6px 10px;
    cursor: pointer;
    height: 40px
  }

  .sticky-top .container {
    align-items: center
  }

  .NavMenu {
    width: 430px;
    flex: 12;
    position: fixed;
    flex-direction: column;
    background-color: #111;
    left: -50px;
    top: 40px;
    height: 90vh;
    z-index: -1;
    padding: 15px 0 50px 0;
    justify-content: start;
    overflow-y: scroll;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%)
  }

  .NavMenu li ul,
  .NavMenu li ul li ul {
    position: initial;
    left: 0;
    visibility: visible;
    opacity: 1;
    top: 0;
    display: none
  }

  .NavMenu li a {
    padding: 8px 15px;
    border-bottom: 1px solid #fff
  }

  .NavMenu li ul li ul {
    background: var(--main-color);
    position: inherit;
    margin-top: -10px;
    margin-bottom: 10px
  }

  .NavMenu li ul li ul li a {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    text-transform: initial;
    padding: 7px 15px 7px 30px
  }

  .NavMenu li a label::after {
    right: 10px
  }

  .NavMenu li input:checked+ul,
  .NavMenu li ul li input:checked+ul {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px
  }

  input:checked+.NavMenu {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    align-items: normal
  }

  .get-quote {
    display: none
  }

  .logo img {
    width: 50%
  }

  .NavMenu {
    top: 85px
  }

  .NavMenu li>ul,
  .NavMenu li ul li>ul {
    width: 100% !important
  }
}

@media(max-width:375px) {

  .NavMenu li>ul,
  .NavMenu li ul li>ul {
    width: 87% !important
  }
}

@media(max-width:320px) {

  .NavMenu li>ul,
  .NavMenu li ul li>ul {
    width: 75% !important
  }

  .NavMenu {
    top: 67px
  }
}

.NavMenu li>ul,
.NavMenu li ul li>ul {
  width: auto
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none
}

.dropdown {
  position: relative
}

.dropdown-header {
  display: flex;
  cursor: pointer;
  border-bottom: 1px solid rgb(0 0 0 / .1);
  padding: 0 !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center
}

.dropdown-header a {
  border: none !important
}

.main-link {
  text-decoration: none;
  padding: 10px 15px;
  display: inline-block;
  color: #333
}

.toggle-icon {
  padding: 10px 15px;
  cursor: pointer;
  font-size: 14px;
  color: var(--main-color)
}

.submenu {
  display: none;
  padding-left: 15px;
  background: #f9f9f9
}

.submenu li {
  display: inline
}

input[type="checkbox"]:checked+.dropdown-header+.submenu {
  display: block
}

/* slider css */
#carousel {
  margin-top: -135px;
}

#carousel .carousel-item.boat {
  background-image: url("../img/banner-1.webp");
}

#carousel .carousel-item.sea {
  background-image: url("../img/banner-2.webp");
}

/* #carousel .carousel-item.river {
  background-image: url("../img/banner-3.webp");
} */

#carousel .carousel-item {
  height: 800px;
  width: 100%;
  min-height: 350px;
  background: no-repeat center center scroll;
  background-size: cover;
}

#carousel .carousel-inner .carousel-item {
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}

#carousel .carousel-item .caption {
  background-color: rgb(0 0 0 / 90%);
  padding: 40px;
  color: white;
  animation-duration: 1s;
  animation-delay: 1s;
}

#carousel .caption h2 {
  animation-duration: 1s;
  animation-delay: 1s;
}

#carousel .caption p {
  animation-duration: 1s;
  animation-delay: 1s;
}

#carousel .caption a {
  animation-duration: 1s;
  animation-delay: 1.4s;
}

.abt-bg {
  background: #2c2c2c;
  /* background: #f3f1f1; */
  /* width: 50%;
  height: 100%;
  left: 0px;
  top: 0px; */
  border-right: 1px solid #e2e2e2;
}

.top-menu {
  background-image: url(../img/topbar-shape-2.webp), url(../img/topbar-shape-2.webp);
  background-position: left center, right center;
  background-repeat: no-repeat, no-repeat;
  background-color: #575656;
  border-radius: 0 0 40px 40px;
  position: relative;
  z-index: 1111;
}

.sec-img img {
  width: 100%;
}

.timeline-section {
  padding: 60px 0px;
  max-width: 1000px;
  margin: auto;
}

.timeline-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
}

.timeline {
  position: relative;
  margin: 0;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #e95607;
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-in-out;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-dot {
  position: absolute;
  left: 0px;
  top: -4px;
  width: 20px;
  height: 20px;
  background: #e95607;
  border-radius: 50%;
}

.timeline-content {
  padding: 15px 25px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.timeline-content h4 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #333;
}

.timeline-content p {
  margin: 0;
  color: #555;
  font-size: 16px;
  text-align: justify;
}

.passion-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #ffffff, #f9f9f9);
  /* max-width: 1200px; */
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  position: relative;
  animation: fadeInDown 1s ease forwards;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto 40px;
  animation: fadeIn 1.2s ease forwards;
}

.split-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

.left-content,
.right-content {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 1s forwards;
}

.left-content {
  animation-delay: 0.3s;
}

.right-content {
  animation-delay: 0.5s;
}

.left-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #222;
}

.left-content ul {
  list-style: none;
  padding: 0;
}

.left-content ul li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #444;
  position: relative;
  padding-left: 28px;
  font-family: "Montserrat", sans-serif;
}

.left-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #e95607;
  font-weight: bold;
}

.right-content .block {
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.right-content .block:hover {
  transform: translateY(-5px);
}

.block h4 {
  font-size: 18px;
  color: #222;
  margin-bottom: 8px;
}

.block p {
  margin: 0;
  color: #555;
  font-size: 16px;
}


.split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 576px) {
  .split-layout {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
  }
}

.section-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  padding: 0 10px;
  margin-bottom: 30px;
}

.left-content ul li {
  font-size: 15px;
  padding-left: 24px;
}

.right-content .block {
  padding: 16px 18px;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

/* infra sec */
.infra-section {
  background-color: #2E2D32;
  color: #fff;
}

.infra-section h2 {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 20px;
}

.infra-section p {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 16px;
}

.infra-list ul {
  list-style: none;
  padding-left: 0;
}

.infra-list li {
  padding-left: 24px;
  position: relative;
  color: #cccccc;
  margin-bottom: 12px;
  font-size: 15px;
}

.infra-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #e95607;
  font-weight: bold;
}

.infra-image img {
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  width: 100%;
  object-fit: cover;
}

.infra-section {
  position: relative;
  background-image: url('../img/bg-img-sec-4.webp');
  /* 🔁 Replace with your image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* padding: 80px 0; */
  color: #ffffff;
}

.infra-overlay {
  background-color: rgba(0, 0, 0, 0.8);
  /* padding: 60px 30px; */
}

.infra-box {
  /* margin-bottom: 30px; */
}



.infra-box {
  position: relative;
  background: #000;
  padding: 40px;
  color: #fff;
  overflow: hidden;
  z-index: 1;
  border-radius: 12px;
}

.infra-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, transparent, #EB6302, transparent);
  animation: slideTop 2s linear infinite;
}

.infra-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(to left, transparent, #F8B000, transparent);
  animation: slideBottom 2s linear infinite;
}

@keyframes slideTop {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

@keyframes slideBottom {
  0% {
    right: -100%;
  }

  100% {
    right: 100%;
  }
}

.tech li {

  /* margin-bottom: 12px; */
  font-size: 16px;
  position: relative;
  padding-left: 28px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

.animated-table {
  background: #575656;
  border-radius: 10px;
  overflow: hidden;
}

.animated-table thead {
  background-color: #2E2D32;
}

.animated-table tbody tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid #3e3e3e;
}

.animated-table tbody tr:hover {
  background: linear-gradient(90deg, #e95607, #e95607);
  transform: scale(1.01);
  box-shadow: 0 0 8px rgba(233, 86, 7, 0.2);
}

.animated-table td,
.animated-table th {
  padding: 16px;
  vertical-align: middle;
  white-space: nowrap;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}

td,
th {
  padding: 16px;
  vertical-align: middle;
  white-space: nowrap;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes bounce-horizontal {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Animation Classes */
.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
  opacity: 0;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-bounce-horizontal {
  animation: bounce-horizontal 2s infinite;
}

.animate-bounce {
  animation: bounce 2s infinite;
}

/* Custom Styles */
.bg-gradient-dark {
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(50, 50, 50, 0.5) 100%);
}

.hover-text-primary:hover {
  color: #ffffff !important;
  transform: translateX(5px);
}

.transition-all {
  transition: all 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.03);
}

.object-cover {
  object-fit: cover;
}

.bg-black {
  background-color: #000 !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.7);
}

.ftr-head {
  font-family: "Montserrat", sans-serif;
  color: #fff !important;
  letter-spacing: 1px;
}

footer li {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.7) !important;
}

.client-logo-marquee {
  overflow: hidden;
  background: #f9f9f9;
  padding: 20px 0;
  position: relative;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.logo-item {
  flex: 0 0 auto;
  width: 150px;
  margin: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* filter: grayscale(100%); */
  transition: filter 0.3s ease;
}

.logo-item img:hover {
  filter: none;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.bg-box {
  background-color: #575656;
  padding: 40px 40px;
}

.section-title-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.background-text {
  font-size: 100px;
  color: rgba(0, 0, 0, 0.05);
  /* Very light black, acts as background */
  font-weight: 500;
  text-transform: uppercase;
  position: absolute;
  top: -153%;
  left: 122%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  font-family: "Anton", sans-serif;
}

.head h2 {
  position: relative;
  font-size: 28px;
  color: #111;
  /* Dark small heading */
  font-weight: 700;
  text-transform: uppercase;
  z-index: 1;
}

.first-img {
  width: 95% !important;
}

.dis-large .row {
  align-items: normal !important;
}

@media (min-width: 1025px) and (max-width: 1299px) {
  .background-text {
    font-size: 60px;
    left: 86%;
    top: -131%;
  }

}

@media (min-width: 992px) and (max-width: 1299px) {
  /* .background-text {
    font-size: 86px;
    left: 103%;
  } */

  .logo img {
    width: 200px;
  }

  .dis-large .col-lg-3 {
    display: none;
  }

  .dis-large .col-lg-9 {
    width: 100%;
  }

  .timeline-section {
    padding: 30px 0px;
  }

  .timeline-item {
    margin-bottom: 25px;
  }

  .NavMenu li a {
    padding: 20px 11px;
    font-size: 14px;
    letter-spacing: 0px;
  }

  /* .about-section .sec-img img {
    height: 833px;
  } */
}

.first-img {
  height: auto !important;
}

/* product css */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
  opacity: 0;
}

/* Product Card Styles */
.product-card {
  transition: all 0.3s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.product-image-container {
  position: relative;
  overflow: hidden;
  height: auto;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
  background: linear-gradient(to bottom, rgba(0, 86, 179, 0.2), rgba(0, 86, 179, 0.4));
}

.product-content {
  position: relative;
  z-index: 1;
}

/* Stretched link for entire card clickable */
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.product-content a {
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: #000;
  text-decoration: none;
}

.product-content {
  text-align: center !important;
}

/* contact us css */
.contact-section {
  padding: 80px 0;
}

/* .glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  padding: 40px;
  color: #000;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.glass-card h5 {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.glass-card p,
.glass-card a {
  color: inherit;
  text-decoration: none;
  font-size: 0.95rem;
  margin: 0;
} */
.contact-modern-section {
  /* background-color: #f8fafc; */
  color: #222;
}

.contact-details h2 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 30px;
}

.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-block h6 {
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-block a {
  color: #000;
  text-decoration: none;
}

.contact-block a:hover {
  text-decoration: underline;
}

.icon-wrapper {
  background-color: #ffe8de;
  padding: 10px 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper i {
  font-size: 20px;
  color: #E84C0A;
}

.map-box img {
  object-fit: cover;
  height: 100%;
  min-height: 320px;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .contact-block {
    flex-direction: row;
    align-items: center;
  }
}

.map-container iframe {
  border: none;
  width: 100%;
  height: 400px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.enq-form {
  background-color: #F1F5F5;
  border-radius: 10px;
  border-top: 8px solid #E84C0A;
}

/* inquiry form css */
.right-ok {
  background-image: url(../img/right-icon.webp);
  background-repeat: no-repeat;
  background-position: 8px;
  height: auto
}

.wrong-icon {
  background-image: url(../img/wrong-icon.webp);
  background-repeat: no-repeat;
  background-position: 8px;
  height: auto
}

.modal-lg {
  width: 750px
}

.modal-dialog {
  margin: 7% auto
}

.inq-btn-home {
  position: fixed;
  top: 300px;
  left: 10px;
  width: 45px;
  height: 50px;
  z-index: 1111
}

.modal {
  z-index: 999999 !important
}

.modal-header {
  padding: 10px 15px 0 15px;
  background-color: #373435
}

.modal-title {
  font-size: 18px;
  color: #fff;
  text-align: left;
  padding-bottom: 9px
}

.modal-body {
  padding: 0 15px 10px 15px
}

.capside {
  float: left;
  margin-top: 25px
}

.close {
  position: absolute;
  right: 16px;
  top: 15px;
  font-size: 28px;
  color: #fff !important
}

.pop-img {
  margin-top: 10%;
  margin-bottom: 20px;
  width: 100%;
  height: auto
}

.Submit-box {
  background-color: #E84C0A;
  ;
  padding: 10px 15px;
  color: #fff;
  border-radius: 5px;
  border: none !important;
  font-family: "Montserrat", sans-serif;
}

button.close {
  -webkit-appearance: none;
  cursor: pointer;
  background: 0 0;
  border: 0;
  background-color: #b52414 !important;
  padding: 1px 10px 17px 10px !important;
  margin-top: -15px !important;
  position: absolute;
  opacity: 1;
  color: #fff !important;
  font-family: "Montserrat", sans-serif;
}

button.btn.moClose {
  background-color: #b52414 !important;
  color: #fff !important;
  font-family: "Montserrat", sans-serif;
}

@media only screen and (max-width:425px) {
  .footer-divider.border-top.py-3 {
    text-align: center !important
  }

  .contact-main-2.py-5 {
    padding-top: 0 !important
  }
}

@media only screen and (max-width:768px) {
  .modal-lg {
    width: 75%;
    margin: 15px auto
  }

  .dmo {
    display: none
  }

  .modal-footer {
    padding: 15px 21px;
    text-align: right;
    border-top: none;
    margin-top: -72px;
    position: relative;
    z-index: 999;
    width: 120px;
    float: right
  }

  .inq-btn-home img {
    width: 30px;
    height: auto
  }

  .moClose {
    display: none
  }

  .modal-body {
    padding: 0 15px 45px 15px
  }

  .modal-dialog {
    margin: 15% auto
  }
}

.form-group {
  margin: 15px 0 !important;
  font-family: "Montserrat", sans-serif;
}

.form-group input {
  border-left: 5px solid #E84C0A;
}

.form-group label {
  color: var(--bg-color);
  line-height: 1.75em;
  margin: 0 0 15px;
  font-size: 16px;
  line-height: 1.75em;
  letter-spacing: 0;
  text-transform: initial;
  line-height: 1.6em;
  font-weight: 400;
  margin-top: 5px
}

.form-group textarea {
  border-left: 5px solid #E84C0A
}

.form-group select {
  border-left: 5px solid #E84C0A;
}

/* about us css */
.history-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
}

.history-timeline {
  position: relative;
  max-width: 1000px;
  margin: auto;
}

.history-timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: #111;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  z-index: -1;
}

.history-block {
  padding: 20px 30px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.history-block::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -13px;
  background-color: #fff;
  border: 4px solid #E84C0A;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.history-left {
  left: 0;
}

.history-right {
  left: 50%;
}

.history-right::after {
  left: -13px;
}

.history-content {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.history-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.history-content h4 {
  margin-bottom: 10px;
  color: #E84C0A;
}

.history-content p {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .history-timeline::after {
    left: 31px;
  }

  .history-block {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .history-block::after {
    left: 18px;
  }

  .history-right {
    left: 0%;
  }

  .history-right::after {
    left: 15px;
  }
}

/* infrastucture css */
.facilities-section {
  background: linear-gradient(135deg, #e9f0f7, #ffffff);
}

.facilities-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.intro-text {
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto 20px;
  text-align: justify;
}

.facility-box {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.facility-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.facility-box h3 {
  font-weight: 600;
  color: #E84C0A;
  margin-bottom: 15px;
}

.facility-box ul {
  padding-left: 0;
  margin: 0;
}

.facility-box ul li {
  margin-bottom: 8px;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  font-weight: 500;
  list-style: disc !important;
}

.facility-box ul {
  list-style-type: disc;
  padding-left: 20px;
}

.facility-box ul li {
  list-style-type: disc;
  display: list-item;
}

/* .infra-icon {
  margin-right: 8px;
  font-size: 26px;
} */

/* breadcrumb  */
.breadcrumb-main {
  position: relative;
  background-image: url('../img/breadcrumb.webp');
  /* Your image path */
  background-size: cover;
  background-position: center;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.breadcrumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  /* z-index: 1111111111; */
}

.breadcrumb-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.breadcrumb-content h1 {
  font-size: 2.7rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.bread-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.bread-links a {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  letter-spacing: 3px;
}

.bread-links a:hover {
  color: #f0f0f0;
}

.sec-img-2 img {
  display: none;
}

.desktop-slider {
  display: block !important;
}

.bg-orange th {
  color: #fff;
  background-color: #E84C0A;
  padding-top: 12px;
  padding-bottom: 12px;
}

.progress-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.progress-content {
  text-align: center;
  width: 80%;
}

.progress-title {
  font-size: 3rem;
  color: #343a40;
  margin-bottom: 30px;
  display: inline-block;

}

.letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: letterAnimation 0.5s forwards;
}

.space {
  display: inline-block;
  width: 10px;
}

.ellipsis {
  display: inline-block;
  opacity: 0;
  animation: ellipsisAnimation 1.5s infinite;
  animation-delay: 2s;
}

/* .progress-bar-container {
    width: 100%;
    height: 10px;
    background-color: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #E84C0A, #2E2D32);
    border-radius: 5px;
    animation: progressAnimation 2s ease-in-out infinite alternate;
} */

/* Letter animation */
@keyframes letterAnimation {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ellipsis animation */
@keyframes ellipsisAnimation {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

/* Progress bar animation */
@keyframes progressAnimation {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

/* Individual letter delays */
.letter:nth-child(1) {
  animation-delay: 0.1s;
}

.letter:nth-child(2) {
  animation-delay: 0.2s;
}

.letter:nth-child(4) {
  animation-delay: 0.3s;
}

.letter:nth-child(5) {
  animation-delay: 0.4s;
}

.letter:nth-child(6) {
  animation-delay: 0.5s;
}

.letter:nth-child(7) {
  animation-delay: 0.6s;
}

.letter:nth-child(8) {
  animation-delay: 0.7s;
}

.letter:nth-child(9) {
  animation-delay: 0.8s;
}

.letter:nth-child(10) {
  animation-delay: 0.9s;
}

.letter:nth-child(11) {
  animation-delay: 1.0s;
}

/* @media (min-width: 1470px) and (max-width: 1600px) {
    .background-text {
        font-size: 70px !important;
        left: 87% !important;
    }


} */
@media screen and (max-width: 576px) {
  .breadcrumb-main {
    height: 180px;
    padding: 20px;
  }

  .breadcrumb-content h1 {
    font-size: 22px;
  }

  .bread-links a {
    font-size: 13px;
  }
}

@media screen and (max-width: 1024px) {
  .background-text {
    font-size: 72px;
    left: 88%;
  }

  .timeline::before {
    left: 0px;
  }

  .timeline {
    padding-left: 15px;
  }

  .logo.justify-content-center {
    justify-content: flex-start !important;
  }

  .logo img {
    width: 301px;
  }

  .NavMenu li a {
    color: #fff;
  }

  .sec-img-2 img {
    display: block;
    width: 100%;
    height: auto;
  }

  .sec-img-1 img {
    height: auto !important;
    width: 100%;
  }

  .infra-overlay .row {
    justify-content: center;
  }

  .footer-bottom.py-4.border-top.border-secondary.animate-fade-in .d-flex.flex-column.flex-md-row.justify-content-between.align-items-center {
    flex-direction: column !important;
  }

  .copyright p {
    text-align: center;
  }

  .ftr-a li a {
    text-align: center !important;
  }

  .animate__fadeIn,
  .animate__slideInUp,
  .animate__zoomIn,
  .animate__bounceIn,
  .animate__fadeInUp,
  .animate__fadeInDown {
    animation: none !important;
    -webkit-animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media screen and (max-width: 768px) {
  .specification .sec-img img {
    margin-top: 10px;
  }

  .rw-dir {
    flex-direction: column-reverse;
  }

  .bg-box {
    margin-top: 70px;
    margin-bottom: 30px;
  }

  .background-text {
    font-size: 85px;
    left: 123%;
  }

  .abt-images {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .sec-img-1 img,
  .sec-img-2 img {
    width: 100%;
  }

  .breadcrumb-content h1 {
    font-size: 2rem;
  }

  .enq-form .sec-img {
    margin-top: 20px;
  }
}

@media screen and (max-width: 425px) {
  .ftr-a li {
    text-align: center !important;
  }

  .top-menu {
    display: none;
  }

  .breadcrumb-content h1 {
    font-size: 1.5rem;
  }

  .facilities-title {
    font-size: 1.5rem;
  }

  .background-text {
    font-size: 49px;
    left: 70%;
  }

  .infra-box {
    width: 400px;
    padding: 25px;
  }

  .infra-section p {
    text-align: justify;
  }

  .logo img {
    width: 200px;
  }

  header {
    margin: 0 10px;
  }

  .row.g-5 {
    --bs-gutter-x: 0;
  }

  .sec-img-1 img,
  .sec-img-2 img {
    width: 100% !important;
    height: auto !important;
  }

  .sec-img img {
    width: 100%;
  }

  .copyright.mb-3.mb-md-0 p {
    text-align: center;
  }

  p.text-primary.mb-4.position-relative.pb-3.ftr-head.fs-5 {
    margin-bottom: 0px !important;
  }

  #carousel .carousel-item.boat {
    background-image: url("../img/mob-banner.png");
  }

  #carousel .carousel-item.sea {
    background-image: url("../img/mob-banner-2.png");
  }

  #carousel .carousel-item {
    height: auto;
  }

  #carousel {
    margin-top: 0;
  }

  .caption {
    display: none;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }

  .NavMenu {
    width: 374px;
    flex: 12;
    position: fixed;
    flex-direction: column;
    background-color: #111;
    left: -10px;
  }

  .NavMenu li>ul,
  .NavMenu li ul li>ul {
    width: 100% !important;
  }

  .progress-title {
    font-size: 26px;
  }
}

p.text-primary.mb-4.position-relative.pb-3.ftr-head.fs-5 {
  font-weight: 600;
}

@media screen and (max-width: 425px) {
  .background-text {
    font-size: 46px;
    left: 70%;
  }

  .sec-img {
    text-align: center;
  }

  .desktop-slider {
    display: none !important;
  }

  .history-block::after {
    left: 18px;
  }

  .history-title {
    font-size: 2rem;
  }

  p.ftr-head.mb-0.fs-3 {
    font-size: 18px !important;
  }
}

@media screen and (max-width: 375px) {
  .background-text {
    font-size: 45px;
    left: 65%;
  }

}

@media screen and (max-width: 320px) {
  .col-lg-9.ps-4 {
    padding-left: 0 !important;
  }

  .background-text {
    font-size: 36px;
    left: 50%;
  }

  /* div#carousel {
    display: none;
  } */

  .NavMenu {
    width: 100%;
    left: -10px;
  }

  .head h1,
  .head h2,
  .head h3,
  .head h4,
  .head h5 {
    font-weight: 500;
    letter-spacing: 0px;
  }

  .section-title-wrapper {
    margin-bottom: 5px;
  }

  .background-text {
    font-size: 37px;
    left: 71%;
  }

  .bg-box {
    background-color: #575656;
    padding: 40px 20px;
  }
}

@media (min-width: 1025px) and (max-width: 1035px) {
  header {
    margin: 0 33px !important;
  }
}

@media (min-width: 1300px) and (max-width: 1399px) {
  header {
    margin: 0 30px !important;

  }

  .logo img {
    width: 270px;
  }
.NavMenu li a {
    padding: 20px 13px;
    font-size: 16px;
    letter-spacing: 0px;
    font-weight: 600;
}
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .responsive-image-bg {
    background-image: url('../img/sml-desk.png') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 886px;
  }

  .abt-images .sec-img img {
    display: none;
  }

}

@media (min-width: 1201px) and (max-width: 1300px) {
  .responsive-image-bg {
    background-image: url('../img/sml-desk.png') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 840px;
  }

  .abt-images .sec-img img {
    display: none;
  }
}

body {
  overflow-x: hidden !important;
}
















/* font-family: "Montserrat", sans-serif;; */