@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro&display=swap');

    :root {
      --primary-bg: #ffffff;
      --primary-color: #000;
      --nav-bg: navy;
      --text-muted: gray;
      --transition: 0.3s ease;
    }

    body.dark {
      --primary-bg: #111;
      --primary-color: #fff;
      --nav-bg: #222;
      --text-muted: #aaa;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Source Sans Pro', sans-serif;
    }

    body {
      background: var(--primary-bg);
      color: var(--primary-color);
      transition: var(--transition);
    }

    body::before {
      content: "";
      display: block;
      height: 140px;
    }

    .no-scroll {
      overflow: hidden;
    }

    /* Header Top Area */
    .header-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  padding: 10px 30px;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;

  background: rgba(255, 255, 255, 0.1);       /* semi-transparent */
  backdrop-filter: blur(10px);               /* frosted effect */
  -webkit-backdrop-filter: blur(10px);       /* Safari support */
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* subtle border */
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);  /* soft shadow */
}


    .header-area .header-social ul,
    .header-area .header-info ul {
      display: flex;
      gap: 15px;
      list-style: none;
    }

    .header-social a,
    .header-info li,
    .header-info a {
      color: var(--primary-color);
      font-size: 0.9em;
      text-decoration: none;
    }

    /* Navbar */
    header {
      position: fixed;
      top: 60px;
      left: 0;
      width: 100%;
      height: 80px;
      background: var(--nav-bg);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 30px;
      z-index: 999;
      transition: top 0.5s;
    }

    header.active {
      top: -80px;
    }

    .logo {
      width: 100px;
      height: 150px;
      top: 20px;
      position: relative;
    }

    #navbar{
        height: 100px;
    }

    nav ul {
      display: flex;
      list-style: none;
      transition: max-height 0.4s ease;
    }

/* Base styles */
nav ul li a {
  position: relative;
  color: white;
  padding: 0 20px;
  font-size: 1.1em;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: transparent;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease, background 0.3s ease;
}

nav ul li a:hover::after {
  transform: scaleX(1);
}

/* Section-specific underline colors */
nav ul li a[data-section="home"]:hover::after {
  background: #00BFFF;
}

nav ul li a[data-section="about"]:hover::after {
  background: #FF6347;
}

nav ul li a[data-section="services"]:hover::after {
  background: #32CD32;
}

nav ul li a[data-section="lawyers"]:hover::after {
  background: #ffdf29;
}

nav ul li a[data-section="departments"]:hover::after {
  background: #c3c3c3;
}


nav ul li a[data-section="contact"]:hover::after {
  background: #BA55D3;
}

/* Active state (scroll spy) */
nav ul li a.active::after {
  transform: scaleX(1);
}

nav ul li a.active[data-section="home"]::after {
  background: #00BFFF;
}
nav ul li a.active[data-section="about"]::after {
  background: #FF6347;
}
nav ul li a.active[data-section="services"]::after {
  background: #32CD32;
}
nav ul li a.active[data-section="lawyers"]::after {
  background: #FFD700;
}

nav ul li a.active[data-section="departments"]::after {
  background: #d1ff05;
}

nav ul li a.active[data-section="contact"]::after {
  background: #BA55D3;
}

html {
  scroll-behavior: smooth;
}



    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      cursor: pointer;
      gap: 5px;
      width: 30px;
      height: 24px;
      transition: all 0.3s ease-in-out;
    }

    .hamburger span {
      height: 3px;
      width: 100%;
      background: white;
      border-radius: 2px;
      transition: 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Dark Mode Toggle */
    .toggle-dark {
      background: none;
      border: none;
      color: var(--primary-color);
      font-size: 1.2em;
      cursor: pointer;
    }

    /* Section */
    section {
      padding: 100px 30px 100px;
    }

    section h2 {
      font-size: 2.5em;
    }

    section h2 span {
      font-size: 0.7em;
      color: var(--text-muted);
    }

    section p {
      color: var(--text-muted);
      font-size: 1.05em;
    }

    


/* === Slider Wrapper === */
.slider {
  width: 100%;
  padding: 100px 30px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 31, 63, 0.8)),
              url('https://images.unsplash.com/photo-1549921296-3a3bcb0fd3ce') no-repeat center center/cover;
  color: white;
  position: relative;
  z-index: 1;
  animation: fadeSlideUp 1s ease forwards;
  opacity: 0;
}

/* === Animation Keyframes === */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Search Container === */
.doc-search-item {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.h_100_p {
  height: 100%;
}

.v-mid-content {
  max-width: 900px;
  width: 100%;
  text-align: center;
  padding: 20px;
  animation: fadeSlideUp 1.2s ease forwards;
  opacity: 0;
}

/* === Heading === */
.heading h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
  animation: fadeSlideUp 1.4s ease forwards;
  opacity: 0;
}

.heading p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #dcdcdc;
  animation: fadeSlideUp 1.5s ease forwards;
  opacity: 0;
}

/* === Search Form Styles === */
.doc-search-section form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  animation: fadeSlideUp 1.6s ease forwards;
  opacity: 0;
}

.box {
  flex: 1 1 200px;
  min-width: 200px;
  position: relative;
}

/* === Custom Select with Icons === */
select.form-control {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  outline: none;
  background: #ffffff url("data:image/svg+xml;charset=UTF-8,%3Csvg width='14' height='10' viewBox='0 0 14 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23333' stroke-width='2' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E") no-repeat right 12px center;
  background-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #333;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

select.form-control:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25);
}

/* === Search Button === */
.doc-search-button {
  flex: 1 1 100%;
  margin-top: 10px;
  text-align: center;
}

.doc-search-button .btn {
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  background: #dc3545;
  color: white;
  transition: background 0.3s ease;
  cursor: pointer;
  top: 100px;
  position: relative;
}

.doc-search-button .btn:hover {
  background: #c82333;
}


/* === Loader === */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0b0b0b;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #ffffff33;
  border-top-color: #dc3545;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Spin animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* === Smooth Scroll === */
html {
  scroll-behavior: smooth;
}

/* === Scroll Animations === */
.scroll-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease-out;
}

.scroll-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.picone {
  display: block;
}

.pictwo {
  display: none;
}


.choose-wrapper {
  padding: 40px 20px;
  position: relative;
  bottom: 150px;
}

.choose-col {
  padding: 15px;
}

.choose-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-size: cover;
  background-position: center;
  padding: 30px 25px;
  border-radius: 15px;
  color: #fff;
  min-height: 300px;
  overflow: hidden;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
  border-radius: 15px;
}

.choose-icon,
.choose-text {
  position: relative;
  z-index: 1;
}

.choose-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

.choose-icon {
  font-size: 50px;
  margin-bottom: 20px;
  color: #ffd700;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.choose-text h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.choose-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #f0f0f0;
}



/* Base styles */
#about{
    position: relative;
    background: url(images/back.jpg);
    bottom: 200px;
    height: 70%;
}

h1, h3, h4 {
    margin: 20px 0 10px;
    font-weight: bold;
}

.abt {
    padding: 0;
    list-style: none;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Banner */
.banner-area {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
}

.banner-text h1 {
    font-size: 48px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.banner-text .abt {
    display: inline-flex;
    gap: 10px;
    font-size: 16px;
    color: #ffffff;
}

.banner-text .abt li a {
    color: #ffffff;
}

.banner-text .abt li::after {
    content: '/';
    margin: 0 8px;
    color: #ccc;
}

.banner-text .abt li:last-child::after {
    content: '';
}

/* About Section */
.about-style1 {
    padding-top: 50px;
    padding-bottom: 110px;
}

.about1-text {
    padding-right: 150px;
}

.about1-bgimg {
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
}

.about1-inner img {
    width: 100%;
    display: block;
}

/* Mission Section */
.mission-area {
    background-color: #f9f9f9;
    padding-top: 40px;
    padding-bottom: 90px;
}

.mission-text h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #19272b;
}

.mission-text p {
    color: #19272b;
    font-size: 16px;
    margin-bottom: 16px;
}

.mission-img img,
.vision-img img {
    width: 100%;
    border-radius: 8px;
}


/* General Section Styling */

#services{
    position: relative;
    bottom: 200px;
}
.service-area {
    background-color: #f9f9f9;
    padding: 80px 0;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

/* Headline */
.main-headline {
    text-align: center;
    margin-bottom: 50px;
}

.main-headline h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.main-headline h1 span {
    color: #007bff; /* Blue highlight */
}

.main-headline p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Service Grid Layout */
.service-coloum-area {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-coloum {
    flex: 1 1 calc(33.333% - 30px);
    background: #fff;
    border: 1px solid #e6e6e6;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.service-coloum:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Service Item */
.service-item i {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
}

.service-item a {
    font-weight: 500;
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-item a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* "All Service" Button */
.home-button.ser-btn {
    text-align: center;
    margin-top: 50px;
}

.home-button.ser-btn a {
    background-color: #007bff;
    color: #fff;
    padding: 12px 30px;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.home-button.ser-btn a:hover {
    background-color: #0056b3;
}



/* Section Padding */
.team-page.pt_40.pb_70 {
    padding-top: 40px;
    padding-bottom: 70px;
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Team Card Container */
.team-item {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 20px 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Hover Effect */
.team-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Image Styling */
.team-photo img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Text Content */
.team-text a {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    margin-bottom: 5px;
}

.team-text a:hover {
    color: #1a252f;
}

.team-text p {
    font-size: 14px;
    color: #555;
    margin: 4px 0;
}

.team-text span {
    display: inline-block;
    color: #777;
    font-size: 13px;
}

/* Social Icons */
.team-social {
    margin-top: 15px;
}

.team-social ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social li {
    display: inline-block;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #2c3e50;
    color: #ffffff;
    border-radius: 50%;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.team-social a:hover {
    background-color: #1a252f;
}


#lawyers{
    position: relative;
    bottom: 300px;
}

/* Base Styling */
    /* Section Styling */
    .case-study-home-page {
      background-color: #f9f9f9;
      padding: 60px 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .main-headline {
      text-align: center;
      margin-bottom: 40px;
    }

    .main-headline h1 {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .main-headline h1 span {
      color: #2c3e50;
    }

    .main-headline p {
      font-size: 16px;
      color: #666;
      max-width: 800px;
      margin: 0 auto;
    }

    /* Case Box */
    .case-item {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .case-item:hover {
      transform: translateY(-5px);
    }

    .case-box {
      background-color: #ffffff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    }

    .case-image {
      position: relative;
      overflow: hidden;
    }

    .case-image img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .case-box:hover .case-image img {
      transform: scale(1.05);
    }

    .overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      top: 0;
      background-color: rgba(44, 62, 80, 0.7);
      opacity: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: opacity 0.3s ease;
    }

    .case-box:hover .overlay {
      opacity: 1;
    }

    .btn-case {
      background-color: #ffffff;
      color: #2c3e50;
      padding: 10px 20px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      border-radius: 6px;
      transition: background-color 0.3s ease;
    }

    .btn-case:hover {
      background-color: #2c3e50;
      color: #ffffff;
    }

    .case-content {
      padding: 20px;
      text-align: center;
    }

    .case-content h4 {
      font-size: 18px;
      font-weight: 600;
      margin: 0;
    }

    .case-content a {
      color: #2c3e50;
      text-decoration: none;
    }

    .case-content a:hover {
      text-decoration: underline;
    }

    .home-button {
      text-align: center;
      margin-top: 40px;
    }

    .home-button a {
      display: inline-block;
      background-color: #2c3e50;
      color: #fff;
      padding: 12px 30px;
      font-size: 16px;
      border-radius: 8px;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .home-button a:hover {
      background-color: #1a252f;
    }

    /* Utility Classes */
    .mt_15 {
      margin-top: 15px;
    }

    .mb_25 {
      margin-bottom: 25px;
    }

    .mb_60 {
      margin-bottom: 60px;
    }

    #departments{
        position: relative;
        bottom: 400px;
    }


    /* Contact Form Section */
.contact-style1 {
    padding-top: 50px;
    padding-bottom: 65px;
    background-color: #f9f9f9;
}

.about1-text h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
}

.about1-text p {
    font-size: 16px;
    color: #666;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    resize: vertical;
}

.contact-form textarea {
    height: 150px;
}

.contact-form .btn {
    background-color: #1d3557;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    top: 20px;
    position: relative;
}

.contact-form .btn:hover {
    background-color: #457b9d;
}

/* Contact Info Boxes */
.contact-info-item {
    padding: 25px;
    color: #fff;
    border-radius: 5px;
    margin-bottom: 25px;
}

.contact-info span {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 18px;
}

.contact-info i {
    margin-right: 8px;
    color: #fff;
}

.contact-text a,
.contact-text p {
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
}

/* Background Colors */
.bg1 {
    background-color: #5e3c1c;
}
.bg2 {
    background-color: #457b9d;
}
.bg3 {
    background-color: #2a9d8f;
}

/* reCAPTCHA */
.g-recaptcha {
    margin-top: 10px;
    margin-bottom: 20px;
}




/* ===============================
   Subscribe Area
================================== */
.subscribe-area {
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: #fff;
    text-align: center;
}

.subscribe-form {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px 30px;
    border-radius: 10px;
    max-width: 600px;
    margin: auto;
}

.subscribe-form h3 {
    font-size: 28px;
    margin-bottom: 25px;
}

.subscribe-form .form-label {
    font-weight: 600;
    color: #fff;
    display: block;
    text-align: left;
}

.subscribe-form .form-control {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: none;
    outline: none;
    font-size: 16px;
}

.subscribe-form .btn-primary {
    padding: 12px 30px;
    border-radius: 5px;
    background-color: #0056b3;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.subscribe-form .btn-primary:hover {
    background-color: #003c7e;
}

/* ===============================
   Brand Area
================================== */
.brand-area {
    padding: 50px 0;
    background-color: #f7f7f7;
    position: relative;
}

.brand-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.brand-carousel a {
    display: inline-block;
    flex-shrink: 0;
    width: 150px;
}

.brand-item {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

.brand-item:hover {
    transform: translateY(-5px);
}

.brand-item img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

/* ===============================
   Footer Area
================================== */
.main-footer {
    background-color: #1b1b1b;
    color: #d1d1d1;
    font-size: 15px;
    position: relative;
    bottom: 400px;
}

.top-footer {
    padding: 50px 0;
}

.footer-address .lost {
    list-style: none;
    padding: 0;
}

.footer-address li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-address i {
    font-size: 20px;
    color: #ffd700;
    margin-right: 15px;
}

.footer-address h5 {
    margin: 0 0 5px;
    font-size: 16px;
    color: #fff;
}

.footer-address p {
    margin: 0;
    font-size: 15px;
    color: #ccc;
}

/* Footer Widget Area */
.footer-area {
    padding: 50px 0;
    background-size: cover;
    background-position: center;
}

.footer-item {
    margin-bottom: 30px;
}

.footer-item h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-item .lost {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-item .lost li {
    margin-bottom: 10px;
}

.footer-item .lost li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-item .lost li a:hover {
    color: #ffd700;
}

.footer-item .sm_fbtn {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    color: #ffd700;
    text-decoration: none;
}

.footer-item .sm_fbtn:hover {
    text-decoration: underline;
}

/* Recent Posts */
.footer-recent-item {
    display: flex;
    margin-bottom: 20px;
}

.footer-recent-photo img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 15px;
}

.footer-recent-text {
    flex: 1;
}

.footer-recent-text a {
    color: #ccc;
    font-size: 14px;
    display: block;
    text-decoration: none;
}

.footer-recent-text a:hover {
    color: #ffd700;
}

.footer-post-date {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

/* Copyright Area */
.footer-copyrignt {
    padding: 20px 0;
    background-color: #111;
    font-size: 14px;
}

.copyright-text p {
    margin: 0;
}

.footer-social {
    text-align: right;
}

.footer-social a {
    color: #ccc;
    margin-left: 15px;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #ffd700;
}


#contact{
    position: relative;
    bottom: 600px;
}


/* Team Detail General */
.team-detail-page {
  background-color: #fff;
}

.team-detail-photo img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.team-detail-text h4 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.team-detail-text span {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #666;
  margin-bottom: 20px;
}

.appointment-cost {
  font-size: 15px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.8;
}

.team-detail-text p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Tabs Navigation */
.event-detail-tab .nav-tabs {
  border-bottom: 2px solid #ddd;
  margin-bottom: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.event-detail-tab .nav-tabs li {
  margin: 5px;
}

.event-detail-tab .nav-tabs li a {
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #f9f9f9;
  transition: all 0.3s ease;
}

.event-detail-tab .nav-tabs li a:hover,
.event-detail-tab .nav-tabs li a.active {
  background: #1d4ed8;
  color: #fff;
  border-color: #1d4ed8;
}

/* Tab Content */
.event-detail-content .tab-pane {
  padding: 15px 0;
}

.event-detail-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

.event-detail-content ul {
  list-style-type: disc;
  padding-left: 20px;
}

.event-detail-content ul li {
  margin-bottom: 10px;
}

/* Working Hours Table */
.wh-table table {
  width: 100%;
  border: 1px solid #eee;
}

.wh-table table th,
.wh-table table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.wh-table table th {
  background-color: #f5f5f5;
  color: #333;
  font-weight: 600;
}

.sch {
  background-color: #e0f2fe;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 6px;
  color: #0c4a6e;
  font-weight: 500;
  font-size: 14px;
}

/* Headings */
.team-headline h2 {
  font-size: 26px;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
  text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .team-detail-text h4 {
    font-size: 22px;
  }

  .event-detail-tab .nav-tabs li a {
    font-size: 13px;
    padding: 8px 16px;
  }

  .team-headline h2 {
    font-size: 22px;
  }
}

