/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
}

/* Scoped Hero Section Styles */
/* Hero Section - Law Style */
.hero-law {
    background: url('images/background-index.png') no-repeat center center/cover;
    padding: 100px 10%;
    position: relative;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-law::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 0;
}

.hero-law-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
    flex-wrap: wrap;
}

.hero-law-text {
    flex: 1 1 500px;
}

.hero-law-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-law-text .highlight {
    color: #e6d7b8;
}

.hero-law-subtext {
    font-size: 16px;
    color: #d7cba4;
    margin-bottom: 10px;
}

.hero-law-desc {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 30px;
    max-width: 550px;
}

.hero-law-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-hero-learn {
    background: #fff;
    color: #000;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-hero-learn:hover {
    background: #e6d7b8;
    color: #000;
}

.btn-hero-play {
    background: #e6d7b8;
    color: #fff;
    width: 50px;
    height: 50px;
    font-size: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hero-play:hover {
    background: #fff;
    color: #e6d7b8;
}

.hero-law-image {
    flex: 1 1 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-law-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-law-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-law-buttons {
        justify-content: center;
    }

    .hero-law-text h1 {
        font-size: 36px;
    }
}


/* Arrows */
.hero-section .hero-arrows {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-section .arrow {
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.hero-section .arrow:hover {
    background: #c2b28c;
    border-color: #c2b28c;
}

/* Slide In Animation */
@keyframes slideIn {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section .hero-title {
        font-size: 36px;
    }

    .hero-section .hero-subtitle {
        font-size: 28px;
    }

    .hero-section .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-section .hero-slide {
        padding-left: 5%;
    }

    .hero-section .hero-arrows {
        right: 20px;
    }
}


/* About*/
.about-section {
    padding: 80px 10%;
    background: #fff;
    position: relative;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center; /* <-- This centers vertically */
  gap: 60px;
  margin-top: 20px;
}


.about-left {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}


.image-group {
    position: relative;
}

.main-img {
    margin-top: 150px;
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.hex-badge {
    position: absolute;
    top: 20px;
    left: -40px;
    background: #fff;
    padding: 20px;
    border: 4px solid #c2b28c;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    width: 140px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
}

.hex-badge a {
    font-size: 12px;
    text-decoration: none;
    color: #333;
    display: block;
    margin-top: 10px;
}

.play-box {
    position: absolute;
    bottom: -30px;
    left: 120px;
    width: 200px;
}

.play-box img {
    width: 100%;
    border-radius: 10px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #c2b28c;
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 18px;
    text-decoration: none;
}

.client-box {
    position: absolute;
    top: 30px;
    right: -20px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.client-box i {
    color: #c2b28c;
    font-size: 22px;
}

.client-box strong {
    font-size: 20px;
    display: block;
    color: #000;
}

.client-box span {
    font-size: 12px;
    color: #444;
}

.about-right {
    flex: 1;
    min-width: 300px;
}

.section-title {
    font-size: 16px;
    color: #c2b28c;
    font-weight: bold;
    margin-bottom: 10px;
}

.about-right h2 {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-right h2 span {
    color: #c2b28c;
}

.about-text {
    font-size: 15px;
    color: #555;
    margin-bottom: 30px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.feature-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-box i {
    font-size: 26px;
    color: #c2b28c;
}

.feature-box h4 {
    font-size: 16px;
    font-weight: bold;
}

.feature-box p {
    font-size: 14px;
    color: #666;
}

.learn-more-btn {
    background: #fff;
    border: 2px solid #c2b28c;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
    transition: 0.3s;
}

.learn-more-btn:hover {
    background: #c2b28c;
    color: #fff;
}

/* services */
/* === Services Carousel Section === */
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fdfdfd;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

section {
    padding: 80px 10%;
}

/* Hero Section */
.hero {
    position: relative;
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-slide {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content.animate {
    animation: fadeInUp 1.5s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
}

.hero h2 {
    font-size: 2.5rem;
    color: #dfd2b5;
    margin: 10px 0;
}

.hero .desc {
    max-width: 700px;
    margin: 20px auto;
    font-size: 1rem;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-learn,
.btn-play {
    padding: 14px 24px;
    border: none;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-learn {
    background-color: #dfd2b5;
    color: #222;
}

.btn-play {
    background: transparent;
    border: 2px solid #dfd2b5;
    color: #dfd2b5;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

/* Arrows */
.hero-arrows {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 10;
}

.arrow {
    cursor: pointer;
    margin: 10px 0;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 50%;
}

/* About Section */
/* About Section */
.about-section {
    background: #fefefe;
    padding: 80px 10%;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.about-left {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.image-group {
    position: relative;
}

.image-group .main-img {
    width: 100%;
    max-width: 420px;
    border-radius: 8px;
}

.hex-badge {
    position: absolute;
    top: -20px;
    left: -40px;
    background: #e6dbc1;
    padding: 20px 15px;
    text-align: center;
    clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
    width: 130px;
    font-weight: 600;
    font-size: 14px;
}

.play-box {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.play-box img {
    width: 140px;
    border-radius: 8px;
}

.play-box .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #d9c8a9;
    color: white;
    font-size: 18px;
    padding: 10px 12px;
    border-radius: 50%;
}

.client-box {
    position: absolute;
    top: 30px;
    right: -70px;
    background: white;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 10px;
    font-size: 14px;
}

.client-box i {
    font-size: 20px;
    color: #bca77f;
}

.about-right {
    flex: 1.2;
    min-width: 300px;
}

.about-right .section-title {
    color: #999;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-right h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-right h2 span {
    color: #cbb98b;
}

.about-text {
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.feature-box {
    background-color: #f9f7f3;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 28px;
    color: #bfa874;
    margin-bottom: 15px;
}

.feature-box h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: #666;
}

.learn-more-btn {
    display: inline-block;
    background: #bfa874;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.learn-more-btn:hover {
    background: #9b8b6a;
}

/* Services Section */
.services-section {
    background: #fefefe;
    padding: 80px 10%;
    text-align: center;
}

.services-section .section-title {
    color: #999;
    font-weight: 600;
    margin-bottom: 10px;
}

.services-section .section-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.services-section .section-heading span {
    color: #bfa874;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 18px;
    margin: 10px 0;
    color: #222;
}

.service-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.service-card a {
    font-size: 14px;
    font-weight: 600;
    color: #bfa874;
    text-decoration: none;
}

.view-all-btn a {
    display: inline-block;
    background: #bfa874;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.view-all-btn a:hover {
    background: #a68f60;
}


/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 10% 60px;
    background-color: #f9f8f6;
    position: relative;
    z-index: 1;
}

.why-container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}

.why-left {
    flex: 1 1 500px;
}

.why-subtitle {
    font-size: 14px;
    color: #9e915c;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.why-title {
    font-size: 36px;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.3;
}

.why-title span {
    color: #c6b276;
}

.why-desc {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    max-width: 600px;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.why-feature i {
    font-size: 24px;
    color: #c6b276;
    margin-top: 5px;
}

.why-feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #222;
}

.why-feature p {
    font-size: 14px;
    color: #666;
}

.why-btn {
    display: inline-block;
    background-color: transparent;
    border: 2px solid #c6b276;
    color: #222;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.why-btn i {
    margin-left: 8px;
}

.why-btn:hover {
    background-color: #c6b276;
    color: #fff;
}

.why-right {
    flex: 1 1 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-image-box {
    position: relative;
}

.why-image-box img:first-child {
    width: 350px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.why-image-box img:last-child {
    width: 200px;
    position: absolute;
    bottom: -30px;
    right: -40px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -50px;
    left: -40px;
    background-color: #c6b276;
    color: #fff;
    padding: 20px;
    font-weight: 600;
    border-radius: 50%;
    font-size: 14px;
    text-align: center;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Working Process Section */
.working-process-section {
    padding: 100px 5%;
    background: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.working-process-header {
    text-align: center;
    margin-bottom: 80px;
}

.working-subtitle {
    color: #c2b28c;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.working-process-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #222;
}

.working-process-header .highlight {
    color: #c2b28c;
}

/* Timeline Layout */
.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    flex-wrap: wrap;
    gap: 40px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    border-top: 2px dotted #ddd;
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    flex: 1 1 200px;
    text-align: center;
    padding-top: 40px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border: 2px solid #ddd;
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle img {
    width: 36px;
    height: 36px;
    z-index: 2;
}

.step-num {
    position: absolute;
    top: -12px;
    left: -12px;
    background: #c2b28c;
    color: #fff;
    font-weight: bold;
    width: 32px;
    height: 32px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 3;
}

.process-step h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #222;
}

.process-step p {
    font-size: 15px;
    color: #555;
    max-width: 280px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 991px) {
    .process-timeline {
        flex-direction: column;
        align-items: center;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        padding-top: 20px;
    }
}


/* testimonial*/
.client-testimonials {
    padding: 60px 20px;
    background: #f9f9f9;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.client-testimonials h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #222;
}

.testimonial-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.testimonial-card {
    background: #fff;
    padding: 20px;
    width: 260px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #e0e0e0;
}

.testimonial-card h3 {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.testimonial-card .position {
    font-size: 0.85rem;
    color: #888;
    margin: 5px 0 10px;
}

.testimonial-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

/* contact section */
.contact-section {
    padding: 60px 20px;
    background: #f5f5f5;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.contact-info,
.contact-form {
    flex: 1 1 50%;
    padding: 40px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #222;
}

.contact-info p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    color: #444;
    font-size: 0.95rem;
}

.contact-info ul li {
    margin-bottom: 10px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    padding: 12px;
    border: none;
    background: #c6b276;
    color: white;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #c6b276;
}

.form-alert {
    display: none;
    background-color: #d4edda;
    color: #155724;
    border-left: 5px solid #28a745;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {

    .contact-info,
    .contact-form {
        flex: 1 1 100%;
        padding: 30px 20px;
    }
}

/* blogs*/
.blog-section {
    padding: 60px 40px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.blog-subtitle {
    font-size: 16px;
    color: #a9a47f;
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
}

.blog-subtitle::after {
    content: '';
    width: 30px;
    height: 2px;
    background: #a9a47f;
    display: block;
    margin: 4px auto 0;
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #333;
    margin-bottom: 50px;
}

.blog-title span {
    color: #b8ae89;
}

.blog-cards-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    width: 340px;
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    position: relative;
}

.blog-image img {
    width: 100%;
    display: block;
}

.blog-date {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #b8ae89;
    color: #fff;
    padding: 10px;
    text-align: center;
}

.blog-date h4 {
    margin: 0;
    font-size: 20px;
}

.blog-date p {
    margin: 0;
    font-size: 12px;
}

.blog-content {
    padding: 20px;
    text-align: left;
}

.blog-meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}

.blog-meta span {
    margin-right: 15px;
}

.blog-content h3 {
    font-size: 18px;
    margin: 0 0 10px;
    color: #222;
}

.blog-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    font-size: 14px;
    color: #b8ae89;
    text-decoration: none;
    font-weight: 500;
}

.read-more i {
    margin-left: 5px;
}