@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #a79a91;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: #a79a91;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    color: #e74c3c;
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #e74c3c, #f39c12);
    transition: width 0.3s ease;
}

.nav-item a:hover::after {
    width: 100%;
}

.nav-item a:hover {
    color: #e74c3c;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* background: url('https://cdn.pixabay.com/photo/2024/04/06/18/01/ai-generated-8679755_1280.jpg'); */

}
/* 
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://cdn.pixabay.com/photo/2024/04/06/18/01/ai-generated-8679755_1280.jpg');
    animation: float 20s ease-in-out infinite;
} */

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;


}

.hero-content {
    color: white;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(90deg, #ff5f6d, #ffc371);

    color: white;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    animation: slideInRight 1s ease-out;
  
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-container {
    /* position: relative; */
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 10%;
    object-fit: fill;
}

.lawyer-image {
    width: 100%;
  height: 500px;
    background: url('https://cdn.pixabay.com/photo/2022/08/14/01/46/lawyer-7384762_1280.jpg');

    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);


  
}



.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
}

.image-overlay h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.image-overlay p {
    color: #666;
    font-size: 0.9rem;
}

/* Floating elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: floatAround 15s infinite linear;
}

.floating-element:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 60%; right: 15%; animation-delay: 5s; }
.floating-element:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 10s; }

@keyframes floatAround {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}
/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        padding: 0 2rem;
        gap: 3rem;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
        height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        /* min-height: 100vh; */
        padding: 6rem 0 2rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
        
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
     
    }

    .hero-substrate {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .lawyer-image {
        height: 350px;
        margin-top: 1rem;
    }

    .image-overlay {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 1rem;
    }

    .image-overlay h3 {
        font-size: 1.1rem;
    }

    .image-overlay p {
        font-size: 0.8rem;
    }

}

@media (max-width: 576px) {
    .nav-container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hero {
        padding: 5rem 0 1rem;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
      
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .lawyer-image {
        height: 280px;
    }

    .lawyer-image::before {
        font-size: 4rem;
    }

}

@media (max-width: 375px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .lawyer-image {
        height: 250px;
    }

    .btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.85rem;
    }


}


/* call to action */

.cta-lawyer {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-lawyer h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  max-width: 800px;
  color: #6f62c2;
}

.cta-lawyer p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 30px;
  max-width: 600px;
}

.cta-btn {
  padding: 15px 35px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: blue;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(255, 95, 109, 0.6);
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 95, 109, 0.9);
}

@media (max-width: 600px) {
  .cta-lawyer h2 {
    font-size: 1.8rem;
  }

  .cta-lawyer p {
    font-size: 1rem;
  }

  .cta-btn {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
}


/* services */
.services-section {
    padding: 4rem 6rem;
    background:#a79a91;
    position: relative;
    overflow: hidden;
    color: black;
  }

  .services-container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .services-header {
    text-align: center;
    margin-bottom: 5rem;
  }

  .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    /* background: rgba(59, 130, 246, 0.1); */
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    /* color: var(--accent-blue); */
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: black;
    /* color: white; */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .section-subtitle {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
  }

  .services-slider-container {
    position: relative;
    overflow: hidden;
  }

  .services-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
  }

  .service-card {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    flex-shrink: 0;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px #fc916f;
  }

  .service-card:hover::before {
    transform: scaleX(1);
  }

  .card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--bg-primary);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-glow);
  }

  .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
  }

  .card-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
  }

  .card-features {
    list-style: none;
    margin-bottom: 2.5rem;
  }

  .card-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
  }

  .card-features i {
    color: var(--accent-gold);
    font-size: 0.8rem;
  }

  .card-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .card-price {
    font-weight: 600;
    color: var(--accent-gold);
    font-size: 1.1rem;
  }

  .chat-btn {
    background:blue;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .chat-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  }

  /* Slider Navigation */
  .slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
  }

  .nav-btn {
    width: 50px;
    height: 50px;
    background: black;
    border: none;
    border-radius: 50%;
    color: #a79a91;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
  }

  .nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  }

  .nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
  }

  /* Slider Dots */
  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
  }

  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .dot.active {
    background: var(--accent-gold);
    transform: scale(1.2);
  }

  /* Desktop - Show 4 cards initially */
  @media (min-width: 1024px) {
    .service-card {
      width: calc(25% - 1.5rem);
    }
  }

  /* Tablet - Show 3 cards initially */
  @media (min-width: 768px) and (max-width: 1023px) {
    .service-card {
      width: calc(33.333% - 1.33rem);
    }
  }

  /* Mobile - Show 2 cards initially */
  @media (max-width: 767px) {
    .service-card {
      width: calc(50% - 2rem);
      padding: 1.8rem;
      margin-right: 2rem;
      min-height: 400px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .services-section {
      padding: 5rem 3% 4rem;
    }

    .card-description {
      font-size: 0.9rem;
      line-height: 1.5;
      margin-bottom: 1.5rem;
      flex-grow: 1;
    }

    .card-features {
      margin-bottom: 1.5rem;
    }

    .card-features li {
      margin-bottom: 0.6rem;
      font-size: 0.85rem;
    }

    .card-footer {
      margin-top: auto;
      padding-top: 1rem;
    }

    .chat-btn {
      padding: 0.9rem 1.2rem;
      font-size: 0.85rem;
      white-space: nowrap;
    }

    .card-icon {
      width: 55px;
      height: 55px;
      font-size: 1.4rem;
      margin-bottom: 1.2rem;
    }

    .card-title {
      font-size: 1.2rem;
      margin-bottom: 0.8rem;
      line-height: 1.3;
    }
  }

  @media (max-width: 480px) {
    .service-card {
      width: calc(85% - 1rem);
      padding: 1.5rem;
      margin-right: 1rem;
      min-height: 380px;
    }

    .services-header {
      margin-bottom: 3rem;
      padding: 0 1rem;
    }

    .section-title {
      font-size: 2rem;
    }

    .section-subtitle {
      font-size: 0.8rem;
      padding: 0 1rem;
    }

    .card-icon {
      width: 50px;
      height: 50px;
      font-size: 1.2rem;
      margin-bottom: 1rem;
    }

    .card-title {
      font-size: 1.1rem;
      margin-bottom: 0.7rem;
    }

    .card-description {
      font-size: 0.85rem;
      margin-bottom: 1.2rem;
    }

    .card-features li {
      font-size: 0.8rem;
      margin-bottom: 0.5rem;
    }

    .chat-btn {
      padding: 0.8rem 1rem;
      font-size: 0.8rem;
    }

    /* Make slider container have proper padding */
    .services-slider-container {
      padding: 0 1rem;
      overflow: visible;
    }
  }

  
/* services end */


/* testimonal start */


.imgsliderbp-section {
    padding: 40px 20px;
    background: #111;
    text-align: center;
   
  }

  .imgsliderbp-container {
    max-width: 1300px;
    margin: auto;
    overflow: hidden;
    position: relative;
    margin-top: 5%;
    
  }
.imgsliderbp-section h2{
color:white;
font-size: clamp(2.5rem, 4vw, 3.5rem);

}
  .imgsliderbp-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
  }

  .imgsliderbp-card {
    flex: 0 0 auto;
    border-radius: 10px;
    overflow: hidden;
    min-width: 300px;
  }

  .imgsliderbp-card img {
    width: 100%;
    height: 200px;
    display: block;
    border-radius: 10px;
  }

  .imgsliderbp-controls {
    margin-top: 10px;
  }

  .imgsliderbp-btn {
    background: #a79a91;
    border: none;
    color: black;
    font-size: 1.5rem;
    margin: 0 10px;
    padding: 8px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
  }

  .imgsliderbp-btn:hover {
    background: #ffc400;
  }

  @media (min-width: 1024px) {
    .imgsliderbp-card {
      min-width: calc(25% - 15px); /* 4 images */
    }
  }

  @media (max-width: 768px) {
    .imgsliderbp-card {
      min-width: calc(50% - 10px); /* 2 images */
    }
  }

  @media (max-width: 500px) {
    .imgsliderbp-card {
      min-width: 90%;
    }
  }


  /* contact us */

  .contactlux-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 80px 30px;
    background: #a79a91;
    color: black;
  }

  .contactlux-left {
    flex: 1 1 500px;
    padding: 30px;
    max-width: 600px;
  }

  .contactlux-left h2 {
    font-size: 2.8rem;
    color:black;
    margin-bottom: 20px;
  }

  .contactlux-left p {
    font-size: 1.1rem;
    color: black;
    line-height: 1.6;
    margin-bottom: 35px;
  }

  .contactlux-info p {
    margin: 15px 0;
    font-size: 1rem;
  }

  .contactlux-info i {
    color:  black;
    margin-right: 10px;
    width: 25px;
  }

  .contactlux-social {
    margin-top: 30px;
  }

  .contactlux-social a {
    display: inline-block;
    margin-right: 15px;
    color: black;
    font-size: 1.5rem;
    transition: all 0.3s ease;
  }

  .contactlux-social a:hover {
    color: #fff;
    transform: scale(1.2);
  }

  .contactlux-image {
    flex: 1 1 400px;
    max-width: 500px;
    padding: 30px;
  }

  .contactlux-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  }

  @media (max-width: 768px) {
    .contactlux-section {
      flex-direction: column;
      text-align: center;
    }

    .contactlux-left, .contactlux-image {
      max-width: 100%;
      padding: 20px;
    }

    .contactlux-left h2 {
      font-size: 2rem;
    }

    .contactlux-social a {
      font-size: 1.3rem;
      margin: 0 8px;
    }
  }


  /* footer start */

  .footerlaw {
    background: #0f0f0f;
    padding: 60px 30px 30px;
    color: #ccc;
  }

  .footerlaw-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
  }

  .footerlaw-col {
    flex: 1 1 250px;
    
  }

  .footerlaw h3 {
    color: white;
    margin-bottom: 20px;
  }

  .footerlaw p {
    line-height: 1.6;
  }

  .footerlaw a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: 0.3s;
  }

  .footerlaw a:hover {
    color: #ffd700;
  }
.footerlaw-social{
  display: flex;
}
  .footerlaw-social a {
     
    font-size: 1.3rem;
    margin-right: 15px;
    color: white;
    transition: 0.3s;
  }

  .footerlaw-social a:hover {
    color: #fff;
  }

  .footerlaw-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #888;
    border-top: 1px solid #222;
    padding-top: 20px;
  }

  /* footer end */



  .bp-hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
  }

  .bp-slider-track {
    display: flex;
    transition: transform 1s ease-in-out;
    height: 100%;
  }

  .bp-slide {
    min-width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
   
  }

  .bp-slide-content {
    max-width: 600px;
    text-align: center;
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    animation: bp-fadeIn 1s ease-in-out;
  }

  .bp-slide-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }

  .bp-slide-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .bp-slide-content button {
    padding: 10px 20px;
    background-color: blue;
    border: none;
    color: #fff;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
  }

  .bp-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
  }

  .bp-prev {
    left: 10px;
  }

  .bp-next {
    right: 10px;
  }

  @media (max-width: 768px) {
    .bp-slide-content h1 {
      font-size: 1.8rem;
    }

    .bp-slide-content p {
      font-size: 1rem;
    }

    .bp-slide-content button {
      font-size: 0.9rem;
    }
  }

  @keyframes bp-fadeIn {
    from {
      opacity: 0;
      transform: scale(0.95);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }


  /* hero section */

      
  .hero-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 60px 40px;
    background: #a79a91;
   
  }

  .hero-content {
    flex: 1 1 300px;
    color: black;
  }

  .hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .hero-content p.tagline {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .hero-content p.description {
    font-size: 1rem;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 550px;
  }

  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .btn-consult {
    background: blue;
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 94, 87, 0.4);
  }

  .btn-services {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
  }

  .hero-image-container {
    flex: 1 1 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .hero-image-container img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    object-fit: cover;
  }

  .lawyer-card {
    background: blue;
    color: whitesmoke;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    max-width: 90%;
    margin-top: -60px;
    z-index: 2;
    position: relative;
  }

  .lawyer-card h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
  }

  .lawyer-card p {
    font-size: 0.95rem;
    color: #666;
  }

  /* Medium Devices */
  @media (max-width: 992px) {
    .hero-content h1 {
      font-size: 2.5rem;
      margin-top: 10%;

    }

    .hero-content p.tagline {
      font-size: 1.1rem;
    }

    .hero-content p.description {
      font-size: 1rem;
    }
  }

  /* Tablets */
  @media (max-width: 768px) {
    .hero-section {
      flex-direction: column;
      padding: 40px 20px;
      text-align: center;
    }

    .hero-buttons {
      justify-content: center;
    }

    .hero-image-container {
      margin-top: 40px;
    }

    .lawyer-card {
      margin-top: 10px;
      width: 100%;
      max-width: 100%;
      padding: 18px 20px;
    }
  }

  /* Small Phones */
  @media (max-width: 480px) {
    .hero-content h1 {
      font-size: 2rem;
    }

    .btn {
      width: 100%;
      text-align: center;
    }

    .hero-buttons {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
  }


  /*  office */


  .gallery-section {
    max-width: 1200px;
    margin: 0 auto;

  }
.gallery-section h2{
  font-size: 2.5rem;

}
  .gallery-grid {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(2, 1fr); /* Mobile: 2 columns */
  }

  .gallery-grid img {
    width: 100%;
    height: 400px;
    object-fit: fill;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  @media (min-width: 769px) {
    .gallery-grid {
      grid-template-columns: repeat(3, 1fr); /* Desktop: 3 columns */
    }
  }

  /* why choose us
   */



    
   .why-choose-section {
    padding: 50px 20px;
    background-color: #a79a91;
    text-align: center;
  }

  .why-choose-section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #222;
    position: relative;
    display: inline-block;
  }

  .why-choose-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 10px;
  }

  .why-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #f1f5f9;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }

  .why-item:hover {
    background: #e9eff6;
    transform: translateY(-2px);
  }

  .why-item span {
    font-size: 1.2rem;
    color: #0d6efd;
  }

  .why-item p {
    margin: 0;
    font-size: 1rem;
    color: #333;
  }

  @media (min-width: 768px) {
    .why-choose-list {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
    }

    .why-item {
      width: 45%;
    }
  }