:root {
    --gold: #F5B301;
    --gold-dark: #D89B00;
    --blue: #1E3A5F;
    --light-blue: #6EC1E4;
    --white: #ffffff;
}

/* GLOBAL */
body {
    font-family: 'Poppins', sans-serif;
    background: #f9f9f9;
    color: #333;
}

h1, h2, h3, .navbar-brand span {
    font-family: 'Cinzel', serif;
}


/* ============ FLOATING GLASS NAV ============ */

.jeneya-nav-glass {
  top: 18px;
  z-index: 999;
}

.nav-glass-inner {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 12px 24px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* LOGO */
.nav-logo {
  height: 120px;
  margin-right: 10px;
}

.brand-text {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
}

/* LINKS */
.navbar-nav .nav-link {
  color: var(--blue);
  font-weight: 500;
  margin: 0 14px;
  position: relative;
  padding: 6px 0;
  transition: 0.3s;
}

/* UNDERLINE SLIDE */
.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold);
}

/* CALL BUTTON */
.nav-call-glass {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(245,179,1,0.45);
  text-decoration: none;
  transition: 0.3s;
}

.nav-call-glass:hover {
  transform: translateY(-2px);
  color: #fff;
}

/* TOGGLER */
.navbar-toggler {
  border: none;
  font-size: 22px;
  color: var(--blue);
}

/* MOBILE */
@media (max-width: 991px) {

  .nav-glass-inner {
    padding: 16px;
  }

  .navbar-collapse {
    margin-top: 15px;
    background: white;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.18);
  }

  .navbar-nav .nav-link {
    font-size: 16px;
    margin: 12px 0;
    text-align: center;
  }

  .nav-call-glass {
    width: 100%;
    justify-content: center;
    margin-top: 15px;
  }

  .nav-logo {
  height: 90px;
  margin-right: 10px;
}

.brand-text{
    display: none;
}

}

.hero-image-only { position: relative; width: 100%; min-height: 100vh; overflow: hidden; margin-top: 0px; /* space for fixed navbar */ } /* IMAGE */ .hero-image-only img { width: 100%; height: 100%; min-height: 100vh; object-fit: cover; /* key for responsiveness */ object-position: center; display: block; } /* SLIDER */ .hero-slider { position: relative; width: 100%; height: 100%; } 
/* MOBILE OPTIMIZATION */ @media (max-width: 768px) { .hero-image-only { min-height: 65vh; margin-top: 170px; } .hero-image-only img { min-height: 40vh; } }
/* ================= SLIDE CSS ================= */

/* Each slide */
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
  z-index: 1;
}

/* Active slide */
.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Prevent image selection */
.hero-slide {
  user-select: none;
  -webkit-user-drag: none;
}

/* MOBILE SLIDE FIX */
@media (max-width: 768px) {

  .hero-slide {
    min-height: 40vh;
    height: 65vh;
    object-position: center top;
  }

  .hero-image-only{

    min-height: 40vh;

  }
}

/* ================= CENTER BOTTOM CONTROLS ================= */

.hero-btn {
  position: absolute;
  bottom: 30px;
  top: auto;
  transform: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s ease;
}

.hero-btn:hover {
  background: rgba(245,179,1,0.95);
  color: #000;
  box-shadow: 0 12px 30px rgba(245,179,1,0.6);
}

/* CENTER ALIGN */
.hero-prev {
  left: 50%;
  transform: translateX(-65px);
}

.hero-next {
  left: 50%;
  transform: translateX(15px);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
    bottom: 20px;
  }

  .hero-prev {
    transform: translateX(-55px);
  }

  .hero-next {
    transform: translateX(15px);
  }
}

/* ================= ABOUT SECTION ================= */

.home-about {
  padding: 100px 0;
  background: #ffffff;
}

.about-content {
  padding-right: 40px;
}

.about-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.about-content h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.4rem;
  color: var(--blue);
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

/* IMAGE */
.about-img-wrap {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MOBILE */
@media (max-width: 991px) {
  .home-about {
    padding: 70px 0;
  }

  .about-content {
    padding-right: 0;
    text-align: center;
  }

  .about-content h2 {
    font-size: 1.9rem;
  }
}


/* ================= TEXT LOOP ================= */

.text-loop-section {
  background: #f9fafb;
  padding: 30px 0;
  overflow: hidden;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.text-loop {
  width: 100%;
  overflow: hidden;
}

.text-track {
  display: flex;
  width: max-content;
  animation: scrollText 25s linear infinite;
}

/* TAG STYLE */
.text-track span {
  display: inline-block;
  margin-right: 25px;
  padding: 10px 22px;
  border-radius: 30px;
  background: #fff;
  color: var(--blue);
  font-weight: 500;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  white-space: nowrap;
  transition: 0.3s ease;
}

.text-track span:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  transform: translateY(-2px);
}

/* ANIMATION */
@keyframes scrollText {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .text-track span {
    font-size: 13px;
    padding: 8px 18px;
  }
}


/* ================= PROFILE SECTION ================= */

.expert-profile {
  padding: 100px 0;
  background: #f9fafb;
}

/* IMAGE */
.profile-img-wrap {
  width: 220px;
  height: 220px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
  border: 6px solid #fff;
}

.profile-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.profile-content {
  padding-left: 40px;
}

.profile-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.profile-content h3 {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 15px;
}

.profile-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  max-width: 600px;
}

/* ACTION BUTTONS */
.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 25px;
}

.profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

/* CALL BUTTON */
.profile-btn.call {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  box-shadow: 0 15px 35px rgba(245,179,1,0.45);
}

.profile-btn.call:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* GOOGLE BUTTON */
.profile-btn.google {
  background: #fff;
  color: var(--blue);
  border: 2px solid #e5e5e5;
}

.profile-btn.google:hover {
  background: var(--blue);
  color: #fff;
}

/* MOBILE */
@media (max-width: 991px) {

  .expert-profile {
    padding: 70px 0;
  }

  .profile-content {
    padding-left: 0;
    text-align: center;
  }

  .profile-actions {
    justify-content: center;
  }
}


/* ================= SERVICES SECTION ================= */

.home-services {
  padding: 100px 0;
  background: #ffffff;
}

/* SERVICE CARD */
.service-card {
  background: #fff;
  border-radius: 22px;
  padding: 35px 25px;
  text-align: center;
  height: 100%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.service-card i {
  font-size: 42px;
  color: var(--gold);
  margin-bottom: 18px;
}

.service-card h5 {
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 65px rgba(0,0,0,0.15);
}

/* MOBILE */
@media (max-width: 768px) {
  .home-services {
    padding: 70px 0;
  }
}


/* ================= PARALLAX SECTION ================= */

.parallax-section {
  position: relative;
  height: 50vh;
  background-image: url("./img/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* PARALLAX */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* DARK OVERLAY */
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* CONTENT */
.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.parallax-content h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.6rem;
  margin-bottom: 12px;
  text-shadow: 0 6px 30px rgba(0,0,0,0.7);
}

.parallax-content p {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* MOBILE FIX (important) */
@media (max-width: 768px) {
  .parallax-section {
    height: 50vh;
    
  }

  .parallax-content h2 {
    font-size: 1.8rem;
  }

  .parallax-content p {
    font-size: 0.95rem;
  }
}


/* ================= IMAGE + TEXT SECTION ================= */

.image-text-section {
  padding: 100px 0;
  background: #f9fafb;
}

/* IMAGE */
.img-box {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.img-box:hover img {
  transform: scale(1.06);
}

/* TEXT */
.text-box {
  padding-left: 40px;
}

.text-box h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.3rem;
  color: var(--blue);
  margin-bottom: 18px;
}

.text-box p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 14px;
}

/* MOBILE */
@media (max-width: 991px) {

  .image-text-section {
    padding: 70px 0;
  }

  .text-box {
    padding-left: 0;
    text-align: center;
  }

  .text-box h2 {
    font-size: 1.9rem;
  }
}


/* ================= SUPER CONTACT + MAP ================= */

.contact-map-super {
  padding: 120px 0;
  background: linear-gradient(180deg, #f9fafb, #ffffff);
}

/* MAP GLASS */
.map-glass {
  height: 100%;
  min-height: 450px;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(14px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.18);
}

.map-glass iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* CONTACT GLASS */
.contact-glass {
  height: 100%;
  padding: 55px 45px;
  border-radius: 26px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}

/* HEADING */
.contact-glass h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.4rem;
  color: var(--blue);
  margin-bottom: 40px;
}

/* CONTACT ROW */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}

.contact-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* ICON */
.icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 12px 30px rgba(245,179,1,0.5);
}

/* INFO */
.info small {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.info a,
.info p {
  font-size: 1.05rem;
  color: #222;
  margin: 0;
  line-height: 1.7;
  text-decoration: none;
}

.info a:hover {
  color: var(--gold);
}

/* MOBILE */
@media (max-width: 991px) {

  .contact-map-super {
    padding: 80px 0;
  }

  .contact-glass {
    padding: 40px 30px;
    text-align: center;
  }

  .contact-row {
    justify-content: center;
    text-align: left;
  }

  .contact-glass h2 {
    font-size: 2rem;
  }
}


/* ================= FOOTER ================= */

.site-footer {
  background: linear-gradient(180deg, #1e3a5f, #162c48);
  color: #d9d9d9;
  padding: 80px 0 30px;
}

/* BRAND */
.footer-brand img {
  height: 110px;
  margin-bottom: 15px;
  
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #cfcfcf;
}

/* TITLES */
.footer-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
}

/* LINKS */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cfcfcf;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

/* CONTACT */
.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 4px;
}

.footer-contact a {
  color: #cfcfcf;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--gold);
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: 0.35s ease;
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  transform: translateY(-3px);
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #cfcfcf;
  margin: 0;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .site-footer {
    padding: 60px 0 25px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact li {
    justify-content: center;
    text-align: left;
  }
}


/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 999;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.55);
  animation: waPulse 2.2s infinite;
  transition: all 0.35s ease;
}

/* ICON */
.whatsapp-float i {
  line-height: 1;
}

/* HOVER */
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 45px rgba(37, 211, 102, 0.8);
  color: #fff;
}

/* TOOLTIP TEXT */
.wa-text {
  position: absolute;
  right: 75px;
  background: #25d366;
  color: #fff;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: 0.35s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.whatsapp-float:hover .wa-text {
  opacity: 1;
  transform: translateX(0);
}

/* PULSE ANIMATION */
@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 58px;
    height: 58px;
    font-size: 28px;
    right: 18px;
    bottom: 18px;
  }

  .wa-text {
    display: none; /* hide tooltip on mobile */
  }
}


/* ================= SCROLL TO TOP ================= */

.scroll-top {
  position: fixed;
  right: 28px;
  bottom: 110px; /* above WhatsApp */
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-size: 22px;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(245,179,1,0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.35s ease;
}

/* SHOW */
.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* HOVER */
.scroll-top:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-4px);
}

/* MOBILE */
@media (max-width: 768px) {
  .scroll-top {
    width: 46px;
    height: 46px;
    font-size: 20px;
    right: 18px;
    bottom: 90px;
  }
}




/* ================= PARALLAX HEADER ================= */

.parallax-header {
  position: relative;
  height: 65vh;
  background-image: url("./img/ab.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* PARALLAX */
  display: flex;
  align-items: center;
}

/* OVERLAY */
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.6)
  );
  z-index: 1;
}

/* CONTENT */
.parallax-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding-top: 120px; /* navbar space */
}

.parallax-content h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin-bottom: 15px;
  text-shadow: 0 6px 30px rgba(0,0,0,0.7);
}

/* BREADCRUMB */
.breadcrumb {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  color: #ddd;
}

/* MOBILE FIX (IMPORTANT) */
@media (max-width: 768px) {
  .parallax-header {
    height: 45vh;
    
  }

  .parallax-content {
    padding-top: 140px;
  }
}


/* ================= ABOUT SPLIT SECTION ================= */

.about-split {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff, #f9fafb);
}

/* IMAGE CARD */
.about-img-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.18);
  position: relative;
}

.about-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-img-card:hover img {
  transform: scale(1.08);
}

/* TEXT CARD */
.about-text-card {
  padding-left: 40px;
}

.about-text-card h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.6rem;
  color: var(--blue);
  margin-bottom: 25px;
}

.about-text-card p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
}

/* MOBILE */
@media (max-width: 991px) {
  .about-split {
    padding: 80px 0;
  }

  .about-text-card {
    padding-left: 0;
    text-align: center;
  }

  .about-text-card h2 {
    font-size: 2rem;
  }
}


/* ================= VISION & MISSION ================= */

.vision-mission {
  padding: 120px 0;
  background: #ffffff;
}

/* CARD */
.vm-card {
  background: #fff;
  border-radius: 26px;
  padding: 50px 40px;
  height: 100%;
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* ICON */
.vm-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #000;
  box-shadow: 0 15px 35px rgba(245,179,1,0.45);
  margin-bottom: 25px;
}

/* TEXT */
.vm-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: var(--blue);
  margin-bottom: 15px;
}

.vm-card p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
}

/* HOVER EFFECT */
.vm-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 45px 90px rgba(0,0,0,0.18);
}

/* SUBTLE ACCENT */
.vm-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--gold), transparent) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* MOBILE */
@media (max-width: 768px) {
  .vision-mission {
    padding: 80px 0;
  }

  .vm-card {
    padding: 40px 30px;
    text-align: center;
  }

  .vm-icon {
    margin-left: auto;
    margin-right: auto;
  }
}


/* ================= SERVICES PAGE ================= */

.services-page {
  padding: 120px 0;
  background: #ffffff;
}

/* SERVICE BOX */
.service-box {
  background: #fff;
  border-radius: 26px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  box-shadow: 0 25px 55px rgba(0,0,0,0.1);
  transition: 0.4s ease;
}

/* ICON */
.service-box i {
  font-size: 44px;
  color: var(--gold);
  margin-bottom: 20px;
}

/* TEXT */
.service-box h5 {
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 12px;
}

.service-box p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #555;
}

/* HOVER */
.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 45px 90px rgba(0,0,0,0.18);
}

/* MOBILE */
@media (max-width: 768px) {
  .services-page {
    padding: 80px 0;
  }
}


/* ================= GALLERY ================= */

.gallery-section {
  padding: 120px 0;
  background: #ffffff;
}

/* IMAGE CARD */
.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 25px 55px rgba(0,0,0,0.15);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* HOVER */
.gallery-item:hover img {
  transform: scale(1.08);
}

/* MOBILE */
@media (max-width: 768px) {
  .gallery-section {
    padding: 80px 0;
  }

  .gallery-item img {
    height: 200px;
  }
}


/* ================= CONTACT MAIN ================= */

.contact-main {
  padding: 120px 0;
  background: linear-gradient(180deg, #f9fafb, #ffffff);
}

/* FORM GLASS */
.contact-form-glass {
  height: 100%;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  padding: 50px 45px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}

.contact-form-glass h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.3rem;
  color: var(--blue);
  margin-bottom: 30px;
}

/* FORM */
.contact-form-glass .form-control {
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
}

.contact-form-glass .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.15rem rgba(245,179,1,0.25);
}

/* SUBMIT */
.btn-submit {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  color: #000;
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 600;
  box-shadow: 0 15px 35px rgba(245,179,1,0.45);
  transition: 0.3s ease;
}

.btn-submit:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* RIGHT SIDE */
.contact-info-map {
  display: flex;
  flex-direction: column;
  gap: 25px;
  height: 100%;
}

/* INFO CARD */
.contact-info-card {
  background: #fff;
  border-radius: 26px;
  padding: 35px 30px;
  box-shadow: 0 25px 55px rgba(0,0,0,0.12);
}

.contact-info-card h3 {
  font-family: 'Cinzel', serif;
  color: var(--blue);
  margin-bottom: 25px;
}

/* MAP */
.contact-map-card {
  flex: 1;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(0,0,0,0.15);
}

.contact-map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* MOBILE */
@media (max-width: 991px) {

  .contact-main {
    padding: 80px 0;
  }

  .contact-form-glass {
    padding: 40px 30px;
  }

  .contact-info-card {
    text-align: center;
  }

 
 
}

/* ================= CONTACT INFO – SUPER DESIGN ================= */

.contact-info-card {
  background: linear-gradient(180deg, #ffffff, #f9fafb);
  border-radius: 26px;
  padding: 45px 40px;
  box-shadow: 0 35px 80px rgba(0,0,0,0.14);
}

/* TITLE */
.contact-info-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.9rem;
  color: var(--blue);
  margin-bottom: 35px;
}

/* INFO ITEM */
.info-item {
  display: flex;
  align-items: flex-start;          /* ✅ FLEX-START */
  gap: 18px;
  margin-bottom: 26px;
  position: relative;
}

/* ICON */
.info-item i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 14px 30px rgba(245,179,1,0.45);
}

/* TEXT WRAP */
.info-item div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;          /* ✅ FLEX-START */
}

/* LABEL */
.info-item span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 6px;
}

/* LINK / TEXT */
.info-item a,
.info-item p {
  font-size: 1.05rem;
  color: #222;
  line-height: 1.7;
  margin: 0;
  text-decoration: none;
}

.info-item a:hover {
  color: var(--gold);
}

/* SUBTLE DIVIDER */
.info-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 70px;
  bottom: -13px;
  width: calc(100% - 70px);
  height: 1px;
  background: linear-gradient(to right, #eaeaea, transparent);
}

/* MOBILE */
@media (max-width: 768px) {

  .contact-info-card {
    padding: 35px 28px;
  }

  .contact-info-card h3 {
    text-align: center;
  }

  .info-item {
    justify-content: left;
      align-items: flex-start;          /* ✅ FLEX-START */

  }

  .info-item div {
    align-items: flex-start;
    
  }
}
