.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}


:root {
  --primary-color:        #820000;
  --secondary-color:      #005082;
  --tertiary-color:       #005082;
  --fourth-color:         #C5C362;
  --lighter-red:          #D74848;
  --white-color:          #eeeeee;
  --dark-color:           #171819f1;
  --about-bg-color:       #f9f9f9;

  --gray-color:           #909090;
  --link-color:           #404040;
  --p-color:              #797979;

  --base-font-family:     'Plain', sans-serif;
  --font-weight-bold:     bold;
  --font-weight-normal:   normal;
  --font-weight-thick:    700;
  --font-weight-light:    300;
  --font-weight-thin:     100;

  --h1-font-size:         48px;
  --h2-font-size:         36px;
  --h3-font-size:         28px;
  --h4-font-size:         24px;
  --h5-font-size:         22px;
  --h6-font-size:         22px;
  --p-font-size:          18px;
  --base-font-size:       16px;
  --menu-font-size:       14px;

  --border-radius-large:  100%;
  --border-radius-small:  2px;
}


body {
  background: #fff;
  font-family: "Poppins";
  font-weight: normal;
}

body, html {
  font-family: "Poppins";
}

#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  width: 0%;
  background-color: var(--primary-color); 
  z-index: 1000;
  transition: width 0.25s ease-out;
}

h1,h2,h3,h4,h5,h6 {
  font-weight: var(--font-weight-thin);
  line-height: normal;
 
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
  text-transform: uppercase;
  margin: 20px 0;
  color: var(--dark-color);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: -2px;
  color:var(--white);
  
}

h3 {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
  margin: 0;
  color: var(--primary-color);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  color: var(--dark-color);
  font-size: var(--h6-font-size);
  line-height: inherit;
  margin: 0;
  color: #fff;
}

p {
  color: #fff;
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
  line-height: 1.5em;
}

b, 
strong {
  font-weight: var(--font-weight-bold);
  letter-spacing: 0;
}

.section {
  padding: 3rem 0; 
  background: linear-gradient(135deg, rgb(29, 17, 17), rgb(73, 0, 0));
  padding-bottom: 8%;
}

@media only screen and (max-width: 768px) {
  .section {
    padding-bottom: 35%; 
  }
}

/* BUTTON */

.custom-btn {
  background: transparent;
  border-radius: var(--border-radius-small);
  padding: 14px 24px;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-normal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.custom-btn:hover {
  color: var(--primary-color);
}

.custom-btn:focus {
  box-shadow: none;
}

.custom-btn.bordered:hover,
.custom-btn.bordered:focus,

.custom-btn.bg-color:hover,
.custom-btn.bg-color:focus {
  background: var(--white-color);
  border-color: transparent;
  color: var(--primary-color);
}

.bordered {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.bg-color {
  background: var(--primary-color);
  color: var(--white-color);
}



/*---------------------------------------
   GENERAL               
-----------------------------------------*/

/*splash screen*/
#splash-screen {
z-index: 99999;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #ffffff;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
transition: opacity 0.5s ease;
pointer-events: none;
}

#splash-screen.hidden {
opacity: 100;
pointer-events: none;
}

#splash-screen img {
width: 100px; 
height: 100px;
border-radius: 50%; 
object-fit: cover; 
margin-bottom: 20px; 
transform: scaleX(1);
}



* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: var(--link-color);
  font-weight: normal;
  text-decoration: none;
  transition: all 0.3s ease;
}


/* BG OVERLAY */

.bg-overlay {
  background: rgba(0, 0, 0, 0.658);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.80;
}




/*---------------------------------------
  FEATURE          
-----------------------------------------*/

.overview-container{
  border-left: 3px solid;
  padding-left: 2.2rem
}

.feature {
  background: #ffffff;
  padding: 5rem 0;

}

.feature-h6 {
  word-break: break-word;
  overflow-wrap: break-word;
  text-justify: inter-word;
  letter-spacing: 0.3px;
  word-spacing: 1px;
  max-width: 90%; 
  font-size: 1.2rem;
  margin-left: 0; 
  line-height: 1.5; /* Added line height */
}

.feature-p {
  color: var(--dark-color);
  /* text-align: justify;  */
  font-size: 1rem;
  line-height: 1.5;
  max-width: 90%; 
  margin-left: 0; 
}

.feature p {
  color: var(--dark-color);
  font-size: 1rem; 
  line-height: 1.5;
  margin-left: 0; 
}

.award-thumb {
  position: relative;
  
}

.img-award {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
  filter: saturate(1.5);
  box-shadow: rgba(0, 0, 0, 0.17) 0px -10px 20px 0px inset, 
              rgba(0, 0, 0, 0.15) 0px -20px 25px 0px inset, 
              rgba(0, 0, 0, 0.1) 0px -50px 30px 0px inset, 
              rgba(0, 0, 0, 0.06) 0px 2px 1px 0px, 
              rgba(0, 0, 0, 0.09) 0px 4px 2px 0px, 
              rgba(0, 0, 0, 0.09) 0px 8px 4px 0px;
  background: linear-gradient(135deg, rgb(29, 17, 17), rgb(73, 0, 0));
}

/* Responsive adjustments for mobile devices */
@media (max-width: 768px) {
  .feature {
    padding: 2rem;
  }

  .feature h2 {
    font-size: 2rem;
    text-align: center;
    margin-right: 10px;
  }

  .feature-h6 {
    text-align: left; 
    margin-left: 0; 
    max-width: 95%; 
    word-spacing: 0.8px;
    letter-spacing: 0.2px;
    font-size: 1.2rem;
  }

  .feature-p {
    font-size: 0.9rem; 
    line-height: 1.4; 
  }

  .img-award {
    border-radius: 10px;
    filter: saturate(1.2);
    box-shadow: rgba(0, 0, 0, 0.12) 0px -5px 15px 0px inset, 
                rgba(0, 0, 0, 0.1) 0px -10px 20px 0px inset;

}
}
/* Adjustments for very small screens */
@media (max-width: 480px) {
  .feature-h6 {
    text-align: left; 
    word-spacing: normal;
    line-height: 1.5;
    font-size: 1rem;
    margin-left: 0; 
  }

  .feature h2 {
    font-size: 1.9rem;
  }

  .feature-p {
    font-size: 0.85rem !important; 
    line-height: 1.3; 
  }

  .img-award {
    border-radius: 8px;
    filter: saturate(1.1);
    box-shadow: none;
}
}





/*---------------------------------------
   MENU             
-----------------------------------------*/

.navbar {
  background: rgba(255, 255, 255, 0); 
  padding: 1rem;
  padding-bottom:.7rem;
  box-shadow: none;
  transition: background 0.3s, top 0.3s;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar.scrolled {
  top: -100px; 
  transition: top 0.3s;
}

.navbar:hover {
  background: rgba(255, 255, 255, 0.9); 
  color: #9b0000;
}

.navbar.transparent {
  background: rgba(234, 239, 248, 0); 
  box-shadow: none; 
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 1rem;
  padding-left: 1rem;
}

.navbar:hover .navbar-brand{
  color: #000;
}

.navbar:hover .nav-link{
  color: #000;
}

.navbar:hover .nav-link.active{
  color: #9b0000;
}

.navbar-brand {
  color: var(--white-color);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  line-height: normal;
  text-transform: uppercase;
  padding-left: .5rem;
}

.navbar-brand:hover {
  color: var(--primary-color);
}

.nav-item .nav-link {
  display: block;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-thick);
  text-transform: uppercase;
  padding: 2px 6px;
}


.nav-item .nav-link:hover {
  color: #9b0000;
}

.navbar .social-icon li a {
  color: var(--white-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0 10px 0 0;
  width: 25px;
  height: 35px;
  outline: none;
  position: relative;
  top: 0; 
  left: 7px; 
}

.navbar-collapse {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  text-align: center;
}

.navbar-collapse.show {
  display: flex;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.navbar-toggler:focus {
  outline: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background: var(--white-color);
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

.navbar:hover .navbar-toggler-icon {
  background: var(--dark-color);
}

.navbar:hover .navbar-toggler-icon::before,
.navbar:hover .navbar-toggler-icon::after {
  background: var(--dark-color);
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

@media only screen and (max-width: 768px) {
  
   .navbar {
    background: rgba(255, 255, 255, 1); 
    color: #000; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding-bottom: 5px;
   }

 
  .nav-item .nav-link {
    color: #000 !important; 
  }

  .navbar-brand {
    color: #000;
    font-size: 22px;
    margin-left: 3px;
  }

  .navbar-toggler .navbar-toggler-icon {
    background-color: #000; 
  }

  .navbar.scrolled {
    top: -190px; 
    transition: top 0.3s;
  }

  .navbar-brand {
    color: #000;
  }

  .navbar-toggler {
    color: #000;
    width: 20px;
    height: 30px;
  }

 
  .navbar:hover {
    background: rgba(255, 255, 255, 0.9); 
    color: #000;
  }

  .navbar:hover .navbar-brand {
    color: #000;
  }

  .navbar:hover .nav-link {
    color: inherit; 
  }

  .navbar:hover .navbar-toggler-icon {
    background: var(--dark-color);
  }
  .navbar-toggler .navbar-toggler-icon::before,
  .navbar-toggler .navbar-toggler-icon::after {
    background-color: #000; 
  }

  .navbar:hover .navbar-brand,
  .navbar:hover .nav-item .nav-link {
    color: #000; 
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent; 
  }
}


/*HERO*/

@media only screen and (max-width: 768px) {
  .hero-section {
    height: 50vh !important;
   
  }
  .hero-section .content {
    position: relative;
    bottom: 0;
    left: 13rem !important;
    text-align: center;
  }

  .hero-section .topper {
    font-size: .8rem !important;
  }
  .hero-section .title {
    font-size: clamp(1rem, 2vw, 1.9rem) !important;

  }
}

@media only screen and (min-width: 0rem) {
  .hero-section {
    text-align: center;
    padding: clamp(6rem, 8vw, 6rem) 1rem clamp(4rem, 6vw, 6rem); 
    overflow: hidden;
    position: relative;
    z-index: 1;
    height: 85vh;
  }

  .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .2);
    z-index: -1;
  }
  .hero-section .container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .hero-section .content {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    text-align: right;
    padding: 5px;
    bottom: 0rem;
    right: -2rem; 

  }
  .hero-section .topper {
    font-size: 2rem;
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 0.25rem;
  }
  .hero-section .title {
    font-size: clamp(1.2rem, 3.4vw, 2.2rem);
    font-weight: 900;
    line-height: 1.2em;
    text-align: center;
    max-width: 20ch;
    margin: 0 0 0.8rem 0;
    color: var(--white-color);
    position: relative;
    padding: 5px;
  }
  .hero-section .description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.5em;
    text-align: center;
    width: 100%;
    max-width: 33.1875rem;
    color: var(--white-color);
  }

  .hero-section .hero-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    overflow: hidden;
    filter: saturate(1.8);
    
  }
  .hero-section .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

@media only screen and (min-width: 64rem) {
  .hero-section {
    padding: 15rem 6rem clamp(3rem, 8vw, 5rem);
    text-align: left;
    position: relative;
  }
  .hero-section .container {
    flex-direction: row; 
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }
  .hero-section .content {
    width: 50%; 
    order: 2; 
    position: absolute;
    bottom: 0rem;
    right: -5rem; 
    text-align: right;
   
  }
  .hero-section .hero-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    overflow: hidden;
  }
  .hero-section .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

.hero-carousel {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-carousel .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.8);
}

.hero-section .anniv-logo {
  width: 150px;
  height: auto;
  position: relative;
  z-index: 5;
  overflow: hidden;
  filter: saturate(5);
  align-items: center;
  padding: 0;
  
}

@media screen and (max-width: 1024px) {

  .hero-section .content {
    bottom: 0rem;
    margin-right: 50px; 
  }
}

@media screen and (max-width: 769px) {
  .hero-section .content {
    bottom: 0rem;
    right: -25rem; 
  }

  .hero-section .title {
    font-size: 1.5rem !important;
  }
}

@media screen and (max-width: 590px) {
  .hero-section .content {
    bottom: 0rem;
    right: -5rem; 
  }

  .hero-section .anniv-logo {
    width: 100px;
    right: 1rem;
  }

  .hero-section .title {
    font-size: 1.2rem !important;
  }
}

@media screen and (max-width: 480px) {
  .hero-section .content {
    bottom: 0rem;
    right: -2rem; 
  }
  .hero-section .title {
    font-size: 1rem !important;
  }
  
  .hero-section .anniv-logo {
    width: 70px;
    right: 0rem;
  }
}

@media (max-width: 768px) { /* Adjust for mobile screens */
  .hero-carousel .swiper-slide img {
    width: 100%;
    height: 50%;
    margin-top: 50px;
    object-fit: cover;
  }
}


.logo-image{
  height: 35px;
  width: 35px;
}

.border-radius {
  border-radius: 15px; 
  overflow: hidden; 
}

.img-fluid {
width: 100%;         
height: 300px;        
object-fit: cover; 
transition: all 0.3s ease;
margin-top: 30px;
filter: saturate(1.5);
box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px 0px, rgba(0, 0, 0, 0.09) 0px 4px 2px 0px, rgba(0, 0, 0, 0.09) 0px 8px 4px 0px, rgba(0, 0, 0, 0.09) 0px 16px 8px 0px, rgba(0, 0, 0, 0.09) 0px 32px 16px 0px;
}

.img-about {
  width: 100%;         
  height: auto;    
  display: flex;
  align-items: center;   
  justify-content: center;
  object-fit: cover;    
  border-radius: 15px;
  transition: all 0.3s ease;
  margin-top: 60px; 
  filter: saturate(1.8);
  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, 
              rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, 
              rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, 
              rgba(0, 0, 0, 0.06) 0px 2px 1px 0px, 
              rgba(0, 0, 0, 0.09) 0px 4px 2px 0px, 
              rgba(0, 0, 0, 0.09) 0px 8px 4px 0px, 
              rgba(0, 0, 0, 0.09) 0px 16px 8px 0px, 
              rgba(0, 0, 0, 0.09) 0px 32px 16px 0px;
}

.about-row {
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  
}

.about-section {
  padding: 4rem 0; 
  background: linear-gradient(135deg, rgb(29, 17, 17), rgb(73, 0, 0));
  padding-bottom: 4rem;
}

.team-thumb {
  position: relative;
}

@media only screen and (max-width: 768px) { 
.about-row h2{
  font-size: 2rem;
  text-align: center;

}
.about-row p{
  font-size: 1rem;
  padding-left: 20px;
  padding-right: 20px;
}

.img-about {
  margin-top: 2px; 
}
.feature-h2 {
  font-size: 29px !important;
  justify-content: center;
}

.about-details{
  text-align: center;
}
}

@media only screen and (max-width: 360px) { 
  .hero-section .topper {
    font-size: .6rem;
  }

  .hero-section .title {
    font-size: .5rem !important; 
  }

  button {
    height: auto;
    width: 1rem;
  }

  .about-row{
    display: none;
  }
}


/*CLASS*/

.class-info {
  background: var(--white-color);
  box-shadow: 6px 0 38px rgba(20, 20, 20, 0.10);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding: 1rem 2rem;
  position: relative;
  height: 400px; 
  box-sizing: border-box; 
}

.class-info img {
  border-radius: 2px 2px 0 0;
}

.class-info strong {
  color: var(--dark-color);
}

.class-thumb {
  width: 100%;
  max-height: 69rem;
  height: 50%;
}

/*---------------------------------------
   Project           
-----------------------------------------*/

.project-section {
  padding: 3rem 0; 
  background: linear-gradient(135deg, rgb(29, 17, 17), rgb(73, 0, 0));
  padding-bottom: 8%;
}

@media only screen and (max-width: 768px) {
  .project-section {
    padding-bottom: 15%; 
  }

  .project-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-right: 10px;
  }

  .project-section h6 {
    font-size: 1rem;
    text-align: center;
    margin-right: 10px;
  }

  .project-section h3 {
    font-size: 1.5rem;
  }

  .project-section strong {
    font-size: 1rem;
  }
  
  .project-section p {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 1200px) and (min-width: 769px) {
  .project-text {
    font-size: .9rem;
  }
}

/* Section Title */
.section-services .subheading-text {
margin-bottom: 90px;
}

.section-centered {
display: block;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
}

.section-centered h2 {
font-size: 2vw;
margin-top: 1%;
margin-bottom: 1%;
}

.section-centered a {
margin: 0 auto;
margin-top: 10px;
margin-bottom: 15px;
}

.mobile-arrow-button{
  display: none;
}

@media screen and (max-width: 768px) {
  .mobile-arrow-button {
    display: block;
    position: absolute; 
    bottom: 10px; 
    left: 50%; 
    transform: translateX(-50%); 
    color: white;
    padding: 10px;
  }
  
}

@media (max-width: 480px) {
  .container-fluid {
    padding-left: 5px;
    padding-right: 5px;
  }
  
  .row {
    margin-left: -5px;
    margin-right: -5px;
  }
  
  .col-12 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.ship-card {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  border: none;
  box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}

.ship-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}

.ship-card .card-header {
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
  padding: 14px 18px;
  border-bottom: none;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.ship-card .card-body {
  padding: 16px;
  background-color: #fff;
}

.ship-card img {
  height: 260px; 
  object-fit: cover;
  width: 100%;
  filter: saturate(1.5);
  transition: transform 0.5s ease;
}

.ship-card:hover img {
  transform: scale(1.03);
}

.card-text {
  font-size: 1rem;
  color: #333 !important;
  margin: 8px 0;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.card-img-top{
  height: 320px !important;
}

.ship-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid transparent;
  border-radius: 12px;
  transition: border-color 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.ship-card:hover::before {
  border-color: var(--primary-color);

}

.fa-up-right-and-down-left-from-center {
  transition: transform 0.3s ease;
  opacity: 0.9;
}

.ship-card:hover .fa-up-right-and-down-left-from-center {
  transform: scale(1.2);
  opacity: 1;
}

.category-title {
  color: var(--primary-color);
  margin-bottom: 25px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--primary-color);
  font-weight: 700;
  position: relative;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
}

.category-title:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 4px;
  background-color: var(--primary-color);
}

.modal-content {
  border-radius: 16px;
  overflow: hidden;
  border: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  max-height: 100%;
}

.modal-header {
  background-color: var(--primary-color);
  color: white;
  border-bottom: none;
  padding: 18px 24px;
}

.modal-header .close {
  color: white;
  opacity: 0.9;
  text-shadow: none;
  font-size: 2rem;
  padding: 0;
  margin: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.modal-header .close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.modal-body {
  padding: 0;
}

@media screen and (max-width: 992px) {
  .image-carousel{
    height: 300px !important;
  }
}

.carousel-item {
  background-color: #f8f8f8;
  transition: transform 0.6s ease-in-out;
}

/* Enhanced navigation controls */
.carousel-control-prev, .carousel-control-next {
  width: 8%;
  opacity: 1;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  position: relative;
}

/* Custom arrow design */
.carousel-control-prev-icon:after, .carousel-control-next-icon:after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-top: 3px solid white;
  border-right: 3px solid white;
  position: absolute;
}

.carousel-control-prev-icon:after {
  transform: rotate(-135deg);
  left: 20px;
}

.carousel-control-next-icon:after {
  transform: rotate(45deg);
  right: 20px;
}

.carousel-control-prev:hover .carousel-control-prev-icon, 
.carousel-control-next:hover .carousel-control-next-icon {
  transform: scale(1.1);
  background-color: var(--maroon-dark, #8b0000);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Hide default background images */
.carousel-control-prev-icon, .carousel-control-next-icon {
  background-image: none;
}

/* Make navigation more accessible on smaller screens */
@media (max-width: 768px) {
  .carousel-control-prev, .carousel-control-next {
    width: 12%;
  }
  
  .carousel-control-prev-icon, .carousel-control-next-icon {
    width: 40px;
    height: 40px;
  }
  
  .carousel-control-prev-icon:after, .carousel-control-next-icon:after {
    width: 12px;
    height: 12px;
  }
}

/* Improved indicators */
.carousel-indicators {
  bottom: -10px;
  margin-bottom: 15px;
}

.carousel-indicators li {
  background-color: rgba(var(--primary-color-rgb, 128, 0, 0), 0.4);
  height: 10px;
  width: 10px;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.carousel-indicators li.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
  width: 12px;
  height: 12px;
}

.ship-info {
  padding: 10px 10px;
  background-color: white;
  font-weight: 500;
}

.ship-specs {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
  padding-bottom: 15px;
}

.ship-spec {
  padding: 10px 18px;
  background-color: #f5f5f5;
  border-radius: 30px;
  margin-right: 12px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #333;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ship-spec:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.ship-spec span {
  font-weight: 600;
  color: var(--primary-color);
}

.btn-maroon {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 24px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn-maroon:hover {
  background-color: var(--maroon-dark, #8b0000);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.modal-footer {
  border-top: 1px solid #eeeeee;
  padding: 18px 24px;
}

.category-title {
  color: var(--primary-color);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-color);
  font-weight: 700;
  position: relative;
}

.category-title:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 4px;
  background-color: var(--primary-color);
}

.ship-category {
  margin-bottom: 40px;
}

.modal-ship-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark-color, #333);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

/* Animation for modal opening */
.modal.fade .modal-dialog {
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal.show .modal-dialog {
  transform: scale(1);
  opacity: 1;
}

/* gallery Item Styles */
@media only screen and (min-width: 0rem) {
.gallery-section {
    padding: 3rem 2rem 0rem 2rem;
    position: relative;
    overflow: hidden; 
    background: #fff;
}
.gallery-section .gallery-container {
    width: 100%;
    max-width: 69rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.gallery-section .gallery-content {
    text-align: center; 
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.gallery-section .image-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1rem, 1.5vw, 1.25rem); 
    filter: saturate(1);
}
.gallery-section .image-item {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    margin: 0;
    position: relative;
    display: block;
}
.gallery-section .image-item:hover .hover-box {
    opacity: 1;
}
.gallery-section .image-item:hover .hover-icon {
    transform: rotateY(0); 
}
.gallery-section .image-item:hover .hover-title {
    opacity: 1;
    transform: translateY(0); 
}
.gallery-section .image-item:hover .hover-text {
    opacity: 1;
    transform: translateY(0); 
    padding: 10px;
    outline: 2px solid #ffffff;
    border-radius: 5px;

}
.gallery-section .image {
    margin: auto;
    width: 100%;
    height: 100%;
    display: block;
    position: relative;

}
.gallery-section .image img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: saturate(1.5);
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px 0px, rgba(0, 0, 0, 0.09) 0px 4px 2px 0px, rgba(0, 0, 0, 0.09) 0px 8px 4px 0px, rgba(0, 0, 0, 0.09) 0px 16px 8px 0px, rgba(0, 0, 0, 0.09) 0px 32px 16px 0px;
   
}
.gallery-section .hover-box {
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 1em;
    background-color: #1f509aa2;
    opacity: 0;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box; 
    perspective: 700px; 
    top: 0;
    left: 0;
    z-index: 10;
    pointer-events: none; 
    transition: opacity 0.3s;
    border-radius: 15px;
}
.gallery-section .hover-icon {
    width: clamp(3.125rem, 5vw, 3.75rem); 
    height: clamp(3.125rem, 5vw, 3.75rem);
    margin-bottom: clamp(1rem, 5vw, 2rem); /* 16px - 32px */
    border-radius: 50%;
    background-color: #fff;
    outline: 0.5rem solid rgba(255, 255, 255, 0.7);
    transform: rotateY(90deg); 
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex: none;
    transition: transform 0.5s;
}
.gallery-section .hover-icon img {
    width: 1.25rem;
    height: 1.25rem;
    
}
.gallery-section .hover-title {
    font-size: clamp(1.5rem, 2vw, 1.5625rem); /* 20px - 25px */
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 auto;
    max-width: 16.875rem;
    color: #fff;
    opacity: 0;
    transform: translateY(0.625rem); /* Start slightly below */
    margin-bottom: 0.5rem;
    transition: opacity 0.3s, transform 0.3s ease-out;
    transition-delay: 0.1s;
}
.gallery-section .hover-text {
    font-size: clamp(0.8125rem, 1vw, 1rem); /* 13px - 16px */
    line-height: 1.5em;
    margin: 0 auto;
    max-width: 16.875rem;
    color: #fff;
    opacity: 0;
    transform: translateY(0.625rem); /* Start slightly below */
    transition: opacity 0.3s, transform 0.3s ease-out;
    transition-delay: 0.2s;
}
}

/* In Between - 600px */
@media only screen and (min-width: 37.5rem) {
.gallery-section .image-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 1fr;
}
.gallery-section .image-item {
    grid-column: span 6;
}
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
.gallery-section .image-item {
    grid-column: span 4;
}
}

@media only screen and (max-width: 768px) {
  .gallery-section .gallery-title {
    font-size: 2rem;
    text-align: center;
  }
  .gallery-section .gallery-text {
    font-size: 1rem;
    text-align: justify;
    
  }
}



/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
#service-highlight-1716 {
  padding: var(--sectionPadding);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#service-highlight-1716 .sh-container {
  width: 100%;
  max-width: 80rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(3rem, 6vw, 4rem);
}
#service-highlight-1716 .sh-content {
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#service-highlight-1716 .sh-text {
  margin-bottom: 1rem;
}
#service-highlight-1716 .sh-text:last-of-type {
  margin-bottom: clamp(2rem, 7vw, 4rem);
}
#service-highlight-1716 .sh-text:last-of-type:before {
  content: '';
  width: 100%;
  height: 80%;
  background: var(--primary);
  opacity: .1;
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  z-index: -1;
}
#service-highlight-1716 .sh-button-solid {
  font-size: 1rem;
  /* 46px - 56px */
  line-height: clamp(2.875rem, 5.5vw, 3.5rem);
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  margin: 0;
  color: #fff;
  min-width: 9.375rem;
  padding: 0 1.5rem;
  background-color: var(--primary);
  display: inline-block;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
#service-highlight-1716 .sh-button-solid:before {
  content: '';
  position: absolute;
  height: 100%;
  width: 0%;
  background: #000;
  opacity: 1;
  top: 0;
  left: 0;
  z-index: -1;
  transition: width .3s;
}
#service-highlight-1716 .sh-button-solid:hover:before {
  width: 100%;
}
#service-highlight-1716 .sh-gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  order: -1;
}
#service-highlight-1716 .sh-picture {
  width: 100%;
  height: 100vw;
  max-height: 25rem;
  display: block;
  position: relative;
  z-index: 1;
  grid-column: span 4;
}
#service-highlight-1716 .sh-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
#service-highlight-1716 .sh-container {
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
#service-highlight-1716 .sh-content {
  max-width: 19rem;
  padding-bottom: clamp(2rem, 7vw, 4rem);
}
#service-highlight-1716 .sh-text:last-of-type {

  position: relative;
  z-index: 1;
}
#service-highlight-1716 .sh-text:last-of-type:before {
  width: 250vw;
  height: 100vw;
  top: calc(100% + 1.8rem);
  left: 50%;
  transform: translateX(-50%);
}
#service-highlight-1716 .sh-gallery {
  height: auto;
}
#service-highlight-1716 .sh-picture {
  height: 100%;
  max-height: 100%;
  /* 280px - 420px */
  min-height: clamp(17.5rem, 37vw, 26.25rem);
}
}



/* Button Group - Center Alignment */
.button-group {
display: flex;
justify-content: center; 
align-items: center; 
flex-wrap: wrap; 
gap: 10px; 
margin: 0 auto; 
max-width: 100%; 
text-align: center; 
}


.section-services {
display: flex;
justify-content: center;
align-items: center;
height: 100vh; 
}

/* Button Styles */
.btn-gray {
background-color: #fff;
color: var(--primary-color);
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
padding: 10px 20px;
border-radius: 20px;
text-transform: uppercase;
cursor: pointer;
transition: background-color 0.3s, color 0.3s;
}

/* Active Button */
.btn-gray.active,
.btn-gray:hover {
background-color: var(--primary-color);
color: #fff;
}


/* Service Title */
.service-title {
margin: 35px 0 25px;
font-size: 13px;
text-transform: uppercase;
color: var(--primary-color);
}

.service-info {
font-size: 13px;
padding-bottom: 3%;
}

.load-more-btn {
background-color: #fff;
color: var(--primary-color);
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
padding: 10px 20px;
border-radius: 20px;
text-transform: uppercase;
cursor: pointer;
transition: background-color 0.3s, color 0.3s;
display: inline-flex; 
justify-content: center;
align-items: center;
}


.text-center {
width: 100%;             
margin-top: 20px;        
}

/*ABOUT & ship*/

.about {
  background: linear-gradient(135deg, rgb(0, 0, 0), rgb(73, 0, 0));
  padding-bottom: 3.5rem;
}

.about-overview {
  width: 160%; 
  height: auto; 
  border-radius: 8px !important; 
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
  filter: saturate(1) !important;
  position: relative;
  padding: 1;
}

button.learn-more {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  background: transparent;
  font-size: inherit;
  font-family: inherit;
  margin-left: 11.5rem;
  top: 1rem;
}

@media only screen and (max-width: 1199px) {
  button.learn-more {
    margin-left: 8.5rem;
    top: -6rem;
  }
}

@media only screen and (max-width: 991px) {
  button.learn-more {
    margin-left: 5.3rem;
    top: -17rem;
  }

  .about-award {
    border-left: 3px solid;
    height: 50%;
  }

  .overview-container {
    border-left: none;
  }

}
@media only screen and (max-width: 768px) {
 
  button.learn-more {
    left: -.9rem;
    top: -14rem;
  }
}

@media only screen and (max-width: 767px) {
 
  button.learn-more {
    left: 4rem;
    top: .5rem;
  }
}

@media only screen and (max-width: 558px) {
  button.learn-more {
   left: 4rem;
   top: -.6rem;

  }
}

@media only screen and (max-width: 500px) {
  button.learn-more {
    left: 1.5rem;
    top: -.6rem;

  }

  .about-award {
    padding-left: 2.5rem;
    padding-right: 1.5rem;
    justify-content: center;
    align-items: center;
    width:100%;
  }
}

@media only screen and (max-width: 480px) {
  button.learn-more {
    left: -1.6rem;
    top: -.5rem;
  }
  .about-award {
    height: 0;
  }
}

button.learn-more {
  width: 13rem;
  height: auto;

}

button.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: black;
  border-radius: 1.625rem;
}

button.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: white;
}

button.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}

button.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: '';
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}

button.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 1.9rem;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0;
  color: black;
  font-weight: 700;
  line-height: 1.6;
  text-transform: uppercase;
}

button:hover .circle {
  width: 100%;
}

button:hover .circle .icon.arrow {
  background: white;
  transform: translate(1rem, 0);
}

button:hover .button-text {
  color: white;
}

.about-award {
  padding-left: 2.5rem;
  padding-right: 1.5rem;
  justify-content: center;
  align-items: center;
  width:100%;
  height: 90%;
}

.about-award strong {
  color: var(--dark-color);
  opacity: 0.85;
}




/* timeline */

.timeline-section {
  --white: #fff;
  --black: #323135;
  --columbia-blue: #cee9e4;
  --timeline-gradient: rgba(206, 233, 228, 1) 0%, rgba(206, 233, 228, 1) 50%, rgba(206, 233, 228, 0) 100%;
  background: #fff;
  padding-bottom: 60px;
}

.timeline-section * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.timeline-section button {
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
}

.timeline-section a {
  color: inherit;
}

.timeline-section img {
  max-width: 100%;
  height: auto;
}

.timeline-section .section {
  padding: 50px;
  background: #fff;
  
}

.timeline-section .section .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  
}

.title-content {
  margin-bottom: 4px;
  font-weight: 500;
}

.timeline-section .section h1 {
  font-size: 2.5rem;
  line-height: 1.25;
  color: var(--primary-color);
}

.timeline-section .section h2 {
  font-size: 1.3rem;
}

.timeline-section .timeline {
  position: relative;
  white-space: nowrap;
  max-width: 1400px;
  padding: 0 10px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px auto;
  grid-gap: 20px;
 
}

.timeline-section .timeline::before,
.timeline-section .timeline::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 30px;
  width: 100px;
  z-index: 2;
}

.timeline-section .timeline::after {
  right: 0;
}

.timeline-section .timeline .info {
  display: flex;
  flex-direction: column;
  padding: 20px 30px;
  color: var(--white);
  background: #ffffff;
  white-space: normal;
  border-radius: 10px;
  height: auto;
  box-shadow: 0 -19px 38px rgba(0,0,0,0.30), 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}

.timeline-section .timeline .info img {
  margin-bottom: 5px;
  border-radius: 10px;
}

.timeline-section .timeline .info p {
  margin-top: 10px;
  color: #000;
  font-size: 16px;
   
}

.timeline-section .timeline .info a {
  text-decoration: none;
}

.timeline-section .timeline ol::-webkit-scrollbar {
  height: 12px;
}

.timeline-section .timeline ol::-webkit-scrollbar-thumb,
.timeline-section .timeline ol::-webkit-scrollbar-track {
  border-radius: 92px;
}


.timeline-section .timeline ol {
  font-size: 0;
  padding: 300px 0;
  transition: all 1s;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scrollbar-color: #a3a3a3 #e6e6e6;
  scrollbar-width: 100px;
  
  
}

@media (max-width: 768px) {
  .timeline-section .timeline ol {
    scrollbar-width: thick;
  }
  .timeline-section .timeline ol::-webkit-scrollbar {
    height: 12px;
  }
  .timeline-section .timeline ol::-webkit-scrollbar-thumb {
    background-color: #a3a3a3;
    border-radius: 10px;
  }
  .timeline-section .timeline ol::-webkit-scrollbar-track {
    background-color: #e6e6e6;
    border-radius: 10px;
  }
}


.timeline-section .timeline ol li {
  position: relative;
  display: inline-block;
  list-style-type: none;
  width: 200px;
  height: 5px;
  background: var(--black);
  scroll-snap-align: start;
}

.timeline-section .timeline ol li:last-child {
  width: 200px;
}

.timeline-section .timeline ol li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + -150px);
  bottom: 0;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--primary-color);
  z-index: 1;
}

.timeline-section .timeline ol li div {
  position: absolute;
  left: calc(100% + -150px);
  width: 320px;
  padding: 15px;
  font-size: .85rem;
  white-space: normal;
  color: var(--white-color);
  border-radius: 0 10px 10px 10px;
  height: 205px;
}

.timeline-section .timeline ol li div::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
}

.timeline-section .timeline ol li:nth-child(odd) div {
  top: -16px;
  transform: translateY(-100%);
  border-radius: 10px 10px 10px 0;
  background: var(--primary-color);
  box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
  height: 250px;

 
}

.timeline-section .timeline ol li:nth-child(odd) div::before {
  top: 100%;
  border-width: 8px 8px 0 0;
  border-color: var(--white) transparent transparent transparent;
}

.timeline-section .timeline ol li:nth-child(even) div {
  top: calc(100% + 16px);
  background: var(--primary-color);
  box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
  height: 250px;
}

.timeline-section .timeline ol li:nth-child(even) div::before {
  top: -8px;
  border-width: 8px 0 0 8px;
  border-color: transparent transparent transparent var(--white);
}

.timeline-section .timeline time {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 3px;
  color: var(--white-color);
}


@media screen and (max-width: 768px) {

  .timeline-section .section h1 {
    font-size: 2rem;
    width: 100%;
    color: var(--primary-color);
  }

  .timeline-section .timeline {
    display: block;
  }

  .timeline-section .timeline::before,
  .timeline-section .timeline::after {
    width: 50px;
  }

  .timeline-section .timeline::before {
    left: 10;
  }

  .timeline-section .timeline .info {
    display: flex;
    
  }

  .timeline-section .timeline ol li:nth-child(odd) div {
    top: -16px;
    transform: translateY(-100%);
    border-radius: 10px 10px 10px 0;
    background: var(--primary-color);
    padding-top: 1rem !important;
  }

  .timeline-section .timeline ol li:nth-child(even) div {
    top: calc(100% + 16px);
    background: var(--primary-color);
  }
  
}

/*CONTACT*/

.contact-section {
  padding: 40px 0;
  background: linear-gradient(135deg, rgb(29, 17, 17), rgb(73, 0, 0));
}

.webform input,
button#submit-button {
  height: calc(2.25rem + 20px);
}

.form-control {
  border-radius: var(--border-radius-small);
  margin: 1rem 0;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--dark-color);
}

button#submit-button {
  background: #8f2f2f;
  border-color: transparent;
  color: var(--white-color);
  cursor: pointer;
  transition: all 0.3s ease;
  left: 0rem !important;
  top: 0rem !important;
}

button#submit-button:hover {
  background: var(--primary-color);
}

.contact h2 + p {
  max-width: 100%;
}


.find-us {
  margin-left: 40px;
}

  /* .ph-map {
  margin-left: -40px;
  margin-top: 30px;
  } */

.google-map img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-small);
}

img {
  width: 100%;
  vertical-align: top;
 
}

a {
  text-decoration: none;
  color: inherit;
}

/* Responsive Design */
@media only screen and (max-width: 1300px) {
  .mess-form {
    margin-left: 0;
    width: 100%;
  }
}

@media only screen and (max-width: 1200px) {
  .find-us {
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .ph-map {
    margin-left: 0px;
    margin-top: 0px;
  }

  .pinmap{
    width: 100% !important;
    height: 300px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: saturate(1.5);
    align-items: center;
  } 
}

@media only screen and (max-width: 480px) {
  
  
  .google-map img {
    max-width: 100%;
    height: auto;
  }
}

@media only screen and (max-width: 992px) {
  .contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .contact-section .container {
    width: 100%;
    max-width: 69rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 2vw, 2rem);
  }
}

@media only screen and (max-width: 768px) {
  .contact-section h2 {
    font-size: 2rem;
  }

  .contact-section p {
    font-size: .9rem;
  }

  .form-control {
    border-radius: var(--border-radius-small);
    margin: 1.3rem 0;
  }
}

/*Footer*/


.footer {
  margin-top: 40px;
  justify-content: left;
  align-items: left;
  margin-left: -15px;
}

.footer-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0px auto;
  margin-right: 50px;
  padding-top: 1%;
  padding-bottom: 1%;
}

.footer-h1 {
 text-align: left;
 padding: 0px; 
 margin: -40px auto 25px 0;
 padding-top: 1rem;
 margin-left: 50px;
}

.footer-h3 {
  text-align: left;
  margin-top: -1.5rem;
  padding-top: 0%;
  padding-bottom: 2%;
  color: var(--dark-color);
  font-size: 20px;
  margin-left: 50px;
}

.social__links {
  display: flex;
  gap: 15px;
  margin-top: -1%;
  padding-top: 0%;
  color: var(--dark-color);
  font-size: 20px;
  position: relative;
  z-index: 100;
  margin-left: 50px;
}



@media only screen and (max-width: 992px) {
  .footer-wrapper {
    flex-direction: column;
    justify-content: right;
    text-align: right;
    gap: 0;
    margin-right: 90px;
  }
}

@media only screen and (max-width: 768px) {
  .footer-h1 {
    font-size: 1.5rem;
   }
   .footer-h3 {
    font-size: .9rem;
   }

   .footer-h6 {
    font-size: 1rem;
   }

   .footer-wrapper {
    margin-top: -6rem;
  }
  .footer__link {
    font-size: 0.7rem !important;
    padding-bottom: 1.5rem;
  }
}

@media only screen and (max-width: 559px) {
  
  .footer-h1 {
    font-size: 1.2rem;
   }
   .footer-h3 {
    font-size: .8rem;
   }

   .footer-h6 {
    font-size: 1rem;
   }

   .footer-wrapper {
    margin-top: -5.3rem;
  }
}

@media only screen and (max-width: 480px) {
  
   .footer-wrapper {
    margin-top: -3.7rem;
  }
}

.footer-wrapper li:hover {
  color: var(--gray);
}
.footer__link {
  text-transform: uppercase;
  font-family: var(--title-font);
  font-size: 0.875rem;
}
.footer__link:hover{
  color: var(--primary-color);
}
.fab {
  margin-right: 8px;
}

.footer__texto {
  color: var(--light-gray);
  text-align: center;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.gallery__photo {
  position: relative;
  display: inline-block;
  filter: saturate(1.8);
  border-radius: 15px;
}
.gallery__fade {
  transition: all ease 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-fade);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  
}
.gallery__fade:hover {
  opacity: 1;
}
.gallery__icon {
  color: #fff;
  width: 50px;
  height: 50px;
}

/* Owl Carousel Styles */
.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.owl-height {
  transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  transition: transform 0.1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}


/* faqs button */

.floating-help {
  position: fixed;
  bottom: 80px; 
  right: 10px;
  z-index: 9999;
  display: flex;
  flex-direction: column; 
  align-items: center; 
  gap: 10px;
}

/* Scroll to Top Button */
.scroll-to-top-btn {
  background: var(--primary-color);
  border-radius: 50%;
  padding: 10px;
  width: 40px;
  height: 40px;
  display: none; 
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.scroll-to-top-btn:hover {
transform: scale(1.1);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Floating Help Button */
.floating-help-btn {

background: var(--primary-color);
border-radius: 50%;
padding: 10px;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
cursor: pointer;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-help-btn:hover {
transform: scale(1.1);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

ul, ol {
  list-style: none;
  padding: 0; /* Optional: Remove default padding */
  margin: 0; /* Optional: Remove default margin */
}

.privacy-notice {
  margin-top: 3rem;
  margin-bottom: 3rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 3rem 3rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

@media (min-width: 992px) {
  #imageModal .modal-dialog {
    max-width: 60% !important;
  }
}

/* Medium devices */
@media (min-width: 768px) and (max-width: 991.98px) {
  #imageModal .modal-dialog {
    max-width: 70% !important;
  }
}

/* Mobile optimizations */
@media (max-width: 767.98px) {
  #imageModal .modal-dialog {
    max-width: 90% !important;
    margin: 0.5rem auto !important;
  }
  
  #imageModal #modalImage {
    width: 95% !important;
  }
}

/* Extra small devices */
@media (max-width: 575.98px) {
  #imageModal .modal-dialog {
    max-width: 95% !important;
    margin: 0.25rem auto !important;
  }
  
  #imageModal #modalImage {
    width: 100% !important;
    padding: 5px !important;
  }
}

.captcha-container {
  width: 100%;
} 

.grecaptcha-badge {
  visibility: visible !important;
  display: block !important;  
}

.contact-section {
  padding: 40px 0;
  background-color: #820000;
  position: relative;
  color: #fff;
  overflow: hidden;
}

.section-title {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-card {
  padding: 0px 30px 30px 30px;
  backdrop-filter: blur(10px);
  height: 50%;
  transition: transform 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
}

.contact-info-item {
  display: flex;
  margin-bottom: 25px;
  align-items: flex-start;
}

.icon-container {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

.icon-container i {
  color: #820000;
  font-size: 20px;
}

.info-content h4 {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-align: left;
}

.info-content p {
  margin: 0;
  color: #f5f5f5;
  text-align: left;
}

.info-content a {
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.info-content a:hover {
  color: #fff;
  text-decoration: underline;
}

.social-links h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #820000 !important;
  transition: all 0.3s ease;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
  transform: translateY(-3px) rotate(8deg);
  background: #fff;
}

/* Map container and styling */
.map-container {
  backdrop-filter: blur(10px);
  height: 80%;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  
}

.map-container:hover {
  transform: translateY(-5px);
}

.map-header {
  margin-bottom: 20px;
}

.map-header h2 {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.5rem;
  margin: 0;
}

.map-square-wrapper {
  position: relative;
  width: 80%;
  padding-top: 100%; 
  margin-bottom: 20px;
}

.map-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 50%;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.map-inner img.pinmap {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
  transition: all 0.5s ease;
}

.map-inner:hover img.pinmap {
  transform: scale(1.05);
}

.map-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.btn-directions {
  display: inline-block;
  padding: 12px 28px;
  background: #fff;
  color: #820000;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.btn-directions:hover {
  background: #fff;
  color: #820000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.quick-contact {
  margin-top: auto; 
}

.quick-contact-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  color: #820000 !important;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  border: 2px solid transparent;
}


.email-btn {
  background: #fff;
}

.quick-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  background: transparent;
  border: 2px solid #fff;
  color: #fff !important;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100px 100px;
  pointer-events: none;
}

@media (max-width: 767px) {
  
  .quick-contact-btn {
    padding: 10px;
    font-size: 12px;
  }
}

.pinmap {
  width: 70%;         
  height: 300px;        
  object-fit: contain; 
  transition: all 0.3s ease;
  filter: saturate(1.5);
}