 .modal-content {
     border-radius: 10px;
     font-family: 'Segoe UI', sans-serif;
 }
 
 .modal-body p {
     font-size: 1rem;
     line-height: 1.6;
     color: #333;
 }
 
 @media (max-width: 576px) {
     .modal-content {
         padding: 1rem;
     }
     .modal-body p {
         font-size: 0.95rem;
     }
 }
 
 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     background: #0e0e0e;
     color: white;
 }
 
 .top-bar {
     background-color: black;
     font-size: 13px;
     padding: 5px 0;
 }
 
 .logo-img {
     width: 60px;
 }
 
 .navbar-nav .nav-link {
     color: white !important;
     font-weight: 500;
 }
 
.hero-section {
    position: relative;
    height: 850px;
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background Video Styling */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* Initial hidden state */
.animate-on-scroll {
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

/* Active state when in viewport */
.animate-on-scroll.active {
    transform: translateY(0);
    opacity: 1;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    z-index: 2;
    max-width: 600px;
    padding: 2rem 1rem;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
}

 
 /*.contact-btn,*/
 /*.book-btn {*/
 /*    font-weight: bold;*/
 /*    padding: 10px 15px;*/
 /*    border: none;*/
 /*}*/
 
 /*.book-btn {*/
 /*    background-color: #b562338a;*/
 /*    color: white;*/
 /*}*/
 
 /*.contact-btn {*/
 /*    background-color: #e7a250;*/
 /*    color: white;*/
 /*}*/
 
 /*.hero-img {*/
 /*    max-height: 80vh;*/
 /*}*/
 
 @media (max-width: 425px) {
    /* Make background video visible and styled for mobile */
    .hero-video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
        object-fit: cover;
        z-index: 0;
    }

    .hero-section {
        min-height: 100vh;
        position: relative;
        color: white;
        display: flex;
        align-items: center;
        overflow: hidden;
        height: auto;
        padding: 0px 0 0 0;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .contact-btn,
    .book-btn {
        /*width: 100%;*/
        margin: 15px 0;
    }

    .navbar-brand span {
        font-size: 1.1rem;
    }

    .top-bar div {
        flex-direction: column;
        font-size: 11px;
        text-align: center;
    }

    .hero-img {
        max-height: 300px;
        margin-top: 20px;
    }
}
 
 .emblem-img {
     display: flex;
     justify-content: center;
 }
 
 .img-fluid {
     height: 411px;
     width: 360px;
 }
 
 .about-btn{
     background-color: #000 !important;
     color: #fff !important;
 }
 .about-btn:hover{
     background-color: #b562338a !important;
     color: #fff !important;
     
 }
 
 .firm-services-new {
     /* padding: 60px 0; */
     /* background: url('your-background-image.jpg') no-repeat center center/cover; */
     position: relative;
 }
 
 .firm-services-container {
     padding: 10px;
     /* margin-top: -89px; */
 }
 
 .firm-service-new-card {
     background-color: antiquewhite;
     text-align: center;
     padding: 30px;
     border-radius: 10px;
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
     transition: all 0.3s ease;
 }
 
 .firm-service-new-card:hover {
     box-shadow: 0 4px 15px rgb(26, 75, 83);
 }
 
 .firm-service-new-icon {
     width: 60px;
     height: auto;
     margin-bottom: 20px;
 }
 
 .firm-service-new-title {
     font-size: 18px;
     font-weight: 700;
     color: #111;
     margin-bottom: 10px;
 }
 
 .firm-service-new-text {
     font-size: 14px;
     color: #666;
     margin-bottom: 20px;
 }
 
 .firm-service-new-btn {
     border: 1px solid #ccc !important;
     padding: 8px 20px;
     font-size: 14px;
     font-weight: 600;
     color: #000;
     background-color: transparent;
     transition: background 0.3s ease;
 }
 
 .firm-service-new-btn:hover {
     background-color: #b562338a !important;
     color: #fff !important;
 }
 
 @media (max-width: 768px) {
     .navbar-toggler {
         display: contents !important;
     }
     .firm-service-new-icon {
         width: 50px;
     }
     .firm-service-new-title {
         font-size: 16px;
     }
     .firm-service-new-btn {
         padding: 6px 16px;
         font-size: 13px;
     }
 }
 
 @media (max-width: 425px) {
     .firm-service-new-card {
         padding: 20px;
     }
     .firm-service-new-title {
         font-size: 15px;
     }
     .firm-service-new-text {
         font-size: 13px;
     }
     .firm-service-new-icon {
         width: 45px;
     }
 }
 
 @media (max-width: 375px) {
     .firm-service-new-title {
         font-size: 14px;
     }
     .firm-service-new-btn {
         font-size: 12px;
         padding: 5px 14px;
     }
 }
 
 @media (max-width: 320px) {
     .firm-service-new-icon {
         width: 40px;
     }
     .firm-service-new-title {
         font-size: 13px;
     }
     .firm-service-new-text {
         font-size: 12px;
     }
     .firm-service-new-btn {
         font-size: 11px;
         padding: 4px 10px;
     }
 }
 
 .counter {
     font-size: 2.5rem;
     font-weight: 700;
     transition: color 0.3s ease;
 }
 
 .counter:hover {
     color: #0d6efd;
     /* Bootstrap Primary */
 }
 
 .counter-part {
     border-radius: 10px 10px 10px 10px;
     background-color: antiquewhite;
     padding-top: 37px;
     /* color: white; */
 }
 
 .practice-card {
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }
 
 .practice-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
 }
 
 .practice-card img {
     object-fit: cover;
     height: 200px;
     width: 100%;
 }
 
 .facilitate-law-section h2 {
     font-size: 3.3rem;
     line-height: 1.3;
 }
 
 .facilitate-law-section p {
     font-size: 1rem;
 }
 
 .facilitate-law-section img {
     object-fit: cover;
     height: 100%;
     width: 100%;
     display: block;
 }
 
 @media (max-width: 768px) {
     .facilitate-law-section h2 {
         font-size: 1.8rem;
     }
     .facilitate-law-section p {
         font-size: 0.95rem;
     }
     .facilitate-law-section a {
         font-size: 0.95rem;
     }
     .facilitate-law-section img {
         height: auto;
     }
 }
 
 .client-card {
     background-color: antiquewhite !important;
 }
 
 .testimonial-section h2 {
     font-size: 2rem;
 }
 
 .testimonial-text {
     font-size: 1.05rem;
     color: #333;
     line-height: 1.7;
 }
 
 @media (max-width: 576px) {
     .testimonial-section h2 {
         font-size: 1.5rem;
     }
     .testimonial-text {
         font-size: 0.95rem;
     }
 }
 
 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }
 /* body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     background: #f6f6f8;
     color: #333;
 } */
 
 .contact-section {
     padding: 40px 20px;
     background-color: #f5f5fb;
 }
 
 .contact-container {
     display: flex;
     flex-wrap: wrap;
     max-width: 1300px;
     margin: auto;
     gap: 30px;
 }
 
 .contact-info {
     /*flex: 1 1 400px;*/
     min-width: 300px;
 }
 
 .contact-info h2 {
     font-size: 28px;
     margin-bottom: 10px;
 }
 
 .contact-info p {
     margin-bottom: 15px;
     line-height: 1.5;
 }
 
 .office {
     margin-bottom: 25px;
 }
 
 .office h3 {
     font-size: 20px;
     margin-bottom: 8px;
 }
 
 .red {
     color: #e60000;
     font-weight: bold;
 }
 
 a {
     color: #e60000;
     text-decoration: none;
 }
 
 a:hover {
     text-decoration: underline;
 }
 
 .map-container {
     flex: 1 1 400px;
     min-height: 400px;
     min-width: 300px;
     height: 100%;
 }
 
 .map-container iframe {
     width: 100%;
     height: 100%;
     border-radius: 6px;
 }
 /* Responsive */
 
 @media (max-width: 768px) {
     .contact-container {
         flex-direction: column;
     }
     .map-container {
         min-height: 300px;
         margin-top: 20px;
     }
     .contact-info h2 {
         font-size: 24px;
     }
     .office h3 {
         font-size: 18px;
     }
 }
 /* Base styles */
 
 .footer {
     background-color: #111;
     color: #eee;
     padding: 40px 15px 15px;
     font-family: 'Segoe UI', sans-serif;
 }
 
 .footer-container {
     display: flex;
     flex-wrap: wrap;
     max-width: 1315px;
     margin: auto;
     gap: 105px;
     justify-content: space-between;
 }
 
 .footer-column {
     flex: 1 1 220px;
     min-width: 180px;
 }
 
 .footer-logo {
     font-size: 22px;
     font-weight: bold;
     margin-bottom: 8px;
     color: #fff;
 }
 
 .footer-description {
     color: #bbb;
     font-size: 14px;
     line-height: 1.4;
 }
 
 .footer-column h3 {
     font-size: 16px;
     color: #fff;
     margin-bottom: 10px;
 }
 
 .footer-links {
     list-style: none;
     padding: 0;
     margin: 0;
 }
 
 .footer-links li {
     margin: 6px 0;
 }
 
 .footer-links a {
     color: #ccc;
     font-size: 14px;
     text-decoration: none;
     transition: color 0.2s ease-in-out;
 }
 
 .footer-links a:hover {
     color: #fff;
 }
 
 .footer-column p,
 .footer-column a {
     font-size: 13px;
     color: #ccc;
 }
 
 .footer-column a:hover {
     color: #fff;
 }
 
 .footer-social a {
     display: inline-block;
     margin-right: 10px;
     color: #ccc;
     font-size: 16px;
     transition: color 0.2s;
 }
 
 .footer-social a:hover {
     color: #fff;
 }
 
 .footer-bottom {
     border-top: 1px solid #333;
     margin-top: 30px;
     padding-top: 15px;
     text-align: center;
     font-size: 12px;
     color: #888;
 }
 /* Responsive tweaks */
 
 @media (max-width: 768px) {
     .footer {
         padding: 30px 10px 10px;
     }
     .footer-container {
         flex-direction: row;
         flex-wrap: wrap;
         gap: 20px;
         justify-content: center;
     }
     .footer-column {
         flex: 1 1 45%;
         max-width: 45%;
     }
 }
 
 @media (max-width: 480px) {
     .footer {
         padding: 25px 10px 5px;
     }
     .footer-container {
         gap: 15px;
     }
     .footer-column {
         flex: 1 1 100%;
         max-width: 100%;
         margin-bottom: 10px;
     }
     .footer-logo {
         font-size: 18px;
     }
     .footer-column h3 {
         font-size: 15px;
     }
     .footer-links a,
     .footer-column p,
     .footer-column a {
         font-size: 13px;
     }
     .footer-social a {
         font-size: 14px;
     }
     .footer-bottom {
         font-size: 11px;
         margin-top: 20px;
     }
 }
 
 
  .contact-card {
     background: #fff;
     border-radius: 15px;
     padding: 30px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 }
 
 .contact-header {
     text-align: center;
     margin-bottom: 30px;
 }
 
 .contact-header h2 {
     font-weight: 700;
     color: #2c3e50;
 }
 
 .form-control,
 .btn {
     border-radius: 10px;
 }
 
 .btn-custom {
     background-color: #2c3e50 !important;
     color: #fff !important;
     transition: 0.3s;
 }
 
 .btn-custom:hover {
     background-color: #1a242f !important;
 }
 
 .map-container {
     position: relative;
     padding-bottom: 56.25%;
     /* 16:9 aspect ratio */
     height: 0;
     overflow: hidden;
     border-radius: 15px;
     margin-top: 20px;
 }
 
 .map-container iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100% !important;
     height: 100% !important;
     border: 0;
 }
 
 @media (max-width: 425px) {
     .contact-card {
         padding: 20px;
     }
     .contact-header h2 {
         font-size: 1.5rem;
     }
     .btn-custom {
     background-color: #2c3e50 !important;
     color: #fff !important;
     transition: 0.3s;
 }
 
 .btn-custom:hover {
     background-color: #1a242f !important;
 }
 }
 
 
  .hero {
     text-align: center;
     padding: 50px 20px;
     border-bottom: 6px solid #b8860b;
 }
 
 .hero h1 {
     font-size: 2.8rem;
     font-weight: bold;
 }
 
 .hero p {
     font-size: 1.2rem;
     margin-top: 10px;
 }
 /* Content Sections */
 
 .about-section {
     padding: 60px 20px;
 }
 
 .about-section h2 {
     font-size: 1.8rem;
     margin-bottom: 20px;
     font-weight: bold;
 }
 
 .about-section p {
     font-size: 1.1rem;
     line-height: 1.8;
 }
 /* Highlight Box with Golden Border */
 
 .highlight {
     border: 3px solid #b8860b;
     border-radius: 12px;
     padding: 30px;
     margin-bottom: 40px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
     transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
 }
 
 .highlight:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
 }
 
 .highlight h3 {
     font-size: 1.5rem;
     margin-bottom: 15px;
     color: #212529;
 }
 /* Values List */
 
 .values-list {
     list-style: none;
     padding: 0;
 }
 
 .values-list li {
     margin-bottom: 12px;
     padding-left: 30px;
     position: relative;
     font-size: 1.05rem;
 }
 
 .values-list li::before {
     content: "✦";
     position: absolute;
     left: 0;
     font-weight: bold;
 }
 /* Footer */
 /* Responsive */
 
 @media (max-width: 768px) {
     .hero h1 {
         font-size: 2rem;
     }
     .hero p {
         font-size: 1rem;
     }
 }
 
 @media (max-width: 576px) {
     .hero {
         padding: 35px 15px;
     }
     .about-section h2 {
         font-size: 1.5rem;
     }
     .highlight {
         padding: 20px;
     }
 }