/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font: normal 15px / 27px "Roboto", Helvetica, Arial, Verdana, sans-serif;
  word-spacing: normal;
  color: #85868c;
  overflow-x: hidden;   /* Prevent horizontal scroll */
  max-width: 100vw;
  background-size: auto;
}

img {
  max-width: 100%;
  height: auto;
}


.hero-slider {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  font-family: "Roboto", sans-serif;
  height: 100dvh;
}

/* Slides container covers whole section */
.slides-container {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

/* Each slide fills container, stacked */
.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

/* Only active slide visible */
.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Overlay on slides if you want */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.5); /* dark overlay */
  z-index: 1;
}

/* Center content fixed on top */
.center-content {
  position: relative;
  z-index: 10;
  color: white;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
}

/* Logo styling */
.logo {
  width: 700px;
  height: 300px;
  margin-bottom: 20px;
  max-width: 100%;
  height: auto;
}

/* Quote styling */
.quote {
  font-family: 'Montserrat', sans-serif;
  font-size: 60px;
  font-weight: 800; /* bold */
  line-height: 1.3;
  margin-bottom: 10px;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

/* Author styling */
.author {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600; /* semibold */
  color: rgb(231, 179, 90);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}


/* Arrows */
.hero-slider .arrow {
  cursor: pointer;
  min-width: 60px;
  min-height: 60px;
  position: absolute;
  display: flex; /* Make it a flex container */
  align-items: center; /* Vertically center */
  justify-content: center; /* Horizontally center */
  z-index: 100;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1);
  font-size: 1.2rem;
  color: white;
}


.hero-slider .hero-left {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-slider .hero-right {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}


.hero-slider .arrow:hover {
  background-color: rgba(255,255,255,0.25);
  transform: translateY(-50%) scale(1.1);
}

.arrow-preview {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 60px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.hero-left .arrow-preview {
  left: 60px;
}

.hero-right .arrow-preview {
  right: 60px;
}

.arrow:hover .arrow-preview {
  opacity: 1;
}


/* === Header Info Block === */
.header-info-block {
  background: #fff;
  height: 100px;
  margin-top: 1px; /* smaller gap from black hero */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  z-index: 10;
  position: relative;
  padding: 5px 40px 10px; /* reduce vertical space */
}


/* Container inside info block */
.header-info-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}


/* === Fixed Buttons (Styled like .menu-links) === */
.fixed-buttons {
  display: flex;
  gap: 25px;
  justify-content: flex-end;
  margin-right: 30px;
}

.fixed-buttons a {
  text-decoration: none;
  font: normal bold 17px / 21px "Roboto", Helvetica, Arial, Verdana, sans-serif;
  color: #333333;
  position: relative;
  padding-bottom: 5px;
}

/* Animated underline effect (same as .menu-links a) */
.fixed-buttons a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: -webkit-linear-gradient(left, #e7b35a 30%, #b57a15 100%);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.fixed-buttons a:hover::after,
.fixed-buttons a.active::after {
  width: 100%;
}


/* === Left Side: Location === */
.location {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
  color: #aeafb5;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

.location i {
  margin-right: 10px;
  font-size: 12px;
  color: #aeafb5;
}


/* === Right Side: Socials stacked above menu === */
.right-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Stack social icons above nav links */
.social-and-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* === Social Icons === */
.social-icons ul {
  display: flex;
  gap: 8px;           /* space between icons */
  padding: 0;
  margin: 0;
  list-style: none;
  margin-right: 30px;
}

.social-icons li {
  display: flex;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;         /* total width */
  height: 26px;        /* circular height */
  border-radius: 50%;  /* make it a circle */
  background: #f2f2f2;
  color: #a6a7ad;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.social-icons a:hover {
  background: #1ebbf0 ;
  color: #a6a7ad;
}

/*menu links*/
.menu-links {
  display: flex;
  gap: 25px;
  margin-top: 25px;
  margin-right: 30px;
  flex-wrap: nowrap;
}
.menu-logo {
  height: 60px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.menu-logo img {
  height: 78px;      /* Or 60px if your navbar allows */
  width: auto;
  display: block;
}

.menu-sticky-wrapper.fixed .menu-logo {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.menu-links a {
  text-decoration: none;
  font: normal bold 17px / 21px "Roboto", Helvetica, Arial, Verdana, sans-serif;
  color: #333333;
  position: relative;
  padding-bottom: 5px;
}

/* Animated underline effect */
.menu-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: -webkit-linear-gradient(left, #e7b35a 30%, #b57a15 100%);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.menu-links a:hover::after,
.menu-links a.active::after {
  width: 100%;
}


/* Divider line under menu */
.nav-divider {
  width: 100%;
  height: 1px;
  background-color: #ccc;
  margin: 20px 0 10px;
}

/* Container for menu and other items */
.menu-links-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Sticky header wrapper */
.menu-sticky-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  background-color: white;
  z-index: 9999;
  padding: 10px 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  pointer-events: none;

  transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-sticky-wrapper.fixed {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}




/* Adjust menu-links (remove margin-left if used) */
.menu-links {
  display: flex;
  gap: 25px;
  justify-content: flex-end;
}



.underline-limited {
  height: 1px;
  background-color: #ccc;
  margin-top: 10px;
  width: fit-content; /* or set a specific width */
  margin-left: 20px; /* align with location */
  margin-bottom: 10px;
}



/* About Section */
.about-section {
  padding: 80px 40px;
  background-color: #fff;
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

/* Image container split into two parts */
.about-images {
  display: flex;
  gap: 20px;
  flex: 1;
}

/* Left: Two stacked images */
.left-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.left-stack img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

/* Right: One tall image */
.right-tall {
  flex: 1;
}

.right-tall img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 8px;
}

/* Right text block */
.about-text {
  flex: 1;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text p {
  font: normal 15px / 27px "Roboto", Helvetica, Arial, Verdana, sans-serif;
  word-spacing: normal;
  color: #85868c;
  margin-bottom: 35px;
}

/* Buttons */
.about-buttons {
  margin: 0 10px 10px 10px;
  padding-left: 140px;
  display: flex;
  gap: 20px;
}

.about-buttons .btn {
  background: rgb(237, 204, 25);
  width: 150px;
  height: 41.5px;
  color: #ffffff;
  font: normal bold 14px / 16px "Roboto", Helvetica, Arial, Verdana, sans-serif;
  padding: 12px 18px;
  border: none;
  border-radius: 1px;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.about-buttons .btn:hover {
  opacity: 0.9;
  text-decoration: none;
  background-color: #ff6900;
}

/* Optional: Responsive stacking on small screens */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }
  .about-images {
    flex-direction: column;
  }
  .about-buttons {
    padding-left: 0;
    justify-content: center;
  }
}



/* === Main Section === */
.specialties-section {
  position: relative;
  padding: 60px 0;
  background: #fff;
  overflow-x: hidden;

}



/* === Title === */
.specialties-title {
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  color: black;
  margin-bottom: 40px;
  position: relative;
}

.specialties-title::after {
  content: '';
  height: 3px;
  width: 277px;
  background: orange;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

/* === Carousel Wrapper: exactly 3 cards wide (410 × 3) === */
.carousel-wrapper {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 20px;
}


/* === Slider: row of all items === */
.specialties-slider {
  display: flex;
  transition: transform 0.4s ease-in-out;
  width: max-content;
}

/* === Card Container === */
.specialty-item {
  width: 100%;
  max-width: 410px;
  flex: 0 0 410px; /* fixed width */
  height: 401px;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.specialty-image {
  width: 250px;
  height: 250px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background-color: #f7f7f7;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.specialty-image:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.specialty-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}


/* === Text Content === */
.specialty-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}

.price {
  color: #b57a15;
  font-weight: bold;
  font-size: 16px;
  
}

.price span {
  font-weight: bold;
  font-size: 16px;
  color: #b57a15;
  background: -webkit-linear-gradient(left, #e7b35a 30%, #b57a15 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color: transparent;
  
}

/* === Underline Divider === */
.uvc-headings-line {
  display: block;
  width: 70%;
  border-bottom: 1px solid rgb(204, 204, 204);
  margin: 15px auto 0 auto;
  height: 1px;
}


/* === Arrows === */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: -webkit-linear-gradient(left, #e7b35a 30%, #b57a15 100%);
  height: 40px;
  width: 40px;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.left-arrow {
  left: 10px; /* edge of screen */
}

.right-arrow {
  right: 10px; /* edge of screen */
}

.arrow:hover {
  transform: translateY(-50%) scale(1.1);
}
/* === Responsive (optional) === 
@media (max-width: 1300px) {
  .carousel-wrapper {
    width: 100%;
    padding: 0 20px;
  }

  .specialties-slider {
    justify-content: center;
    flex-wrap: wrap;
  }

  .specialty-item {
    width: 90%;
    margin-bottom: 30px;
  }

  .arrow {
    display: none;
  }
}
*/
/* Location Section */
.location-section {
  position: relative;
  background: url('images/c-sl-005.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
  padding: 80px 40px;
  overflow: hidden;
  z-index: 1;
}

.location-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* Adjust the darkness here */
  z-index: -1;
}

.location-section {
  position: relative;
  background: url('images/c-sl-005.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
  padding: 80px 40px;
  overflow: hidden;
  z-index: 1;
}

.location-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.location-title {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.location-title::after {
  content: '';
  height: 3px;
  width: 199px;
  background-color: rgb(231, 179, 90);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Layout container */
.dual-location-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.location-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 500px;
  max-width: 100%;
  text-align: center;
}

/* Text block */
.location-info {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 15px;
  color: white;
}

/* Image block */
.location-pic img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.location-pic img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Social icons */
.location-social {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 20px;
}

.location-social a {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #e7b35a 30%, #b57a15 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.location-social a:hover {
  background: white;
  color: #b57a15;
}

.site-footer {
  text-align: center;
  font-weight: normal;
  color: #a0a0a0;
  font-size: 15px;
  margin-top: 15px;
  font-weight: 500;
}


.back-to-top {
  display: none;
  position: fixed;
  bottom: 18px;
  right: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  color:white ;
  font-size: 14px;
  text-align: center;
  border-radius: 4px;
  background: linear-gradient(135deg, #e7b35a 30%, #b57a15 100%);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}




/* === General Image Modal Overlay === */
.image-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}

/* When visible, display as flex to center content */
.image-modal.show {
  display: flex;
}

/* Modal Image Styling */
.image-modal .modal-content {
  max-width: 30%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  z-index: 10001;
}

/* Close Button (still clickable if needed) */
.image-modal .close-modal {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10002;
}

/* ==========================================================================
  1. News Section
   ========================================================================== */
/* Card wrapper hover animation */
.card {
  background: white;
  border-radius: 10px;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* News image styling */
.news-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover .news-img {
  transform: scale(1.04);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Text inside card */
.card-text {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}
.section-title{
 font-size: 42px;
    margin-top: 0;
    text-transform: uppercase;
    font-weight: 700;
    color: #333;
    position: relative;
}
.section-title::after {
    content: '';
    height: 3px;
    width: 277px;
    background: orange;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}



