/* Reset */

body {

    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #fff;
  }

  .goog-logo-link,
  .goog-te-gadget span,
  .goog-te-banner-frame.skiptranslate {
      display: none !important;
  }

  #google_translate_element {
    display: none;
}


/* --------------------------------------------------
   ✅ TOP BAR (Unique Class)
-------------------------------------------------- */
/* --------------------------------------------------
   TOPBAR BASE
-------------------------------------------------- */
.raga-topbar {
  background: #076b8a;
  color: #fff !important; 
  font-size: 15px;
  font-weight: 500;
  height: 32px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1050;
  overflow: hidden;
}

/* --------------------------------------------------
   MARQUEE (Infinite Scroll + Hover Pause)
-------------------------------------------------- */
.scroll-wrapper {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.scroll-content {
  display: inline-flex;
  align-items: center;
  gap: 50px;
  animation: marquee 25s linear infinite;
}

/* Pause animation on hover */
.scroll-wrapper:hover .scroll-content {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --------------------------------------------------
   LANGUAGE DROPDOWN — CUSTOM ARROW
-------------------------------------------------- */
.lang-dropdown {
  width: 120px;
  background: #fff;
  color: #076b8a;
  font-weight: 600;
  padding: 6px 28px 6px 10px;
  border-radius: 4px;
  border: none;
  font-size: 14px;
  appearance: none;
  position: relative;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23076b8a' height='14' viewBox='0 0 20 20' width='14' xmlns='http://www.w3.org/2000/svg'><polygon points='0,0 20,0 10,12'/></svg>");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 12px;
  cursor: pointer;
}

/* Remove blue outline */
.lang-dropdown:focus {
  outline: none;
  box-shadow: none !important;
}

/* --------------------------------------------------
   MOBILE FIXES
-------------------------------------------------- */
@media (max-width: 768px) {

  .raga-topbar {
    height: 44px;
  }

  .scroll-content {
    gap: 35px;
    animation-duration: 18s;
  }

  .lang-dropdown {
    width: 100px;
    font-size: 13px;
    padding: 5px 26px 5px 8px;
    background-position: right 6px center;
  }
}


/* --------------------------------------------------
   Navbar (Below Topbar)
-------------------------------------------------- */
/* --------------------------------------------------
   NAVBAR BASE STYLE
-------------------------------------------------- */
.navbar {
  position: sticky;
  top: 32px; /* your topbar height */
  z-index: 1040;
  background: #fff !important;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* --------------------------------------------------
   NAV LINKS DESKTOP
-------------------------------------------------- */
.navbar-nav .nav-link {
  font-size: 16px;
  font-weight: 600;
  color: #076b8a !important;
  padding: 8px 16px;
}

.navbar-nav .nav-link:hover {
  color: #03566e !important;
}

/* --------------------------------------------------
   CONSULTATION BUTTON
-------------------------------------------------- */
.navbar .consult-btn {
  background-color: #076b8a !important;
  color: #fff !important;
  padding: 7px 18px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  border: 1px solid #076b8a !important;
}

.navbar .consult-btn:hover {
  background-color: #fff !important;
  color: #076b8a !important;
}

/* --------------------------------------------------
   DROPDOWN MENU STYLE
-------------------------------------------------- */
.navbar .dropdown-menu {
  border: none;
  padding: 10px 0;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.12);
  background: #fff;
}

.navbar .dropdown-item {
  font-weight: 500;
  color: #076b8a !important;
  padding: 10px 20px;
}

.navbar .dropdown-item:hover {
  background: rgba(7, 107, 138, 0.08);
  color: #03566e !important;
}

/* Arrow rotation on dropdown */
.navbar .dropdown-toggle::after {
  transition: 0.3s;
}

.navbar .dropdown.show .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* --------------------------------------------------
   MOBILE NAVIGATION (Slide Menu)
-------------------------------------------------- */
@media (max-width: 991px) {

  .navbar-collapse {
    background: #06637e; /* Raga Dental teal shade */
    padding: 25px 25px 40px;
    border-radius: 0 0 10px 10px;
  }

  .navbar-nav .nav-link {
    color: #fff !important;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%;
  }

  .navbar-nav .nav-link:hover {
    color: #d1f2ff !important;
  }

  /* Dropdown inside mobile */
  .navbar .dropdown-menu {
    background: transparent;
    box-shadow: none;
    padding-left: 10px;
  }

  .navbar .dropdown-item {
    color: #e9faff !important;
    padding: 10px 0 10px 15px;
  }

  .navbar .dropdown-item:hover {
    background: transparent;
    color: #fff !important;
  }

  /* Mobile arrow color */
  .navbar .dropdown-toggle::after {
    filter: brightness(0) invert(1); /* Make arrow white */
  }

  /* Consultation button in mobile */
  .navbar .consult-btn {
    margin-top: 15px;
    width: 100%;
    text-align: center;
    background: #fff !important;
    color: #076b8a !important;
  }
}



/* --------------------------------------------------
   Modal Colors
-------------------------------------------------- */
.modal-header.bg-primary {
  background-color: #076b8a !important;
}

.btn-primary {
  background-color: #076b8a;
  border-color: #076b8a;
}

.btn-primary:hover {
  background-color: #03566e;
  border-color: #03566e;
}



/* banner */

/* Default height for desktop */
.banner-tourism {
  height: 100vh;
}

/* For medium screens (tablets) */
@media (max-width: 992px) {
  .banner-tourism {
    height: 70vh;
  }
}

/* For small screens (mobiles) */
@media (max-width: 576px) {
  .banner-tourism {
    height: 60vh;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.banner-content {
  animation: fadeInUp 1.5s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


/*  */


.scroll-down i {
  cursor: pointer;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(8px); }
  60% { transform: translateY(4px); }
}

.social-float {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.social-icon {
  width: 44px;
  height: 44px;
  background-color: #076b8a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.social-icon:hover {
  transform: scale(1.1);
  background-color: #0a809e;
}

/* Brand colors */
.whatsapp { background-color: #25d366; }
.facebook { background-color: #1877f2; }
.instagram {
  background: radial-gradient(circle at 30% 30%, #f58529, #dd2a7b, #8134af);
}


/*  */
/* Image hover effect */
#raga-dental .image-wrapper img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: none;
}

#raga-dental .image-wrapper:hover img {
  transform: scale(1.03);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Equal height layout for large screens */
#raga-dental .row {
  display: flex;
  align-items: stretch;
}

#raga-dental .col-lg-6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Perfect icon + text alignment */
#raga-dental ul li {
  font-size: 1.05rem;
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
  margin-bottom: 10px;

}

#raga-dental ul li i {
  color: #076b8a;
  margin-right: 10px;
  flex-shrink: 0;
  margin-top: 4px;
  font-size: 1.1rem;
}

/* Button hover */
#raga-dental .btn-primary:hover {
  background-color: #055f7a;
}

/* ===== Responsive Design ===== */

/* Tablets (≤992px) */
@media (max-width: 992px) {
  #raga-dental .row {
    flex-direction: column;
  }

  #raga-dental .col-lg-6 {
    height: auto;
  }

  #raga-dental .image-wrapper img {
    height: auto;
    max-height: 420px;
    object-fit: cover;
  }

  #raga-dental .content-wrapper {
    text-align: center;
  }

  #raga-dental .content-wrapper h2 {
    font-size: 1.6rem;
  }

  #raga-dental .content-wrapper p,
  #raga-dental .content-wrapper ul li {
    font-size: 1rem;
  }

  #raga-dental ul li {
    justify-content: center;
  }
}

/* Mobile (≤576px) */
@media (max-width: 576px) {
  #raga-dental .content-wrapper {
    padding: 0 1rem;
  }

  #raga-dental .content-wrapper h2 {
    font-size: 1.4rem;
  }

  #raga-dental .btn-lg {
    width: 100%;
    font-size: 1rem;
  }

  #raga-dental .image-wrapper img {
    border-radius: 10px;
  }

  #raga-dental ul li {
    justify-content: flex-start;
  }
}

  /* Promo Section */
.promo-section {
  padding: 1rem 0;
  background: 
    linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.6) 100%),
    url('./img/promo-section.webp') center/cover no-repeat;
  text-align: center;
  position: relative;
}

/* Optional: Add a soft overlay for better contrast */
.promo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);  /* adjust opacity if needed */
  z-index: 0;
}

.promo-section > * {
  position: relative;
  z-index: 1;
}

/* existing styles remain the same */
.promo-title {
  font-size: 4rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #076b8a;
}

.promo-subtitle {
  font-size: 1.4rem;
  margin: 0 0 1rem;
  color: #000;
}

.promo-buttons {
  margin-bottom: 1rem;
}

.promo-buttons .btn {
  font-size: 1.1rem;
  padding: 10px 24px;
  border-radius: 30px;
  margin: 0 5px;
}

.promo-image {
  max-width: 320px;
  width: 100%;
  height: auto;
  margin: 0 auto 0.5rem;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.promo-image:hover {
  transform: scale(1.03);
}

.promo-section .bottom-gradient-text span {
  font-size: 20px;
  font-weight: 500;
}
/*  */
/* ========== Doctor Section ========== */
.doctor-section {
  position: relative;
  background: linear-gradient(120deg, #e7f9fc 0%, #ffffff 100%);
  padding: 90px 0;
  overflow: hidden;
}

/* Background Texture */
.doctor-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('./img/pattern-light.png') repeat;
  opacity: 0.04;
  z-index: 0;
}

/* Fade Animation */
.doctor-section .container {
  position: relative;
  z-index: 2;
  animation: fadeUp 1s ease-in-out;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Doctor Image */
.doctor-photo img {
  border: 5px solid #076b8a;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(7, 107, 138, 0.35);
  transition: 0.5s ease;
  max-height: 400px;
  object-fit: cover;
}

.doctor-photo img:hover {
  transform: scale(1.06);
  box-shadow: 0 15px 45px rgba(7, 107, 138, 0.45);
}

/* Floating Name Tag */
.doctor-name-badge {
  background-color: #076b8a;
  color: #fff;
  border-radius: 0 0 12px 12px;
  font-weight: 700;
  font-size: 1.05rem;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: 0.4s ease;
}

.doctor-photo:hover .doctor-name-badge {
  background-color: #05495d;
}

/* Section Heading */
.doctor-section h2 {
  color: #076b8a;
  font-weight: 800;
  font-size: 2rem;
}

/* Doctor Name */
.doctor-section h3 {
  color: #043c4a;
  font-weight: 800;
}

/* Short One-line Degree Style */
.degree-short {
  font-weight: 600;
  color: #043c4a;
  font-size: 1.05rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.degree-short img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #ccc;
  box-shadow: 0 0 5px rgba(7,107,138,0.3);
  transition: 0.3s ease;
}

.degree-short img:hover {
  transform: scale(1.12);
  box-shadow: 0 0 10px rgba(7,107,138,0.5);
}

/* Social Icons */
.social-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap; /* allows wrapping on small devices */
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons .fab {
  color: #076b8a;
  font-size: 1.4rem;
  transition: 0.3s ease;
}

.social-icons .fab:hover {
  color: #05495d;
  transform: scale(1.3);
}

/* Responsive: center icons on tablets & mobile */
@media (max-width: 992px) {
  .social-icons {
    justify-content: center;
    margin-top: 20px;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .social-icons .fab {
    font-size: 1.6rem; /* slightly larger for easier tapping */
  }
  .social-icons {
    gap: 22px;
  }
}


/* Responsive */
@media (max-width: 992px) {
  .doctor-section {
    text-align: center;
  }
  .degree-short {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .doctor-section h2 {
    font-size: 1.5rem;
  }
  .doctor-section h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .degree-short {
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 6px;
  }

  .degree-short img {
    width: 22px;
    height: 22px;
  }
}


/* transformation */
/* ==============================
   Smile Transformation Section
============================== */
.transformation-section {
  background: linear-gradient(135deg, #eef9fb 0%, #ffffff 100%);
}

.transformation-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.transformation-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.transformation-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.transformation-after-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  transition: width 0.25s ease;
}

.transformation-range {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  appearance: none;
  height: 6px;
  background: #076b8a;
  border-radius: 5px;
  cursor: pointer;
  z-index: 10;
}

.transformation-range::-webkit-slider-thumb {
  appearance: none;
  width: 28px;
  height: 28px;
  background-color: #fff;
  border: 3px solid #076b8a;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
}

.transformation-range::-webkit-slider-thumb:hover {
  background-color: #076b8a;
  border-color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .transformation-container {
    max-width: 100%;
  }

  .transformation-range {
    width: 80%;
  }
}



  /* iPhone Section */

  .iphone-section {
    background-color: #fff;
    padding-top: 2rem;
    padding-bottom: 0rem;
  }

 
  .iphone-section h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #076b8a;
  }
 

  .iphone-section .lead {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #076b8a;
  }

  /* Product Image */

  .product-img {
    width: 100%;
    max-height: 320px; /* Adjusted height for better fit */
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    margin: 0 auto;
  }
  
  .product-img:hover {
    transform: scale(1.03);
  }
  

  /* Medium Devices */
  @media (max-width: 992px) {
    .product-img {
      max-height: 360px;
    }
  }
  

 /* Small Devices */
  @media (max-width: 768px) {
    .iphone-section {
      padding-top: 3rem;
      padding-bottom: 2rem;
    }
  
    .iphone-section h1 {
      font-size: 2.2rem;
    }
  
    .iphone-section .lead {
      font-size: 1.1rem;
    }
  
    .product-img {
      max-height: 280px;
    }
  }

  

  /* Buttons */

  .btn-primary {
    background-color: #0071e3;
    border: none;
  }

 
  .btn-outline-primary {
    border-color: #0071e3;
    color: #0071e3;
  }
  
  .btn-outline-primary:hover {
    background-color: #0071e3;
    color: white;
  }


  .iphone-section .bottom-gradient-text span{
    font-size: 20px;
    font-weight: 500;
    /* margin-top: 0.5rem;       reduced margin */
  }


  .bottom-gradient-text span {
    background: linear-gradient(to right, #0071e3, #ff2d55);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  

  /* Responsive */

  @media (max-width: 768px) {
    .promo-title {
      font-size: 2.2rem;
    }
  
    .promo-subtitle {
      font-size: 1.1rem;
    }

    .promo-image {
      max-width: 90%;
      height: auto;
      margin-top: 1rem;
    }
  }
 

  @media (max-width: 576px) {
    .promo-buttons .btn {
      padding: 8px 18px;
      font-size: 1rem;
    }
  }

   

/*  */


  /* Ensure the card takes full height and has a uniform look */
.apple-style-section .card {
  min-height: 650px; /* Adjust height as needed */
  border: none;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  position: relative;
}

/* Image fills the card */
.apple-style-section .card .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay text container at bottom */
.apple-style-section .text-on-image-bottom {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  background: rgba(137, 135, 135, 0.45); /* semi-transparent background for readability */
  padding: 15px;
  border-radius: 8px;
}

/* Overlay text style */
.apple-style-section .text-on-image-bottom h2,
.apple-style-section .text-on-image-bottom p {
  color: #fff;
  margin: 0.25rem 0;
}

/* Button style */
.apple-style-section .text-on-image-bottom .btn {
  margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .apple-style-section .card {
      min-height: 350px;
  }
}


  /* Image card */

  .light-box .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .image-wrapper {
    position: relative;
    height: 100%;
  }
 

  .text-on-image-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1.5rem;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent); */
    color: #fff;
    text-align: center;
  }

 

.text-on-image-bottom .lead{
font-size: 14px;
}



  /* Gradient text */

  .bottom-gradient-text span {
    background: linear-gradient(to right, #0071e3, #ff2d55);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    font-size: 1rem;
  }

  

  /* Buttons */

  .btn-lg {
    padding: 0.65rem 1.4rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.4rem;
  }

  

  /* Responsive */

  @media (max-width: 767px) {

    .card-body {
      padding: 1rem;
    }
  

    .text-on-image-bottom {
      padding: 1rem;
    }

  

    .card-body img {
      max-width: 100%;
   }
  }

 /*  */


  .product-grid-section {
    padding: 60px 20px;
  }

 
  .product-card {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .overlay-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
  }
  .overlay-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
  }

  .product-title {
    font-size: 2rem;
    font-weight: 600;
  }

  .product-desc {
    font-size: 1.2rem;
    margin: 10px 0 20px;
  }

  
  .product-buttons .btn {
    margin: 5px;
    padding: 10px 22px;
    border-radius: 30px;
  }

  .product-img {
    max-width: 100%;
    height: auto;
  }

  

  @media (max-width: 768px) {
    .product-title {
      font-size: 1.6rem;
    }

    .product-desc {
      font-size: 1rem;
    }

  }



  /*  */
#heroSlider {
  width: 100%;
  overflow: hidden;
}

.carousel-item {
  width: 100%;
}

.hero-slide {
  width: 100%;
  height: 90vh; /* full viewport height for strong hero look */
  background-size: cover;       /* fills width and height */
  background-position: center;  /* centers the important part */
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide .container {
  z-index: 2;
  position: relative;
}

.carousel-control-prev,
.carousel-control-next {
  z-index: 10;
  color: #076b8a;
}


  /*  */



  .experience-section-wrapper {

    overflow: hidden;

    /* background-color: #000;

    color: #fff; */

  }

  

  .experience-strip {

    overflow: hidden;

    white-space: nowrap;

    position: relative;

  }

  

  .experience-track {

    display: inline-flex;

    gap: 16px;

    animation-duration: 30s;

    animation-timing-function: linear;

    animation-iteration-count: infinite;

  }

  

  .scroll-left .experience-track {

    animation-name: scrollLeft;

  }

  



  

  @keyframes scrollLeft {

    0% { transform: translateX(0); }

    100% { transform: translateX(-50%); }

  }

  

  

  

  .experience-card {

    position: relative;

    width: 340px;

    height: 200px;

    flex-shrink: 0;

    /* border-radius: 12px; */

    overflow: hidden;

    background: #000;

    /* Removed white border */

    border: none;

  }

  

  .experience-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    border: none;

  }

  

  

  @media (max-width: 767px) {

    .experience-card {

      width: 240px;

      height: 160px;

    }

  }

  

  /*  */
 /* FOOTER GENERAL */
footer {
  font-size: 15px;
  color: #076b8a;
}

footer h6 {
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}

/* Equal alignment for all columns */
footer .col ul {
  padding: 0;
  margin: 0;
}

footer .col ul li {
  margin-bottom: 6px;
  line-height: 1.45;
}

/* Footer Links */
footer a {
  color: #076b8a;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* CONTACT SECTION WITH FLAGS */
.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 8px;
  color: #076b8a;
}

.flag-icon {
  width: 20px;
  height: 14px;
  margin-top: 3px;
  border-radius: 2px;
  object-fit: cover;
  flex-shrink: 0;
}

.footer-contact strong {
  margin-right: 3px;
}

.footer-contact a {
  color: #076b8a;
  font-weight: 600;
}

/* FIX MISALIGNMENT BETWEEN COLS */
footer .row > .col {
  min-width: 200px; /* keeps all evenly aligned */
}

/* MOBILE FIX */
@media(max-width: 768px) {
  footer .row {
    text-align: left;
  }
  footer .col {
    min-width: 100%;
  }

  .footer-contact ul li {
    align-items: center;
  }
}

  
/* implants page */

.implant-section {
  padding: 80px 0;
}

.implant-section img {
  border-radius: 15px;
  max-width: 90%;
}

.implant-section h2 {
  color: #076b8a;
  font-weight: 700;
  margin-bottom: 20px;
}

.implant-section ul {
  list-style: none;
  padding-left: 0;
}

.implant-section ul li::before {
  content: "✔️ ";
}

.implant-section .cta {
  margin-top: 15px;
  font-weight: 600;
  color: #007bff;
}

/*  */

.implant-summary {
  background-color: #f8f9fa;
}

.implant-summary h2 {
  font-weight: 700;
  color: #076b8a;
}

.implant-summary p {
  font-size: 1.1rem;
  color: #555;
}

.table {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.table th {
  background-color: #076b8a !important;
  color: #fff;
  font-weight: 600;
}

.table td {
  font-size: 1rem;
  color: #333;
  padding: 15px;
}

@media (max-width: 768px) {
  .implant-summary h2 {
    font-size: 1.6rem;
  }
  .table td, .table th {
    font-size: 0.9rem;
    padding: 10px;
  }
}

/* general dentistry */


/* Hero Section */
.general-hero {
  background: url('./img/general-dentistry/general-dentistry-banner.jpg') center/cover no-repeat;
  height: 90vh;
  color: #fff;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
}
.general-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
}
.general-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}
.general-hero-content h5 {
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ccebf2;
}
.general-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-top: 10px;
}

/* Intro Section */
.general-content {
  padding: 80px 15px;
  background: linear-gradient(135deg, #076b8a, #1aa6b7);
  color: #fff;
  text-align: center;
}

.general-content p {
  font-size: 1.1rem;
  max-width: 850px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* Service List (Two Columns) */
.general-content .row {
  max-width: 1000px;
  margin: 0 auto;
}

.general-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.general-service-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.general-service-list li::before {
  content: "✨";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 767px) {
  .general-content {
    padding: 60px 20px;
  }

  .general-service-list li {
    font-size: 1rem;
    padding-left: 28px;
  }

  .general-service-list li::before {
    font-size: 1rem;
  }
}

/* CTA Section */
.general-cta {
  text-align: center;
  padding: 60px 15px;
  background: #fff;
}
.general-cta .btn {
  background-color: #076b8a;
  color: #fff;
  padding: 12px 30px;
  border: none;
  font-size: 1.1rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.general-cta .btn:hover {
  background-color: #055a72;
  transform: translateY(-3px);
}

@media (max-width: 767px) {
  .general-hero {
    height: 70vh;
  }
  .general-hero-content h1 {
    font-size: 2rem;
  }
}

/* smile makeover */

/* Hero Section */
.smilemakeover-hero {
  height: 90vh;
  background: url('./img/general-dentistry/smile-makeover-banner.jpg') center/cover no-repeat;
  position: relative;
}

.smilemakeover-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.smilemakeover-hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.smilemakeover-btn {
  background-color: #fff;
  color: #076b8a;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.smilemakeover-btn:hover {
  background-color: #1aa6b7;
  color: #fff;
}

/* Content Section */
.smilemakeover-content {
  padding: 80px 15px;
  background: linear-gradient(135deg, #1aa6b7, #076b8a);
  color: #fff;
  text-align: center;
}

.smilemakeover-content p {
  font-size: 1.1rem;
  max-width: 850px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Two Column Service List */
.smilemakeover-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.smilemakeover-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.smilemakeover-list li::before {
  content: "✨";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 767px) {
  .smilemakeover-hero {
    height: 70vh;
  }
  .smilemakeover-hero-content h1 {
    font-size: 2rem;
  }
  .smilemakeover-hero-content p {
    font-size: 1rem;
  }
  .smilemakeover-content {
    padding: 60px 20px;
  }
  .smilemakeover-list li {
    font-size: 1rem;
    padding-left: 28px;
  }
}


/*  */

/* ===== TESTIMONIALS ===== */
/* ===== RAGA TESTIMONIALS ===== */
.raga-testimonials {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  padding: 4rem 0;
}

/* Heading */
.raga-testimonials-title {
  font-weight: 800;
  color: #0a6c8f;
  margin-bottom: 0.5rem;
}

.raga-testimonials-subtitle {
  color: #555;
  font-size: 1.05rem;
}

/* ===== TEXT TESTIMONIAL CARD ===== */
.raga-testimonial-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2.2rem;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(10, 140, 180, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.raga-testimonial-card::before {
  content: "“";
  font-size: 4rem;
  position: absolute;
  top: -10px;
  left: 20px;
  color: rgba(10, 140, 180, 0.15);
  font-family: serif;
}

.raga-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Text */
.raga-testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

/* Name */
.raga-testimonial-name {
  font-weight: 700;
  color: #0a6c8f;
  margin-top: 1.2rem;
  font-size: 1rem;
}

/* Stars */
.raga-testimonial-stars {
  color: #ffc107;
  font-size: 1.1rem;
  letter-spacing: 2px;
  animation: ragaStarGlow 1.6s ease-in-out infinite alternate;
}

@keyframes ragaStarGlow {
  from { opacity: 0.75; }
  to { opacity: 1; }
}

/* ===== VIDEO TESTIMONIAL ===== */
.raga-video-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.raga-video-box {
  width: 100%;
  max-width: 760px;
  aspect-ratio: 21 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #076b8a, #0a8db3);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.raga-video-box:hover {
  transform: scale(1.015);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.raga-video-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.raga-video-name {
  margin-top: 18px;
  font-weight: 700;
  color: #0a6c8f;
  font-size: 1rem;
}

/* ===== CAROUSEL CONTROLS ===== */
.raga-carousel-prev,
.raga-carousel-next {
  width: 6%;
}

.raga-carousel-prev-icon,
.raga-carousel-next-icon {
  background-color: rgba(10, 140, 180, 0.9);
  border-radius: 50%;
  padding: 16px;
  background-size: 50% 50%;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.raga-carousel-prev:hover .raga-carousel-prev-icon,
.raga-carousel-next:hover .raga-carousel-next-icon {
  background-color: #0a8db3;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .raga-testimonial-card {
    padding: 1.8rem;
  }

  .raga-testimonial-text {
    font-size: 1rem;
  }

  .raga-video-box {
    aspect-ratio: 16 / 9;
    border-radius: 14px;
  }

  .raga-carousel-prev,
  .raga-carousel-next {
    width: 12%;
  }
}
