/* Reset + Universal Rules */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
  background: var(--primary);
  color: #fff;

}




/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Body defaults */
body {
  font-family: "Arial", sans-serif;
  color: var(--black);
  line-height: 1.6;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Links */
a {
  text-decoration: none;
  transition: 0.3s;
}

/* Lists */
ul {
  list-style: none;
  padding: 0;
}

:root {
  --primary: #449904;
  --secondary: #083e5c;
  --black: #000;
}

body {
  font-family: Arial, sans-serif;

}

.text-primary {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

/* Top Header */
.top-header {
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}

.top-header a {
  color: #fff;
}

.top-header i {
  font-size: 13px;
}

/* Hover */
.top-header a:hover {
  color: var(--secondary);
}

/* Social icons */
.social-icons a {
  margin-left: 6px;
}

/* Mobile */
@media (max-width: 768px) {
  .top-header {
    display: none;
  }
}

/* Navbar */
.navbar {
  background: #f4f2f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-nav .nav-link {
  color: var(--black);
  font-weight: 500;
  margin-right: 15px;
}

.navbar-nav .nav-link:hover {
  color: var(--primary);
}

/* .nav-item{
  text-transform: uppercase;
} */

/* Dropdown hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Dropdown styling */
.dropdown-menu {
  border-radius: 10px;
  padding: 10px 0;
  border: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.dropdown-item {
  padding: 10px 20px;
  font-size: 14px;
}

.dropdown-item:hover {
  background-color: var(--primary);
  color: #fff;
}

.btn-appointment {
  background: var(--primary);
  color: #fff;
  border-radius: 30px;
  padding: 8px 20px;
}


.btn-appointment:hover {
  background: var(--secondary);
  color: #fff;
}

/* Hero Section */
.hero {
  width: 100%;
}

.hero-banner {
  width: 100%;
  height: auto;
  display: block;
}

/* ==================Sections starts====================================== */

/* Home=>About section */

.about-section h2 {
  font-size: 40px;
  color: var(--secondary);
}

.about-section img {
  border-radius: 25px;
}

.section-padding {
  padding: 60px 0;
}

.about-section p {
  font-size: 15px;
  line-height: 1.7;

}

/* Mobile */
@media (max-width: 768px) {
  .about-section {
    text-align: center;
  }

  .about-section h2 {
    font-size: 24px;
  }
}


/* Override: About section spacing + alignment */
.about-content {
  padding-left: 60px !important;
  /* gap from image */
  max-width: 700px;
  /* control text width */
}

/* Ensure consistent spacing */
.about-content p,
.about-content h2 {
  margin-bottom: 12px !important;
}

.about-content .btn {
  display: inline-block;
}

/* Mobile override */
@media (max-width: 992px) {
  .about-content {
    padding-left: 0 !important;
    max-width: 100%;
    margin: 0 auto;
  }
}


/* Home=>About section */


.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.service-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  margin-bottom: 15px;
}

.bg-light-divide {
  background-color: #f4f9ff;
}

/* CTA Left */


.cta-section {
  background: #102b4e;
  color: #fff;

}

.cta-left h3 {
  color: #fff;
  font-size: 45px;
}

.cta-icon {
  font-size: 20px;
  color: var(--primary);
}

/* Form */
.cta-form {
  background: #fff;
  border-radius: 12px;
}

/* Input styling */
.cta-form .form-control {
  border-radius: 8px;
  padding: 10px;
  font-size: 14px;
}

/* Button full width */
.cta-form .btn {
  padding: 10px;
}

.testimonial-card {
  max-width: 90%;
  margin: auto;
  padding: 30px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.quote-icon {
  font-size: 30px;
  color: var(--primary);
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  /* font-weight: bold; */
}

.stars i {
  color: #ffc107;
  margin-right: 3px;
}


/* ===== Media Section ===== */

.media-section {
  background: #102b4e;
}


.media-section .media-img,
.media-section .video-box,
.media-section .video-box img {
  height: 450px;

}


.media-section .row {
  align-items: stretch !important;
}

.media-section .col-lg-6 {
  display: flex;
}


.media-section a.glightbox {
  display: block;
  width: 100%;
  height: 100%;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.3s;
}

.media-img:hover {
  transform: scale(1.02);
}


.video-box {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}


.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 70px;
  height: 70px;
  background: var(--primary);
  color: #fff;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  cursor: pointer;

  animation: pulse 1.5s infinite;
}


.play-btn i {
  margin-left: 3px;
}


@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(68, 153, 4, 0.6);
  }

  70% {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 0 15px rgba(68, 153, 4, 0);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}


.media-section .col-lg-6:first-child {
  padding-right: 10px;
}

.media-section .col-lg-6:last-child {
  padding-left: 10px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .media-section .col-lg-6 {
    display: block;
  }

  .media-img,
  .video-box,
  .video-box img {
    height: auto;
  }
}


.logo-item {
  width: 160px;
  height: 100px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.logo-item img {
  max-width: 80%;
  max-height: 70%;
  object-fit: contain;
}

/* Breadcrumb Section */

.breadcrumb-section {
  background: #102b4e;
  padding: 80px 0;
  color: #fff;
}


.breadcrumb-section h2 {
  font-size: 32px;
}


.breadcrumb {
  background: transparent;
}

.breadcrumb-item a {
  color: #ddd;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: #fff;
}

.breadcrumb-item.active {
  color: var(--primary);
}


.about-accordion .accordion-item {
  border: none;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
}

.about-accordion {
  background-color: #fafaff;
}

.about-accordion .accordion-button {
  font-weight: 600;
  background: #ecf5ff;
}

.about-accordion .accordion-button:not(.collapsed) {
  background: var(--primary);
  color: #fff;
}

.about-accordion .accordion-body {
  background: #fff;
  padding: 15px;
}

.about-accordion ul {
  padding-left: 18px;
}

.about-accordion ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

/* Section-Exercise */

.exercise-section {
  background: #f8f9fa;
}


/* ===== Media Page ===== */

.media-page {
  background: #f8f9fa;
}

/* ===== Video Card ===== */
.video-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.video-card:hover {
  transform: translateY(-5px);
}

/* Responsive iframe */
.video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 */
}

.video-frame iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: none;
}

/* Video title */
.video-card h6 {
  font-weight: 600;
}

/* ===== PDF Card ===== */
.pdf-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.pdf-card:hover {
  transform: translateY(-5px);
}

/* PDF Icon */
.pdf-icon {
  font-size: 40px;
  color: #e63946;
  margin-bottom: 15px;
}

/* Text */
.pdf-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.pdf-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

/* Buttons */
.pdf-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pdf-actions .btn {
  min-width: 90px;
}

/* Section */
.gallery-section {
  background: #f8f9fa;
}

/* Tabs */
.gallery-section .nav-pills .nav-link {
  border-radius: 30px;
  padding: 8px 18px;
  margin: 5px;
  color: #333;
  background: #fff;
  border: 1px solid #eee;
}

.gallery-section .nav-pills .nav-link.active {
  background: var(--primary);
  color: #fff;
}

/* Gallery Item */
.gallery-item {
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Section */
.chamber-section {
  background: #f8f9fa;
}

/* Card */
.chamber-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: 0.3s;
}

.chamber-card:hover {
  transform: translateY(-5px);
}

/* Logo */
.chamber-logo {
  height: 80px;
  margin-bottom: 10px;
}

/* Title */
.chamber-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* Text */
.chamber-card p {
  font-size: 14px;
  margin-bottom: 5px;
  color: #555;
}

/* Map */
.chamber-card iframe {
  width: 100%;
  height: 180px;
  border: 0;
  border-radius: 8px;
  margin-top: 10px;
}




/* Success Stories */
.success-stories {
  background: #f8f9fa;
}

.story-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.story-card:hover {
  transform: translateY(-5px);
}

.story-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.story-card iframe {
  width: 100%;
  height: 220px;
  border: none;
}

/* Tabs */
.nav-pills .nav-link {
  border-radius: 30px;
  padding: 8px 20px;
  margin: 0 5px;
  color: #333;
}

.nav-pills .nav-link.active {
  background: var(--secondary);
  color: #fff;
}


.pdf-image {
  width: 100%;
  height: 180px;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 10px;
}

.pdf-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.pdf-card:hover .pdf-image img {
  transform: scale(1.05);
}















/* ======================sections end================================== */

/* Footer */
footer {
  background: var(--primary);
  color: #fff;
  padding: 40px 0;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  color: var(--secondary);
}

.social-icons a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  color: #333;
  border-radius: 50%;
  transition: 0.3s;
  font-size: 14px;
}

.social-icons a:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-3px);
}

.whatsapp-chat {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  display: none;
}

.whatsapp-chat img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.whatsapp-chat img:hover {
  transform: scale(1.1);
}