@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap");

:root {
  --color-default: #313131;
  --color-primary: #ff6a00;
  --color-secondary: #01588e;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

body {
  color: var(--color-default);
  font-family: "Open Sans", sans-serif;
}

a {
  color: var(--color-default);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--color-default), transparent 25%);
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--color-default);

  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: #fff;
  border-radius: 50px;
  padding: 5px 25px 5px 30px;
  border: 1px solid var(--color-secondary);
  box-shadow: 0px 2px 15px rgb(255 106 0 / 17%);
}

.header::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 450px;
  right: 0;
  background: linear-gradient(
    to left,
    var(--color-primary),
    var(--color-secondary)
  );
  z-index: -1;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  height: 60px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 20px;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--color-default);
    padding: 9px 10px;
    font-size: 16px;

    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--color-primary);
  }

  .navmenu .dropdown ul {
    margin: 0;
    background-color: var(--color-secondary);
    display: block;
    position: absolute;
    visibility: hidden;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 6px rgb(0 0 0 / 53%);
  }

  .navmenu .dropdown ul li {
    min-width: 150px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: #fff;
    border-bottom: 1px solid #fff;
  }
  .navmenu .dropdown ul li:last-child a {
    border-bottom: none;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--color-secondary);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--color-primary);
  }

  .navmenu a,
  .navmenu a:focus {
    color: #fff;
    padding: 10px 20px;

    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ffffff38;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--color-primary);
    color: #fff;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--color-primary);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--color-primary);
    color: #fff;
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--color-default);
    border: 1px solid color-mix(in srgb, var(--color-default), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background: linear-gradient(
      to top,
      var(--color-primary),
      var(--color-secondary)
    );
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--color-secondary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  color: #fff;
  transition: all 0.4s;
  box-shadow: 0 0 10px var(--color-primary);
}

.scroll-top i {
  font-size: 24px;

  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--color-primary), transparent 20%);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
}

.top-soc-head {
  position: absolute;
  left: 50px;
  bottom: 65px;
  background-color: var(--color-primary);
  color: #fff;
  padding: 3px 10px;
  border-top-right-radius: 25px;
  z-index: 1;
}

.top-soc-head::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 150px;
  background-color: var(--color-primary);
  left: -105px;
  top: 15px;
  z-index: -1;
}

.top-soc-head p {
  margin-bottom: 0px;
}
.top-social-links {
  position: absolute;
  left: 20px;
  bottom: 15px;
  display: flex;
}

.top-social-links a {
  transition: transform 0.3s ease;
}

.top-social-links a:hover {
  transform: translateY(-10px);
}

.top-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--color-secondary), transparent 50%);
  font-size: 16px;
  background-color: var(--color-secondary);
  color: #fff;
  margin-right: 6px;
}

.hero .banner-img {
  width: 100%;
  min-height: 100vh;
  position: relative;
  background-image: url(../gallery/banner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero .container,
.hero .container-fluid {
  position: relative;
  z-index: 2;
}

.hero .content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 3rem;
}

@media (max-width: 991px) {
  .hero .content-col {
    padding-right: 15px;
    margin-bottom: 3rem;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

.appoint-btn {
  color: #fff;
  font-size: 14px;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  background: linear-gradient(
    270deg,
    var(--color-primary),
    var(--color-secondary)
  );
  background-size: 400% 400%;
  transition: 0.3s;
  animation: gradientBG 2s ease infinite; /* faster animation */
  font-weight: 500;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.appoint-btn:hover {
  color: #fff;
}

.about-section {
  position: relative;
  margin-bottom: 60px;
}

.about-block {
  position: relative;
}

.mvv-section {
  position: relative;
  min-height: 25vh;
  margin-bottom: 100px;
}
.mvv-block {
  position: relative;
}

.mvv-block .mvv-img img {
  width: 140px;
}

.mvv-text h2 {
  color: var(--color-secondary);
  text-transform: uppercase;
  font-size: 25px;
  margin-top: 18px;
  font-weight: 500;
  letter-spacing: 5px;
  border-bottom: 1px dashed var(--color-secondary);
  display: inline-block;
}

.mvv-text p {
  margin-bottom: 0px;
  font-size: 16px;
}

.mvv-main-block {
  position: relative;
}
.mvv-main-block .col-md-3:nth-child(2) .mvv-block .mvv-text h2 {
  color: var(--color-primary);
  border-bottom: 1px dashed var(--color-primary);
}

.doctor-name h2 {
  font-size: 42px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-secondary);
}

.doctor-name h2,
h3,
h4 {
  margin-bottom: 0px;
}
.doctor-name h3 {
  font-weight: 600;
  font-size: 19px;
}
.doctor-name h4 {
  font-size: 25px;
  font-weight: 600;
  color: var(--color-primary);
}

.doctor-img img {
  width: 380px;
}

.profile-btn {
  margin-top: 10px;
}
.profile-btn a {
  background-color: var(--color-primary);
  color: #fff;
  display: inline-block;
  padding: 5px 15px;
}

.doctor-numbers {
  position: relative;
  margin-top: 45px;
  background: linear-gradient(to bottom, #ff6a0000, #cbebff);
  padding: 0 23px;
  border-radius: 28px;
}

.doctor-numb-block h2 {
  font-size: 55px;
  color: var(--color-secondary);
}

.doctor-numbers .col-md-4:nth-child(2) {
  border-left: 1px solid #aecfe3;
  border-right: 1px solid #aecfe3;
}

.doctor-numbers::after {
  content: "";
  position: absolute;
  height: 10px;
  width: 50%;
  background-color: var(--color-primary);
  bottom: -9px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

.services-section {
  position: relative;
  margin-bottom: 70px;
  padding-bottom: 100px;
}
.serv-blk2 {
  padding-top: 55px;
}
.serv-blk2 .col-md-4:nth-child(2) {
  margin-top: -75px;
}
.services-section::after {
  content: "";
  position: absolute;
  height: 45%;
  width: 100%;
  background-color: var(--color-secondary);
  bottom: 0;
  z-index: -1;
}

/* ======= service-img style ======= */
.service-img .item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.service-img .item:hover img {
  -webkit-filter: none;
  filter: none;
  -webkit-transform: scale(1.09, 1.09);
  transform: scale(1.09, 1.09);
  -webkit-filter: brightness(70%);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
.service-img .item:hover .con {
  bottom: 0;
}
.service-img .item img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.service-img .item .con {
  padding: 30px 15px;
  position: absolute;
  bottom: -58px;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  z-index: 20;
  height: auto;
  box-sizing: border-box;
  background: -moz-linear-gradient(
    top,
    transparent 0,
    rgba(0, 0, 0, 0.1) 2%,
    var(--color-primary)
  );
  background: -webkit-linear-gradient(
    top,
    transparent 0,
    rgba(0, 0, 0, 0.01) 2%,
    var(--color-primary)
  );
  background: linear-gradient(
    to bottom,
    transparent 0,
    rgba(0, 0, 0, 0.01) 2%,
    var(--color-primary)
  );
}
.service-img .item .con h6,
.service-img .item .con h6 a {
  position: relative;
  color: #b19777;
  font-size: 13px;
  font-weight: 400;
  margin-top: 0px;
  margin-bottom: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
}
.service-img .item .con h5,
.service-img .item .con h5 a {
  position: relative;
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  margin-top: 0px;
  margin-bottom: 10px;

  text-transform: uppercase;
}
.service-img .item .con h5 {
  background-color: var(--color-primary);
  border-radius: 7px;
  padding: 10px;
  display: inline-block;
}
.service-img .item .con p {
  color: #fff;
  font-size: 20px;
}
.service-img .item .con i {
  color: #fff;
  font-size: 20px;
}
.service-img .item .con i:hover {
  color: #b19777;
}
.service-img .item .con .butn-light {
  margin-left: 0;
  border-radius: 30px;
  border-color: #999;
  padding: 11px 30px;
}
.service-img .item .con .butn-light:hover {
  border-color: #b19777;
}
/* line animation */
.service-img .item .line {
  text-align: center;
  height: 1px;
  width: 60px;
  background-color: #fff;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  margin: 0 auto 30px;
}
.service-img .item:hover .line {
  width: 100%;
  transition-property: all;
  transition-duration: 0.8s;
  transition-timing-function: ease-in-out;
}
/* prev/next project */
.service-img-prev-next {
  padding: 40px 0;
  border: none;
  border-top: 1px solid #323232;
  position: relative;
}
@media (max-width: 576px) {
  .service-img-prev-next {
    text-align: center;
  }

  .service-img-prev-next-left {
    margin-bottom: 10px;
  }
}

.titles {
  margin-bottom: 75px;
}

.titles h2 {
  position: relative;

  color: var(--color-secondary);
  padding-left: 10px;
  margin-bottom: 0;
  line-height: 58px;
  font-size: 35px;
}

.titles h2::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: var(--color-secondary);
  left: 0;
  top: 0;
}

.titles h2::after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  background-color: var(--color-primary);
  left: -5px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.titles h2 span {
  font-size: 65px;
  font-family: "Great Vibes", cursive;
  color: var(--color-primary);
}

.titles p {
  margin-bottom: 0px;
  padding-left: 25px;
}

.service-img .item:hover .con a {
  color: #fff;
  position: relative;
  top: -15px;
}

.testimonials-section {
  position: relative;

  margin-bottom: 50px;
}

.testimonials-block {
  position: relative;
}

.testimonials-inner-block {
  position: relative;
  margin: 21px;
  margin-bottom: 45px;
  box-shadow: 0 0 10px #01588e63;
  padding: 20px;
  border-radius: 10px;
  padding-left: 75px;
  border-bottom-left-radius: 103px;
}

.testimonials-inner-block h2 {
  color: var(--color-secondary);
  font-size: 24px;
  margin-bottom: 0px;
}

.testimonials-inner-block p {
  margin-bottom: 0px;
  font-size: 14px;
  line-height: 25px;
}

.rating {
  font-size: 14px;
}

.line2 {
  position: relative;
  height: 1px;
  width: 45%;
  background-color: var(--color-primary);
  margin: 10px 0;
}
.testimonials-inner-block::before {
  content: "";
  position: absolute;
  height: 75%;
  width: 8px;
  background-color: var(--color-secondary);
  border-radius: 25px;
  left: 0;
}
.person-image {
  position: absolute;
  bottom: 0;
  left: -50px;
}

.appointment-section {
  position: relative;

  margin-bottom: 50px;
}

.form-container {
  background: var(--color-secondary);
  padding: 25px 30px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  max-width: 700px;
  margin: auto;
}

.form-container h2 {
  color: #fff;
  font-weight: 600;
}

.form-control {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 12px;
  font-size: 15px;
  transition: 0.3s;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(255, 106, 0, 0.25);
}

textarea.form-control {
  resize: none;
}

/* Placeholder styling */
::placeholder {
  color: #777;
  opacity: 1; /* Ensure visibility */
  font-style: italic;
}

.form-control:focus::placeholder {
  color: var(--color-secondary);
  font-style: normal;
}

.btn-primary {
  background: var(--color-primary);
  border: none;
  border-radius: 8px;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: var(--color-secondary);
}

.error {
  color: red;
  font-size: 13px;
}

.signs-block {
  position: relative;
  padding: 75px 0;
  padding-right: 25px;
}

.signs-block h2 {
  color: var(--color-secondary);
  font-size: 53px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0;
}

.signs-block h2 span {
  font-size: 50px;
  font-family: "Great Vibes", cursive;
  color: var(--color-primary);
  text-transform: none;
  font-weight: 400;
}

.retina-warning-list {
  list-style-type: disc; /* Default bullet points */
  padding-left: 20px; /* Indentation for bullets */
  font-family: Arial, sans-serif; /* Clean and readable font */
  font-size: 1rem; /* Standard font size */
  line-height: 1.6; /* Adequate line spacing */
}

.retina-warning-list li {
  margin-bottom: 10px; /* Space between list items */
}

.signs-block::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 25%;
  border: 10px solid var(--color-primary);
  border-left: none;
  right: 0;
  top: 0;
  border-top-left-radius: 75px;
}

.mobile-view {
  display: none;
}

/* ===== FAQ Section ===== */
.faq-section {
  margin-bottom: 85px;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: var(--color-secondary);
}

/* Grid Layout: 2 columns on desktop */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-column details {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 14px 18px;
  background-color: #fafafa;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  margin-bottom: 16px;
}

.faq-column details[open] {
  border-color: var(--color-primary);
  background-color: #fff;
}

.faq-column summary {
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  position: relative;
  color: var(--color-default);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-column summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.faq-column details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-column h3 {
  display: inline;
  font-size: 1.05rem;
  margin: 0;
  font-weight: 600;
}

.faq-column p {
  margin-top: 10px;
  color: var(--color-default);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive: stack into 1 column on mobile */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-title {
    font-size: 1.6rem;
  }
}

.faq-title span {
  font-size: 65px;
  font-family: "Great Vibes", cursive;
  color: var(--color-primary);
  font-weight: 500;
}
/* --- Enhanced FAQ Animations --- */

/* Smooth expand/collapse effect for answers */
.faq-column details > div {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-5px);
  transition: max-height 0.45s ease, opacity 0.35s ease, transform 0.45s ease;
}

/* When opened — fade and slide smoothly */
.faq-column details[open] > div {
  max-height: max-content;
  opacity: 1;
  transform: translateY(0);
}

/* Smooth rotation for plus/minus icon */
.faq-column summary::after {
  display: inline-block;
  transition: transform 0.35s ease, color 0.3s ease;
}

/* Rotate and recolor icon when opened */
.faq-column details[open] summary::after {
  transform: rotate(180deg);
  color: var(--color-secondary);
}

/* Subtle hover glow on question */
.faq-column summary {
  position: relative;
  transition: color 0.3s ease;
}
.faq-column summary:hover {
  color: var(--color-primary);
}
.faq-column summary:hover::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-primary);
  opacity: 0.2;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}
.faq-column summary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Slight lift and shadow on open */
.faq-column details {
  transition: all 0.4s ease;
}
.faq-column details[open] {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Fade-up entrance for FAQ section */
.faq-section {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-structured {
  position: relative;
  background: linear-gradient(135deg, #01588e 55%, #ff6a00 55%);
  color: #fff;

  padding: 60px 20px 10px;
  overflow: hidden;
}

.footer-structured .footer-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("../gallery/hosp-image.png") no-repeat right bottom;
  background-size: contain;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Top Row */
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-block h5 {
  margin-bottom: 10px;
  color: #fff;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px dashed #fff;
  display: inline-block;
  padding-right: 25px;
}

.footer-block p {
  margin: 0;
  line-height: 1.6;
}

/* Middle Row */
.footer-middle {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-services ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-services ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-services ul li a:hover {
  color: #ffeb00;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--color-primary);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 0 10px #00000066;
}

.footer-social h5 {
  margin-right: 10px;
  margin-bottom: 0px;
}

.footer-social a {
  color: #fff;
  font-size: 1.3rem;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #ffeb00;
  transform: translateY(-3px);
}

/* Newsletter */
.footer-newsletter h5 {
  margin-bottom: 10px;
  color: #ffeb00;
}

.footer-newsletter form {
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  max-width: 400px;
}

.footer-newsletter input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  outline: none;
}

.footer-newsletter button {
  padding: 10px 20px;
  border: none;
  background: #ffeb00;
  color: #01588e;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.footer-newsletter button:hover {
  background: #fff;
  color: #01588e;
  transform: translateY(-2px);
}

/* Map */
.footer-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Credits */
.footer-credit {
  text-align: center;
  font-size: 16px;
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-top,
  .footer-middle {
    flex-direction: column;
    gap: 25px;
  }

  .footer-services ul {
    flex-direction: column;
    gap: 10px;
  }

  .footer-social {
    justify-content: flex-start;
    width: fit-content;
  }
}

.footer-block.address h5 {
  color: #ffeb00;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Each contact line */
.footer-block.address p {
  display: flex;
  align-items: center;
  gap: 12px; /* space between icon and text */
  margin: 10px 0;
}

/* Icon styling */
.footer-block.address p i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px; /* fixed width */
  height: 35px; /* fixed height */
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%; /* circular icon */
  padding: 7px;
  flex-shrink: 0;
  font-size: 1.2rem;
}

/* Optional: text line-height for neatness */
.footer-block.address p span {
  line-height: 1.4;
}

.footer-services h5 {
  font-size: 65px;
  font-family: "Great Vibes", cursive;
  color: #fff;
  font-weight: 500;
  opacity: 0.2;
}

.timings {
  position: relative;
}
.timings::after {
  content: "";
  position: absolute;
  height: 250px;
  width: 250px;
  top: -50px;
  left: -50px;
  background: linear-gradient(to left, #ff6a0000, #01588e8f);
  z-index: -1;
  border-radius: 50%;
}

/* ================================
# Contact Section
================================ */
.ip-page {
  padding: 100px 0;
  min-height: 75vh;
  color: var(--color-default);
}

.contact .section-title h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.contact .section-title p {
  font-size: 16px;
  color: var(--color-default);
  margin-bottom: 50px;
}

/* Info Cards */
.info-card {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
  background: linear-gradient(to top, #01497712, #01588e00);
}

.contact .col-md-4:nth-child(2) .info-card {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.info-card i {
  font-size: 36px;
  color: var(--color-primary);

  display: block;
  transition: transform 0.3s ease;
}

.info-card:hover i {
  transform: scale(1.2);
}

.info-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-secondary);
  display: inline-block;
  border-bottom: 1px dashed;

  padding: 6px 10px;
  text-transform: uppercase;
}

.info-card p {
  font-size: 15px;
  color: var(--color-default);
}

.info-card::after {
  content: "";
  position: absolute;
  height: 5px;
  width: 70%;
  background-color: var(--color-primary);
  border-radius: 25px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

/* Contact Form */
.contact-form {
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  color: #333;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.contact-form .form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 12px 15px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #0077b6;
  box-shadow: 0 0 10px rgba(0, 119, 182, 0.2);
  outline: none;
}

/* Submit Button */
.contact-form button[type="submit"] {
  background: linear-gradient(90deg, #0077b6, #00b4d8);
  color: #fff;
  border: none;
  padding: 12px 35px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-form button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }

  .contact .section-title h2 {
    font-size: 28px;
  }

  .info-card {
    margin-bottom: 25px;
  }
}

/* Hero Breadcrumb Section */
.breadcrumb {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 152px 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-secondary), #012f4f);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
}

/* Background Abstract Shapes */
.breadcrumb::before,
.breadcrumb::after,
.breadcrumb .shape {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

/* Large Orange Blob */
.breadcrumb::before {
  width: 400px;
  height: 400px;
  background: var(--color-primary);
  top: -100px;
  left: -150px;

  transform: rotate(45deg);
  background: linear-gradient(to left, #ff6a0082, var(--color-secondary));
  opacity: 1;
}

/* Large Blue Blob */
.breadcrumb::after {
  width: 500px;
  height: 500px;
  background: var(--color-secondary);
  bottom: -150px;
  right: -200px;
  transform: rotate(-30deg);
}

/* Floating Small Shapes */
.breadcrumb .shape-small {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  opacity: 0.25;
  background: var(--color-primary);
  animation: float 8s ease-in-out infinite;
}

.breadcrumb .shape-small:nth-child(1) {
  top: 50px;
  left: 70px;
  animation-delay: 0s;
}

.breadcrumb .shape-small:nth-child(2) {
  bottom: 80px;
  right: 100px;
  background: var(--color-secondary);
  animation-delay: 2s;
}

.breadcrumb .shape-small:nth-child(3) {
  top: 120px;
  right: 50px;
  background: var(--color-primary);
  animation-delay: 4s;
}

/* Floating Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(15deg);
  }
}

/* Container */
.breadcrumb .container {
  position: relative;
  z-index: 2;
}

/* Title */
.breadcrumb-title {
  font-size: 41px;
  font-weight: 600;
  margin-bottom: 15px;

  position: relative;
  text-transform: uppercase;
  letter-spacing: 0;
}

.breadcrumb-title::after {
  content: "";
  display: block;
  width: 140px;
  height: 4px;
  background: var(--color-primary);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}

.breadcrumb-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-list li {
  position: relative;
  padding: 0 10px;
}

.breadcrumb-list li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -10px;
  color: var(--color-primary);
  font-weight: bold;
}

.breadcrumb-list a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
  color: var(--color-primary);
}

.breadcrumb-list .active {
  color: var(--color-primary);
  font-weight: 600;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
  .breadcrumb {
    min-height: 370px;
    padding: 60px 15px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  }

  .breadcrumb-title {
    font-size: 28px;
  }

  .breadcrumb-title::after {
    width: 90px;
  }

  .breadcrumb-list {
    font-size: 14px;
  }
}

.custom-list {
  list-style: none; /* remove default bullets */
  padding: 0;
  margin: 12px 0 0;
}

.custom-list li {
  position: relative;
  padding-left: 36px; /* space for icon/image */
  margin-bottom: 10px;

  margin-top: 10px;
  color: var(--color-default);
  line-height: 1.6;
  font-size: 16px;
}

/* Add your custom bullet image */
.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px;
  height: 20px;
  background-image: url("../gallery/bt-point.png"); /* replace with your image */
  background-size: contain;
  background-repeat: no-repeat;
}

.custom-list li a {
  color: #013f5d;
  font-weight: 500;
}

.custom-list li a:hover {
  color: var(--color-primary);
}

.faq-column h4 {
  color: var(--color-secondary);
  font-size: 22px;
  font-weight: 600;
}
.secondary-link {
  color: #fff;
  text-decoration: none; /* optional: remove underline */
  transition: color 0.3s ease;
}

.secondary-link:hover {
  color: var(--color-primary); /* slightly darker on hover */
}
.secondary-link2 {
  color: var(--color-default);
  text-decoration: none; /* optional: remove underline */
  transition: color 0.3s ease;
}

.secondary-link2:hover {
  color: var(--color-primary); /* slightly darker on hover */
}

.tx-def {
  padding: 100px 0;
  min-height: 75vh;
  color: var(--color-default);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.tx-def h2 {
  font-size: 45px;
  text-align: center;
  font-weight: 600;
}
.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.gallery-img:hover {
  transform: scale(1.05);
}

/* Move close button outside image at top center */
.lb-close {
  position: absolute !important;
  top: -45px !important; /* moves it above the image */
  right: 10px !important;
  width: 35px !important;
  height: 35px !important;
  filter: brightness(0) invert(1); /* white icon */
  opacity: 0.9;
  z-index: 100000;
}

/* Adjust wrapper so there’s room above image */
.lb-dataContainer {
  margin-top: 40px !important;
}

/* Optional: make arrows white */
.lb-nav a.lb-prev,
.lb-nav a.lb-next {
  filter: brightness(0) invert(1);
}

.box {
  position: relative;
  overflow: hidden;
  text-align: center;
  margin-bottom: 30px;
  border-radius: 22px;
  border-top-left-radius: 0;
  box-shadow: 0 0 10px #01588e5c;
}

.box::before,
.box::after {
  content: "";
  background: var(--color-primary);
  width: 100%;
  height: 100%;
  transform: scaleY(0);
  opacity: 0.75;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.3s ease-in-out;
}

.box::after {
  transform: scaleX(0);
}

.box:hover::before {
  transform: scaleY(1);
}

.box:hover::after {
  transform: scaleX(1);
}

.box img {
  width: 100%;
  height: auto;
  transition: all 0.35s;
  display: block;
}

.box-content {
  color: #fff;
  width: 100%;
  opacity: 0;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transition: all 0.6s ease;
}

.box:hover .box-content {
  opacity: 1;
}

.box .icon {
  padding: 0;
  margin: 0;
  list-style: none;
}

.box .icon li {
  display: inline-block;
}

.box .icon li i {
  color: #003844;
  background: #fff;
  font-size: 18px;
  line-height: 38px;
  width: 40px;
  height: 40px;
  display: block;
  border: 2px solid transparent;
  border-radius: 50%;
  transition: all 0.35s;
  box-shadow: 0 0 10px #000;
}

.box .icon li a:hover {
  color: #fff;
  background: #003844;
  border: 2px solid #fff;
}

@media (max-width: 991px) {
  .box {
    margin-bottom: 30px;
  }
}

.event-blk {
  position: relative;
  margin-bottom: 75px;
  border-bottom: 1px solid;
}

.event-head h2 {
  color: var(--color-secondary);
  font-weight: 500;
  font-size: 25px;
  margin-bottom: 25px;
  padding-bottom: 5px;
  border-bottom: 1px dashed;
  display: inline-block;
}

.doc-about {
  position: relative;
}
.doc-about p {
  line-height: 33px;
  margin-bottom: 15px;
  font-size: 16px;
}

.doc-about h2 {
  font-size: 24px;
  font-weight: 600;
  display: inline-block;
  text-transform: uppercase;
  color: var(--color-secondary);
  border-bottom: 2px solid;

  background: linear-gradient(to top, #ff6a003b, #01588e00);
  position: relative;
  padding: 5px 25px;
  border-top-left-radius: 39px;
}

.doc-about h3 {
  color: var(--color-primary);
  font-size: 21px;
  font-weight: 600;
}

.contact-form h2 {
  color: var(--color-secondary);
  margin-bottom: 15px;
}

#feedbackSuccess {
  display: none;
  margin-top: 20px;
  text-align: center;
}

ul.custom-width {
  display: inline-block; /* shrink to fit content */
  min-width: 250px; /* optional minimum width */
  max-width: 600px; /* optional maximum width */
  padding: 0;
  margin: 0;
  background: #fff; /* adjust as needed */
  list-style: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navmenu .dropdown ul li a:hover {
  color: #fff; /* text color on hover */
  background-color: var(--color-primary); /* subtle background on hover */
}
.navmenu .dropdown ul li a {
  transition: color 0.3s ease, background-color 0.3s ease; /* smooth hover */
}

.service-content .custom-list {
  padding-left: 25px;
}

.service-content {
  line-height: 33px;
  margin-bottom: 15px;
  font-size: 16px;
}

.faq-column .custom-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 10px;
  margin-top: 10px;
  color: var(--color-default);
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq-column .secondary-link {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.navmenu li:last-child a {
  border-bottom: none;
}

.swiper-pagination {
  position: relative;
  margin-top: 45px; /* adjust as needed */
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}
body.index-page::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../gallery/background-image.jpg"); /* Replace with your image URL */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1; /* Behind all content */
  opacity: 0.2;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  display: none; /* hidden by default */
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.whatsapp-float.active {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.whatsapp-float img {
  width: 80px;
  height: 80px;
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}

.service-content h2 {
  color: var(--color-secondary);
  font-size: 22px;
}

.blog-txt p a {
  color: var(--color-primary);
}
.blog-box {
  position: relative;
  padding: 10px;
  border: 1px solid var(--color-primary);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 0 10px #0000003b;
}

.blog-box h2{
  color: var(--color-secondary);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-box p{
  font-size: 15px;
}