:root {
  --primary: #3e8ed0;
  --accent: #1a4e7b;
  --bg-light: #f4f9fc;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg-light);
  margin: 0;
  padding: 0;
}

html , body {
  overflow-x: hidden;
}

.topbar {
  background-color: var(--accent);
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar i {
  margin-right: 6px;
}

.navbar {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.4s ease-in-out;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.navbar-nav .nav-link {
  color: var(--accent);
  font-weight: 700;
  position: relative;
  margin-left: 20px;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  transition: 0.4s ease;
}

.navbar-nav .nav-link:hover::before {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  color: var(--primary);
  text-shadow: 0 0 8px rgba(62, 142, 208, 0.6);
}

.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.hero-section {
  position: relative;
  min-height: 75vh;
  background-color: #000;
  font-family: "Open Sans", sans-serif;
}

.hero-section.home-hero-section {
  min-height: auto;
  aspect-ratio: 1280 / 548;
  width: 100%;
  background-color: #fff;
  display: block;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 40, 0.75);
  z-index: 1;
}

.hero-content {
  z-index: 2;
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-title {
  font-family: "Righteous", cursive;
  font-size: 3.5rem;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-subtext {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.hero-btn {
  padding: 12px 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s ease;
  box-shadow: 0 0 10px var(--primary);
}

.hero-btn:hover {
  background: var(--accent);
  box-shadow: 0 0 18px var(--primary);
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cursor {
  font-weight: 100;
  color: #fff;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.bounce {
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.animated-circle {
  position: absolute;
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  top: 40%;
  left: -60px;
  animation: floatCircle 12s linear infinite;
  z-index: 1;
}

.animated-ring {
  position: absolute;
  width: 240px;
  height: 240px;
  border: 3px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  top: 15%;
  right: -100px;
  animation: rotateRing 20s linear infinite;
  z-index: 1;
}

.animated-triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 90px solid rgba(255, 255, 255, 0.03);
  bottom: 10%;
  left: 10%;
  animation: floatTriangle 10s ease-in-out infinite;
  z-index: 1;
}

@keyframes floatCircle {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-10px) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatTriangle {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.about-creative-section {
  background: linear-gradient(120deg, #f4f9fc 0%, #e8f4fd 100%);
  position: relative;
  z-index: 1;
}

.about-img-wrapper {
  transition: transform 0.5s ease;
  border-radius: 20px;
  overflow: hidden;
  height: 450px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-left: 4px solid #3e8ed0;
  border-radius: 16px;
}

.about-title {
  font-family: "Righteous", cursive;
  font-size: 2.5rem;
  color: #1a4e7b;
}

.section-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.about-shape-circle {
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(62, 142, 208, 0.05);
  border-radius: 50%;
  top: -60px;
  left: -60px;
  animation: floatCircle 20s infinite linear;
  z-index: 0;
}

.about-shape-bone {
  position: absolute;
  bottom: -80px;
  right: -40px;
  width: 120px;
  height: 120px;
  background-image: url("https://cdn-icons-png.flaticon.com/512/2936/2936637.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.05;
  animation: floatBone 10s ease-in-out infinite;
  z-index: 0;
}

.about-glow-ring {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 3px solid rgba(62, 142, 208, 0.2);
  top: 50%;
  left: -100px;
  animation: rotateRing 25s linear infinite;
  z-index: 0;
  transform: translateY(-50%);
}

@keyframes floatCircle {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(20px) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatBone {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.btn-primary {
  background-color: #3e8ed0;
  border: none;
}

.btn-primary:hover {
  background-color: #1a4e7b;
  box-shadow: 0 0 14px rgba(62, 142, 208, 0.6);
}



.service-card-box {
  background: #fff;
  border-radius: 16px;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-card-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(62, 142, 208, 0.2);
}

.service-card-box .service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.service-card-box:hover .service-img {
  transform: scale(1.03);
}

.service-card-box p {
  flex: 1;
}

.service-know-more {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-height: 42px;
  margin: 4px auto 0;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(26, 78, 123, 0.22);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.service-know-more:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(26, 78, 123, 0.3);
}

.service-know-more i {
  font-size: 0.9rem;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #3e8ed0;
  margin-bottom: 10px;
}

.card-glow {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(62, 142, 208, 0.1), transparent 60%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card-box:hover .card-glow {
  opacity: 1;
}

.row.g-5 .col-lg-4 {
  display: flex;
}

.section-heading {
  font-family: "Righteous", cursive;
  font-size: 2.4rem;
  color: #1a4e7b;
}

.doctor-card {
  background: #fdfdfd;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding-bottom: 15px;
  transition: transform 0.4s ease;
  overflow: hidden;
}

.doctor-card:hover {
  transform: translateY(-10px);
}

.doctor-img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.doctor-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.doctor-card:hover img {
  transform: scale(1.05);
}

.doctor-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.doctor-card:hover .doctor-overlay {
  opacity: 1;
}

.doctor-overlay a {
  color: #fff;
  font-size: 1.2rem;
  background: rgba(62, 142, 208, 0.9);
  padding: 8px;
  border-radius: 50%;
  transition: background 0.3s;
}

.doctor-overlay a:hover {
  background: #1a4e7b;
}

.doctor-info h5 {
  font-weight: 600;
  color: #3e8ed0;
}

.doctor-info p {
  font-size: 0.95rem;
}

.form-title {
  font-family: "Righteous", cursive;
  font-size: 2rem;
  color: #1a4e7b;
}

.appointment-form {
  background-color: #fff;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.form-control-custom,
.form-select {
  border-radius: 10px;
  border: 1px solid #cfdfe8;
  transition: all 0.3s ease;
  box-shadow: none;
}

.form-control-custom:focus,
.form-select:focus {
  border-color: #3e8ed0;
  box-shadow: 0 0 0 0.2rem rgba(62, 142, 208, 0.25);
}

.btn-primary {
  background-color: #3e8ed0;
  border: none;
  border-radius: 10px;
  padding: 10px 0;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #1a4e7b;
}

.bg-overlay {
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.text-block {
  z-index: 1;
  position: relative;
}

.stylish-heading {
  font-family: "Righteous", cursive;
  color: #ffffff;
  animation: fadeSlide 1.5s ease forwards;
}

.text-accent {
  color: #6ac6d9;
}

.text-block ul {
  list-style: none;
  padding-left: 0;
}

.text-block li {
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 500;
}

.appointment-form {
  background-color: #fff;
  border-radius: 16px;
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
}

.form-title {
  font-family: "Righteous", cursive;
  font-size: 2rem;
  color: #1a4e7b;
}

.form-control-custom,
.form-select {
  border-radius: 10px;
  border: 1px solid #cfdfe8;
  transition: all 0.3s ease;
}

.form-control-custom:focus,
.form-select:focus {
  border-color: #3e8ed0;
  box-shadow: 0 0 0 0.2rem rgba(62, 142, 208, 0.25);
}

.btn-primary {
  background-color: #3e8ed0;
  border: none;
  border-radius: 10px;
  padding: 10px 0;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #1a4e7b;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.appointment-float-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #3e8ed0;
  color: #fff;
  padding: 12px 18px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: all 0.3s ease;
}

.appointment-float-btn i {
  font-size: 18px;
}

.appointment-float-btn:hover {
  background: #1a4e7b;
  transform: translateY(-3px);
}


.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.gallery-grid > [class*="col-"] {
  flex: 1 1 calc(33.333% - 1rem);
}

.gallery-img {
  aspect-ratio: 4 / 3;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.gallery-img:hover {
  transform: scale(1.07);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  z-index: 2;
}



.blog-box:hover .blog-img {
  transform: scale(1.1);
}

.blog-box {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-img-wrap {
  height: 220px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.blog-img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  transition: transform 0.4s ease;
}

.blog-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: #fff;
  border-radius: 0 0 16px 16px;
}

.blog-box:hover .blog-content {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.blog-title {
  font-weight: 700;
  font-size: 1.2rem;
  color: #1a4e7b;
  font-family: "Righteous", cursive;
}

.blog-desc {
  font-size: 0.95rem;
  color: #444;
  margin-top: 10px;
}

.blog-read {
  display: inline-block;
  margin-top: 15px;
  color: #3e8ed0;
  font-weight: 600;
  transition: color 0.3s ease;
  text-decoration: none;
}

.blog-read:hover {
  color: #1a4e7b;
}


.contact-section {
  position: relative;
}

.contact-bg-image {
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.contact-overlay {
  background: rgba(0, 33, 71, 0.75);
}


.text-accent {
  color: #6ac6d9;
}

.contact-form {
  border-radius: 16px;
  min-height: 400px;
}

.contact-form input,
.contact-form textarea {
  border-radius: 10px;
  border: 1px solid #ccc;
}

.contact-form button {
  border-radius: 10px;
  background-color: #3e8ed0;
  border: none;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #1a4e7b;
}

.map-responsive {
  position: relative;
  padding-top: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

.footer-section {
  background: #112d32;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.footer-title {
  font-size: 1.5rem;
  font-family: "Righteous", cursive;
  margin-bottom: 10px;
}

.footer-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-text {
  color: #d0d0d0;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #d0d0d0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #6ac6d9;
}

.social-icons a {
  display: inline-block;
  color: #fff;
  background: #3e8ed0;
  margin-right: 10px;
  padding: 10px;
  border-radius: 50%;
  transition:
    transform 0.3s,
    background 0.3s;
}

.social-icons a:hover {
  background: #6ac6d9;
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #bbb;
  font-size: 0.85rem;
}

.logo {
  height: 85px;
  width: 100%;
}

:root {
  --primary: #3e8ed0;
  --accent: #1a4e7b;
  --bg-light: #f4f9fc;
}

body {
  background-color: var(--bg-light);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
}

.hero-gradient-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
    url("../images/breadcrumb.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  z-index: 1;
}

.hero-title {
  font-family: "Righteous", cursive;
  font-size: 3rem;
  color: #fff;
}

.hero-title span {
  color: #ffffffcc;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "";
}

.breadcrumb a {
  text-decoration: none;
  font-weight: 500;
  color: #fff;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}

.shape1 {
  width: 120px;
  height: 120px;
  bottom: -30px;
  left: 10%;
}

.shape2 {
  width: 80px;
  height: 80px;
  top: 20%;
  right: 10%;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.section-heading {
  font-family: "Righteous", cursive;
  font-size: 2.4rem;
  color: var(--accent);
  margin-bottom: 20px;
  text-align: center;
}

.section {
  padding: 60px 0;
}

.img-effect {
  transition: transform 0.4s ease;
  border-radius: 10px;
}

.img-effect:hover {
  transform: scale(1.05);
}

.values-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.card-custom {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
  object-fit: cover;
  border: 4px solid var(--primary);
  align-items: center;
}

.section-heading {
  font-family: "Righteous", cursive;
  font-size: 2.4rem;
  color: var(--accent);
}

.equal-height {
  display: flex;
  flex-direction: column;
  height: 100%;
}



.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}

.shape1 {
  width: 120px;
  height: 120px;
  bottom: -30px;
  left: 10%;
}

.shape2 {
  width: 80px;
  height: 80px;
  top: 20%;
  right: 10%;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 15px;
  border: 4px solid var(--primary);
}

.testimonial-name {
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #444;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary);
}

.swiper-pagination-bullet-active {
  background: var(--primary);
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}

.shape1 {
  width: 120px;
  height: 120px;
  bottom: -30px;
  left: 10%;
}

.shape2 {
  width: 80px;
  height: 80px;
  top: 20%;
  right: 10%;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.faq-section {
  padding: 80px 0;
  background: linear-gradient(to bottom right, #f4f9fc, #ffffff);
}

.section-heading {
  font-family: "Righteous", cursive;
  font-size: 2.5rem;
  color: var(--accent);
  text-align: center;
  margin-bottom: 3rem;
}

.faq-img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.faq-img:hover {
  transform: scale(1.03);
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.accordion-button {
  background-color: #fff;
  color: var(--accent);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 18px;
  border-radius: 8px !important;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary);
  color: #fff;
}

.accordion-button:hover {
  background-color: #e6f3fb;
}

.accordion-body {
  background: #f9fcfe;
  padding: 1rem 1.25rem;
  border-radius: 0 0 8px 8px;
  font-size: 0.95rem;
  color: #444;
}

.faq-icon {
  margin-right: 10px;
  color: var(--primary);
  font-size: 1.2rem;
}

.faq-icon.animated {
  animation: pulse 0.4s ease forwards;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 767px) {
  .faq-img {
    margin-top: 30px;
  }
}

.foot-logo {
  height: 170px;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}

.shape1 {
  width: 120px;
  height: 120px;
  bottom: -30px;
  left: 10%;
}

.shape2 {
  width: 80px;
  height: 80px;
  top: 20%;
  right: 10%;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.contact-section {
  padding: 80px 0;
}

.section-heading {
  font-family: "Righteous", cursive;
  font-size: 2.5rem;
  color: var(--accent);
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-info i {
  font-size: 1.4rem;
  color: var(--primary);
  margin-right: 12px;
}

.contact-info p {
  margin-bottom: 12px;
  color: #444;
}

.form-control {
  border-radius: 10px;
  padding: 12px 15px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(62, 142, 208, 0.25);
}

.btn-primary {
  background-color: var(--primary);
  border: none;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: #3173aa;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 767px) {
  .map-container iframe {
    height: 300px;
  }
}


.service-details-section {
  padding: 80px 0;
  background: #f8fbff;
  font-family: 'Poppins', sans-serif;
}

.service-details-section .container {
  width: 90%;
  max-width: 1320px;
  margin: auto;
}

.service-details-section .row {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.left-content {
  flex: 0 0 calc(70% - 15px);
  max-width: calc(70% - 15px);
}

.right-sidebar {
  flex: 0 0 calc(30% - 15px);
  max-width: calc(30% - 15px);
}

.video-box {
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.video-box video {
  width: 100%;
  display: block;
  border-radius: 20px;
  min-height: 420px;
  object-fit: cover;
}

.content-box {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.service-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #0b5ed7;
  background: rgba(11, 94, 215, 0.08);
  padding: 8px 14px;
  border-radius: 30px;
  margin-bottom: 15px;
}

.content-box h2 {
  font-size: 34px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 18px;
  line-height: 1.3;
}

.intro-text {
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 28px;
}

.content-block {
  margin-bottom: 28px;
}

.content-block h3 {
  font-size: 22px;
  color: #0f172a;
  margin-bottom: 12px;
  font-weight: 600;
}

.content-block p {
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 0;
}

.sidebar-box {
  background: #fff;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 100px;
}

.sidebar-box h4 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 22px;
}

.service-link {
  display: block;
  text-decoration: none;
  color: #1e293b;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 18px;
  margin-bottom: 12px;
  border-radius: 14px;
  background: #f8fbff;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.service-link:hover {
  background: #0b5ed7;
  color: #fff;
  border-color: #0b5ed7;
  transform: translateX(5px);
}

.service-link.active {
  background: linear-gradient(135deg, #0b5ed7, #2563eb);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.sidebar-contact {
  margin-top: 28px;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0b5ed7, #2563eb);
  color: #fff;
}

.sidebar-contact h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.sidebar-contact p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.contact-btn {
  display: inline-block;
  text-decoration: none;
  background: #fff;
  color: #0b5ed7;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #eaf2ff;
}

@media (max-width: 991px) {
  .service-details-section .row {
    flex-direction: column;
  }

  .left-content,
  .right-sidebar {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .sidebar-box {
    position: static;
  }

  .video-box video {
    min-height: 250px;
  }

  .content-box {
    padding: 25px;
  }

  .content-box h2 {
    font-size: 28px;
  }

  .content-block h3 {
    font-size: 20px;
  }

   .review,
   .visionmission,
   #gallery,
   .faq-section h2{
        font-size: 30px !important;
    }
}

@media (max-width: 575px) {
  .gallery-grid > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
