:root {
    --primary-color: #007bff;
    --secondary-blue: #0056b3;
    --secondary-color: #ffffff;
    --text-color: #000000;
    --link-color: #ffffff;
    --hover-color: #dae1e9;
    --button-color: #007bff;
    --button-hover-color: #0056b3;

    --footer-bg: #ffffff;
    --footer-text: #000000;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    scroll-behavior: smooth;
    overflow-x: hidden;
    
}

/* Pre-Header Styling */
.pre-header {
    background-color: var(--primary-color);
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #ddd;
}
.bi-envelope::before{
    color: var(--link-color);
}
.pre-header .email a {
    color: var(--link-color);
    text-decoration: none;
}

.pre-header .email a:hover {
    color: var(--hover-color);
}

.pre-header .heading {
    font-weight: bold;
    text-align: center;
    color: var(--link-color);
}

.pre-header .social-links a {
    color: var(--link-color);
    margin-left: 10px;
    font-size: 1.2rem;
}

.pre-header .social-links a:hover {
    color: var(--hover-color);
}

/* Header Styling */
.navbar {
    background-color: var(--secondary-color);
    padding: 15px 0;
}

.navbar-brand {
    /* font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-color) !important; */
}

.nav-link {
    color: var(--text-color) !important;
    margin: 0 15px;
    font-size: 1.1rem;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}
.dropdown-menu {
    background-color: var(--primary-color);
    display: none; /* Hide by default */
}

.dropdown-item {
    color: #fff !important;
    transition: background-color 0.3s;
}

.dropdown-item:hover, .dropdown-item.active {
    background-color: var(--button-hover-color) !important;
    color: #fff !important;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}
.book-appointment-btn {
    background-color: var(--button-color);
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 25px;
    color: white !important;
    transition: background-color 0.3s, transform 0.3s;
}

.book-appointment-btn:hover {
    background-color: var(--button-hover-color);
    transform: scale(1.05);
}
/* banner section */
.banner-section {
           
    background-size: cover;
    padding: 100px 0;
    color: #fff;
    position: relative;
    margin-bottom: 40px;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
}

.banner-section .banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.banner-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.banner-section p {
    font-size: 1.2rem;
}


/* carosuel */
.carousel-item img {
    height: 800px;
    object-fit: cover;
  }
 
  a{
    text-decoration: none;
  }
  .carousel-caption {
    top: 30%;
    transform: translateY(-20%);
    text-align: left;
    width: 40%;
  }
  .carousel-caption h1 {
    font-size: 80px;
    font-weight: 700;
    line-height: 100%;
    color: var(--primary-color);
  }
  .carousel-caption p {
    font-size: 22px;
    margin: 15px 0;
    font-weight: 400;
    font-family: Qwigley;
    color: #000;
  }

  .carousel-btn{
margin-top: 20px ;
display: flex;
gap: 40px;

  }

.btn-contact-us{

    background-color: var(--button-color);
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 25px;
    color: white;
    transition: background-color 0.3s, transform 0.3s;
  }
  .btn-contact-us:hover {
    background-color: var(--button-hover-color);
    transform: scale(1.05);
}


  /* services section */
  .services-section {
    padding: 60px 0;
    background-color: var(--secondary-color);
}

.service-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
}

.card-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.btn-read-more {
    background-color: var(--button-color);
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 25px;
    color: white;
    transition: background-color 0.3s, transform 0.3s;
}
.btn-read-more:hover {
    background-color: var(--button-hover-color);
    transform: scale(1.05);
}



/* about section */
.about-section {
    padding: 60px 0;
    background-color: #fff;
}

.about-section img {
    max-height: 400px;
    object-fit: cover;
    transition: transform 0.3s;
}

.about-section img:hover {
    transform: scale(1.03);
}

.about-section h2 {
    font-size: 2.5rem;
    color: var(--text-color);
}

.about-section h4 {
    font-size: 1.5rem;
}

.about-section p {
    font-size: 1.1rem;
    color: #666;
}

.about-section ul li {
    font-size: 1.1rem;
    color: var(--text-color);
}

.bi-check-circle-fill {
    font-size: 1.2rem;
    color: var(--primary-color);
}


/* doctor team section */
.doctor-team-section {
    padding: 60px 0;
    background-color: var(--secondary-color);
}

.doctor-team-carousel .doctor-card {
    transition: transform 0.3s, box-shadow  tapa 0.3s;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    align-items: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.doctor-team-carousel .doctor-card:hover {
    transform: translateY(10px);
    box-shadow: 0 8px 16px rgba(0, 162, 255, 0.2);
}

.doctor-team-carousel .card-img-top {
    height: 100%;
    width: 50%;
    object-fit: cover;
}

.doctor-team-carousel .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
}

.doctor-team-carousel .card-subtitle {
    font-size: 1.1rem;
}

.doctor-team-carousel .card-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.doctor-team-carousel .btn-view-profile {
    background-color: var(--button-color) !important;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 25px !important;
    color: white;
    transition: background-color 0.3s, transform 0.3s;
}

/* .doctor-team-carousel .btn-view-profile:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
} */
.doctor-team-carousel .btn-view-profile:hover {
    background-color: var(--button-hover-color) !important  ;
    transform: scale(1.05);
}


/* .doctor-team-carousel .carousel-control-prev,
.doctor-team-carousel .carousel-control-next {
    width: 5%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    color: #007bff !important;
} */

.doctor-team-carousel .carousel-indicators [data-bs-target] {
    background-color: #fff;
    opacity: 0.5;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.doctor-team-carousel .carousel-indicators .active {
    opacity: 1;
    background-color: var(--primary-color);
}
.carousel-control-prev-icon {
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e);
    background-color: var(--primary-color);
}
.carousel-control-next-icon {
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e);
    background-color: var(--primary-color);
}

/* counter section */

.counter-section {
    padding: 60px 0;
    background-color: #fff;
}

.counter-box {
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.counter-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.counter-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.counter-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 10px;
}

.counter-label {
    font-size: 1.1rem;
    color: #666;
}


/* why choose us section */
.why-choose-us-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--secondary-color), #fff);
    position: relative;
    overflow: hidden;
}

.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23ffffff" fill-opacity="0.1" d="M0,160L80,138.7C160,117,320,75,480,80C640,85,800,139,960,149.3C1120,160,1280,128,1360,112L1440,96L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z"%3E%3C/path%3E%3C/svg%3E') no-repeat bottom;
    z-index: 0;
}

.reason-box {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 1;
}

.reason-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.reason-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.reason-box:hover i {
    transform: scale(1.2);
}

.reason-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 15px;
}

.reason-text {
    font-size: 1rem;
    color: #666;
}


/* appointment section */
.book-appointment-section {
    padding: 60px 0;
    background-color: var(--secondary-color);
}

.book-appointment-section img {
    max-height: 400px;
    object-fit: cover;
    transition: transform 0.3s;
}

.book-appointment-section img:hover {
    transform: scale(1.03);
}

.book-appointment-section h2 {
    font-size: 2.5rem;
    color: var(--text-color);
}

.book-appointment-section p {
    font-size: 1.1rem;
}

.form-control,
.form-select {
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 10px;
}

.form-label {
    font-weight: 500;
    color: var(--text-color);
}

.btn-book-now {
    background-color: var(--button-color);
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 25px;
    color: white;
    transition: background-color 0.3s, transform 0.3s;
}
.btn-book-now:hover {
    background-color: var(--button-hover-color);
    transform: scale(1.05);
}


/* .btn-book-now:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
} */

/* pricing section */
.pricing-section {
    padding: 60px 0;
    background-color: var(--secondary-color);
}

.pricing-card {
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #ddd;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.pricing-card.border-primary {
    border-width: 2px;
    background: linear-gradient(135deg, #fff, rgba(0, 123, 255, 0.05));
}

.card-header {
    background: transparent;
    border-bottom: none;
    padding: 40px 20px 20px 20px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
}

.card-body {
    padding: 20px;
}

.card-body ul li {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.btn-choose-plan {
    padding: 10px 20px;
    border-radius: 25px;
    transition: background-colors 0.3s, transform 0.3s;
}

.btn-choose-plan:hover {
    background-color: var(--button-hover-color);
    transform: scale(1.05);
}

.badge {
    padding: 8px 16px;
    font-size: 0.9rem;
}
/* faq section */
.faq-section {
    padding: 60px 0;
    background-color: #fff;
}

.accordion-item {
    border: none;
    border-radius: 8px;
    margin-bottom: 15px;
    background: var(--secondary-color);
    overflow: hidden;
}

.accordion-button {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
    background: #fff;
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s;
}

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

.accordion-button:hover {
    background: rgba(0, 123, 255, 0.1);
}

.accordion-body {
    font-size: 1rem;
    color: #666;
    background: #fff;
}

.accordion-button:focus {
    box-shadow: none;
}
/* location section */
.location-section {
    padding: 60px 0;
    background-color: var(--secondary-color);
}

.location-section img {
    max-height: 400px;
    object-fit: cover;
    transition: transform 0.3s;
}

.location-section img:hover {
    transform: scale(1.03);
}

.location-section h2 {
    font-size: 2.5rem;
    color: var(--text-color);
}

.location-section h4 {
    font-size: 1.5rem;
    color: var(--text-color);
}

.location-section ul li {
    font-size: 1.1rem;
    color: #666;
}

.location-section .bi {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.btn-get-directions {
    background-color: var(--button-color);
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 25px;
    color: white;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-get-directions:hover {
    background-color: var(--button-hover-color);
    transform: scale(1.05);
}
/* testimonial section */
/* .testimonial-section {
    padding: 60px 0;
    background-color: var(--secondary-color);
}

.testimonial-box {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.rating {
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-color);
}

.testimonial-carousel .carousel-control-prev,
.testimonial-carousel .carousel-control-next {
    width: 5%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.testimonial-carousel .carousel-indicators [data-bs-target] {
    background-color: #fff;
    opacity: 0.5;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.testimonial-carousel .carousel-indicators .active {
    opacity: 1;
    background-color: var(--primary-color);
}   .testimonial-section {
    padding: 60px 0;
    background-color: var(--secondary-color);
}

.testimonial-box {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.rating {
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-color);
}

.testimonial-carousel .carousel-control-prev,
.testimonial-carousel .carousel-control-next {
    width: 5%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.testimonial-carousel .carousel-indicators [data-bs-target] {
    background-color: #fff;
    opacity: 0.5;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.testimonial-carousel .carousel-indicators .active {
    opacity: 1;
    background-color: var(--primary-color);
} */


/* review */

  .review-card {
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 20px;
      margin: 10px;
      background: #f9f9f9;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .review-card p {
      margin: 5px 0;
  }
  .review-card .stars {
      color: #FFD700;
      font-size: 1.2rem;
  }
  .review-card .author {
      color: #555;
      font-style: italic;   
  }
  .review-card .text {
      color: #333;
  }
  .review-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
  }
  .review-header .google-rating {
      display: flex;
      align-items: center;
      font-size: 1.1rem;
      color: #333;
  }
  .review-header .google-rating .stars {
      color: #FFD700;
      margin-left: 5px;
  }
  .review-header .review-btn {
      background: #FFD700;
      color: #000;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;
  }
/* blog section */

.blog-section {
    padding: 60px 0;
    background-color: var(--secondary-color);
}

.blog-item {
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.blog-item img {
    transition: transform 0.3s;
}

.blog-item:hover img {
    transform: scale(1.05);
}

.blog-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 15px;
}

.blog-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.btn-read-more {
    padding: 8px 16px;
    border-radius: 20px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-read-more:hover {
    background-color: #0056b3;
    color: #fff;
    transform: translateY(-3px);
}



/* contact section */
.contact-us-section {
    padding: 60px 0;
    background-color: #fff;
}

.contact-us-section img {
    max-height: 400px;
    object-fit: cover;
    transition: transform 0.3s;
}

.contact-us-section img:hover {
    transform: scale(1.03);
}

.contact-us-section h2 {
    font-size: 2.5rem;
    color: var(--text-color);
}

.contact-us-section h4 {
    font-size: 1.5rem;
    color: var(--text-color);
}

.contact-us-section ul li {
    font-size: 1.1rem;
    color: #666;
}

.contact-us-section .bi {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.form-control {
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 10px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.btn-submit-contact {
    background-color: var(--button-color);
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 25px;
    color: white;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-submit-contact:hover {
    background-color: var(--button-hover-color);
    transform: scale(1.05);
}

/* footer section    */
.footer-section {
    background-image: url(../img/footer-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 0;
}

.footer-section h5 {
    color: var(--footer-text);
}
.footer-section li a{
    color: #000000 !important;
}
.footer-section li a:hover{
    color: var(--primary-color) !important;
}
.footer-section a {
    color: #ffffff;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-section .bi {
    transition: color 0.3s;
}

.footer-section .bi:hover {
    color: var(--primary-color);
}

.copyright-section {
    background-color: var(--primary-color);
    color: #ffffff !important;
}
.copyright-section p{
    color: #ffffff !important;
}


/* single service page */
.service-details-section {
    padding: 60px 0;
    background-color: #fff;
}

.service-feature, .testimonial-card {
    padding: 20px;
    background: var(--secondary-color);
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-feature:hover, .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-feature i, .testimonial-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-title, .testimonial-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 15px;
}

.feature-text, .testimonial-text {
    font-size: 1rem;
    color: #666;
}

.btn-book-appointment {
    padding: 12px 24px;
    border-radius: 25px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-book-appointment:hover {
    background-color: var(--button-hover-color);
    color: #fff;
    transform: translateY(-3px);
}


/*  error page */
.error-section {
    padding: 100px 0;
    text-align: center;
    color: var(--text-color);
}

.error-section img {
    max-width: 300px;
    margin-bottom: 20px;
}

.error-section h1 {
    font-size: 4rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.error-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn-back-home {
    padding: 12px 24px;
    border-radius: 25px;
    background-color: var(--primary-color);
    color: #fff;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-back-home:hover {
    background-color: var(--button-hover-color);
    transform: translateY(-3px);
    color: #fff;
}

/* blog details page */
.blog-container {
    padding: 60px 0;
}

.sidebar {
    background-color: #fff;
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    border-radius: 10px;
}

.sidebar h4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
}

.sidebar .search-form {
    margin-bottom: 30px;
}

.sidebar .search-form input {
    width: 100%;
    padding: 10px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    transition: border-color 0.3s;
}

.sidebar .search-form input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.sidebar ul li a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.sidebar ul li a:hover {
    color: var(--primary-color);
}

.sidebar ul li img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    border-radius: 5px;
    object-fit: cover;
}

.blog-detail-section {
    background-color: #fff;
    padding: 20px;
    border-right: 4px solid var(--primary-color);
    border-radius: 10px;
}

.blog-detail-section img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 2px solid var(--accent-purple);
}

.blog-detail-section .meta {
    color: #666;
    margin-bottom: 15px;
}

.blog-detail-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.blog-detail-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

.btn-back-blog {
    background-color: var(--button-color);
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 25px;
    color: white;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-back-blog:hover {
    background-color: var(--button-hover-color);
    transform: scale(1.05);
    color: #fff;
}
.comment-section {
    margin-top: 40px;
    background-color: #fff;
    padding: 20px;
    border: 2px solid var(--secondary-blue);
    border-radius: 10px;
}

.comment-section h4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.comment-section .comment-form .form-control {
    margin-bottom: 15px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    transition: border-color 0.3s;
}

.comment-section .comment-form .form-control:focus {
    border-color: var(--secondary-blue);
    outline: none;
}

.comment-section .comment-form button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.comment-section .comment-form button:hover {
    background-color: var(--button-hover-color);
}

.comment-section .comment-list .comment {
    background-color: var(--light-gray);
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    border-left: 4px solid var(--secondary-blue);
}

.comment-section .comment-list .comment .author {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.comment-section .comment-list .comment .date {
    color: #666;
    font-size: 0.9rem;
}

    /* team page */
    
    .team-container {
        padding: 60px 0;
    }

    .team-section {
        background-color: var(--secondary-color);
        padding: 20px;
        border-right: 4px solid var(--primary-color);
        border-radius: 10px;
    }

    .team-section h1 {
        font-size: 2.5rem;
        font-weight: bold;
        color: var(--primary-color);
        margin-bottom: 30px;
        text-align: center;
    }

    .team-card {
        background-color: var(--secondary-color);
        padding: 20px;
        border-radius: 10px;
        text-align: center;
        transition: transform 0.3s, box-shadow 0.3s;
        border: 2px solid var(--secondary-blue);
    }

    .team-card img {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        margin-bottom: 15px;
        border: 4px solid var(--primary-color);
        object-fit: cover;
    }

    .team-card h5 {
        font-size: 1.5rem;
        color: var(--primary-color);
        margin-bottom: 5px;
    }

    .team-card p {
        font-size: 1rem;
        color: var(--text-color);
        margin-bottom: 0;
    }

    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    /* team details page */
    .team-detail-container {
        padding: 60px 0;
    }

    .team-detail-section {
        background-color: var(--secondary-color);
        padding: 20px;
      
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .team-detail-section h1 {
        font-size: 2.5rem;
        font-weight: bold;
        color: var(--primary-color);
        margin-bottom: 20px;
    
    }

    .team-detail-section .image-col img {
       
      width: 100%;
       border-radius: 10px;
        object-fit: cover;
        display: block;
        margin: 0 auto;
    }

    .team-detail-section .info-col {
        padding-left: 20px;
    }

    .team-detail-section .info-col h4 {
        color: var(--secondary-blue);
        margin-bottom: 10px;
    }

    .team-detail-section .info-col p,
    .team-detail-section .info-col ul {
        color: var(--text-color);
        margin-bottom: 0;
    }

    .team-detail-section .info-col ul {
        list-style-type: none;
        padding-left: 0;
    }

    .team-detail-section .info-col ul li {
        margin-bottom: 10px;
    }

    .team-detail-section .info-col ul li i {
        color: var(--primary-color);
        margin-right: 10px;
    }

    .team-detail-section .personal-details {
        margin-top: 30px;
        padding: 15px;
        background-color: var(--secondary-color);

        border-radius: 5px;
    }

    .team-detail-section .personal-details p {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .btn-back {
        padding: 12px 24px;
        border-radius: 5px;
        background-color: var(--button-color);
        color: var(--link-color);
        text-decoration: none;
        transition: background-color 0.3s, transform 0.3s;
        display: inline-block;
        margin-top: 20px;
    }

    .btn-back:hover {
        background-color: var(--button-hover-color);
        transform: translateY(-3px);
    }

    /* back to top button */
    .btn-back-to-top {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: none; /* Hidden by default */
        padding: 10px;
        border-radius: 50%;
        background-color: var(--button-color);
        color: var(--link-color);
        border: none;
        font-size: 1.2rem;
        cursor: pointer;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s, transform 0.3s;
        z-index: 1000;
    }
    
    .btn-back-to-top:hover {
        background-color: var(--button-hover-color);
        transform: translateY(-3px);
    }
    
    .btn-back-to-top i {
        margin: 0;
    }

    /* coming soon page */
    .coming-soon-container {
        flex: 1;
        padding: 60px 0;
        text-align: center;
    }

    .coming-soon-section h1 {
        font-size: 3rem;
        font-weight: bold;
        color: var(--primary-color);
        margin-bottom: 30px;
    }

    .coming-soon-section .countdown {
        font-size: 1.5rem;
        color: var(--secondary-blue);
        margin-bottom: 30px;
    }

    .coming-soon-section .countdown span {
        font-weight: bold;
        color: var(--primary-color);
    }

    .coming-soon-section .subscribe-form {
        max-width: 400px;
        margin: 0 auto;
    }

    .coming-soon-section .subscribe-form input {
        width: 70%;
        padding: 10px;
        border: 1px solid var(--secondary-blue);
        border-radius: 5px 0 0 5px;
    }

    .coming-soon-section .subscribe-form button {
        width: 30%;
        padding: 10px;
        border: none;
        border-radius: 0 5px 5px 0;
        background-color: var(--button-color);
        color: var(--link-color);
        transition: background-color 0.3s;
    }

    .coming-soon-section .subscribe-form button:hover {
        background-color: var(--button-hover-color);
    }