* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}




html {
  scroll-behavior: smooth;
}




body {
  /*background:
    radial-gradient(circle at center,
      #39c6f0 0%,
      #0fa3d1 35%,
      #0b7ec2 65%,
      #075f9c 100%);*/
      background: white;
  }

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ================= HEADER ================= */


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px 1px 80px;
    /*background:
    radial-gradient(circle at center,
      #39c6f0 0%,
      #0fa3d1 35%,
      #0b7ec2 65%,
      #075f9c 100%);*/
    /*box-shadow: 0 4px 6px var(--shadow-color);*/
    /*border-bottom: 0.5px solid var(--header-line-color);*/
    position: sticky;
    top: 0;
    z-index: 10;
    background: radial-gradient(
  circle at center,
  #239eca 0%,
  #036082 65%
);

  }

  .logo img {
    height: 70px;
    width: auto;
  }

  nav {
    display: flex;
    gap: 30px;
  }



/* Base menu text */
nav a {
  position: relative;
  text-decoration: none;
  color: white;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  transition: all 0.4s ease;
}

/* Hover text + stroke + shadow */


/* Base nav links */
nav a {
  position: relative;
  color: white;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  transition: 0.3s ease;
}

/* Hover effects */
nav a:hover {
  color: ; /* text turns white */
  font-weight: 700;
  
  text-shadow: 0 0 8px black; /* glow */
}

/* Liquid underline - default hidden */
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 3px;
  /*background: deepskyblue;*/
  background: white;
  border-radius: 30px;
  
  /* liquid flow animation */
  /*background: linear-gradient(90deg, #009dff, #00e5ff, #009dff);*/

  background-size: 200%;
  transition: width .35s ease;
  animation: liquidFlow 2s linear infinite;
}

/* Show underline on hover */
nav a:hover::after {
  width: 100%;
}

/* Liquid moving effect */
@keyframes liquidFlow {
  0%   { background-position: 0% }
  100% { background-position: 200% }
}













/* Hide menu button in desktop */
.menu-btn {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {

  header {
    padding: 10px 20px;
    flex-wrap: wrap;
  }

  .logo {
    width: 100%;
    text-align: center;
  }

  .menu-btn {
    display: block;
    position: absolute;
    right: 20px;
    top: 18px;
  }

  nav {
    width: 100%;
    flex-direction: column;
    gap: 15px;
    background: rgba(255,255,255,0.95);
    border-bottom: 1px solid var(--header-line-color);
    box-shadow: 0 4px 6px var(--shadow-color);
    padding: 15px 0;
    display: none; /* Hide menu initially */
  }

  nav.show {
    display: flex; /* Show when active */
  }

  nav a {
    display: block;
    text-align: center;
  }

  .logo img {
    height: 60px;
  }
}





/* Mobile Slide Menu */
@media(max-width: 768px) {

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background: skyblue;
    transition: 0.3s;
    padding-top: 80px;
    /*display: flex;*/
    flex-direction: column;
    gap: 20px;
    padding-left: 20px;
  }

  nav a {
    font-size: 18px;
    display: block;
  }

  nav.show {
    right: 0; /* slide in */
  }

  .menu-btn {
    display: block;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: black;
    z-index: 1000;
    margin-right: 10px;
  }

  header {
    padding: 12px 18px;
  }

  .logo img {
    height: 55px;
  }

  /* Hide menu inline on mobile */
  header nav {
    position: fixed;
  }
}



header.scrolled {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}


/* Smooth resize animation */
header {
  transition: padding 0.3s ease, background-color 0.3s ease;
}

.logo img {
  height: 70px;
  width: auto;
  transition: height 0.3s ease;
}

/* When scrolled */
header.scrolled {
  padding: 5px 30px;
}

header.scrolled .logo img {
  height: 50px;
}



/* Glass Header */
header {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  /*background: rgba(255, 255, 255, 0.8) !important;*/
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Wrapper */
.dropdown {
  position: relative;
  padding-top: 5px;


}

/* Hidden submenu box */
.dropdown-content {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  min-width: 200px;
  z-index: 100;
}

/* Submenu links */
.dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: black;
  text-decoration: none;
  font-size: 14px;
}

/* Hover show submenu */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Hover effect */
.dropdown-content a:hover {
  background: #e8f1ff;
}








/* ================= HERO ================= */
.hero-wrapper {
  /*background:
    radial-gradient(circle at center,
      #39c6f0 0%,
      #0fa3d1 35%,
      #0b7ec2 65%,
      #075f9c 100%);*/
  color: #ffffff;
  background: radial-gradient(
  circle at center,
  #239eca 0%,
  #036082 65%
);

  padding: 60px 0 80px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 20px;
}

/* Left */
.hero-tag {
  display: inline-block;
  padding: 6px 18px;
  font-size: 12px;
  letter-spacing: 1px;
  border: 1.5px solid rgba(255,255,255,0.85);
  border-radius: 6px;
  margin-bottom: 14px;
}

.hero-content h1 {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-content h1 span {
  font-weight: 800;
}

.hero-text {
  font-size: 16px;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 28px;
}

/* Button */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: #ffffff;
  color: #0b7ec2;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.hero-btn span {
  background: #0b7ec2;
  color: #ffffff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image + double circle */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 3;
}

/* Sky blue circle */
.hero-image::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 6px solid #6fd6ff;
  z-index: 1;
}

/* White circle (same size) */
.hero-image::after {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.95);
  z-index: 2;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #0b7ec2, #06a3c8);
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    display: none;
  }

  .nav.active {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    order: -1;
    margin-bottom: 25px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }
}

















/* ================= SERVICES SECTION ================= */
/* ================= CREATIVE SERVICES ================= */
/* FORCE CENTER ALIGN – SERVICES HEADING */
.services-title {
  max-width: 720px;
  margin: 0 auto 70px auto; /* left-right auto = center */
  text-align: center !important;
}

/* Ensure all text inside is centered */
.services-title span,
.services-title h2,
.services-title p {
  text-align: center !important;
}




.services-creative {
  padding: 80px 0;
  background: #ffffff;
}

/* Title */
.services-title {
  max-width: 720px;
  margin-bottom: 70px;
}

.services-title span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #0b7ec2;
}

.services-title h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0f172a;
  margin: 12px 0;
}

.services-title p {
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
}

/* Services list */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Service item */
.service-item {
  display: flex;
  gap: 22px;
  padding: 28px;
  border-radius: 22px;
  background: #f8fbff;
  border: 1px solid #e6f2ff;
  transition: all 0.35s ease;
  position: relative;
  border-color: #0b7ec2;
}

/* Left gradient line */
.service-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 4px;
  height: calc(100% - 44px);
  background: linear-gradient(180deg, #0b7ec2, #39c6f0);
  border-radius: 10px;
}

/* Icon */
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b7ec2, #39c6f0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #ffffff;
  flex-shrink: 0;
}

/* Text */
.service-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.service-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
}

/* Hover */
.service-item:hover {
  background: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(11,126,194,0.15);
}

@media (max-width: 900px) {

  .services-title h2 {
    font-size: 30px;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .service-item {
    padding: 24px;
  }
}













/* ================= ABOUT DOCTOR ================= */
.about-doctor {
  padding: 80px 0 0px;
  background: #ffffff;
}

/* Layout */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 70px;
}

/* Image */
.about-image {
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 360px;
  max-width: 100%;
  border-radius: 26px;
  box-shadow: 0 30px 60px rgba(15,23,42,0.15);
}

/* Content */
.about-tag {
  display: inline-block;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #0b7ec2;
  border: 1.5px solid #0b7ec2;
  border-radius: 6px;
  margin-bottom: 14px;
}

.about-content h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.about-intro {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  max-width: 560px;
  margin-bottom: 36px;
}




/* Timeline */
.timeline {
  position: relative;
  padding-left: 24px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #e6f2ff;
}

.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 26px;
  position: relative;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  background: #0b7ec2;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.timeline-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}

.timeline-item p {
  font-size: 14px;
  color: #475569;
}

@media (max-width: 900px) {

  .about-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    order: -1;
    margin-bottom: 30px;
  }

  .about-intro {
    margin-left: auto;
    margin-right: auto;
  }

  .timeline {
    padding-left: 0;
  }

  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}




/* ================= WHY CHOOSE US ================= */
.why-choose-us {
  padding: 80px 0;
  background: #f8fbff;
}

/* Header */
.why-header {
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
}

.why-header span {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #0b7ec2;
  border: 1.5px solid #0b7ec2;
  border-radius: 6px;
  padding: 6px 18px;
  margin-bottom: 14px;
}

.why-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
}

.why-header p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Card */
.why-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid #e6f2ff;
  transition: all 0.35s ease;
  border-color: #0b7ec2;
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b7ec2, #39c6f0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #ffffff;
  margin: 0 auto 22px;
}

.why-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
}

/* Hover */
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(11,126,194,0.18);
}
@media (max-width: 900px) {

  .why-header h2 {
    font-size: 30px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}











/* ================= TESTIMONIALS ================= */
/* ================= CLEAN TESTIMONIALS ================= */
/* RESET */
* {
  box-sizing: border-box;
}

/* SECTION */
.testimonial-section {
  padding: 80px 0 0px;
 background: radial-gradient(
  circle at center,
  #239eca 0%,
  #036082 65%
);
 
}

/* HEADER */
.testimonials-header {
  text-align: center;
  margin-bottom: 30px;
}

.testimonials-header h2 {
  color: #ffffff;
  font-size: 36px;
}

.testimonials-header p {
  color: rgba(255,255,255,0.85);
}

/* SURFACE (fixes band issue) */
.testimonial-surface {
  /*background: rgba(11,126,194,0.25);*/
  border-radius: 32px;
  padding: 0px 0 15px;
}

/* WRAPPER */
.testimonial-wrapper {
  overflow: hidden;
}

/* TRACK */
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* CARD */
.testimonial-card {
  flex: 0 0 33.3333%;
  padding: 14px;
}

/* INNER CARD */
.card-inner {
  background: #ffffff;
  border-radius: 22px;
  padding: 30px;
  height: 100%;
  /*box-shadow: 0 20px 45px rgba(0,0,0,0.25);*/
}

/* CLIENT */
.client-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.client-info img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0b7ec2;
}

.client-info h4 {
  font-size: 16px;
  color: #0f172a;
}

.stars {
  color: #facc15;
  font-size: 14px;
  letter-spacing: 2px;
}

/* TEXT */
.card-inner p {
  font-size: 14px;
  line-height: 1.8;
  color: #334155;
}

/* DOTS */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-dots span {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dots span.active {
  width: 28px;
  border-radius: 20px;
  background: #ffffff;
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
}



.why-heade {
  max-width: 720px;
  margin: 0 auto 10px;
  text-align: center;
}

.why-heade span {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #ffff;
  border: 1.5px solid #ffff;
  border-radius: 6px;
  padding: 6px 18px;
  margin-bottom: 14px;
}



























/* ================= EXPERIENCE BOOKING ================= */



/* ================= APPOINTMENT HERO ================= */

.appointment-hero {
  padding: 80px 0;
 background: radial-gradient(
  circle at center,
  #239eca 0%,
  #036082 65%
);

}

.appointment-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 10px;
}

.appointment-header h2 {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 12px;
}

.appointment-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
}

/* Form Card */
.appointment-form-card {
  background: #ffffff;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 28px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}

/* Form Layout */
.appointment-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid #e6f2ff;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
  width: 100%;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  border-color: #0b7ec2;
  box-shadow: 0 0 0 3px rgba(11,126,194,0.15);
}

/* Message full width */
.appointment-form textarea {
  grid-column: span 3;
}

/* Button */
.appointment-form button {
  grid-column: span 3;
  margin-top: 10px;
  padding: 16px;
  border-radius: 40px;
  border: none;
  background: #0b7ec2;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.appointment-form button:hover {
  background: #094d75;
}

/* Info below form */
.appointment-info {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  color: #475569;
}

.appointment-info p {
  margin-bottom: 6px;
}

/* Mobile */
@media (max-width: 900px) {
  .appointment-header h2 {
    font-size: 32px;
  }

  .appointment-form {
    grid-template-columns: 1fr;
  }

  .appointment-form textarea,
  .appointment-form button {
    grid-column: span 1;
  }

  .appointment-form-card {
    padding: 30px 22px;
  }
}









/* ===== SUCCESS POPUP ===== */

.success-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-box {
  background: #ffffff;
  padding: 30px 34px;
  border-radius: 20px;
  text-align: center;
  max-width: 360px;
  width: 90%;
}

.popup-box h3 {
  font-size: 20px;
  color: #0f172a;
  margin-bottom: 10px;
}

.popup-box p {
  font-size: 14px;
  color: #475569;
  margin-bottom: 20px;
}

.popup-box button {
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  background: #0b7ec2;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}




/* Desktop: one line appoiment form note content single line */ 
.info-line {
  display: flex;
  flex-wrap: nowrap;     /* 🔥 force one line */
  gap: 18px;
  justify-content: center;
}

.info-line p {
  margin: 0;
  white-space: nowrap;  /* 🔥 prevent text breaking */
}

/* Mobile: separate lines */
@media (max-width: 768px) {
  .info-line {
    flex-direction: column; /* 🔥 each p on new line */
    gap: 10px;
  }
}






/* ================= FAQ SECTION ================= */

.faq-section {
  padding: 80px 0;
  background: #f8fbff;
}

/* Header */
.faq-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.faq-header h2 {
  font-size: 38px;
  color: #0f172a;
  margin-bottom: 12px;
}

.faq-header p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

/* FAQ List */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

/* Item */
.faq-item {
  border-bottom: 1px solid #e6f2ff;
}

/* Question */
.faq-question {
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
}

.faq-question span {
  font-size: 24px;
  color: #0b7ec2;
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  transition: max-height 0.35s ease;
}

/* Active */
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 22px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* Mobile */
@media (max-width: 768px) {
  .faq-header h2 {
    font-size: 30px;
  }

  .faq-question {
    font-size: 15px;
  }
}




















/* ================= CONTACT SECTION ================= */

/* ================= CONTACT GLASS ================= */

.contact-glass {
  position: relative;
  height: 600px;
  padding-top: 50px;
}

/* Map Background */
.map-bg iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Floating Card */
.contact-card {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  padding: 40px;
  max-width: 460px;
  border-radius: 28px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.35);
}

.contact-card h2 {
  font-size: 36px;
  color: #0f172a;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 26px;
}

/* Info Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-grid span {
  font-size: 13px;
  color: #64748b;
}

.contact-grid p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #0f172a;
}

.contact-grid a {
  color: #0b7ec2;
  text-decoration: none;
}

/* Buttons */
.contact-buttons {
  display: flex;
  gap: 14px;
}

.btn {
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  text-align: center;
}

.btn.primary:hover{
  background: #0b7ec2;
  color: #ffffff;
  /*border: 1.5px solid #25D366;*/
}

.btn.outline:hover {
  /*border: 1.5px solid #0b7ec2;*/
  color: #ffff;
  background: #25D366;
}





.btn.primary {
  background: #ffff;
  color: #0b7ec2;
  border: 1.5px solid #0b7ec2;
}

.btn.outline{
  border: 1.5px solid #25D366;
  color: #25D366;
  background: #ffff;
}
/*.btn:hover {
  background: #094d75;
  color: #ffffff;
}*/

/* Mobile */
@media (max-width: 900px) {
  .contact-glass {
    height: auto;
  }

  .contact-card {
    position: relative;
    transform: none;
    left: 0;
    margin: -80px auto 40px;
    width: calc(100% - 40px);
  }

  .map-bg iframe {
    height: 300px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-buttons {
    flex-direction: column;
  }
}




/* ================= FOOTER ================= */

/* ================= MODERN FOOTER ================= */

.footer-modern {
  background: linear-gradient(135deg, #0b4f6c, #0f172a);
  color: #cbd5f5;
  padding-top: 90px;
}

/* Grid */
.footer-wrapper {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

/* Columns */
.footer-col h3 {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-col h4 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  font-size: 14px;
  margin-bottom: 10px;
}

/* Links */
.footer-col a {
  color: #cbd5f5;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #38bdf8;
}

/* Bottom */
.footer-bottom-modern {
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  padding: 22px 16px 26px;
  font-size: 13px;
  color: #94a3b8;
}

.footer-bottom-modern .credit {
  margin-top: 6px;
  font-size: 13px;
  color: #cbd5f5;
}

.footer-bottom-modern strong {
  color: #ffffff;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-col ul {
    align-items: center;
  }

  .footer-col p,
  .footer-col li {
    text-align: center;
  }
}

.a{
  text-decoration: none;
  color: white;
}





/* ================= SCROLL REVEAL ================= */

/* Base hidden state */
.reveal-left,
.reveal-right,
.reveal-bottom,
.reveal-fade {
  opacity: 0;
  transition: all 0.9s ease;
}

/* Directions */
.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal-bottom {
  transform: translateY(60px);
}

.reveal-fade {
  transform: scale(0.96);
}

/* Active (visible) */
.reveal-active {
  opacity: 1;
  transform: translate(0) scale(1);
}



























