/* Using Playfair Display for headings and Lato for body text */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  /* Thin weight */
}

h1,
h2,
h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  /* Slightly bolder for headings */
}





#header.navbar {
  background-color: transparent;

}

#header img {
  width: 125px;
  margin-left: 5px;
}

#header .navbar-nav .nav-link {
  color: #fff;
  font-size: 20px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  padding: 5px 10px;
}

#header .navbar-nav .nav-item .nav-link:hover {
  color: orange;
  position: relative; /* Make sure pseudo-element is positioned relative to the link */
}

/* Adding a dot on hover */
#header .navbar-nav .nav-item .nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: -5px; 
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: orange;
}



#header .navbar-nav {
  align-items: center;
  width: 100%;
  justify-content: flex-end;
  gap: 30px;
}


        /* Add animation to the Book Now button */
        #headbookbtn {
            position: relative;
            animation: pulseEffect 1.5s infinite;
            border-radius: 30px;
            /* Optional: To make the button rounded */
            padding: 10px 20px;
            /* Optional: Adjust padding */
        }

        /* Pulsing glow effect */
        @keyframes pulseEffect {
            0% {
                transform: scale(1);
                box-shadow: 0 0 10px rgba(255, 165, 0, 0.6);
            }

            50% {
                transform: scale(1.1);
                box-shadow: 0 0 20px rgba(255, 165, 0, 1);
            }

            100% {
                transform: scale(1);
                box-shadow: 0 0 10px rgba(255, 165, 0, 0.6);
            }
        }




@media screen and (max-width: 768px) {

  #header img {
    width: 130px;
    margin-left: 20px;

  }

}



/* FOOTER FILE CSS */
#Footer {
  background: #001F3F;
  color: #fff;
}

#Footer p {
  font-size: 16px;
}


#Footer .divider {
  height: 2px;
  display: block;
  background: orange;
  width: 50px;
  margin-bottom: 5px;
  margin-left: 1px;
  border-top: 2px dashed orange;
  /* Dashed line */
}


#Footer .container-fluid {
  padding:20px 40px;

}

#Footer .fa-social a {
  display: inline-block;
  height: 40px;
  width: 40px;
  padding: 10px;
  text-align: center;
  color: #ffff;
  border: 1px solid ffff;
  border-radius: 50%;
  transition: all 0.3s;
  margin-right: 7px;
  fill: #ffff;

}

#Footer .svg-fb {
  width: 11px;
}

#Footer .fa-social {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

#Footer .svg-youtube {
  width: 23px;
  margin-left: -3px;
  margin-top: -1px;
}

#Footer .svg-insta {
  width: 19px;
  margin: -1px 3px 0px -1px;
}

#Footer .fa-social a:hover {
  background: orange;
  border-color: orange;
  fill: #fff;
}

#Footer .logo {
  margin-bottom: 10px;
}

#Footer .logo a {
  display: inline-block;
}

#Footer .ft-para p {
  margin-bottom: 20px;
  text-align: justify;
  width: 90%;

}

#copyright.copyright-option {
  background-color: #001F3F;
  color: #fff;
  width: 100%;

}

#copyright.copyright-option ul li {
  list-style: none;
  display: inline-block;
  margin-right: 30px;

}

#copyright .container-fluid {
  padding: 0px 40px 0px 40px;
}

#copyright ul li:last-child {
  margin-right: 0;
}


#copyright ul li a {
  color: #fff;
}

#copyright .footer-copyright {
  float: inline-end;
}

#copyright ul li a:hover {
  text-decoration: none;
  color: orange;
}


@media only screen and (max-width: 991px) {
  .footer-section .copyright-option ul {
    text-align: center;
    margin-bottom: 10px;
  }

  .footer-section .copyright-option .co-text {
    text-align: center;
  }
}

#Footer .list-contact{
  margin-top: 40px;
}

#Footer .list-contact-map {
  margin-top: 20px;
}

#whatsapp-link {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 999;
}

#whatsapp-link img {
  max-width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

#whatsapp-link img:hover {
  transform: scale(1.1);
}

/* INDEX FILE CSS */

#loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  /* background: url('./assets/images/view/caption.jpg') no-repeat center center; */
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#content #overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

#content #overlay .text-container {
  overflow: hidden;
}




#content #overlay .text-container .text {
  display: inline-block;
  animation: moveText 5s ease-in-out;
  text-align: center;
  color: #fff;
  font-size: 60px;
  text-transform: capitalize;
  font-weight: 300;
  font-family: "Great Vibes", serif;
  font-style: normal;
 word-spacing: 5px;
 letter-spacing: 2px;
  /* text-decoration: wavy; */
  /* font-style: italic; */
}

#content #overlay .booknow {
  border: 6px double #fff;
  background: transparent;
  color: #fff;
  border-radius: 0px;
  padding: 5px 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@keyframes moveText {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }

  50% {
    transform: translateY(0);
    opacity: 1;
  }

}

/* Book now button css */

#booknowbutton {
    padding: 11px 33px;
    text-decoration: none;
    font-size: 25px;
    color: white;
    background: #001F3F;
    transition: 1s;
    box-shadow: 6px 6px 0 black;
    transform: skewX(-15deg);
    border: none;
    cursor: pointer;
}

#booknowbutton:focus {
    outline: none;
}

#booknowbutton:hover {
    transition: 0.5s;
    box-shadow: 10px 10px 0 orange;
}

#booknowbutton .second {
    transition: 0.5s;
    margin-right: 0px;
}

#booknowbutton:hover .second {
    transition: 0.5s;
    margin-right: 45px;
}

#booknowbutton .span{
    transform: skewX(15deg);
}

#booknowbutton .second{
    width: 20px;
    margin-left: 30px;
    position: relative;
    top: 12%;
}

#booknowbutton .one{
    transition: 0.4s;
    transform: translateX(-60%);
}

#booknowbutton .two{
    transition: 0.5s;
    transform: translateX(-30%);
}

#booknowbutton:hover .three{
    animation: color_anim 1s infinite 0.2s;
}

#booknowbutton:hover .one {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.6s;
}

#booknowbutton:hover .two {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.4s;
}

@keyframes color_anim {
    0% {
        fill: white;
    }

    50% {
        fill: orange;
    }

    100% {
        fill: white;
    }
}


#content #video-section {
  position: relative;
  height: 100vh;
  transition: opacity 2s ease-in-out;
  animation: fadein 1s forwards;
}

#content #video-section a:hover {
  background: #00A859;
  cursor: pointer;
}

#content #video-section img,
#content #video-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  transition: opacity 2s ease-in-out;
}


/* BREADCRUMB SLIDER CSS */

#breadcrumbslider{
  position: relative;
  overflow: hidden;
}

#breadcrumbslider .slider-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
}

#breadcrumbslider .booking {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
}

#breadcrumbslider h1 {
  font-size: 3rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 350;
}

#breadcrumbslider p {
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  margin-top: 10px;
  line-height: 1.6;
}

#breadcrumbslider .background-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#breadcrumbslider .background-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

#breadcrumbslider .background-slide.active {
  opacity: 1;
}

#breadcrumbslider .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 5;
}

#breadcrumbslider .content {
  position: relative;
  z-index: 10;
  text-align: center;
}

/* Keyframes for fading background */
@keyframes fade {

  0%,
  20% {
    opacity: 1;
  }

  33% {
    opacity: 1;
  }

  53% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* Booking Page CSS */
#breadcrumbslider #bookform {
  backdrop-filter: blur(5px);
  padding: 20px;
}

#breadcrumbslider #bookform h2 {
  font-size: 30px;
  font-weight: 600;
}

#breadcrumbslider #bookform .border-line {
  width: 100px;
  height: 3px;
  background-color: orange;
  margin: 0 auto 40px auto;
}
#breadcrumbslider .booking .border-line {
  width: 100px;
  height: 3px;
  background-color: orange;
  margin: 0 auto 20px auto;
}


/* Hide the element on mobile devices */
@media (max-width: 767px) {
    #mobilehide {
        display: none !important;
    }
}


/* STATIC PAGE BACKGROUND CSS*/

#staticpagebackground {
  position: relative;
  background-image: url('./dinning/banner.jpg');
  background-size: cover;
  background-position: center;
  height: 50vh;
  /* Full viewport height */
}

#staticpagebackground .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  /* Dark overlay with transparency */
  display: flex;
  justify-content: center;
  align-items: center;
}

#staticpagebackground .text {
  color: white;
  text-align: center;
}

#staticpagebackground .text h1 {
  font-size: 2.5rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  word-spacing: 4px;
  font-weight: 450;
}

#staticpagebackground .text .border-line {
  width: 100px;
  height: 3px;
  background-color: orange;
  margin: 0 auto 0px auto;
}
#staticpagebackground .text .bread {
  color: orange;
  text-decoration: none;
}

#staticpagebackground .text p {
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  margin-top: 10px;
  line-height: 1.6;
}

/* STATIC PAGE CONTENT UNIVERSAL CSS */

#staticpagecontent {
  background-color: #f8f9fa;
  padding: 40px;
}

#staticpagecontent .row {
  padding-top: 25px;
}

#staticpagecontent h3 {
  font-size: 18px;
  text-decoration: underline;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 10px;
}

#staticpagecontent h4 {
  font-size: 17px;
  font-style: italic;
  margin-bottom: 20px;
}

#staticpagecontent p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 350;
  margin-bottom: 15px;
  text-align: justify;
}

#staticpagecontent ul {
  margin-bottom: 15px;
}

#staticpagecontent ul li {
  margin-left: 20px;
  font-size: 16px;
  line-height: 1.5;
}




/* CONTACT US FILE CSS */

#contact-section {
  padding: 20px;
  /* background-color: #F8F9FA; */
  background-color: #f6f6f6;
}

#contact-section .contact-title {
  font-size: 20px;
  text-align: center;
  color: #333;
  text-transform: uppercase;
}


#contact-section .border-line {
  width: 60px;
  height: 3px;
  background-color: orange;
  margin: 0 auto 30px auto;
}

#contact-section .contact-map {
  border: none;
  height: 300px;
}

#contact-section .custom-form .form-control {
  border-radius: 2px;
  padding: 10px;
}


/* Dinning File Css */

#diningbackground {
  position: relative;
  background-image: url('./dinning/banner.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  /* Full viewport height */
}

#diningbackground .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  /* Dark overlay with transparency */
  display: flex;
  justify-content: center;
  align-items: center;
}

#diningbackground .text {
  color: white;
  text-align: center;
}

#diningbackground .text h1 {
  font-size: 3rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 350;
}

#diningbackground .text p {
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  margin-top: 10px;
  line-height: 1.6;
}

#diningabout {
  background-color: #f8f9fa;
  padding: 40px;
}

#diningabout h2 {
  font-size: 30px;
  color: #333;
  font-weight: 600;
}

#diningabout .border-line {
  width: 100px;
  height: 3px;
  background-color: orange;
  margin: 0 auto 20px auto;
}

#diningabout p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin: 0 auto;
}

#diningabout .img-fluid {
  max-width: 100%;
  object-fit: cover;
  height: 300px;
}

@media (max-width: 767.98px) {
  #diningabout .row {
      flex-direction: column;
      text-align: justify;
      /* Center align images on small screens */
  }
}

#diningfamous {
  position: relative;
  color: white;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 40px;
}

#diningfamous .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

#diningfamous .container {
  position: relative;
  z-index: 2;
}

#diningfamous h2 {
  font-size: 30px;
  font-weight: 600;
}

#diningfamous .border-line {
  width: 100px;
  height: 3px;
  background-color: orange;
  margin: 0 auto 20px auto;
}

#diningfamous p {
  font-size: 16px;
  line-height: 1.6;
}



#diningfamous .transparent-card {
  background-color: transparent;
}

#diningfamous .transparent-card img {
  width: 180px;
  height: 180px;
}

#diningfamous .card-body {
  background-color: transparent;
  border-radius: 8px;
  padding: 1.25rem;
}

#diningfamous .carousel-item h5 {
  font-size: 20px;
  color: orange;
  font-weight: 500;
}

#diningfamous .carousel-item p {
  font-size: 16px;
  line-height: 1.6;
}

#diningfamous .carousel-control-prev-icon,
#diningfamous .carousel-control-next-icon {
  background-color: transparent;
}


/* Section styling */
#diningFeatures {
  background-color: #f8f9fa;
  padding: 40px;
}

#diningFeatures h2 {
  font-size: 30px;
  font-weight: 600;
  color: #333;
}

#diningFeatures .border-line {
  width: 100px;
  height: 3px;
  background-color: orange;
  margin: 0 auto 30px auto;
}

#diningFeatures .feature-icon {
  background-color: #001F3F;
  border-radius: 50%;
  padding: 15px;
  width: 75px;
  height: 75px;
  display: inline-block;
}

#diningFeatures h5 {
  margin-top: 5px;
  font-size: 20px;
  color: #333;
  font-weight: 600;
}

#diningFeatures p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin: 0 auto;
}


#dininggallery {
  padding: 40px;
}

#dininggallery h2{
  font-size: 30px;
  font-weight: 600;
}

#dininggallery .card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

#dininggallery .img-container {
  height: 250px;
  overflow: hidden;
}

#dininggallery .card-img-top {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

#dininggallery .card:hover .card-img-top {
  transform: scale(1.05);
}



#dininggallery .card-title {
  font-size: 20px;
  font-weight:600;
  color: #333;
}


#dininggallery .border-line {
  width: 100px;
  height: 3px;
  background-color: orange;
  margin: 0 auto 30px auto;
}

@media (max-width: 767.98px) {
  #dininggallery .row {
      display: flex;
      flex-direction: column;
      align-items: center;
  }
}

/* BLOGS AND ITS VIEW FILE CSS */

#blogs {
  background-color: #f8f9fa;
  padding: 40px 0;
}


#blogs .row {
  padding-top: 25px;
}

#blogs h2 {
  font-size: 30px;
  color: #333;
  font-weight: 600;
}

#blogs .border-line {
  width: 100px;
  height: 3px;
  background-color: orange;
  margin: 0 auto 20px auto;
}

#blogs .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

#blogs .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

#blogs .card-img-top {
  width: 100%;
  height: 250px;
}

#blogs .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

#blogs .card-title {
  font-size: 18px;
  /* font-weight: bold; */
}

#blogs .card-text {
  font-size: 14px;
  flex-grow: 1;
}

#blogs .card-link {
  color: inherit;
  text-decoration: none;
}

#blogs .d-flex {
  align-items: center;
}

#blogs .text-muted {
  font-size: 0.875rem;
  color: #777;
}

#blogs .fa-calendar-alt {
  color: orange;
  font-size: 1rem;
  margin-right: 5px;
}

#blog-view {
  background-color: #ffffff;
  padding: 40px 0;
}


#blog-view .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

#blog-view .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

#blog-view .card-img-top {
  width: 100%;
  height: 500px;
}

#blog-view .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

#blog-view 
.border-line {
  width: 100px;
  height: 3px;
  background-color: orange;
  margin: 0 auto 30px auto;
}

#blog-view .card-title {
  font-size: 18px;
  /* font-weight: bold; */
}

#blog-view .card-text {
  font-size: 16px;
  font-weight: 350;
  flex-grow: 1;
}

#blog-view .card-link {
  color: inherit;
  text-decoration: none;
}

#blog-view .d-flex {
  align-items: center;
}

#blog-view .text-muted {
  font-size: 0.875rem;
  color: #777;
}

#blog-view .fa-calendar-alt {
  color: orange;
  font-size: 1rem;
  margin-right: 5px;
}



/* ABOUT US FILE CSS */

#about-section1 {
  padding: 40px 0;
  background-color: #f8f9fa;
}

#about-section1 h2 {
  font-size: 30px;
  color: #333;
  font-weight: 600;
}

#about-section1 .border-line {
  width: 100px;
  height: 3px;
  background-color: orange;
  margin: 0 auto 30px auto;
}

#about-section1 .row {
  padding-top: 25px;
}

#about-section1 .value-box {
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

#about-section1 .value-box .icon {
  font-size: 40px;
  display: block;
  margin-bottom: 15px;
}

#about-section1 .value-box h4 {
  font-size: 20px;
  font-weight: 500;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 10px;
}

#about-section4 p {
  font-size: 16px;
  color: #555;
}

#about-section2 .row {
  width: 100%;

}

#about-section2 .content-wrapper {
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  height: 100%;
}

#about-section2 h2 {
  font-size: 30px;
  color: #333;
  text-align: center;
  font-weight: 600;
}

#about-section2 .border-line {
  width: 100px;
  height: 3px;
  background-color: orange;
  margin: 0 auto 30px auto;
}

#about-section2 p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  text-align: justify;
}

#about-section2 .image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Icons Section */
#about-section2 .icons-container {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

#about-section2 .icon-box {
  text-align: center;
  padding: 20px;
}

#about-section2 .icon-box img {
  width: 40px;
  height: 40px;
}

#about-section2 .icon-box p {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}

#about-section3 {
  padding: 40px 20px;
  text-align: justify;
  background-color: #f8f9fa;
}

#about-section3 h2 {
  font-size: 30px;
  color: #333;
  text-align: center;
  font-weight: 600;
}

#about-section3 .border-line {
  width: 100px;
  height: 3px;
  background-color: orange;
  margin: 0 auto 30px auto;
}

#about-section3 .row {
  padding-top: 25px;
}

#about-section3 p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  text-align: justify;
}

#about-section3 .carousel-inner img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

#about-section4 {
  padding: 40px 20px;
  text-align: justify;

}

#about-section4 h2 {
  font-size: 30px;
  color: #333;
  text-align: center;
  font-weight: 600;
}

#about-section4 .border-line {
  width: 100px;
  height: 3px;
  background-color: orange;
  margin: 0 auto 30px auto;
}

#about-section4 .row {
  padding-top: 25px;
}

#about-section4 p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  text-align: justify;
}

#about-section4 .feature-description li {
  margin-bottom: 10px;
  color: #555;
}

#about-section4 .feature-box {
  text-align: center;
  margin-bottom: 30px;
}

#about-section4 .feature-box img.icon {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

#about-section4 .feature-box h4 {
  font-size: 16px;
  color: #555;
}


/* EXPERIENCE FILE CSS */

#experience1 {
  padding: 40px 0;
}

#experience1 h2 {
  font-size: 30px;
  color: #333;
  font-weight: 600;
  text-align: center;
}

#experience1 .border-line {
  width: 100px;
  height: 3px;
  background-color: orange;
  margin: 0 auto 30px auto;
}

#experience1 p {
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
}

#experience1 .content-wrapper {
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding: 0.5rem;
}

#experience1 .news-card {
  border: 0px solid aqua;
  margin: 0.5rem;
  position: relative;
  height: 12rem;
  overflow: hidden;
  border-radius: 0.5rem;
  flex: 1;
  min-width: 290px;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
}

@media (min-width: 900px) {

  #experience1 .news-card {
      height: 20rem
  }
}

#experience1 .news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 80%);
  ;
  z-index: 0;
}

#experience1 .news-card__card-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#experience1 .news-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: relative;
  z-index: -1;
}

#experience1 .news-card__text-wrapper {
  position: absolute;
  bottom: 0rem;
  padding: 1rem;
  color: white;
  /*     background-color: rgba(0, 0, 0, 0.4); */
  transition: background-color 1.5s ease;
}

#experience1 .news-card__title {
  transition: color 1s ease;
  font-size: 30px;
  font-weight: 350;
  margin-bottom: .5rem;
}

#experience1 .news-card__post-date {
  font-size: .7rem;
  margin-bottom: .5rem;
  color: #CCC;
}

#experience1 .news-card__details-wrapper {
  max-height: 0;
  opacity: 0;
  transition: max-height 1.5s ease, opacity 1s ease;
}

@media (min-width: 900px) {
  #experience1 .news-card:hover .news-card__details-wrapper {
      max-height: 20rem;
      opacity: 1;
  }

  #experience1 .news-card:hover .news-card__text-wrapper {
      background-color: rgba(0, 0, 0, 0.6);
  }

  #experience1 .news-card:hover .news-card__title {
      color: #ffb607;
  }

  #experience1 .news-card:hover .news-card__image {
      transform: scale(1.2);
      z-index: -1;
  }
}

#experience1 .news-card__excerpt {
  font-weight: 300;
}

#experience1 .news-card__read-more {
  background: black;
  color: #bbb;
  display: block;
  padding: 0.4rem 0.6rem;
  border-radius: 0.3rem;
  margin-top: 1rem;
  border: 1px solid #444;
  font-size: 0.8rem;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-decoration: none;
  width: 7rem;
  margin-left: auto;
  position: relative;
  z-index: 5;
}

#experience1 .news-card__read-more i {
  position: relative;
  left: 0.2rem;
  color: #888;
  transition: left 0.5s ease, color 0.6s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

#experience1 .news-card__read-more:hover i {
  left: 0.5rem;
  color: yellow;
}

#experience2 {
  padding: 40px 0;
  background-color: #f8f9fa;
}

#experience2 h2 {
  font-size: 30px;
  color: #333;
  font-weight: 600;
  text-align: center;
}

#experience2 .border-line {
  width: 100px;
  height: 3px;
  background-color: orange;
  margin: 0 auto 0px auto;
}

#experience3 {
  position: relative;
  color: white;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 40px;
}

#experience3 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

#experience3 .container {
  position: relative;
  z-index: 2;
}

#experience3 h2 {
  font-size: 30px;
  font-weight: 600;
}

#experience3 .border-line {
  width: 100px;
  height: 3px;
  background-color: orange;
  margin: 0 auto 20px auto;
}

#experience3 p {
  font-size: 16px;
  line-height: 1.6;
}


#experience3 h5{
  font-size: 20px;
  color: orange;
  font-weight: 600;
}

#experience3 .card-body p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

#experience3 .card {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

#experience3 .card-img-top {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  display: block;
}

#experience3 .card-body {
  text-align: left;
}


/* GALLERY FILE CSS */

    /* Parent ID based CSS */
    #gallery {
      padding: 40px 0;
      background-color: #f8f9fa;
  }

  #gallery h2 {
      font-size: 30px;
      color: #333;
      font-weight: 600;
      text-align: center;
  }

  #gallery .border-line {
      width: 100px;
      height: 3px;
      background-color: orange;
      margin: 0 auto 30px auto;
  }

  #gallery p {
      font-size: 16px;
      color: #555;
      line-height: 1.6;
      text-align: justify;
  }

  /* Thumbnail styling */
  #gallery .carousel-thumbnails .thumbnail {
      cursor: pointer;
      transition: transform 0.3s ease;
      object-fit: cover;
      width: 100%;
      height: 80px;
      /* Make thumbnails equal size */
  }

  #gallery .carousel-thumbnails .thumbnail:hover {
      transform: scale(1.1);
  }

  /* Carousel Styling */
  #gallery .carousel-inner img {
      /*object-fit: cover;*/
       object-fit: contain;
      height: 500px;
      /*background-color: #f6f6f6;*/
  }

  #gallery .carousel-thumbnails .row {
      margin-top: 20px;
  }

  /* Make the thumbnails equal size and center the container */
  #gallery .carousel-thumbnails .col-2 {
      padding: 5px;
  }

  /* Ensuring equal spacing between thumbnails */
  #gallery .carousel-thumbnails .thumbnail {
      width: 100%;
  }
  
  

