
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /*--font-primary: "Montserrat", sans-serif;*/
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Poppins", sans-serif;

}

/* Colors */

:root {
  --color-default: #222222;
  --color-primary: #ffffff;
  --color-secondary:#3404a4;
  --color-lunascolor:#004b85;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color:#030a48;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}



/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
  scroll-margin-top: 70px;
  overflow: clip;
}

.sections-bg {
  background-color: #f6f6f6;
}

.section-header {
  text-align: center;
  padding-bottom: 60px;
  color: var(--color-lunascolor);
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  color: #000;
}

.section-header p {
  margin-bottom: 0;
  color: #000000;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 60px 0 60px 0;
  min-height: 20vh;
  position: relative;
  background-color: var(--color-primary);
}

.breadcrumbs .page-header h2 {
  font-size: 56px;
  font-weight: 500;
  color: #000000;
  font-family: var(--font-secondary);
}

.breadcrumbs .page-header p {
  color: rgba(0, 0, 0, 0.8);
}

.breadcrumbs nav {
  background-color: #000000;
  padding: 20px 0;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-default);
}

.breadcrumbs nav ol a {
  color: var(--color-primary);
  transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

.breadcrumbs nav ol li+li {
  padding-left: 10px;
}

.breadcrumbs nav ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary);
  content: "/";
}

/******************************************************ACITIVITY*******************************************************************************************/

/* General Slideshow Styling */
.slideshow-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #f4f4f9; /* Background color for the slides */
  border-radius: 10px; /* Optional: Rounded corners */
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.232); /* Optional: Add shadow */
}

.slides {
  display: none; /* Hide all slides by default */
  justify-content: flex-start; /* Align image and text side by side */
  align-items: center;
}

.slide-content {
  display: flex;
  width: 100%;
}

.slide-content img {
  width: 50%;
  object-fit: cover;
  border-radius: 8px; /* Rounded corners for images */
}

.text-content {
  width: 50%;
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #ffffff; /* Background for text box */
  border-radius: 8px; /* Rounded corners for text box */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add shadow */
}

.text-content h1 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.text-content p {
  font-size: 16px;
  color: #555;
}

/* Navigation Arrows */
a.prev,
a.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 10px 15px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  font-weight: bold;
  font-size: 18px;
  user-select: none;
  z-index: 10;
}

a.prev {
  left: 10px;
}

a.next {
  right: 10px;
}

a.prev:hover,
a.next:hover {
  background-color:var(--color-lunascolor);
  color: white;
}

/* Dot Navigation */
.dots-container {
  text-align: center;
  margin-top: 15px;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background-color: var(--color-lunascolor);
}

.dot:hover {
  background-color:var(--color-lunascolor);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .slide-content {
      flex-direction: column; /* Stack image and text vertically */
  }

  .slide-content img,
  .text-content {
      width: 100%;
  }

  .text-content {
      text-align: center;
  }

  a.prev,
  a.next {
      font-size: 24px;
  }
}



/*****************************************************************************************************************************************************/

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: var(--color-lunascolor);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: #000;
  color:#fefefe
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.topbar {
  background: #ffffff;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #2105f7;
  padding: 0;
}

.topbar .contact-info i {
  font-style: normal;
  color: #fff;
  line-height: 0;
}

.topbar .contact-info i a,
.topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

@media (max-width: 575px) {

  .topbar .contact-info i a,
  .topbar .contact-info i span {
    font-size: 13px;
  }
}

.topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

.topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.topbar .social-links a:hover {
  color: #fff;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  background-color: var(--color-primary);
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.header .logo img {
  max-height: 70px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #fff;
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: #f96f59;
}

.sticked-header-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    text-decoration-color:var(--color-lunascolor);
    color:#030a48;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }
.navbar ul a{
color:black;
}
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    /*color: rgba(255, 255, 255, 0.6);*/
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color:#030a48;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    /*color: #030a48;*/
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color: var(--color-lunascolor);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-secondary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }

  #header a img {
    /* Style only the logo image */
    width: 40%;
    height: auto;
  }
  


}

@media (min-width: 1280px) and (max-width: 1600px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    color:var(--color-lunascolor);
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background-color: white;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: #030a48;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color:blue;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
   color: #0d0d0d;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    /*background: rgba(0, 131, 116, 0.8);*/
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
     background-color: grey;
    border: 1px solid black;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: #000000;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    /*background: rgba(0, 106, 93, 0.8);*/
    z-index: 9996;
  }

  .headernav{
    width: 50%;
    height: 50%;
  }

}


/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
  font-family: var(--font-secondary);
}

.about .container {
  padding: 20px;
  
}

/*.about img {
  max-width: 100%;
  height: auto;
  display: block;
  background-color: #059652;
}*/

.aligned-content {
  display: flex;
  align-items: center; /* Align image and text vertically */
  justify-content: space-between; /* Space out content */
  gap: 15px; /* Space between image and play button */
}


.about p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(3, 171, 248, 0.24) 52%);
  border-radius: 50%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.about .play-btn:after {
  content: '';
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--color-secondary);
}

.about .play-btn:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .rotated-image {
    transform: rotate(0); /* Removes rotation on smaller screens */
    max-width: 80%; /* Further reduces size on smaller devices */
  }

  .about h3 {
    font-size: 24px;
  }

  .about p {
    font-size: 14px;
  }
}
#aboutuspic{
  
}
#aboutuspic img {
  transform: rotate(90deg);
  width: 100%; /* Match the width to the container */
  height: auto;
  object-fit: fit; /* Ensure the image fits its bounding box */
  max-height:100%; /* Match max height with the first image */
  padding: 0;
  margin: 0;
  display: block;
}


.about .timeline {
  position: relative;
  max-width: 800px;
  margin: auto;
}

.about .timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: var(--color-lunascolor);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.event {
  position: relative;
  background: white;
  width: 40%;
  padding: 10px 20px;
  border-radius: 6px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}

.event img {
  width: 100%;
  border-radius: 6px;
  margin-top: 10px;
}

.left {
  left: 0;
}

.right {
  left: 50%;
}

.event::after {
  content: '';
  position: absolute;
  top: 15px;
  width: 20px;
  height: 20px;
  background-color: var(--color-lunascolor);
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

/* Responsive Design */
@media screen and (max-width: 600px) {
  .timeline::after {
      left: 10px;
  }
  .event {
      width: 90%;
      left: 10%;
  }
}






/*-------------------------------------------------------------------------------------------------------------/

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 40px 0;
}

.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter {
  padding: 40px 0;
}

.stats-counter .stats-item {
  padding: 20px 0;
  border-bottom: 1px solid #e4e4e4;
}

.stats-counter .stats-item .purecounter {
  min-width: 90px;
  padding-right: 15px;
}

.stats-counter .stats-item i {
  font-size: 44px;
  line-height: 0;
  margin-right: 15px;
}

.stats-counter .stats-item span {
  font-size: 40px;
  display: block;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 40px;
}

.stats-counter .stats-item p {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/cta-bg.jpg") center center;
  background-size: cover;
  padding: 100px 60px;
  border-radius: 15px;
  overflow: hidden;
}

.call-to-action h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.call-to-action p {
  color: #fff;
  margin-bottom: 20px;
}

.call-to-action .play-btn {
  width: 94px;
  height: 94px;
  margin-bottom: 20px;
  background: radial-gradient(var(--color-secondary) 50%, rgba(0, 131, 116, 0.4) 52%);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.call-to-action .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(0, 131, 116, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.call-to-action .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.call-to-action .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.call-to-action .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

.call-to-action .cta-btn {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 48px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.call-to-action .cta-btn:hover {
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


/*------------------------------vision--------------------------------*/



.vision-mission-section {
  display: flex;
  padding: 0%;
  flex-direction: row;
  align-items: stretch;
  height: 80vh;
}

.vision-box, .mission-box {
  flex: 1;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.vision-box {
  background-color: #004c8c; /* Navy blue */
  color: white;
}

.mission-box {
  background-color: #111; /* Dark charcoal */
  color: white;
}

.icon {
  font-size: 60px;
  margin-bottom: 20px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: 2px;
}

p {
  font-size: 20px;
  max-width: 500px;
  line-height: 1.6;
}






/*------------------------------------------------------------------*/



/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-flters {
  padding: 0 0 20px 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
  color: var(--color-secondary);
}

.portfolio .portfolio-flters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-flters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-flters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-wrap {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  height: 100%;
  overflow: hidden;
}

.portfolio .portfolio-wrap img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-wrap .portfolio-info {
  padding: 25px 20px;
  background-color: #fff;
  position: relative;
  border-top: 1px solid #f3f3f3;
  z-index: 2;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-wrap .portfolio-info h4 a {
  color: var(--color-default);
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 a:hover {
  color: var(--color-primary);
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
  font-size: 16px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: #9c9c9c;
  font-size: 12px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: #009d8b;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: white;
  height: 100%;
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: #009d8b;
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}


/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
  background: #fff;
  height: 100%;
  position: relative;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  color: #555555;
  text-align: center;
}

.pricing .icon {
  margin: 30px auto 30px auto;
  width: 70px;
  height: 70px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.pricing .icon i {
  color: #fff;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  line-height: 0;
}

.pricing .icon::before {
  position: absolute;
  content: "";
  height: 86px;
  width: 86px;
  border-radius: 50%;
  background: #87c1bb;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.pricing .icon::after {
  position: absolute;
  content: "";
  height: 102px;
  width: 102px;
  border-radius: 50%;
  background: #d2eeeb;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-2px);
}

.pricing h4 {
  font-size: 48px;
  color: var(--color-secondary);
  font-weight: 700;
  font-family: var(--font-secondary);
  margin-bottom: 0;
  text-align: center;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: rgba(108, 117, 125, 0.8);
  font-size: 18px;
  font-weight: 400;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #6c757d;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: rgba(108, 117, 125, 0.5);
}

.pricing ul .na i {
  color: rgba(108, 117, 125, 0.5);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 10px 40px;
  border-radius: 50px;
  color: var(--color-primary);
  border: 1px solid rgba(0, 131, 116, 0.2);
  transition: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-primary);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

.pricing .featured {
  z-index: 10;
  border: 3px solid var(--color-primary);
}

@media (min-width: 992px) {
  .pricing .featured {
    transform: scale(1.15);
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.faq .content p {
  font-size: 15px;
  color: #6c757d;
}

.faq .accordion-item {
  border: 0;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
}

.faq .accordion-item:last-child {
  margin-bottom: 0;
}

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 20px 50px 20px 20px;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-default);
  text-align: left;
  background: #fff;
  box-shadow: none;
  border-radius: 10px;
}

.faq .accordion-button .num {
  padding-right: 10px;
  font-size: 20px;
  line-height: 0;
  color: var(--color-primary);
}

.faq .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  border-bottom: 0;
  box-shadow: none;
}

.faq .accordion-button:after {
  position: absolute;
  right: 20px;
  top: 20px;
}

.faq .accordion-body {
  padding: 0 40px 30px 45px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}

/*--------------------------------------------------------------


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-container {
  background-color: var(--color-primary);
  height: 100%;
  padding: 20px;
  border-radius: 10px 0 0 10px;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.contact .info-item {
  width: 100%;
  background-color:var(--color-lunascolor);
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: #fff;
  color: var(--color-primary);
}

.contact .php-email-form {
  width: 100%;
  height: 100%;
  background:#fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 0 10px 10px 0;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .success{
  display: none;
  color: #fff;
  background: #05f005;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .success br+br {
  margin-top: 25px;
}
.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background:var(--color-lunascolor);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-lunascolor);
  border: 0;
  padding: 14px 45px;
  color:#ffff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background:var(--color-default);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  height: 100vh;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: 'Teko', sans-serif;
  font-weight: 500;
  line-height: 118px;
  size: 110px;
  font-style: normal;

}

.overlay-text {
  position: absolute;
  bottom: 100px;
  left: 100px;
  color: white;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
  margin-top: 90%;
  z-index: 2; 
}

.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-gradient {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  /*background: linear-gradient(to bottom, black, white);*/
  opacity: 0.26; /* Tweak this to control how visible the gradient is */
  z-index: 1;
  pointer-events: none; /* So it doesn't interfere with anything */
}
/*----------------------------------------------------------------*/





/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/* ===============================
   FOOTER (Isolated with all: revert)
================================= */
.footer {
  all: revert; /* reset inherited & global CSS safely */
  display: block;
  border-radius: 1%;
  font-size: 14px;
  background-image: url("../img/topoblack2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0;
  color: white;
}

/* Footer Info */
.footer .footer-info .logo {
  margin-bottom: 25px;
}

.footer .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: white;
  font-family: var(--font-primary, "Arial", sans-serif);
}

.footer .footer-info p {
  font-size: 14px;
  font-family: var(--font-primary, "Arial", sans-serif);
}

/* Social Links */
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: white;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: white;
  border-color: #fff;
}

/* Section Titles */
.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

/* Footer Links */
.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: white;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  text-decoration: none;
}

.footer .footer-links ul a:hover {
  color: white;
}

/* Contact Info */
.footer .footer-contact p {
  line-height: 26px;
}

/* Copyright Section */
.footer .copyright {
  text-align: center;
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: rgb(9, 42, 230);
}


/*********************************marque logo client letsgooo***************************************************************************************************************/
/* Style for the client section */
#client {
  text-align: center;
  padding: 50px 0;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: bold;
}

.section-header p {
  font-size: 1.2rem;
  color: #555;
}

/* Marquee container */
.client-images {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Style for the marquee */
marquee {
  width: 100%;
}

/* Client logo container */
.Logo_Client {
  display: flex;
  gap: 50px; /* Equal spacing between images */
  align-items: center;
  justify-content: center;
}

/* Client logos */
.Logo_Client img {
  max-width: 50%; /* Set max size */
  min-width: 15%; /* Set min size */
  height: auto;
  transition: transform 0.3s ease-in-out;
}

/* Hover effect */
.Logo_Client img:hover {
  transform: scale(1.1);
}


/************************************************************************************************************************************************/

/*--------------------------------------------------MRO LANDING PAGE------------------------------------------------------------------------------------------------------------------------*/

.mro_landingPage{
  background: url("../img/welding.png");
  background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 300px;
  
}

.mro_landingPage h1{
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  text-align: left;
  margin-top: 0%;
  padding-top: 0%;
}

.D_mro .content-section {
  padding: 50px 0;
}
.D_mro .section-heading {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--color-lunascolor);
}
.D_mro .image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.D_mro h1{
  color: var(--color-lunascolor);
}

.D_mro p{
  max-width:100%;
}

/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/






/*-----------------------ABOUT US ---------------------------------------*/

/* -------------------------------------------------------------------------------------------------------------*/


/*------------------------------------------------- OUR TEAM---------------------------------------------------------------------------------------------------------------- */
.team-section {
  padding: 40px 20px;
  background-image: url("../img/topoWhite.png");
  background-size: cover;
}

.team-container {
  border-radius: 10px;
  text-align: center;
  font-family: 'Arial', sans-serif;
  margin-bottom: 2%;
  font-size: 10%;
}

.team-title h2{

  font-family: 'Teko', sans-serif;
  font-weight: 500;
  line-height: 118px;
  font-style: normal;
  letter-spacing: 2px;
}

.team-container p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;;
  }


.button-group {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.tab-btn {
  background: none;
  border: 2px solid #000;
  padding: 12px 24px;
  font-size: 16px;
  margin: 5px;
  cursor: pointer;
  border-radius: 30px;
  transition: background 0.3s, color 0.3s;
}

.tab-btn.active {
  background: #000;
  color: #fff;
}

.team-grid {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(5, 1fr);
  /*flex-wrap: wrap;*/
  gap: 20px;
  /*padding: 20px;*/
  transition: opacity 0.3s;
}

.layer1 {
  grid-column: 3; /* Center */
}

.layer2,
.layer3,
.layer4 {
  grid-column: 2 / span 3;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.team-member {
  max-width: 300px;

}

.team-member img {
  width: 50%;
  height: auto;
  align-items: center;
}

.team-member2 img {
  width: 80%;
  height: auto;
}

.member-name {
  font-weight: bold;
  margin-top: 10px;
  font-size: 16px;
}

.member-position {
  color: #666;
  font-size: 14px;
}

.hidden {
  display: none;
}
#board {
  display: flex;
  justify-content: center;
  gap: 50px;
}

/* Responsive styles */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  p {
    font-size: 16px;
  }

  .team-grid {
    gap: 30px;
  }

  .team-member {
    max-width: 150px;
  }

  .member-name {
    font-size: 15px;
  }

  .member-position {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  .tab-btn {
    width: 100%;
    max-width: 300px;
  }

  .team-grid {
    flex-direction: column;
    align-items: center;
  }

  .team-member {
    max-width: 80%;
  }
}

.hidden {
  display: none !important;
}


/*----------------------------------------------------------------------------------------------*/
/* =====================================================
   SHIPYARD GALLERY
===================================================== */
.shipyard-gallery {
  padding: 40px 0;
  margin-bottom: 40px; /* adjusted for balance */
}

.gallery-heading {
  text-align: left;
  padding-left: 10%;
  font-size: 32px;
  font-weight: bold;
}

/* Main gallery wrapper */
.gallery-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 40px auto;
  gap: 30px;
  padding: 0 20px;
  height: auto;
}

.main-display {
  flex: 3;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#mainImage {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

#mainImage.visible {
  opacity: 1;
  transform: scale(1);
}

/* Caption */
.image-caption {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.6;
  width: 100%;
  text-align: left;
  color: #333;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  white-space: pre-line;
}

.image-caption.fade-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Thumbnail column */
.thumbnail-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
}

.thumbnail-viewport {
  height: 500px;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.thumbnail-scroll {
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease;
}

.thumbnail-scroll img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.8;
}

.thumbnail-scroll img:hover {
  transform: scale(1.05);
  opacity: 1;
}

.thumbnail-scroll img.active {
  border: 3px solid #004b85;
  box-shadow: 0 0 10px rgba(0, 75, 133, 0.5);
  opacity: 1;
}

/* Navigation arrows */
.nav-arrow {
  color: var(--color-lunascolor, #004b85);
  background-color: rgba(255, 255, 255, 0.85);
  border: none;
  font-size: 28px;
  /*margin: 10%;*/
  cursor: pointer;
  border-radius: 50%;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-arrow:hover {
  background-color: #004b85;
  color: white;
  transform: scale(1.15);
  opacity: 1;
}

.nav-arrow:active {
  transform: scale(1);
}

/* ===================================
   RESPONSIVE DESIGN
===================================== */

/* Tablets */
@media (max-width: 992px) {
  .gallery-wrapper {
    flex-direction: column;
    align-items: center;
    max-width: 90%;
    height: auto;
    margin: 20px auto;
  }

  .thumbnail-column {
    flex-direction: row;
    max-width: 100%;
    justify-content: center;
   /* gap: 10px;*/
    margin-top: 20px;
  }

  .thumbnail-viewport {
    height: auto;
    width: auto;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .thumbnail-scroll {
    flex-direction: row;
    transform: none !important;
  }

  .thumbnail-scroll img {
    height: 80px;
    width: 120px;
    margin-right: 10px;
  }

  .nav-arrow {
    display: none;
  }

  .image-caption {
    padding: 0 20px;
    margin-top: 10%;
  }
}

/* Phones */
@media (max-width: 576px) {
  .gallery-heading {
    padding-left: 0;
    font-size: 24px;
    text-align: center;
  }

  .image-caption {
    font-size: 14px;
  }

  .thumbnail-scroll img {
    height: 70px;
    width: 100px;
  }
}



/* =====================================================
   FACILITIES SECTION
===================================================== */
/* =====================================================
   FACILITIES SECTION — FIXED CENTERING
===================================================== */
.facilities {
  text-align: center;
  margin-top: 0;
}

.facilities-header {
  text-align: left;
  font-size: 35px;
  font-weight: bold;
  margin-left: 10%;
  padding-bottom: 10px;
  color: var(--color-lunascolor);
  text-decoration: underline;
}

/* Center the slideshow in desktop view */
.facilities-container {
  display: flex;
  justify-content: center;  /* center horizontally */
  align-items: center;
  overflow: hidden;
  background-color: #222222;
  padding: 40px 0;
}

.facilities-slideshow {
  display: flex;
  justify-content: center;  /* ensure slides sit in the center */
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
  width: fit-content;        /* ensures natural width */
  margin: 0 auto;            /* centers inside container */
}

.facilities-slide {
  flex: 0 0 280px;
  height: 250px;
  position: relative;
  perspective: 1000px;
  transition: transform 0.5s;
}

.facilities-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.facilities-flip-card {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.facilities-slide:hover .facilities-flip-card {
  transform: rotateX(180deg);
}

.facilities-flip-card-front,
.facilities-flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
}

.facilities-flip-card-front {
  background: #ddd;
}

.facilities-flip-card-back {
  background: var(--color-lunascolor);
  color: white;
  transform: rotateX(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
}

/* ============================================
   SCROLLABLE ON TABLET & SMALLER SCREENS
=============================================== */
@media (max-width: 992px) {
  .facilities-container {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 20px;
  }

  .facilities-slideshow {
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: max-content;
  }

  .facilities-slide {
    flex: 0 0 220px;
  }

  .facilities-header {
    margin-left: 20px;
    font-size: 28px;
  }

  /* Optional: hide scrollbar */
  .facilities-container::-webkit-scrollbar {
    display: none;
  }
  .facilities-container {
    -ms-overflow-style: none;  /* IE/Edge */
    scrollbar-width: none;     /* Firefox */
  }
}
@media (min-width: 1200px) {
  /* Reduce space after shipyard */
  .shipyard-gallery {
    margin-bottom: 30px; /* previously it might be large, e.g., 100px */
    padding-bottom: 20px;
  }

  /* Reduce space before facilities */
  .facilities {
    margin-top: 0; /* ensure they sit closer */
    padding-top: 10px;
  }
}
/* -------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*---------------------CERTIFICATE.PHP-----------------------------------------*/
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  justify-items: center;
}

.cert-card {
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
  max-width: 250px;
}

.cert-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}

.cert-card .cert-title {
  font-weight: bold;
  font-size: 1em;
  margin-bottom: 8px;
}

.cert-card a {
  display: inline-block;
  margin-top: 8px;
  color: #007bff;
  font-weight: bold;
  text-decoration: none;
}

.cert-card a:hover {
  text-decoration: underline;
}



/*-------------------------------------------------------------------*/


/*-----------------------------------------VALUES CORE---------------------*/

section.core-values-section {
  padding: 60px 40px;
}

section.core-values-section h1 {
  font-size: 48px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.intro {
  font-size: 18px;
  max-width: 900px;
  margin-bottom: 60px;
  line-height: 1.6;
}

.core-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.value-box h2 {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 10px;
}

.value-box p {
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 600px) {
  section.core-values-section {
      padding: 40px 20px;
  }

  section.core-values-section h1 {
      font-size: 36px;
  }
}

/*------------------------------------------------------------------------------*/


/*---------------------------------------- css for info section------------------------------- */
.info-grid-section {
  background: url('../img/welding.png');  
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 100%;
  max-width: 98%;
  margin: 0 auto;
}

.info-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  font-size: 2.0rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  padding: 25px 30px;
  transition: background 0.3s ease, color 0.3s ease;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  border: white 1px solid;
}


.info-box:hover {
  color: var(--color-lunascolor);
  background-color: rgba(0, 0, 0, 0.6);
}

/*=---------------------------------------------------------------------------------*/




/*----------------------------------------------------------------------- */


/*---------------------------------------- shipbuilder section------------------------------- */

.shipbuilders-section {
  background: #f9f9f6;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.shipbuilders-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-description {
  text-align: center;
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 50px;
}

.image-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  margin-bottom: 60px;
}

.image-large {
  grid-row: span 2;
}

.image-grid img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.commitment-section {
  text-align: left;
  max-width: 700px;
  margin: 0 auto 80px;
}

.commitment-section h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.commitment-section p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #333;
}

.history-split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.history-image, .history-text {
  flex: 1 1 50%;
}

.history-image img {
  width: 100%;
  border-radius: 10px;
}

.history-text h4 {
  text-transform: uppercase;
  font-size: 14px;
  color: #888;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.history-text h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.history-text p {
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .image-grid {
    grid-template-columns: 1fr;
  }

  .history-split {
    flex-direction: column;
  }

  .section-title {
    font-size: 28px;
  }
}
/*----------------------------------------------------------------------- */

/*
/*---------------------------------------engineering-excellence------------------------------ */
.engineering-excellence {
  background-image: url("../img/topoblue.png");
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  text-align: center;
}


.engineering-excellence .container {

  max-width: 800px;
  margin: 0 auto;
}

.engineering-excellence h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ffffff;
}

.engineering-excellence p {
  font-size: 1.1em;
  line-height: 1.6;
  color:white;
  margin-bottom: 20px;
}

.engineering-excellence .btn {
  display: inline-block;
  padding: 12px 25px;
  background-color:var(--color-lunascolor);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  border-color: white;
}

.engineering-excellence .btn:hover {
  background-color: #0055a5;
}
/*---------------------------------------------------------------------------*/




/*---------------------------------------COOPRATE BROCHURE------------------------------ */
.brochure-card {
  border-radius: 10px;
  transition: box-shadow 0.3s ease;
  overflow: hidden;
  align-items: center;
}

.brochure-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.brochure-img {
  height: auto;
  object-fit: cover;}

/*------------------------------------*/

/*---------------------------------------Newsroom ------------------------------ */

/* News Section Container */
.Newsroom {
    padding: 60px 0;
    background-color: #f8f9fa;
}

/* Section Header */
.Newsroom h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-lunascolor);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 20px;
}

.Newsroom h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--color-lunascolor);
    border-radius: 2px;
}

/* News Categories */
.news-categories {
    padding: 0 15px;
    max-width: 1200px;
    margin: 30px auto 40px;
}

.news-categories .btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Category Buttons */
.category-btn {
    border: 2px solid var(--color-lunascolor);
    border-radius: 30px;
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-lunascolor);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: "Inter var", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.category-btn:hover {
    background-color: var(--color-lunascolor);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 75, 133, 0.2);
}

.category-btn.active {
    background-color: var(--color-lunascolor);
    color: white;
    border-color: var(--color-lunascolor);
}

/* News Container */
#news-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1200px;
}

/* News Card Styling */
.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 75, 133, 0.15);
}

/* News Card Image */
.news-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-image {
    transform: scale(1.05);
}

/* News Card Content */
.news-card-content {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Category Badge */
.news-card-category {
    display: inline-block;
    background-color: var(--color-lunascolor);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: absolute;
    top: -15px;
    left: 20px;
    box-shadow: 0 4px 8px rgba(0, 75, 133, 0.2);
}

/* News Title */
.news-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 15px 0 10px;
    line-height: 1.4;
    color: #333;
}

.news-card-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card-title a:hover {
    color: var(--color-lunascolor);
}

/* News Meta Information */
.news-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #666;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.news-card-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-card-date i {
    color: var(--color-lunascolor);
    font-size: 0.9rem;
}

/* News Excerpt */
.news-card-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Read More Button */
.news-card-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-lunascolor);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    padding: 8px 0;
    border-top: 1px solid #f0f0f0;
}

.news-card-readmore:hover {
    gap: 15px;
    color: #002244;
}

.news-card-readmore i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.news-card-readmore:hover i {
    transform: translateX(5px);
}

/* Load More Button */
#loadMoreBtn {
    display: block;
    margin: 50px auto 0;
    padding: 15px 40px;
    background-color: var(--color-lunascolor);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 75, 133, 0.3);
    max-width: 200px;
    text-align: center;
}

#loadMoreBtn:hover {
    background-color: #002244;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 75, 133, 0.4);
}

/* Responsive Design */

/* Tablet */
@media (max-width: 992px) {
    #news-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
        padding: 0 20px;
    }

    .Newsroom h1 {
        font-size: 2.5rem;
    }

    .news-card-image {
        height: 200px;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    #news-container {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }

    .Newsroom h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .news-categories .btn-group {
        gap: 10px;
    }

    .category-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .news-card-content {
        padding: 20px 15px;
    }

    .news-card-title {
        font-size: 1.1rem;
    }

    .news-card-category {
        font-size: 0.7rem;
        padding: 4px 12px;
    }

    #loadMoreBtn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    .Newsroom {
        padding: 40px 0;
    }

    #news-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .Newsroom h1 {
        font-size: 1.8rem;
    }

    .news-card-image {
        height: 180px;
    }

    .category-btn {
        padding: 6px 15px;
        font-size: 0.8rem;
    }

    .news-categories .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .category-btn {
        width: 100%;
        max-width: 250px;
    }

    #loadMoreBtn {
        width: 90%;
        max-width: none;
        margin: 30px auto 0;
    }

    .news-card-meta {
        font-size: 0.8rem;
    }

    .news-card-excerpt {
        font-size: 0.9rem;
    }
}

/* Remove old unused classes */
.card-title,
.card-text,
.readmore-btn,
.button-40,
.Newsroomm {
    display: none;
}
/*--------------------------------------------------------------------------------------/

/*--------------------------------------VIDEO_COPRATE SECTION------------------------------*/
.video-section {
  position: relative;
  height: 100vh;
  background: url('../img/about picture.jfif') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.video-section video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: none;
}

.play-button {
  z-index: 1;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.play-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/*------------------aboutus_nav---------*/

.aboutus_nav{
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-color:grey;

}

.aboutus_nav-image{
  background-image: url('../img/contribution.png'); /* Replace with actual image path */
  background-size: cover;
  margin-left: 0%;
  min-height: 100vh;



}
.btn-custom {
  background-color: var(--color-lunascolor);
  color: #fff;
  font-weight: bold;
  padding: 12px 24px;
  border: none;
}
.btn-custom:hover {
  background-color: #ffffff;
}
.aboutus_nav h1{
  font-weight: 800;
  font-size: 2.5rem;
}

/* Medium screens (tablets) */
@media (max-width: 992px) {
.btn-custom {
  margin-bottom: 5%;

}
}


/* Small screens (phones) */
@media (max-width: 576px) {
  
}
  
/*----------------------------------------VIDEO_SECTION------------------------------*/
      
.video_coprate{
background-image: url('../img/CoopratevideoTumbnail.png');
background-color: #004b85;
background-size: cover;
height: 100vh;
background-repeat: no-repeat;
background-position: center;
}
.material-symbols-outlined {
  font-size: 150px;
  cursor: pointer;
  color:var(--color-lunascolor);
  margin-top: 14%;
  transition: color 0.3s;
}

.material-symbols-outlined:hover {
  color: white;
}

/* Popup Modal Styles */
#videoModal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  width: 80%;
  max-width: 800px;
}

.modal-content video {
  width: 100%;
  border-radius: 8px;
}

.close-btn {
  position: absolute;
  top: -3%;
  right: -7%;
  font-size: 36px;
  color: #ffffff;
  border-radius: 50%;
  padding: 0 10px;
  cursor: pointer;
}

/*---------------------------------------ORGANIZATION CHART SECTION------------------------------*/
 .OC_Chart_container h1 {
      text-align: left;
      color: rgb(59, 59, 59);
      size: 5rem;
      font-weight: 900;
      font-size: 2.5rem;
    }
.OC_Chart_container {
      display: flex;
      flex-direction: column;
      margin-top: 5%;
    }

  .OC_Chart_container img {
      margin-bottom: 30%;
    }

/*-----------------------------------------------------------------------------------------------------------*/

/*------------------------CAPABILITIES*-------------------------------------------*/

* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
:root {
  --gjs-t-color-primary: #cf549e;
  --gjs-t-color-secondary: #b9227d;
  --gjs-t-color-accent: #ffb347;
  --gjs-t-color-success: #28a745;
  --gjs-t-color-warning: #ffc107;
  --gjs-t-color-error: #dc3545;
}

/* Typography */
.gjs-heading {
  margin: 0;
  color: rgba(29, 40, 55, 1);
}
.gjs-t-body {
  background-color: inherit;
  color: inherit;
  font-size: 1rem;
  line-height: 1.75rem;
  font-family: Arial, Helvetica, sans-serif;
}
.gjs-t-h1 {
  color: var(--gjs-t-color-secondary);
  font-size: 1.5rem;
  line-height: 2.5rem;
}
.gjs-t-h2 {
  color: #601843;
  font-size: 1.2rem;
  line-height: 1.75rem;
}
.gjs-text-blue {
  color: rgb(36, 99, 235);
}

/* Links & Buttons */
.gjs-link {
  vertical-align: top;
  max-width: 100%;
  display: inline-block;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
.gjs-link:hover {
  color: rgb(36, 99, 235);
  text-decoration: underline;
}
.gjs-t-link {
  color: var(--gjs-t-color-primary);
  text-decoration: underline;
}
.gjs-button,
.gjs-t-button {
  vertical-align: top;
  max-width: 100%;
  display: inline-block;
  text-decoration: none;
  color: white;
  background-color: rgb(36, 99, 235);
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 1.1rem;
  text-align: center;
}
.gjs-t-button {
  background-color: var(--gjs-t-color-primary);
  border-radius: 0.3rem;
}

/* Layout */
.gjs-grid-row {
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;     /* center vertically */
  flex-direction: row;
  min-height: auto;
  padding: 10px 0;
}
.gjs-grid-column {
  flex: 1 1 0%;
  padding: 5px 0;
}
.gjs-grid-column.feature-item,
.gjs-grid-column.testimonial-item {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.gjs-grid-column.feature-item {
  min-width: 30%;
}
.gjs-grid-column.testimonial-item {
  min-width: 45%;
  background-color: rgba(247, 247, 247, 0.23);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  align-items: flex-start;
}

/* Icons */
.gjs-icon.gjs-feature-icon {
  padding: 10px;
  background-color: rgb(36, 99, 235);
  color: white;
  border-radius: 10px;
}

/* Misc */
.gjs-t-border {
  border-radius: 0.3rem;
  border-color: #e0e0e0;
}

/* Responsive */
@media (max-width: 992px) {
  .gjs-grid-row {
    flex-direction: column;
  }
}


/*-------------------------------------------*/

/* ===== IMPROVED OVERLAY TEXT READABILITY ON INDEX ===== */

/* ===== HERO TEXT (CLEAN - NO BOX) ===== 
.overlay-text {
  position: absolute;
  bottom: 100px;
  left: 80px;
  z-index: 2;
  text-align: left;

  /* ❌ REMOVE BOX STYLE 
  background: none;
  padding: 0;
  border: none;
  backdrop-filter: none;

  /* ✅ clean readability 
  text-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.6),
    0 4px 18px rgba(0, 0, 0, 0.5);
}

/* REMOVE paragraph background 
.overlay-text p {
  background: none;
  padding: 0;
  border-radius: 0;
  display: block;

  text-shadow: 
    0 2px 6px rgba(0, 0, 0, 0.6);
}

/* ===== TITLE GLOW ===== 
.hero-main-title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(1.2rem, 10vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff;

  /* 💎 Sharp 3D + Glow Combo 
  text-shadow:
    0 2px 0 #999,
    0 4px 0 #777,
    0 6px 0 #555,
    0 8px 10px rgba(0, 0, 0, 0.6),
    0 0 10px rgba(255, 255, 255, 0.6),
    0 0 25px rgba(255, 255, 255, 0.3);

  margin-bottom: 0.5rem;
}

/* ===== SUBTITLE ===== 
.hero-subtitle {
  font-family: 'Cinzel', 'Times New Roman', serif;
  font-size: clamp(1rem, 4vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #0A2F5A, #0A2540);
  display: inline-block;
  padding: 10px 28px;
  border-radius: 60px;
  color: #FFFFFF;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  border-left: 3px solid #FFD966;
  margin-bottom: 1.5rem;
}

/* ===== DESCRIPTION ===== 
.hero-description {
  font-family: 'Cinzel', 'Times New Roman', serif;
  font-size: clamp(0.85rem, 3vw, 1rem);
  font-weight: 500;
  line-height: 1.6;
  color: #ffffff;
  max-width: 600px;
  margin: 0;

  text-shadow: 
    0 2px 6px rgba(0, 0, 0, 0.6),
    0 0 10px rgba(0, 0, 0, 0.4);
}

/* ===== RESPONSIVE ===== 
@media (max-width: 768px) {
  .overlay-text {
    left: 20px;
    bottom: 50px;
  }

  .hero-subtitle {
    padding: 6px 18px;
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }

  .overlay-text p {
    font-size: 0.85rem;
  }

  .hero-description {
    max-width: 95%;
  }
}
*/





