 body {
  font-family: "Roboto", sans-serif;
  font-style: normal; 
}

a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'PT Serif Caption', serif;
  color: #333;
}

/* HEADER */
header {
  transition: all 0.3s ease;
  background: transparent;
}

header.scrolled {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(45, 45, 58, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

header.scrolled .container-fluid {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

header.scrolled img {
  height: 50px !important;
}

/* DESKTOP NAVIGATION */
.desktop-nav {
  gap: 30px;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 300;
  padding: 10px 15px;
  display: block;
  transition: all 0.3s;
  border-radius: 3px;
}

.nav-link:hover {
  background: rgba(139, 44, 99, 0.3);
  color: #fff;
  opacity: 1;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #2d2d3a;
  min-width: 250px;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: all 0.35s ease;
  z-index: 10000;
  pointer-events: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);  
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 30px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-left: 3px solid transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 300;
}

.nav-dropdown a:last-child {
  border-bottom: none;
}

.nav-dropdown a i {
  font-size: 10px;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.nav-dropdown a:hover {
  color: #fff;
  /* border-left-color: #8b2c63;
  padding-left: 35px; */
}

/* .nav-dropdown a:hover i {
  transform: translateX(5px);
} */

/* MOBILE MENU TOGGLE (Hamburger) */
.mobile-menu-toggle {
  background: transparent;
  border: none;
  padding: 5px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

.mobile-menu-toggle:hover span {
  background: rgba(255, 255, 255, 0.7);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: rgba(45, 45, 58, 0.98);
  z-index: 9999;
  transition: right 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 40px;
  height: 40px;
}

/* MOBILE NAVIGATION */
.mobile-nav {
  padding: 20px 0;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-item:last-child {
  border-bottom: none;
}

.mobile-nav-link {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.mobile-nav-link span {
  flex: 1;
}

.mobile-nav-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
  color: rgba(255, 255, 255, 0.7);
}

.mobile-nav-item.active .mobile-nav-link {
  background: rgba(139, 44, 99, 0.3);
  color: #fff;
}

.mobile-nav-item.active .mobile-nav-link i {
  transform: rotate(180deg);
  color: #fff;
}

.mobile-nav-link-simple {
  display: block;
  padding: 15px 20px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
}

.mobile-nav-link-simple:hover {
  background: rgba(139, 44, 99, 0.2);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.mobile-nav-item.active .mobile-submenu {
  max-height: 1000px;
  padding: 10px 0;
}

.mobile-submenu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px 12px 40px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-submenu a:last-child {
  border-bottom: none;
}

.mobile-submenu a i {
  font-size: 9px;
  opacity: 0.6;
}

.mobile-submenu a:hover {
  color: #fff;
}

/* HERO SLIDER */
.hero-slider {
  height: 100vh;
  position: relative;
}

.hero-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(139, 44, 99, 0.4);
  z-index: 1;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  letter-spacing: 2px;
  font-weight: 300;
  color: #fff;
  opacity: 1;
  transform: translateY(30px);
  transition: all 1s ease;
 
}

.hero-title.visible {
  opacity: 1;
  transform: translateY(0);
}

/* HERO SECTION (ABOUT US) */
.hero-section {
    background-size:cover;
    background-position: center;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Slick Slider Custom Styles */
.slick-dots {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  z-index: 3;
  position: absolute;
}

.slick-dots li {
  margin: 0;
  width: auto;
  height: auto;
}

.slick-dots li button:before {
  font-size: 12px;
  color: #fff;
  opacity: 0.5;
}

.slick-dots li.slick-active button:before {
  color: #fff;
  opacity: 1;
}

.slick-prev,
.slick-next {
  z-index: 3;
  width: 50px;
  height: 50px;
}

.slick-prev {
  left: 30px;
}

.slick-next {
  right: 30px;
}

.slick-prev:before,
.slick-next:before {
  font-size: 40px;
  opacity: 0.7;
}

.slick-prev:hover:before,
.slick-next:hover:before {
  opacity: 1;
}

/* Scroll Down Button */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s;
}

.scroll-down:hover {
  opacity: 0.7;
}

.scroll-text {
  color: #fff !important;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 300;
  text-transform: uppercase;
}

.scroll-icon {
  width: 30px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(20px);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .slick-prev {
    left: 15px;
  }
  
  .slick-next {
    right: 15px;
  }
  
  .slick-prev,
  .slick-next {
    width: 35px;
    height: 35px;
  }
  
  .slick-prev:before,
  .slick-next:before {
    font-size: 30px;
  }
  
  .scroll-down {
    bottom: 100px;
  }
}

/* TEAM */
.team-strip {
  background: #f8f8f8;
}

.team-slider {
  padding: 0;
}

.team-member {
  padding: 0;
  transition: transform 0.3s;
  position: relative;
}

.team-member a {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

.team-member:hover {
  transform: translateY(0px);
}

.att-img {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;  
  position: relative;
}

.att-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  z-index: 2;
  border-radius: 0 0 5px 5px;
  transition: opacity 0.4s ease;
}
.att-info::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 130%;
    background: rgba(75, 123, 124, 1);
    background: linear-gradient(0deg, rgba(75, 123, 124, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.team-member a:hover .att-info {
  opacity: 0;
  visibility: hidden;
}

.att-info h3 {
  margin: 0 0 5px 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.att-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.team-member .hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(139, 44, 99, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  padding: 30px;
 
}

.team-member a:hover .hover {
  opacity: 1;
  visibility: visible;
}

.team-member .hover > div {
  text-align: center;
  color: #fff;
}

.team-member .hover p {
  color: #fff;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.team-member .hover p.view {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.team-strip img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.team-strip h6 {
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 600;
}

.team-strip small {
  display: block;
  margin-bottom: 10px;
  color: #666;
  font-size: 13px;
}

.tag {
  font-size: 11px;
  padding: 8px 12px;
  color: #fff;
  border-radius: 3px;
  display: inline-block;
  margin-top: 5px;
}
.att-title, .prac-title {
    background: #353441;
    padding: 25px 0;
    text-transform: uppercase;
    text-align: center;
    display: block;
}

.prac-title.show-for-small-only {
    display: none;
}

@media (max-width: 992px) {
    .prac-title.show-for-small-only {
        display: block;
    }
}

.prac-title h3 {
    color: #fff;
    margin: 0;
    font-size: 20px;
    font-weight: 400;
}
.practice-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.practice-boxes a {
    display: block;
    flex: 1;
    min-width: 200px;
    text-decoration: none;
}

.practice-boxes .practice-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 188px;
    transition: all 300ms ease-out;
    padding: 20px;
    text-align: center;
}

.practice-boxes .practice-item h3 {
    color: #fff;
    font-size: 18px;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.practice-boxes a:hover .practice-item {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Individual colors for each practice box */
.practice-boxes a:nth-child(1) .practice-item {
    background: #8b2c63;
}

.practice-boxes a:nth-child(2) .practice-item {
    background: #3c7f7a;
}

.practice-boxes a:nth-child(3) .practice-item {
    background: #7b8b3a;
}

.practice-boxes a:nth-child(4) .practice-item {
    background: #54738c;
}

.practice-boxes a:nth-child(5) .practice-item {
    background: #6f6f6f;
}

@media (max-width: 992px) {
    .practice-boxes a {
        min-width: 50%;
    }
}

@media (max-width: 576px) {
    .practice-boxes a {
        min-width: 100%;
    }
    
    .practice-boxes .practice-item {
        height: 150px;
    }
}

/* Team Slider Arrows */
.team-slider .slick-prev,
.team-slider .slick-next {
  width: 40px;
  height: 40px;
  z-index: 10;
}

.team-slider .slick-prev {
  left: 0;
}

.team-slider .slick-next {
  right: 0;
}

.team-slider .slick-prev:before,
.team-slider .slick-next:before {
  font-size: 35px;
  color: #333;
  opacity: 0.5;
}

.team-slider .slick-prev:hover:before,
.team-slider .slick-next:hover:before {
  opacity: 1;
}

@media (max-width: 768px) {
  .team-slider {
    padding: 0 30px;
  }
  
  .att-img {
    height: 250px;
  }
  
  .team-member .hover {
    padding: 20px;
  }
  
  .team-member .hover p {
    font-size: 12px;
  }
  
  .team-slider .slick-prev,
  .team-slider .slick-next {
    width: 30px;
    height: 30px;
  }
  
  .team-slider .slick-prev:before,
  .team-slider .slick-next:before {
    font-size: 25px;
  }
}

/* TESTIMONIAL */
.testimonial {
  background: url('../images/skin-bg.avif') center/cover no-repeat;
  padding: 80px 0;
  position: relative;
}

.testimonial-slider {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 50px;
}

.testimonial-slide {
  padding: 20px;
}

.testimonial blockquote {
  font-size: 1.3rem;
  line-height: 1.8;
  margin: 0 0 25px 0;
  font-weight: 300;
  font-style: italic;
}

.testimonial small {
  font-size: 0.95rem;
  opacity: 0.9;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Testimonial Slider Dots */
.testimonial .slick-dots {
  bottom: auto;
  position: relative;
  margin-top: 40px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 5px;
}

.testimonial .slick-dots li {
  margin: 0 5px;
}

.testimonial .slick-dots li button:before {
  font-size: 12px;
  color: #fff;
  opacity: 0.5;
}

.testimonial .slick-dots li.slick-active button:before {
  color: #fff;
  opacity: 1;
}

@media (max-width: 768px) {
  .testimonial blockquote {
    font-size: 1.1rem;
  }
  
  .testimonial-slider {
    padding: 0 20px;
  }
}

/* ACCORDION */
.accordion {
  max-width: 750px;
  margin: 0 auto;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #e0e0e0;
  background: transparent;
}

.accordion-item:first-child {
  border-top: 1px solid #e0e0e0;
}

.accordion-header {
  margin: 0;
}

.accordion-button {
  background: transparent;
  border: none;
  color: #333;
  font-size: 24px;
  font-weight: 400;
  padding: 20px 50px 20px 0;
  box-shadow: none;
  position: relative;
  text-align: left;
  justify-content: center;
}

.accordion-button:hover {
  background: #8b2c63;
  color: #fff;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: transparent;
  color: #8b2c63;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-button::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 24px;
  font-weight: 300;
  background: none;
  width: auto;
  height: auto;
  transform: none;
}

.accordion-button:not(.collapsed)::after {
  content: '−';
  transform: none;
}

.accordion-body {
  padding: 0 0 25px 0;
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

.accordion-collapse {
  border: none;
}

/* FOOTER */
.footer {
  background:#2d2d3a;
}

.footer ul {
    margin: 0 0 40px;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer ul li {
    display: inline-block;
}

.footer ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer ul li a:hover {
    background: #8b2c63;
    transform: translateY(-3px);
}

.footer ul li a .hide {
    display: none;
}

.footer p.copyright {
    font-size: 14px;
}

.footer p {
    color: #9D9CAB;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 10px;
}

.footer p a {
    color: #9D9CAB;
    transition: color 0.3s ease;
}

.footer p a:hover {
    color: #fff;
}

.footer .spacing {
    margin: 0 10px;
}

/* ABOUT PROCESS SECTION */
.about-process {
    background-color: #c9b9a8;
    padding: 80px 0;
}

.process-item {
    position: relative;
    padding: 40px 30px;
    text-align: center;
}

.process-icon {
    color: #3d5a5c;
    margin-bottom: 20px;
    display: inline-block;
}

.process-icon svg {
    width: 60px;
    height: 60px;
}

.process-number {
    font-size: 120px;
    font-weight: 300;
    color: rgba(61, 90, 92, 0.15);
    line-height: 1;
    margin: -10px 0 20px 0;
    font-family: 'PT Serif Caption', serif;
}

.process-title {
    font-family: 'PT Serif Caption', serif;
    font-size: 28px;
    font-weight: 600;
    color: #3d5a5c;
    margin-bottom: 15px;
    line-height: 1.3;
}

.process-description {
    font-size: 16px;
    line-height: 1.6;
    color: #5a5a5a;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 768px) {
    .process-number {
        font-size: 80px;
    }
    
    .process-title {
        font-size: 24px;
    }
    
    .process-description {
        font-size: 15px;
    }
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.section-title {
    font-family: 'PT Serif Caption', serif;
    font-size: 42px;
    font-weight: 600;
    color: #2d2d3a;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 0;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 60px;
}

.testimonial-track {
    position: relative;
    min-height: 300px;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.testimonial-item.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonial-content {
    background: #fff;
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.quote-icon {
    font-size: 40px;
    color: #8b2c63;
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author h5 {
    font-family: 'PT Serif Caption', serif;
    font-size: 20px;
    font-weight: 600;
    color: #2d2d3a;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #2d2d3a;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav:hover {
    background: #8b2c63;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav.prev {
    left: 0;
}

.testimonial-nav.next {
    right: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #8b2c63;
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .testimonials-slider {
        padding: 40px 20px;
    }
    
    .testimonial-content {
        padding: 35px 25px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .testimonial-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* TEAM MEMBERS SECTION */
.team-section {
    background-color: #fff;
    padding: 80px 0;
}

.team-member {
    text-align: center;
    transition: transform 0.3s ease;
}


.team-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.team-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.team-member:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 44, 99, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-social a:hover {
    background: #fff;
    color: #8b2c63;
    transform: translateY(-3px);
}

.team-info {
    padding: 0 15px;
}

.team-name {
    font-family: 'PT Serif Caption', serif;
    font-size: 22px;
    font-weight: 600;
    color: #2d2d3a;
    margin-bottom: 8px;
}

.team-designation {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

@media (max-width: 768px) {
    .team-section {
        padding: 60px 0;
    }
    
    .team-name {
        font-size: 20px;
    }
    
    .team-designation {
        font-size: 13px;
    }
}

/* SERVICES SECTION */
.services-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.service-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 44, 99, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover .card-overlay {
    opacity: 1;
}

.service-card .service-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.service-card:hover .service-icon {
    color: #fff;
}

.service-card:hover .service-title {
    color: #fff;
}

.service-card:hover .service-description {
    color: rgba(255, 255, 255, 0.9);
}

.service-icon {
    font-size: 50px;
    color: #3d5a5c;
    margin-bottom: 25px;
}

.service-icon i {
    display: inline-block;
}

.service-title {
    font-family: 'PT Serif Caption', serif;
    font-size: 20px;
    font-weight: 600;
    color: #3d5a5c;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Featured Card (Cyber Law style) */
.service-card.featured-card {
    background-size: cover;
    background-position: center;
    background-color: #3d5a5c;
    color: #fff;
    border: none;
    position: relative;
}

.service-card.featured-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 60, 75, 0.85);
    z-index: 1;
}

.service-card.featured-card .service-content {
    position: relative;
    z-index: 2;
}

.service-card.featured-card .service-icon {
    color: #fff;
}

.service-card.featured-card .service-title {
    color: #fff;
}

.service-card.featured-card .service-description {
    color: rgba(255, 255, 255, 0.9);
}

.service-card.featured-card:hover {
    transform: translateY(-5px) scale(1.02);
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        font-size: 40px;
        margin-bottom: 20px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-description {
        font-size: 13px;
    }
}

/* FAQs SECTION */
.faqs-section {
    background-color: #fff;
    padding: 80px 0;
}

.accordion-faqs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #2d2d3a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'PT Serif Caption', serif;
}

.faq-question:hover {
    background: #f8f8f8;
}

.faq-item.active .faq-question {
    background: #8b2c63;
    color: #fff;
}

.faq-question i {
    font-size: 14px;
    transition: transform 0.3s ease;
    color: #666;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fff;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 25px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.8;
    color: #555;
    font-size: 15px;
}

@media (max-width: 768px) {
    .faqs-section {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

/* CONTACT ADDRESS SECTION */
.contact-address-section {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.contact-card {
    background: #fff;
    padding: 40px 25px;
    text-align: left;
    height: 100%;
    border-top: 3px solid #e0e0e0;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-top-color: #8b2c63;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 40px;
    color: #666;
    margin-bottom: 20px;
}

.contact-card:hover .contact-icon {
    color: #8b2c63;
}

.contact-title {
    font-family: 'PT Serif Caption', serif;
    font-size: 22px;
    font-weight: 700;
    color: #2d2d3a;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-details ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.contact-details ul li:last-child {
    margin-bottom: 0;
}

.contact-details ul li strong {
    color: #2d2d3a;
    font-weight: 600;
}

.contact-details ul li a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details ul li a:hover {
    color: #8b2c63;
}

@media (max-width: 768px) {
    .contact-address-section {
        padding: 60px 0;
    }
    
    .contact-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .contact-title {
        font-size: 20px;
    }
    
    .contact-details ul li {
        font-size: 14px;
    }
}

/* MAP SECTION */
.map-section {
    background-color: #fff;
    padding: 80px 0;
}

.map-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.map-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.map-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 768px) {
    .map-section {
        padding: 60px 0;
    }
    
    .map-container {
        height: 350px;
    }
    
    .map-container iframe {
        height: 350px;
    }
}

/* EXPERT CONTENT SECTION */
.expert-content-section {
    background-color: #fff;
    padding: 80px 0;
}

.content-area {
    padding-right: 30px;
}

.main-heading {
    font-family: 'PT Serif Caption', serif;
    font-size: 36px;
    font-weight: 700;
    color: #2d2d3a;
    margin-bottom: 25px;
    line-height: 1.3;
}

.lead-text {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-area p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.content-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.content-list li {
    font-size: 16px;
    color: #555;
    padding: 8px 0 8px 25px;
    position: relative;
}

.content-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b2c63;
    font-size: 24px;
    line-height: 1;
}

.sub-heading {
    font-family: 'PT Serif Caption', serif;
    font-size: 24px;
    font-weight: 600;
    color: #2d2d3a;
    margin-top: 35px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.keywords-section {
    background-color: #f8f8f8;
    padding: 25px;
    border-left: 4px solid #8b2c63;
    margin-top: 40px;
}

.keywords-title {
    font-family: 'PT Serif Caption', serif;
    font-size: 20px;
    font-weight: 700;
    color: #2d2d3a;
    margin-bottom: 15px;
}

.keywords-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* Sidebar Section */
.sidebar-section {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-family: 'PT Serif Caption', serif;
    font-size: 24px;
    font-weight: 700;
    color: #2d2d3a;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #8b2c63;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    margin-bottom: 15px;
}

.services-list li:last-child {
    margin-bottom: 0;
}

.services-list li a {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    padding: 12px 15px;
    background: #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-list li a i {
    margin-right: 10px;
    color: #8b2c63;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.services-list li a:hover {
    background: #8b2c63;
    color: #fff;
    transform: translateX(5px);
}

.services-list li a:hover i {
    color: #fff;
    transform: translateX(3px);
}

@media (max-width: 992px) {
    .content-area {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .sidebar-section {
        position: relative;
        top: 0;
    }
    
    .main-heading {
        font-size: 30px;
    }
    
    .sub-heading {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .expert-content-section {
        padding: 60px 0;
    }
    
    .main-heading {
        font-size: 26px;
    }
    
    .lead-text {
        font-size: 16px;
    }
    
    .content-area p {
        font-size: 15px;
    }
    
    .sidebar-section {
        padding: 25px 20px;
    }
}

/* APPOINTMENT FORM SECTION */
.appointment-section {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.appointment-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.appointment-form .form-group {
    margin-bottom: 20px;
}

.appointment-form .form-label {
    font-size: 15px;
    font-weight: 600;
    color: #2d2d3a;
    margin-bottom: 8px;
    display: block;
}

.appointment-form .form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.appointment-form .form-control:focus {
    border-color: #8b2c63;
    box-shadow: 0 0 0 0.2rem rgba(139, 44, 99, 0.15);
    outline: none;
}

.appointment-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.appointment-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-appointment {
    background-color: #8b2c63;
    color: #fff;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-appointment:hover {
    background-color: #6d1f4d;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 44, 99, 0.3);
}

.btn-appointment i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .appointment-section {
        padding: 60px 0;
    }
    
    .appointment-card {
        padding: 35px 25px;
    }
    
    .appointment-form .form-label {
        font-size: 14px;
    }
    
    .appointment-form .form-control {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .btn-appointment {
        padding: 12px 30px;
        font-size: 14px;
        width: 100%;
    }
}

/* ==================== INSIGHTS SECTION ==================== */
.insights-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.insights-slider {
  max-width: 800px;
  margin: 0 auto;
}

.insight-slide {
  padding: 40px 20px;
  text-align: center;
}

.insight-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.insight-title a {
  color: #2c5f2d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.insight-title a:hover {
  color: #1a3d1b;
}

/* Insights Slider Dots */
.insights-slider .slick-dots {
  bottom: auto;
  position: relative;
  margin-top: 40px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 5px;
}

.insights-slider .slick-dots li {
  margin: 0 5px;
}

.insights-slider .slick-dots li button:before {
  font-size: 12px;
  color: #2c5f2d;
  opacity: 0.5;
}

.insights-slider .slick-dots li.slick-active button:before {
  color: #2c5f2d;
  opacity: 1;
}

@media (max-width: 768px) {
  .insights-section {
    padding: 60px 0;
  }

  .insight-slide {
    padding: 30px 15px;
  }

  .insight-title {
    font-size: 22px;
  }

  .insights-slider .slick-dots {
    margin-top: 30px;
  }
}

/* ==================== SLIDER PLAY/PAUSE BUTTON ==================== */
.slider-play-pause {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-play-pause:hover {
  background-color: rgba(0, 0, 0, 0.9);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.slider-play-pause i {
  pointer-events: none;
}

/* Position adjustments for different sections */
.testimonial-play-pause {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.testimonial-play-pause:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .slider-play-pause {
    width: 40px;
    height: 40px;
    font-size: 14px;
    bottom: 15px;
    left: 15px;
  }
}

/* KEYWORDS MARQUEE SCROLLER */
.keywords-marquee-section {
  background: linear-gradient(135deg, #2d2d3a 0%, #1a1a24 100%);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.keywords-marquee {
  width: 100%;
}

.keywords-marquee .slick-track {
  display: flex !important;
  align-items: center;
}

.keywords-marquee .slick-slide {
  height: auto;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0 15px;
}

.keyword-item {
  padding: 7px 12px;
  font-size: 14px;
  font-weight: 300;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  margin: 0 10px;
  width: auto !important;
}

.keyword-item::after {
  content: '•';
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

.keyword-item:hover {
  color: #00d4ff;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .keyword-item {
    font-size: 14px;
    padding: 12px 20px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 576px) {
  .keyword-item {
    font-size: 12px;
    padding: 10px 15px;
    letter-spacing: 1px;
  }
}
