
/* safa css start */
/* Ensure menu is visible on top */

/* slide section start */
.menu-bar {
  position: fixed; /* Sticks to the top */
  top: 0;
  left: 0;
  width: 100%;
  height: 40px; /* Adjust as needed */
  background: rgba(251, 249, 249, 0.9); /* Dark background for visibility */
  z-index: 1000; /* Ensures it's always on top */
}

/* Static Image Positioned Below the Menu */

.hero_section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
  margin-top: 136px; 
}

.hero-image 
{
  width: 100%;
  height: 100%;
}

.hero-image img 
{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Default (for larger screens) */
.dynamic-slider {
  width: 400px;
  height: 400px;
  position: absolute;
  top: 40%;
  right: 5%;
  transform: translateY(-50%);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 5;
  overflow: hidden;
}


/* .dynamic-slider {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 40%;
  right: 5%;
  transform: translateY(-50%);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 5;
  overflow: hidden;
} */


.slider-content1 {
  position: absolute;
  top: 50%; /* Center vertically */
  left: 5%; /* Align to the left side */
  transform: translateY(-50%); /* Vertically center the content */
  color: #fff; /* White text for visibility */
  text-align: left; /* Align text to the left */
  z-index: 10; /* Ensure it's on top of the image */
}

.slider-content1 h2 {
  color: #ffffff;
  font-weight: 900;
  font-size: 30px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 2px;
}

.slider-content1 h4 {
  color:rgb(205, 211, 227) !important;
  font-size: 22px;
  font-family: "Oswald";
  color: rgba(51, 51, 51, 0.349);
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.2;
}

.slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* .slider-img {
  width: 100%;
  height: 100%;
  object-fit: contain; 
} */

.slider-content1 .btn:hover {
  background-color:rgb(7, 21, 36); /* Darker blue on hover */
}


/* Mobile view adjustments */
@media (max-width: 768px) {
  .hero_section {
    height: auto;
    padding-top: 17%;
  }

  .dynamic-slider {
    position: absolute;
    top: 73%;
    left: 60%;
    transform: translateY(-50%);
    width: 120px;
    height: auto;
    aspect-ratio: 3 / 4;
    display: flex;
    overflow: hidden;
    z-index: 6;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  }

  /* .slider-wrapper {
    width: 300%;
    display: flex;
    animation: slideAnimation 9s infinite;
  } */

  .slider-img {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    object-fit: contain;
  }

  .slider-content1 {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 320px;
    padding: 10px;
    text-align: left;
    z-index: 10;
    box-sizing: border-box;
  }
  
  .slider-content1 h2 {
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 1px;
    color: #ffffff;
    margin: 10px 0;
  }
  
  .slider-content1 h4 {
    font-size: 14px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.8);
    font-family: "Oswald", sans-serif;
    margin: 0;
  }
  
  .slider-content1 a.btn {
    font-size: 14px;
    padding: 6px 14px;
    margin-top: 12px;
    display: inline-block;
  }
  
  

}

@keyframes slideAnimation {
  0% { transform: translateX(0%); }
  33% { transform: translateX(-100%); }
  66% { transform: translateX(-200%); }
  100% { transform: translateX(0%); }
}


/* slide section end  */



/* services start */

.ap_content .card {
  height: 180px; /* Adjusted height */
  border: 1.3px solid #1c2d5b; /* Custom dark blue border */
  border-radius: 12px; /* Smooth rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
  transition: all 0.3s ease-in-out;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ap_content .card:hover {
  transform: translateY(-8px); /* Slight lift on hover */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Stronger shadow */
  border-color: #16234a; /* Darker blue on hover */
}

.ap_content .card img {
  width: 70px; /* Adjust image size */
  height: 70px;
  object-fit: cover;
  border-radius: 50%; /* Circular images */
  margin: 10px;
  border: 1.2px solid #1c2d5b; /* Border around images */
}

.ap_content .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 10px;
}

.ap_content .card-body h4 {
  font-size: 16px;
  font-weight: bold;
  color: #5c5c77;
  transition: color 0.3s ease-in-out;
}

.ap_content .card-body h4:hover {
  color: #5c5c77;
}

.ap_content .card-body p {
  font-size: 14px;
  color: #5c5c77;
  margin: 5px 0 0;
}

.example-card-img-responsive {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-right: 15px;
}

@media (max-width: 768px) {
  .ap_content .card {
    height: 95; /* Adjusted height */
    border: 1.3px solid #1c2d5b; /* Custom dark blue border */
    border-radius: 12px; /* Smooth rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
    transition: all 0.3s ease-in-out;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .card.flex-row {

    flex-direction: column;
    align-items: center;
    text-align: right;
    height: 95px;
  }

  .ap_content .card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius:50%;
    margin: 10px;
    border:1.2px solid #1c2d5b;
  }
  .example-card-img-responsive {
    height: 60px;
    width: 60px;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .card-body {
    padding: 0.5rem 1rem;
  }

  .card-title {
    font-size: 1rem !important;
  }

  .ap_content {
    padding-left: 10px;
    padding-right: 10px;
  }
}



/* service end */

.preloader img {
filter: opacity(50%); /* 50% transparent */
}


/* How we work start */

.steps-container {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
margin-top: 30px;
}

/* Steps Section */
/* Default styling for larger screens */
.steps {
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
width: 80%;
height: 100px;
margin: auto;
margin-top: 60px;
}

/* Horizontal Line */
.line {
position: absolute;
top: -12%;
left: 0;
width: 100%;
height: 5px;
background-color: #1c2d5b;
z-index: 1;
transform: translateY(-50%);
}

/* Each step */
.step {
position: relative;
width: 190px;
text-align: center;
z-index: 2;
}

/* Step Circle */
.circle {
width: 50px;
height: 50px;
background-color: #1c2d5b;
color: white;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 18px;
font-weight: bold;
margin: auto;
transition: transform 0.3s ease-in-out;
position: relative;
z-index: 2;
}

/* Hover Effect - Enlarges the circle */
.step:hover .circle {
transform: scale(1.3);
}

/* Title (Above Circle) */
.title {
font-weight: bold;
color: #5c5c77;
margin-bottom: 10px;
font-size: 18px;
position: absolute;
top: -40px;
left: 50%;
transform: translateX(-50%);
}

/* Description (Below Circle) */
.desc {
font-size: 14px;
color: #5c5c77;
margin-top: 40px;
max-width: 450px;
width: 100%;
margin-bottom: 40px;
}

/* Mobile View Fix */
/* Mobile Responsiveness */
@media (max-width: 768px) {
  .steps-container {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }

  .steps {
    flex-wrap: nowrap;
    width: max-content;
    padding: 10px 20px;
    gap: 40px;
  }

  .step {
    min-width: 220px;
    flex: 0 0 auto;
  }

  .line {
    top: 30px; /* Adjust line to fit mobile layout */
  }

  .desc {
    font-size: 13px;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .title {
    font-size: 16px;
  }

  .circle {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}

/* 
@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
  }

  .step {
    width: 100%;
    max-width: 300px;
    margin-bottom: 40px;
  }

  .line {
    display: none; 
  }

  .title {
    position: static;
    transform: none;
    margin-bottom: 10px;
    font-size: 16px;
  }

  .desc {
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 14px;
  }

  .circle {
    margin: 0 auto;
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
} */

/* How we  woek end */

/* news css start  */

/* .dynamic-slider-news {
  width: 380px;
  height: 390px;
  position: absolute;
  top: 50%;
  right: 80px;
  transform: translateY(-50%);
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid #1c2d5b;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 5;
} */

.dynamic-slider-news {
width: 90%;
max-width: 380px;
height: auto;
position: absolute;
overflow: hidden;
top: 50%;
right: 5%;
transform: translateY(-50%);
border-radius: 10px;
border: 2px solid #1c2d5b;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
z-index: 5;
}

@media (max-width: 768px) {
.dynamic-slider-news {
    width: 90%;
    max-width: 320px;
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin: 20px auto;
}
}


/* .slider-wrapper {
  display: flex;
  width: 300%; 
  transition: transform 1s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  flex-shrink: 0;
}

.slider-img-news {
width: 100%;
height: 100%;
object-fit: cover;
flex-shrink: 0;
} */

.slider-wrapper {
display: flex;
width: 100%; /* Use full width */
transition: transform 1s ease-in-out;
}

.slider-img-news {
width: 100%;
height: auto;
object-fit: cover;
}


/* Arrow button styles */

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(28, 45, 91, 0.3); /* Dark blue with more transparency */
  color: white;
  border: none;
  cursor: pointer;
  padding: 10px 15px;
  font-size: 15px;
  border-radius: 50%;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.slider-arrow:hover {
  background-color: rgba(28, 45, 91, 1); 
}


.left-arrow {
  left: 10px;
}


.right-arrow {
  right: 10px;
}

/* end vdio and news */

/* Booking Now Button */
/* Booking Now Button */

.booking-now {
position: fixed; /* Fixed positioning to keep it in place */
right: 20px; /* Position it 20px from the left edge of the viewport */
bottom: 20px; /* Position it 20px from the bottom edge */
margin-bottom: 30%;
background-color: #ff0101; /* Dark blue background for a professional look */
color: white; /* White text */
padding: 8px 16px; /* Padding around the text */
font-size: 14px; /* Adjust the font size */
font-weight: bold; /* Make the text bold */
border-radius: 8px; /* Rounded corners for a smooth look */
text-decoration: none; /* Remove underline from the link */
display: inline-block; /* Ensure it behaves like a button */
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transitions */
animation: pulse 2s infinite ease-in-out; /* Pulsing animation */
}


/* Hover effect */

@media (max-width: 768px) {
  .booking-now {
      right: 10px;
      bottom: 10px;
      padding: 6px 12px;
      font-size: 12px;
  }
}

.booking-now:hover {
color: #ffffff;
background-color: #13406f; /* Slightly darker blue when hovering */
transform: translateY(-3px); /* Slight lift effect on hover */
}

/* Focus effect for accessibility */
.booking-now:focus {
outline: none; /* Remove default focus outline */
box-shadow: 0 0 0 3px rgba(28, 45, 91, 0.5); /* Custom focus outline */
}

/* Pulse Animation */
@keyframes pulse {
0% {
  transform: scale(1);
}
50% {
  transform: scale(1.1);
}
100% {
  transform: scale(1);
}
}


/* footer txt color start */

.footer-text-color {
color: #ffffff;
font-size: 13px;
}

.footer-text-color:hover {
color: #bfa6a6;

}


.img-fluid {
max-width: 70%;
height: auto;
margin-top: 16%;
}

.navbar-toggler:not(:disabled):not(.disabled) {cursor:pointer;color: black;background-color: #5c5c77;}


/* Show only on mobile */
.mobile-only {
  display: none;
}

.desktop-only {
  display: inline-block;
}

/* On mobile */
@media (max-width: 768px) {
  .mobile-only {
    display: block !important;
  }

  .desktop-only {
    display: none !important;
  }
}


