/*******************************/
/********* General CSS *********/
/*******************************/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

body {
  color: #666666;
  background: #dddddd;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}
.content-visible
{
  opacity: 1 !important;
  transition: opacity 0.5s ease-in;
}


html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* For WebKit browsers (Chrome, Safari) */
::-webkit-scrollbar {
  width: 12px;
  /* Width of the scrollbar */
  height: 12px;
  /* Height for horizontal scrollbar */
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* Color of the track */
  border-radius: 6px;
  /* Rounded corners for the track */
}

::-webkit-scrollbar-thumb {
  background: #054376;
  /* Color of the draggable part (thumb) */
  border-radius: 6px;
  /* Rounded corners for the thumb */
}

/* Hover effect for thumb */
::-webkit-scrollbar-thumb:hover {
  background: #054376;
  /* Darker color when hovered */
}

/* For Firefox */
.scrollable-element {
  scrollbar-width: thin;
  /* Make scrollbar thinner */
  scrollbar-color: #054376 #f1f1f1;
  /* thumb color and track color */
}

::-webkit-scrollbar-thumb:hover {
  cursor: grab;
}

h1,
h2,
h3,
h5 {
  color: #030f27;
}

a {
  color: #666666;
  transition: .3s;
}

a:hover,
a:active,
a:focus {
  color: #9dcde5 !important;
  outline: none;
  text-decoration: none;
}

.btn:focus {
  box-shadow: none;
}


/* Loader styling */
#loader {
    position: fixed;  /* fixed to viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff; /* fallback background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.6s ease;
}

/* Fade out loader */
#loader.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Video sizing */
#loader video {
    max-width: 35%;
    max-height: 35%;
}

/* Page content initially hidden */
#whole-body {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

#whole-body.content-visible {
    opacity: 1;
}


.back-to-top {
  position: fixed;
  display: none;
  background: #9dcde5;
  border-radius: 50px;
  color: #121518;
  width: 44px;
  margin-right: 10px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 22px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 9;
}

.back-to-top:hover {
  color: #fdbe33;
  background: #121518;
}

.back-to-top i {
  padding-top: 10px;
}

.btn {
  transition: .3s;
}

/* Initially hide the floating button */
/* Initially hide the floating button */
.hidden {
  display: none;
}

/* Styling for the floating WhatsApp button */
.floating-button {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 100;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Helper text for "Talk with us!" below the button */

/* Fade-in effect for the helper text */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* WhatsApp button with pulsing effect */
.whatsapp-button {
  background-color: #25d366;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  color: white;
  font-size: 24px;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pulse 1.5s infinite;
  /* Pulsing animation */
}

.whatsapp-button i {
  font-size: 30px;
}

/* Pulsing effect */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Hide the dropdown menu initially */
.dropdown-content {
  display: none;
  position: absolute;
  bottom: 80px;
  /* Adjust this to place the dropdown above the button */
  right: 0;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  overflow: hidden;
  width: 180px;
  text-align: center;
}

/* Links inside the dropdown */
.dropdown-content a {
  padding: 12px 16px;
  display: block;
  text-decoration: none;
  color: black;
  border-bottom: 1px solid #ddd;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

/* Show the dropdown when it's active */
.show {
  display: block;
}

/* Responsive styles for small devices */
@media (max-width: 600px) {
  #loader {

    img {
      width: 250px;
      height: 250px;
    }
  }

  .floating-button {
    bottom: 115px;
    right: 15px;
  }

  .whatsapp-button {
    width: 50px;
    height: 50px;
  }

  .whatsapp-button i {
    font-size: 24px;
  }

  .dropdown-content {
    width: 160px;
  }

  .dropdown-content a {
    padding: 10px 14px;
  }

  .back-to-top {
    margin-right: 0px;

  }
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
  position: relative;
  height: 60px;
  background: #ffffff;
}

.top-bar .logo {
  padding: 15px 0;
  text-align: left;
  overflow: hidden;
}

.top-bar .logo h1 {
  margin: 0;
  color: #030f27;
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
}

.top-bar .logo img {
  max-width: 100%;
  max-height: 40px;
}

.top-bar .top-bar-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.top-bar .top-bar-icon {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-bar .top-bar-icon [class^="flaticon-"]::before {
  margin: 0;
  color: #030f27;
  font-size: 40px;
}

.top-bar .top-bar-text {
  padding-left: 15px;
}

.top-bar .top-bar-text h3 {
  margin: 0 0 5px 0;
  color: #030f27;
  font-size: 14px;
  font-weight: 400;
}

.top-bar .top-bar-text p {
  margin: 0;
  color: #030f27;
  font-size: 12px;
  font-weight: 400;
}

.header-icon svg {
  max-height: 35px;
}

@media (min-width: 992px) {
  .top-bar {
    padding: 0 60px;
  }
}

@media (max-width: 991.98px) {
  .top-bar .logo {
    text-align: center;
  }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.nav-bar {
  position: relative;
  background: #ffffff;
  /* Original background color */
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  /* Smooth transition for background, shadow, and padding */
}

.nav-bar .container-fluid {
  padding: 0;
}

.nav-bar .navbar {
  height: 100%;
  background: #054376 !important;
  /* Navbar background color */
  transition: padding 0.3s ease;
  /* Animate padding when sticky */
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  padding: 10px 10px 8px 10px;
  color: #ffffff;
  /* Link color */
  transition: color 0.3s ease;
  /* Smooth color transition */
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: #9dcde5;
  /* Hover and active link color */
}

.nav-bar .btn {
  color: #ffffff;
  /* Button text color */
  border: 2px solid #ffffff;
  /* Button border color */
  border-radius: 0;
}

.nav-bar .btn:hover {
  color: #030f27;
  /* Button text color on hover */
  background: #9dcde5;
  /* Button background color on hover */
  border-color: #9dcde5;
  /* Button border color on hover */
}

/* Sticky Navbar Styles */
.nav-bar.nav-sticky {
  position: fixed;
  background-color: #054376;
  /* Sticky background color */
  top: 0;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
  /* Shadow when sticky */
  z-index: 999;
  padding: 5px 0;
  /* Reduced padding when sticky */
}

/* Optional: Additional styles for smooth effect */
.nav-bar.nav-sticky .navbar {
  padding: 10px;
  /* Adjust padding when sticky */
}


@media (min-width: 992px) {
  .nav-bar {
    padding: 0 75px;
  }

  .nav-bar .navbar {
    padding: 10px
  }

  .nav-bar a.nav-link {
    padding: 8px 15px;
    font-size: 15px;
    text-transform: uppercase;
  }
}

@media (max-width: 991.98px) {
  .nav-bar .navbar {
    padding: 15px;
    border-radius: 0px;
  }

  .nav-bar a.nav-link {
    padding: 5px;
  }

  .nav-bar .btn {
    display: none;
  }
}

.nav_link:hover {
  color: #ffffff !important;
}

/*******************************/
/******** Carousel CSS *********/
/*******************************/
.carousel {
  position: relative;
  width: 100%;
  height: calc(100vh - 170px);
  min-height: 400px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}

.carousel .carousel-inner,
.carousel .carousel-item {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.carousel .carousel-item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 1;
}

.carousel .carousel-caption {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: calc(100vh - 170px);
  min-height: 400px;
}

.carousel .carousel-caption p {
  color: #ffffff;
  font-size: 30px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.carousel .carousel-caption h1 {
  color: #ffffff;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 35px;
}

.carousel .carousel-caption .btn {
  padding: 15px 35px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  background: #054376;
  border-radius: 50px;
  transition: .3s;
}

.carousel .carousel-caption .btn:hover {
  color: #030f27;
  background: #7fbddd;
}

@media (max-width: 767.98px) {
  .carousel .carousel-caption h1 {
    font-size: 40px;
    font-weight: 700;
  }

  .carousel .carousel-caption p {
    font-size: 20px;
  }

  .carousel .carousel-caption .btn {
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
  }
}

@media (max-width: 575.98px) {
  .carousel .carousel-caption h1 {
    font-size: 30px;
    font-weight: 500;
  }

  .carousel .carousel-caption p {
    font-size: 16px;
  }

  .carousel .carousel-caption .btn {
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
  }
}

.carousel .animated {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
  position: relative;
  width: 100%;
  margin-bottom: 45px;
}

.section-header p {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
}

.section-header h2 {
  margin: 0;
  position: relative;
  font-size: 50px;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .section-header h2 {
    font-size: 30px;
  }
}


/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
  position: relative;
  margin: 40px;



}


.feature .col-md-12 {
  background: #054376;
}

.feature .col-md-12:nth-child(2n) {
  color: #030f27;
  background: #ffffff;
}

.col1 {
  border-radius: 20px 0px 0px 20px;

}

.col3 {
  border-radius: 0px 20px 20px 0px;

}

.feature .feature-item {
  min-height: 250px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.feature .feature-icon {
  position: relative;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature .feature-icon::before {
  position: absolute;
  content: "";
  width: 80px;
  height: 80px;
  top: -20px;
  left: -10px;
  border: 2px dotted #ffffff;
  border-radius: 60px;
  z-index: 1;
}

.feature .feature-icon::after {
  position: absolute;
  content: "";
  width: 79px;
  height: 79px;
  top: -18px;
  left: -9px;
  /* background: #054376; */
  border-radius: 60px;
  z-index: 2;
}

.feature .col-md-12:nth-child(2n) .feature-icon::after {
  background: #ffffff;
}

.feature .feature-icon [class^="flaticon-"]::before {
  position: relative;
  margin: 0;
  color: #ffffff;
  font-size: 60px;
  line-height: 60px;
  z-index: 3;
}

.feature .feature-text {
  padding-left: 30px;
}

.feature .feature-text h3 {
  margin: 0 0 10px 0;
  color: #ffffff;
  font-size: 25px;
  font-weight: 600;
}

.feature .feature-text p {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
}

.feature .col-md-12:nth-child(2n) [class^="flaticon-"]::before,
.feature .col-md-12:nth-child(2n) h3,
.feature .col-md-12:nth-child(2n) p {
  color: #030f27;
}

@media (max-width: 767.98px) {
  .feature {
    margin: 0px;

  }
}

/*******************************/
/********** About CSS **********/
/*******************************/
.about {
  position: relative;
  width: 100%;
  padding: 45px 0;
}

.about .section-header {
  margin-bottom: 30px;
}

.section-header h2 {
  color: #054376;
}

.about .about-img {
  position: relative;
  height: 100%;
}

.about .about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .about-text p {
  font-size: 14px;
}

.about .about-text a.btn {
  position: relative;
  margin-top: 15px;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #ffffff;
  border-radius: 50px;
  background: #054376;
  transition: .3s;
}

.about .about-text a.btn:hover {
  color: #030f27 !important;
  background: #7fbddd !important;
}

@media (max-width: 767.98px) {
  .about .about-img {
    margin-bottom: 30px;
    height: auto;
  }

  .about .about-text {
    text-align: center;
    /* Center the text and button inside the container */
  }

  .about .about-text a.btn {
    margin: 15px auto;
    /* Center the button with automatic margins */
    display: inline-block;
    /* Ensure the button is treated as an inline element */
  }
}


/* about us page lines code  */
blockquote {
  padding: 25px;
  margin: 20px 0;
  background: #f9f9f9;
  position: relative;
  border-left: 3px solid #054376;
  padding-left: 40px;
}

blockquote.text-center {
  border-top: 3px solid #054376;
  border-left: 0;
  padding-left: 25px;
  padding-top: 50px;
  background-color: darkblue;
}

blockquote.text-center:before {
  left: 50%;
  top: 10px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

blockquote:before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  font-size: 28px;
  color: #E5E5E5;
  top: 5px;
  left: 5px;
  font-weight: 700;
  z-index: 0;
}

blockquote p {
  font-size: 14px;
  line-height: 22px;
  position: relative;
  z-index: 1;
  font-style: italic;
  margin-bottom: 0;
}

/*-- Gallery page --*/

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

h1 {
  text-align: center;
  color: #1e3a8a;
  font-size: 2.5em;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out backwards;
  position: relative;
}

.product:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.product-image-container {
  overflow: hidden;
  height: 400px;
  position: relative;
}

.product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product:hover img {
  transform: scale(1.1);
}

.product-image-container::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  animation: shimmer 2s infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product:hover .product-image-container::after {
  opacity: 1;
}

.product-info {
  padding: 20px;
}

.product-name {
  font-weight: bold;
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #1e3a8a;
}

.product-description {
  font-size: 0.9em;
  color: #4b5563;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.product:hover .product-description {
  max-height: 200px;
  opacity: 1;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  opacity: 1;
}

.modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 40px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transform: scale(0.7);
  opacity: 0;
  transition: all 0.3s ease;
}

.modal.show .modal-content {
  transform: scale(1);
  opacity: 1;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover,
.close:focus {
  color: #1e3a8a;
}

.gallery-header {
  margin-top: 30px;
}

/* ------------------------------------
    18. Counter up css
  ---------------------------------------*/
.counter-top-area {
  background: url("../img/carousel2.jpg") no-repeat center center;
  background-size: cover;
  padding: 100px 0;
  position: relative;
  z-index: 1;

}


.counter-top-area .sec-title h3 {
  color: #fff;
  letter-spacing: none;
  position: relative;
  z-index: 2;
  /* Ensure the title is above the overlay */
}

.counter-top-area .sec-title p {
  color: #fff !important;
  position: relative;
  line-height: 26px;
  z-index: 2;
  /* Ensure the text is above the overlay */
}

.counter-top-area .col-md-3 {
  padding-right: 30px;
  padding-left: 30px;
}

.counter-top-area .title {
  font-weight: 400;
  color: #cacaca;
  font-weight: 500;
  font-size: 15px !important;
  margin: 0;
  z-index: 2;
  /* Ensure the title is above the overlay */
}

.sec-title h3 {
  font-size: 30px;
  line-height: 24px;
  margin-bottom: 0;
  position: relative;
  display: block;
  padding-bottom: 25px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.sec-title h3:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: 0;
  height: 5px;
  width: 100px;
  background: #054376;
}

.counter-top-area .overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  z-index: 0;
}

.counter-top-area .rs-counter-list {
  text-align: center;
  padding: 40px;
  position: relative;
  transition: all 0.3s ease 0s;
  margin-top: 30px;
  z-index: 2;
}

.counter-top-area .rs-counter-list:after {
  position: absolute;
  content: '';
  background: transparent;
  width: 100px;
  height: 100px;
  top: 0;
  left: 0;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transition: all 0.3s ease 0s;
}

.counter-top-area .rs-counter-list:before {
  position: absolute;
  content: '';
  background: transparent;
  width: 100px;
  height: 100px;
  bottom: 0;
  right: 0;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transition: all 0.3s ease 0s;
}

.counter-top-area .rs-counter-list:hover:after,
.counter-top-area .rs-counter-list:hover:before {
  width: 100%;
  height: 100%;
}

.counter-top-area h2 {
  font-size: 30px;
  font-weight: 700;
  padding: 0;
  color: #8ECAFA;
  margin-top: 26px !important;
  margin-bottom: 7px !important;
  z-index: 2;
  /* Ensure the counter numbers are above the overlay */
}

.counter-top-area h2.percent {
  position: relative;
}

.counter-top-area h2.percent:after {
  content: "%";
}

.counter-top-area .rs-counter-list i {
  color: #ffffff;
  font-size: 48px;
  z-index: 2;
  /* Ensure the icons are above the overlay */
}

.counter-top-area .rs-counter-list i:hover {
  color: #054376;
}

/* Responsive CSS for small devices */
@media only screen and (max-width: 640px) {
  .counter-top-area .col-md-3 {
    width: 100% !important;
    max-width: 300px;
    min-width: 250px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .counter-top-area .col-md-3 {
    width: 100% !important;
    max-width: 300px;
    min-width: 250px;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .counter-top-area {
    padding-top: 80px;
    padding-bottom: 50px;
  }

  .counter-top-area .rs-counter-list {
    margin-bottom: 30px;
  }
}


.gallery-wrapper {
  min-height: 100svh;
  display: grid;
  place-content: center;
  background: white;
  font-family: system-ui, sans-serif;
  padding: 2rem;
}

.material-fill-1 {
  font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48
}

.gallery-wrapper p {
  color: white;
  font-size: 0.8rem;
  text-align: center;
  margin-top: 1rem;
}


.gallery-home {
  --_height: 250px;
  --_gap: .5rem;

  --_grid-rows: var(--_height) var(--_height) var(--_height);
  --_height-hover: calc(var(--_height) * 2);
  --_height-not-hover: calc(var(--_height) / 2);

  width: 100%;
  max-width: 800px;
  display: grid;
  gap: var(--_gap);
}

@media (min-width:720px) {
  .gallery-home {
    grid-template-columns: repeat(3, 1fr);
  }

}

.gallery-home>div {
  height: fit-content;
  display: grid;
  grid-template-rows: var(--_grid-rows);
  gap: var(--_gap);
  transition: grid-template-rows 300ms ease-in-out;
}

.gallery-home>div>article {
  position: relative;
}

.gallery-home>div>article>div {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #00000070;
  font-size: 0.65rem;
  color: white;
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: .15rem 0.5rem;

}

.gallery-home>div>article>div>span {
  font-size: 0.8rem;
  color: rgb(255, 255, 255);
}

.gallery-home img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-home>div:has(>article:nth-child(1):hover) {
  --_grid-rows: var(--_height-hover) var(--_height-not-hover) var(--_height-not-hover);
}

.gallery-home>div:has(>article:nth-child(2):hover) {
  --_grid-rows: var(--_height-not-hover) var(--_height-hover) var(--_height-not-hover);
}

.gallery-home>div:has(>article:nth-child(3):hover) {
  --_grid-rows: var(--_height-not-hover) var(--_height-not-hover) var(--_height-hover);
}

.gallery-home>div>article:hover {
  background-color: rgb(151, 152, 201);
  color: #FFF;
}

/* Cta section */
.cta-container {
  display: flex;
  background-color: #054376;
  padding: 35px 0;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 5;
  margin-bottom: 50px;
}

.cta-text h2 {
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
}

.cta-button a {
  font-size: 15px;
  text-transform: uppercase;
  background: transparent;
  color: #ffffff;
  padding: 12px 33px;
  border: 1px solid #fff;
  font-weight: 400;
  transition: all 0.3s ease 0s;
  -webkit-transition: 0.4s;
}

.cta-button :hover {
  color: #ffffff;
}

@media (max-width: 600px) {
  .cta-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cta-text h2 {
    padding: 0 10px;
  }

  .cta-icon,
  .cta-text,
  .cta-button {

    width: 100%;
    margin: 5px 0;
    /* Adjust margin as needed */
  }

  .cta-text h2 {
    font-size: 1rem;
    /* Adjust font size for smaller screens */
  }

  .cta-button a {
    padding: 8px 16px;
    /* Adjust padding for smaller screens */
  }
}

/* Slider pages */
.page-slider .carousel-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: transparent;
  text-shadow: none;
  transition: all .25s ease;
  padding: 0;
  outline: 0;
  border: 0;
}

.page-slider .carousel-control.left {
  left: 0;
}

.page-slider .carousel-control.right {
  right: 0;
}

.page-slider .carousel-control i {
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  line-height: 70px;
  width: 30px;
  height: 70px;
  font-size: 22px;
  border-radius: 0;
  transition: all 250ms ease;
}

.page-slider .carousel-control i:hover {
  background: #054376;
  color: #fff;
}


/*-- Team page --*/

.team-slide .carousel-control {
  position: absolute;
  bottom: 0;
  left: 50%;
  border: 0;
  background-color: #ddd;
  height: 37px;
  width: 37px;
  border-radius: 4px;
  transition: .3s;
  z-index: 6;
}

.team-slide .carousel-control:hover {
  background-color: #ffb600;
  color: #fff;
}

.team-slide .carousel-control.left {
  -webkit-transform: translateX(calc(-50% - 25px));
  transform: translateX(calc(-50% - 25px));
}

.team-slide .carousel-control.right {
  -webkit-transform: translateX(calc(-50% + 25px));
  transform: translateX(calc(-50% + 25px));
}

/* Team Classic */
/*******************************/
/********** Fact CSS ***********/
/*******************************/


/*******************************/
/********* Service CSS *********/
/*******************************/
















/* Services
================================================== */
/* Service box */

/* Service box bg */

/* Service box 
  
  .ts-service-box .ts-service-icon i {
    font-size: 24px;
    float: left;
    color: #fff;
    background: $color-primary;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
  }
  
  .ts-service-box .ts-service-box-content {
    margin-left: 80px;
    margin-bottom: 30px;
  }
  
  .tab-content .ts-service-box .ts-service-box-content {
    margin-left: 90px;
  }
  
  .ts-service-box .ts-service-box-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .ts-service-box .ts-service-box-info {
    margin-left: 90px;
    margin-bottom: 40px;
  }
  
  .service-box-title {
    font-size: 18px;
    margin: 0 0 10px;
  }
  
  .service-box-title a {
    color: #333;
  }
  
  .service-box-title a:hover {
    color: $color-primary;
  }
  
  .service-center-img {
    padding: 0 20px;
  }
  */
/* Icon squre */

/* Icon left */

/* Service no box */

/* Service Image */

/* Service Classic */

/*******************************/
#main-container {
  margin: 80px 0px;
  /* Adjust as needed to create space */
}

.column-title {
  font-size: 50px;
  font-weight: 700;
  color: #054376;
  text-align: center;
  margin-bottom: 20px
}


/*******************************/
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&amp;display=swap');

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
}

.wk-desk-6 {
  width: 50%;
}

@media (max-width: 1024px) {

  .wk-ipadp-6 {
    width: 50%;
  }
}

@media (max-width: 768px) {

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {

  .wk-mobile-12 {
    width: 100%;
  }
}

.text-blk {
  margin-top: 0px;
  color: #054376;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  line-height: 25px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.responsive-cell-block {
  min-height: 75px;
}

.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

.responsive-container-block.bigContainer {
  padding-top: 0px;
  padding-right: 50px;
  padding-bottom: 0px;
  padding-left: 50px;
  margin-top: 50px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
}

.responsive-container-block.Container {
  max-width: 1320px;
  justify-content: space-evenly;
  align-items: center;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}

.mainImg {
  width: 100%;
  height: 800px;
  object-fit: cover;
}

.blueDots {
  position: absolute;
  top: 150px;
  right: 15%;
  z-index: -1;
  left: auto;
  width: 80%;
  height: 500px;
  object-fit: cover;
}

.imgContainer {
  position: relative;
  width: 48%;
}

.responsive-container-block.textSide {
  width: 48%;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  z-index: 100;
}

.text-blk.heading {
  font-size: 50px;
  line-height: 40px;
  font-weight: 700;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}

.text-blk.subHeading {
  font-size: 18px;
  color: #000;
  line-height: 26px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}

.cardImg {
  width: 31px;
  height: 31px;
}

.cardImgContainer {
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(229, 229, 229);
  border-right-color: rgb(229, 229, 229);
  border-bottom-color: rgb(229, 229, 229);
  border-left-color: rgb(229, 229, 229);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  margin-top: 0px;
  margin-right: 10px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-right: 15px;
  padding-bottom: 10px;
  padding-left: 0px;
}

.text-blk.cardHeading {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
}

.text-blk.cardSubHeading {
  color: #424242;
  line-height: 22px;
}

.button-container {
  display: flex;
  justify-content: center;
  /* Centers the button horizontally */
  align-items: center;
  /* Centers the button vertically */
  height: 100%;
  /* Ensure the container takes up enough height */
  width: 100%;
  /* Ensure the container takes up enough width */
  padding: 20px;
  /* Optional: adds spacing around the container */
}

.explore {
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  padding: 15px;
  color: white;
  background-color: #054376;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  /* Removes default border styles */
}

.explore:hover {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: #83BFDF
}

.redDots {
  position: absolute;
  bottom: -350px;
  right: -100px;
  height: 500px;
  width: 400px;
  object-fit: cover;
  top: auto;
}

@media (max-width: 1024px) {
  .responsive-container-block.Container {
    position: relative;
    align-items: flex-start;
    justify-content: center;
  }

  .mainImg {
    bottom: 0px;
  }

  .imgContainer {
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: auto;
    width: 60%;
  }

  .responsive-container-block.textSide {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: auto;
    width: 70%;
  }

  .responsive-container-block.Container {
    flex-direction: column-reverse;
  }

  .imgContainer {
    position: relative;
    width: auto;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
  }

  .responsive-container-block.textSide {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
    width: 100%;
  }

  .responsive-container-block.Container {
    flex-direction: row-reverse;
  }

  .responsive-container-block.Container {
    flex-direction: column-reverse;
  }
}

@media (max-width: 768px) {
  .responsive-container-block.textSide {
    width: 100%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }

  .text-blk.subHeading {
    text-align: center;
    font-size: 17px;
    max-width: 520px;
  }

  .text-blk.heading {
    text-align: center;
  }

  .imgContainer {
    opacity: 0.8;
  }

  .imgContainer {
    height: 500px;
  }

  .imgContainer {
    width: 30px;
  }

  .responsive-container-block.Container {
    flex-direction: column-reverse;
  }

  .responsive-container-block.Container {
    flex-wrap: nowrap;
  }

  .responsive-container-block.textSide {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
  }

  .imgContainer {
    width: 90%;
  }

  .imgContainer {
    height: 450px;
    margin-top: 5px;
    margin-right: 33.9062px;
    margin-bottom: 0px;
    margin-left: 33.9062px;
  }

  .redDots {
    display: none;
  }

  .explore {
    font-size: 16px;
    padding: 10px 20px !important;
    line-height: 14px;
  }
}


@media (max-width: 500px) {
  .imgContainer {
    position: static;
    height: 450px;
  }

  .explore {
    padding: 10px 20px;
  }

  .mainImg {
    height: 100%;
  }

  .blueDots {
    width: 100%;
    left: 0px;
    top: 0px;
    bottom: auto;
    right: auto;
  }

  .imgContainer {
    width: 100%;
  }

  .responsive-container-block.textSide {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .responsive-container-block.Container {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    overflow-x: visible;
    overflow-y: visible;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding: 0 30px 0 30px;
  }

  .redDots {
    display: none;
  }

  .text-blk.subHeading {
    font-size: 16px;
    line-height: 23px;
  }

  .text-blk.heading {
    font-size: 28px;
    line-height: 28px;
  }

  .responsive-container-block.textSide {
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 50px;
    margin-left: 0px;
  }

  .imgContainer {
    margin-top: 5px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    width: 100%;
    position: relative;
  }

  .explore {
    padding-top: 17px;
    padding-right: 0px;
    padding-bottom: 17px;
    padding-left: 0px;
    width: 100%;
  }

  .blueDots {
    bottom: 0px;
    width: 100%;
    height: 80%;
    top: 10%;
  }

  .text-blk.cardHeading {
    font-size: 16px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 8px;
    margin-left: 0px;
    line-height: 25px;
  }

  .responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12 {
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
  }
}

/********** Video CSS **********/
/*******************************/
.video {
  position: relative;
  margin: 45px 0;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(rgba(3, 15, 39, .9), rgba(3, 15, 39, .9)), url(../img/carousel-1.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
  position: relative;
  width: 100%;
  padding: 45px 0 15px 0;
}


/*******************************/
/*********** FAQs CSS **********/
/*******************************/
.faqs {
  position: relative;
  width: 100%;
  padding: 45px 0;
}

.faqs .row {
  position: relative;
}

.faqs .row::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: calc(50% - .5px);
  background: #054376;
}

.faqs #accordion-1 {
  padding-right: 15px;
}

.faqs #accordion-2 {
  padding-left: 15px;
}

@media(max-width: 767.98px) {
  .faqs .row::after {
    display: none;
  }

  .faqs #accordion-1,
  .faqs #accordion-2 {
    padding: 0;
  }

  .faqs #accordion-2 {
    padding-top: 15px;
  }
}

.faqs .card {
  margin-bottom: 15px;
  border: none;
  border-radius: 0;
}

.faqs .card:last-child {
  margin-bottom: 0;
}

.faqs .card-header {
  padding: 0;
  border: none;
  background: #ffffff;
}

.faqs .card-header a {
  display: block;
  padding: 10px 25px;
  width: 100%;
  color: #121518;
  font-size: 16px;
  line-height: 40px;
  border: 1px solid rgba(0, 0, 0, .1);
  transition: .5s;
}

.faqs .card-header [data-toggle="collapse"]:after {
  font-family: 'font Awesome 5 Free';
  content: "\f067";
  float: right;
  color: #054376;
  font-size: 12px;
  font-weight: 900;
  transition: .5s;
}

.faqs .card-body {
  padding: 20px 25px;
  font-size: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, .1);
  border-top: none;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/


/*******************************/
/*********** Blog CSS **********/
/*******************************/


/*******************************/
/******* Single Post CSS *******/
/*******************************/


/**********************************/
/*********** Sidebar CSS **********/
/**********************************/


/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
  position: relative;
  padding: 45px 0;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
  position: relative;
  width: 100%;
}

.contact .col-md-6 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.contact .col-md-6:first-child {
  background: #019CDF;
}

.contact .col-md-6:last-child {
  background: #019CDF;
}

.contact .contact-info {
  position: relative;
  width: 100%;
  padding: 0 15px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact .contact-item {
  position: relative;
  margin-bottom: 30px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  border: 1px solid rgba(256, 256, 256, .2);
}

.contact .contact-item [class^="flaticon-"]::before {
  margin: 0;
  color: #fdbe33;
  font-size: 40px;
}

.contact .contact-text {
  position: relative;
  width: auto;
  padding-left: 20px;
}

.contact .contact-text h2 {
  color: #F7E7CE;
  font-size: 20px;
  font-weight: 600;
}

.contact .contact-text p {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
}

.contact .contact-item:last-child {
  margin-bottom: 0;
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
  position: relative;
  margin-top: 45px;
  padding-top: 90px;
  background: #054376;
  color: #ffffff;
}

.footer .footer-contact,
.footer .footer-link {
  position: relative;
  margin-bottom: 45px;
}

.footer h2 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #F7E7CE;
}

.footer h2::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 2px;
  left: 0;
  bottom: 0;
  background: #F7E7CE;
}

.footer-contact a {
  color: #ffffff;
}

.footer .footer-link a {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  transition: .3s;
}

.footer .footer-link a::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .footer-link a:hover {
  color: #F7E7CE;
  letter-spacing: 1px;
}

.footer .footer-contact p i {
  width: 25px;
}

.footer .footer-social {
  position: relative;
  margin-top: 20px;
}

.footer .footer-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  padding: 7px 0;
  text-align: center;
  border: 1px solid rgba(256, 256, 256, .3);
  border-radius: 60px;
  transition: .3s;
}

.footer .footer-social a i {
  font-size: 15px;
  color: #ffffff;
}

.footer .footer-social a:hover {
  background: #F7E7CE;
  border-color: #F7E7CE;
}

.footer .footer-social a:hover i {
  color: #030f27;
}


.footer .copyright {
  padding: 30px 15px;
}

.footer .copyright p {
  margin: 0;
  color: #ffffff;
}

.footer .copyright .col-md-6:last-child p {
  text-align: right;
}

.footer .copyright p a {
  color: #F7E7CE;
  font-weight: 500;
  letter-spacing: 1px;
}

.footer .copyright p a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {

  .footer .copyright p,
  .footer .copyright .col-md-6:last-child p {
    margin: 5px 0;
    text-align: center;
  }
}

/* About page css */

/* how we work a href hover effect class */


.effect-hover {
  color: #000000 !important;
}



/* Services
================================================== */
/* Service box */

/* Service box bg */

/* Service box 

.ts-service-box .ts-service-icon i {
  font-size: 24px;
  float: left;
  color: #fff;
  background: $color-primary;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
}

.ts-service-box .ts-service-box-content {
  margin-left: 80px;
  margin-bottom: 30px;
}

.tab-content .ts-service-box .ts-service-box-content {
  margin-left: 90px;
}

.ts-service-box .ts-service-box-content h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.ts-service-box .ts-service-box-info {
  margin-left: 90px;
  margin-bottom: 40px;
}

.service-box-title {
  font-size: 18px;
  margin: 0 0 10px;
}

.service-box-title a {
  color: #333;
}

.service-box-title a:hover {
  color: $color-primary;
}

.service-center-img {
  padding: 0 20px;
}
*/
/* Icon squre */

/* Icon left */

/* Service no box */

/* Service Image */

/* Service Classic */

/* whatsapp icon */

:root {
  --index: calc(1vw + 1vh);
  --transition: cubic-bezier(.1, .7, 0, 1);
}

body {
  background-color: white;
}

/*Right*/

/*Left*/

/* Wave Animation */
@keyframes waveAnimation {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-5%);
  }

  100% {
    transform: translateX(0);
  }
}






/* Height of carousel */
#slide-container {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.slide {
  width: 100%;
  min-height: 200px;
}

.slides {
  display: block;
}

/* Style of arrows */

#next {
  left: 100%;
  transform: translate(-100%, -50%);
  border-radius: 4px 0px 0px 4px;
}




#text-bar {
  position: absolute;
  top: 50%;
  /* Position the bar in the middle vertically */
  left: 50%;
  /* Center horizontally */
  transform: translate(-50%, -50%);
  /* Adjust for perfect centering */
  display: flex;
  /* Flexbox for centering */
  justify-content: center;
  /* Center text horizontally */
  align-items: center;
  /* Center text vertically */
  text-align: center;
  z-index: 1;
}

#place {
  z-index: 2;
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  padding: 10px 20px;
  /* Add padding around the text */
  background-color: rgba(0, 0, 0, 0.6);
  /* Black transparent background behind the text */
  border-radius: 4px;
  /* Optional: Rounded corners for the overlay */
}

#dotsContainer {
  width: 100%;
  height: 20px;
  text-align: center;
}

.dots {
  width: 8px;
  height: 8px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  display: inline-block;
  margin: 8px 2px;
}

.dots:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.4);
}

.glass-cta-section {
  color: #054376;
  padding: 60px 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 5px rgba(0, 0, 0, 0.5);
  margin: 40px 0;
}

.glass-cta-content h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  animation: fadeIn 1s;
}

.glass-cta-content h2 {
  color: #054376;
  font-weight: 700;
}

.glass-cta-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  animation: fadeIn 1.5s;
}

.glass-cta-button {
  background-color: #054376;
  color: white;
  padding: 15px 30px;
  font-size: 1.2em;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
  animation: fadeIn 2s;
}

.glass-cta-button:hover {
  background-color: #5c5c5c;
  transform: translateY(-3px);
}

/* Animation Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


@media all and (min-width:820px) {
  #user-image2 {
    display: none !important;
    visibility: hidden;
  }
}

@media all and (max-width:1020px) {
  .fa-quote-right {
    position: absolute !important;
    top: 74px !important;
    right: 55px !important;
  }
}

@media all and (max-width:920px) {
  .fa-quote-right {
    position: absolute !important;
    top: 160px !important;
    right: 172px !important;
  }
}

@media all and (max-width:819px) {
  #user-image1 {
    display: none;
    visibility: hidden;
  }

  .fa-quote-right {
    position: absolute !important;
    top: 162px !important;
    right: 173px !important;
  }
}

@media all and (max-width:720px) {
  #user-image1 {
    display: none;
    visibility: hidden;
  }

  .fa-quote-right {
    position: absolute !important;
    top: 74px !important;
    right: 34px !important;
  }
}

@media all and (max-width:620px) {
  #image {
    width: 62%;
  }

  #user-image1 {
    display: none;
    visibility: hidden;
  }

  .fa-quote-right {
    position: absolute !important;
    top: 74px !important;
    right: 34px !important;
  }
}

@media all and (max-width:520px) {
  #image {
    width: 62%;
  }

  #user-image1 {
    display: none;
    visibility: hidden;
  }

  .fa-quote-right {
    position: absolute !important;
    top: 95px !important;
    right: 333px !important;
  }
}

@media all and (max-width:420px) {
  #image {
    width: 62%;
  }

  #user-image1 {
    display: none;
    visibility: hidden;
  }

  .fa-quote-right {
    position: absolute !important;
    top: 116px !important;
    right: 127px !important;
  }
}

@media all and (max-width:375px) {
  #image {
    width: 68%;
  }

  #spacee {
    display: none;
  }

  #user-image1 {
    display: none;
    visibility: hidden;
  }

  .fa-quote-right {
    position: absolute !important;
    top: 136px !important;
    right: 84px !important;
  }
}

.button {
  background-color: #fdbe33;
}

.button:hover {
  background-color: white;
}

.card {
  transition: transform 0.35s, box-shadow 0.35s;
  cursor: pointer;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.card-img-top {
  transition: transform 0.35s;
}

.card:hover .card-img-top {
  transform: scale(1.1);
}

.buttom-quote:hover {
  color: black !important;
}

.fa-quote-right {
  position: absolute;
  top: 49px;
  right: 8px;
  color: #E5E5E5;
  font-size: 28px;
}


/* Blog page css */

.blog-content {
  padding: 60px 0;
  background: #f8f9fa;
}

.blog-article {
  padding-top: 80px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.blog-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: #666;
  padding: 0 20px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-meta i {
  color: #00aaff;
  font-size: 0.8rem;
}

.blog-text {
  padding: 40px;
}

.blog-text h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 40px 0 20px 0;
  line-height: 1.3;
}

.blog-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin: 30px 0 15px 0;
}

.blog-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.blog-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.blog-text ul li {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
}

.blog-text ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00aaff;
  font-weight: bold;
  font-size: 1.2rem;
}

.blog-text img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.highlight-box {
  background: #e3f2fd;
  border-left: 5px solid #00aaff;
  padding: 25px;
  margin: 30px 0;
  border-radius: 5px;
}

.highlight-box h3 {
  color: #1a1a1a;
  margin-top: 0;
  margin-bottom: 15px;
}

.highlight-box p {
  margin-bottom: 0;
  color: #333;
}

.blog-text .cta-section {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin: 40px 0;
}

.blog-text .cta-section h2 {
  color: #856404;
  margin-bottom: 15px;
}

.blog-text .cta-section a {
  display: inline-block;
  background: #00aaff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.blog-text .cta-section a:hover {
  background: #0088cc;
}

@media (max-width: 768px) {
  .blog-title {
    font-size: 2rem;
  }

  .blog-text {
    padding: 20px;
  }

  .blog-text h2 {
    font-size: 1.6rem;
  }

  .blog-text h3 {
    font-size: 1.3rem;
  }

  .blog-text p {
    font-size: 1rem;
  }

  .blog-meta {
    text-align: center;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 767.98px) {
    .col-lg-12 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .blog-article {
      padding-top:10px;
      box-shadow: none;
      background: #F8F9FA;
    }
}



.closeBtn{
  display: flex;
  justify-content: flex-end;
  color: black;
}